From 65a648e29ea142ffc6e46e8dae11cf4931ee343f Mon Sep 17 00:00:00 2001 From: Baohua Yang Date: Thu, 18 Jan 2018 17:33:15 +0800 Subject: [PATCH] Clean up code --- hyperledger_fabric/v1.0.2/Makefile | 34 +- hyperledger_fabric/v1.0.2/base.yaml | 1 + .../v1.0.2/scripts/clean_env.sh | 35 - .../v1.0.2/scripts/download_images.sh | 18 +- .../v1.0.2/scripts/env_cleanup.sh | 17 + .../v1.0.2/scripts/env_setup.sh | 24 + hyperledger_fabric/v1.0.2/scripts/func.sh | 90 +- hyperledger_fabric/v1.0.2/scripts/header.sh | 19 - .../v1.0.2/scripts/setup_env.sh | 40 - .../v1.0.2/scripts/test_cc_instantiate.sh | 5 +- .../v1.0.2/scripts/variables.sh | 15 +- .../channel-artifacts/businesschannel_0.block | Bin 11941 -> 11941 bytes .../channel-artifacts/businesschannel_1.block | Bin 13744 -> 13745 bytes .../channel-artifacts/businesschannel_2.block | Bin 13802 -> 13803 bytes .../channel-artifacts/businesschannel_3.block | Bin 5227 -> 5224 bytes .../channel-artifacts/businesschannel_4.block | Bin 5227 -> 5225 bytes .../channel-artifacts/businesschannel_5.block | Bin 4686 -> 4687 bytes .../channel-artifacts/businesschannel_6.block | Bin 4687 -> 4686 bytes .../businesschannel_config.block | Bin 13802 -> 13803 bytes .../orderer.genesis.updated.block | Bin 9089 -> 9089 bytes .../channel-artifacts/testchainid_1.block | Bin 14620 -> 14621 bytes .../v1.0.2/solo/logs/dev_all.log | 32555 ++++++++-------- .../v1.0.2/solo/logs/dev_orderer.log | 11800 +++--- .../v1.0.2/solo/logs/dev_peer0.log | 4917 +-- hyperledger_fabric/v1.0.2/test-solo.yaml | 169 + 25 files changed, 25268 insertions(+), 24471 deletions(-) delete mode 100644 hyperledger_fabric/v1.0.2/scripts/clean_env.sh create mode 100644 hyperledger_fabric/v1.0.2/scripts/env_cleanup.sh create mode 100644 hyperledger_fabric/v1.0.2/scripts/env_setup.sh delete mode 100644 hyperledger_fabric/v1.0.2/scripts/header.sh delete mode 100644 hyperledger_fabric/v1.0.2/scripts/setup_env.sh create mode 100644 hyperledger_fabric/v1.0.2/test-solo.yaml diff --git a/hyperledger_fabric/v1.0.2/Makefile b/hyperledger_fabric/v1.0.2/Makefile index fa141aa9..79160688 100644 --- a/hyperledger_fabric/v1.0.2/Makefile +++ b/hyperledger_fabric/v1.0.2/Makefile @@ -8,6 +8,7 @@ CODE_BUILD_WAIT=30 # time to wait to build peer/orderer from local code NETWORK_INIT_WAIT=2 # time to wait the fabric network finish initialization COMPOSE_FILE ?= "docker-compose-2orgs-4peers-solo.yaml" +#COMPOSE_FILE ?= "test-solo.yaml" LOG_PATH ?= solo/logs @@ -31,7 +32,6 @@ test: @echo "Please make sure u have setup Docker and pulled images by 'make setup'." make ready # Finish all testing - make stop clean ready: # create/join channel, install/instantiate cc @@ -86,19 +86,19 @@ chaincode_dev: restart chaincode_init test_cc_peer0 stop test_channel_create: # Init the channel @echo "Create channel on the fabric network" - docker exec -it fabric-cli bash -c "cd /tmp; bash scripts/test_channel_create.sh" + @docker exec -it fabric-cli bash -c "cd /tmp; bash scripts/test_channel_create.sh" test_channel_join: # Init the channel @echo "Join channel" - docker exec -it fabric-cli bash -c "cd /tmp; bash scripts/test_channel_join.sh" + @docker exec -it fabric-cli bash -c "cd /tmp; bash scripts/test_channel_join.sh" update_anchors: # Update the anchor peer @echo "Update anchors on the fabric network" - docker exec -it fabric-cli bash -c "cd /tmp; bash scripts/test_update_anchors.sh" + @docker exec -it fabric-cli bash -c "cd /tmp; bash scripts/test_update_anchors.sh" test_channel_update: # send the channel update transaction @echo "Test channel update with adding new org" - docker exec -it fabric-cli bash -c "cd /tmp; bash scripts/test_channel_update.sh" + @docker exec -it fabric-cli bash -c "cd /tmp; bash scripts/test_channel_update.sh" ################## Configtxlator testing operations ################ test_configtxlator: # Test change config using configtxlator @@ -125,38 +125,38 @@ test_cc: # test chaincode, deprecated test_cc_install: # Install the chaincode @echo "Install chaincode on the fabric network" - docker exec -it fabric-cli bash -c "cd /tmp; bash scripts/test_cc_install.sh" + @docker exec -it fabric-cli bash -c "cd /tmp; bash scripts/test_cc_install.sh" test_cc_instantiate: # Instantiate the chaincode @echo "Instantiate chaincode on the fabric network" - docker exec -it fabric-cli bash -c "cd /tmp; bash scripts/test_cc_instantiate.sh" + @docker exec -it fabric-cli bash -c "cd /tmp; bash scripts/test_cc_instantiate.sh" test_cc_upgrade: # Upgrade the chaincode @echo "Upgrade chaincode on the fabric network" - docker exec -it fabric-cli bash -c "cd /tmp; bash scripts/test_cc_upgrade.sh" + @docker exec -it fabric-cli bash -c "cd /tmp; bash scripts/test_cc_upgrade.sh" test_cc_invoke_query: # test user chaincode on all peers @echo "Invoke and query cc example02 on all peers" - docker exec -it fabric-cli bash -c "cd /tmp; bash scripts/test_cc_invoke_query.sh" + @docker exec -it fabric-cli bash -c "cd /tmp; bash scripts/test_cc_invoke_query.sh" test_qscc: # test qscc queries @echo "Test QSCC query" - docker exec -it fabric-cli bash -c "cd /tmp; bash scripts/test_qscc.sh" + @docker exec -it fabric-cli bash -c "cd /tmp; bash scripts/test_qscc.sh" test_lscc: # test lscc quries @echo "Test LSCC query" - docker exec -it fabric-cli bash -c "cd /tmp; bash scripts/test_lscc.sh" + @docker exec -it fabric-cli bash -c "cd /tmp; bash scripts/test_lscc.sh" # FIXME: docker doesn't support wildcard in cp right now test_fetch_blocks: # test fetching channel blocks fetch @echo "Test fetching block files" - docker exec -it fabric-cli bash -c "cd /tmp; bash scripts/test_fetch_blocks.sh" + @docker exec -it fabric-cli bash -c "cd /tmp; bash scripts/test_fetch_blocks.sh" ################## Env setup related, no need to see usually ################ setup: # setup the environment - bash scripts/setup_env.sh # Installing Docker and Docker-Compose - bash scripts/download_images.sh # Pull required Docker images + bash scripts/env_setup.sh # Installing Docker and Docker-Compose + #bash scripts/download_images.sh # Pull required Docker images check: # Check shell scripts grammar @echo "Check shell scripts grammar" @@ -168,9 +168,9 @@ clean: # clean up containers @-docker ps -a | awk '$$2 ~ /dev-peer/ { print $$1 }' | xargs -r -I {} docker rm -f {} @-docker images | awk '$$1 ~ /dev-peer/ { print $$3 }' | xargs -r -I {} docker rmi -f {} -clean_env: # clean up environment +env_clean: # clean up environment @echo "Clean all images and containers" - bash scripts/clean_env.sh + bash scripts/env_clean.sh cli: # enter the cli container docker exec -it fabric-cli bash @@ -222,5 +222,5 @@ download: # download required images ################## chaincode dev mode ################ chaincode_init: # start chaincode in dev mode and do install/instantiate @echo "Install and instantiate cc example02 on the fabric dev network" - docker exec -it fabric-cli bash -c "cd /tmp; bash scripts/init_chaincode_dev.sh" + @docker exec -it fabric-cli bash -c "cd /tmp; bash scripts/init_chaincode_dev.sh" diff --git a/hyperledger_fabric/v1.0.2/base.yaml b/hyperledger_fabric/v1.0.2/base.yaml index 0399c6d7..d4f01ae9 100644 --- a/hyperledger_fabric/v1.0.2/base.yaml +++ b/hyperledger_fabric/v1.0.2/base.yaml @@ -64,6 +64,7 @@ services: - CORE_LOGGING_LEVEL=DEBUG - 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=v102_default # uncomment this to use specific network + - CORE_PEER_ADDRESSAUTODETECT=true # default to false - CORE_PEER_GOSSIP_ORGLEADER=false # whether this node is the group leader, default to false - CORE_PEER_GOSSIP_USELEADERELECTION=true - CORE_PEER_PROFILE_ENABLED=false diff --git a/hyperledger_fabric/v1.0.2/scripts/clean_env.sh b/hyperledger_fabric/v1.0.2/scripts/clean_env.sh deleted file mode 100644 index 88446f7d..00000000 --- a/hyperledger_fabric/v1.0.2/scripts/clean_env.sh +++ /dev/null @@ -1,35 +0,0 @@ -#!/usr/bin/env bash - -# This script will remove all containers and hyperledger related images - -# Detecting whether can import the header file to render colorful cli output -# Need add choice option -if [ -f ./header.sh ]; then - source ./header.sh -elif [ -f scripts/header.sh ]; then - source scripts/header.sh -else - echo_r() { - echo "$@" - } - echo_g() { - echo "$@" - } - echo_b() { - echo "$@" - } -fi - -echo_b "Clean up all containers..." -docker rm -f `docker ps -qa` - -echo_b "Clean up all chaincode images..." -docker rmi -f $(docker images |grep 'dev-peer'|awk '{print $3}') - -echo_b "Clean up all hyperledger related images..." -docker rmi -f $(docker images |grep 'hyperledger'|awk '{print $3}') - -echo_b "Clean up dangling images..." -docker rmi $(docker images -q -f dangling=true) - -echo_g "Env cleanup done!" \ No newline at end of file diff --git a/hyperledger_fabric/v1.0.2/scripts/download_images.sh b/hyperledger_fabric/v1.0.2/scripts/download_images.sh index 5c05a13a..97397460 100644 --- a/hyperledger_fabric/v1.0.2/scripts/download_images.sh +++ b/hyperledger_fabric/v1.0.2/scripts/download_images.sh @@ -1,25 +1,13 @@ #!/usr/bin/env bash -# Detecting whether can import the header file to render colorful cli output -if [ -f ./header.sh ]; then - source ./header.sh -elif [ -f scripts/header.sh ]; then - source scripts/header.sh -else - alias echo_r="echo" - alias echo_g="echo" - alias echo_b="echo" -fi - ARCH=x86_64 BASEIMAGE_RELEASE=0.3.2 -BASE_VERSION=1.1.0 PROJECT_VERSION=1.0.2 # For testing 1.0.0 images IMG_TAG=1.0.2 -echo_b "Downloading images from DockerHub... need a while" +echo "Downloading images from DockerHub... need a while" # TODO: we may need some checking on pulling result? docker pull yeasy/hyperledger-fabric-base:$IMG_TAG \ @@ -33,7 +21,7 @@ docker pull yeasy/hyperledger-fabric-base:$IMG_TAG \ # Only useful for debugging # docker pull yeasy/hyperledger-fabric -echo_b "===Pulling fabric images from official repo... with tag = ${IMG_TAG}" +echo "===Pulling fabric images from official repo... with tag = ${IMG_TAG}" docker pull hyperledger/fabric-peer:$ARCH-$IMG_TAG docker pull hyperledger/fabric-tools:$ARCH-$IMG_TAG docker pull hyperledger/fabric-orderer:$ARCH-$IMG_TAG @@ -45,6 +33,6 @@ docker pull hyperledger/fabric-couchdb:$ARCH-$IMG_TAG docker pull hyperledger/fabric-kafka:$ARCH-$IMG_TAG docker pull hyperledger/fabric-zookeeper:$ARCH-$IMG_TAG -echo_g "Done, now can startup the network using docker-compose..." +echo "Done, now can startup the network using docker-compose..." exit 0 diff --git a/hyperledger_fabric/v1.0.2/scripts/env_cleanup.sh b/hyperledger_fabric/v1.0.2/scripts/env_cleanup.sh new file mode 100644 index 00000000..c9ec1766 --- /dev/null +++ b/hyperledger_fabric/v1.0.2/scripts/env_cleanup.sh @@ -0,0 +1,17 @@ +#!/usr/bin/env bash + +# This script will remove all containers and hyperledger related images + +echo "Clean up all containers..." +docker rm -f `docker ps -qa` + +echo "Clean up all chaincode images..." +docker rmi -f $(docker images |grep 'dev-peer'|awk '{print $3}') + +echo "Clean up all hyperledger related images..." +docker rmi -f $(docker images |grep 'hyperledger'|awk '{print $3}') + +echo "Clean up dangling images..." +docker rmi $(docker images -q -f dangling=true) + +echo "Env cleanup done!" \ No newline at end of file diff --git a/hyperledger_fabric/v1.0.2/scripts/env_setup.sh b/hyperledger_fabric/v1.0.2/scripts/env_setup.sh new file mode 100644 index 00000000..487d9917 --- /dev/null +++ b/hyperledger_fabric/v1.0.2/scripts/env_setup.sh @@ -0,0 +1,24 @@ +#!/usr/bin/env bash + +# Install docker on Ubuntu/Debian system + +install_docker() { + echo "Install Docker..." + wget -qO- https://get.docker.com/ | sh + sudo service docker stop + #nohup sudo docker daemon --api-cors-header="*" -H tcp://0.0.0.0:2375 -H unix:///var/run/docker.sock& + echo "Docker Installation Done" +} + +install_docker_compose() { + echo "Install Docker-Compose..." + command -v "curl" >/dev/null 2>&1 || sudo apt-get update && apt-get install curl -y + curl -L https://github.com/docker/compose/releases/download/1.17.0/docker-compose-`uname -s`-`uname -m` > /usr/local/bin/docker-compose + sudo chmod +x /usr/local/bin/docker-compose + docker-compose --version + echo "Docker-Compose Installation Done" +} + +command -v "docker" >/dev/null 2>&1 && echo "Docker already installed" || install_docker + +command -v "docker-compose" >/dev/null 2>&1 && echo "Docker-Compose already installed" || install_docker_compose diff --git a/hyperledger_fabric/v1.0.2/scripts/func.sh b/hyperledger_fabric/v1.0.2/scripts/func.sh index 3d896aa6..a63367f0 100644 --- a/hyperledger_fabric/v1.0.2/scripts/func.sh +++ b/hyperledger_fabric/v1.0.2/scripts/func.sh @@ -1,23 +1,21 @@ -#!/bin/bash +#!/usr/bin/env bash -# Some useful functions for cc testing - -# Detecting whether can import the header file to render colorful cli output -if [ -f ./header.sh ]; then - source ./header.sh -elif [ -f scripts/header.sh ]; then - source scripts/header.sh -else - echo_r() { - echo "$@" - } - echo_g() { - echo "$@" - } - echo_b() { - echo "$@" - } -fi +echo_r () { + [ $# -ne 1 ] && return 0 + echo -e "\033[31m$1\033[0m" +} +echo_g () { + [ $# -ne 1 ] && return 0 + echo -e "\033[32m$1\033[0m" +} +echo_y () { + [ $# -ne 1 ] && return 0 + echo -e "\033[33m$1\033[0m" +} +echo_b () { + [ $# -ne 1 ] && return 0 + echo -e "\033[34m$1\033[0m" +} # Define those global variables if [ -f ./variables.sh ]; then @@ -25,7 +23,7 @@ if [ -f ./variables.sh ]; then elif [ -f scripts/variables.sh ]; then source scripts/variables.sh else - echo "Cannot find the variables.sh files, pls check" + echo_r "Cannot find the variables.sh files, pls check" exit 1 fi @@ -46,15 +44,30 @@ setOrdererEnvs () { #t="\${ORG${org}_PEER${peer}_URL}" && CORE_PEER_ADDRESS=`eval echo $t` } -# Set global env variables for fabric cli, after seting: +# Set global env variables for fabric cli, after setting: # client is the admin as given org # TLS root cert is configured to given peer's # remote peer address is configured to given peer's +# CORE_PEER_LOCALMSPID=Org1MSP +# CORE_PEER_ADDRESS=peer0.org1.example.com:7051 +# CORE_PEER_MSPCONFIGPATH=/etc/hyperledger/fabric/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp +# CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt # Usage: setEnvs org peer setEnvs () { local org=$1 # 1 or 2 local peer=$2 # 0 or 1 [ -z $org ] && [ -z $peer ] && echo_r "input param invalid" && exit -1 + + # a means a mirror peer + if [ $peer = "a" ]; then + export CORE_PEER_LOCALMSPID=Org1MSP + export CORE_PEER_ADDRESS=peer0.org1.example.com:7051 + export CORE_PEER_MSPCONFIGPATH=/etc/hyperledger/fabric/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp + export CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt + return + fi + + local t="" export CORE_PEER_LOCALMSPID="Org${org}MSP" #CORE_PEER_MSPCONFIGPATH=\$${ORG${org}_ADMIN_MSP} @@ -128,18 +141,16 @@ channelCreate() { [ -z $channel ] && [ -z $tx ] && [ -z $org ] && [ -z $peer ] && echo_r "input param invalid" && exit -1 - echo "=== Create Channel ${channel} by org $org peer $peer === " + echo "=== Create Channel ${channel} by org $org/peer $peer === " setEnvs $org $peer - channelCreateAction "${channel}" "${tx}" - local rc=$? + local rc=1 local counter=0 while [ ${counter} -lt ${MAX_RETRY} -a ${rc} -ne 0 ]; do - echo "Failed to create channel $channel, retry after 3s" - sleep 3 channelCreateAction "${channel}" "${tx}" rc=$? let counter=${counter}+1 #COUNTER=` expr $COUNTER + 1` + [ $rc -ne 0 ] && echo "Failed to create channel $channel, retry after 3s" && sleep 3 done [ $rc -ne 0 ] && cat log.txt verifyResult ${rc} "Channel ${channel} creation failed" @@ -180,10 +191,10 @@ channelJoin () { local peer=$3 [ -z $channel ] && [ -z $org ] && [ -z $peer ] && echo_r "input param invalid" && exit -1 - echo "=== Join org$org/peer$peer into channel ${channel} === " + echo "=== Join org $org/peer $peer into channel ${channel} === " setEnvs $org $peer channelJoinWithRetry ${channel} $peer - echo "=== org$org/peer$peer joined into channel ${channel} === " + echo "=== org $org/peer $peer joined into channel ${channel} === " } getShasum () { @@ -266,7 +277,7 @@ channelSignConfigTx () { local peer=$3 local tx=$4 [ -z $channel ] && [ -z $tx ] && [ -z $org ] && [ -z $peer ] && echo_r "input param invalid" && exit -1 - echo "=== Sign channel config tx $tx for channel $channel by org $org peer $peer === " + echo "=== Sign channel config tx $tx for channel $channel by org $org/peer $peer === " [ -f ${CHANNEL_ARTIFACTS}/${tx} ] || { echo_r "${tx} not exist"; exit 1; } setEnvs $org $peer @@ -275,9 +286,9 @@ channelSignConfigTx () { rc=$? [ $rc -ne 0 ] && cat log.txt if [ $rc -ne 0 ]; then - echo_r "Sign channel config tx for channel $channel by org $org peer $peer failed" + echo_r "Sign channel config tx for channel $channel by org $org/peer $peer failed" else - echo "=== Sign channel config tx channel $channel by org $org peer $peer is successful === " + echo "=== Sign channel config tx channel $channel by org $org/peer $peer is successful === " fi } @@ -324,7 +335,7 @@ chaincodeInstall () { local version=$4 local path=$5 [ -z $org ] && [ -z $peer ] && [ -z $name ] && [ -z $version ] && [ -z $path ] && echo_r "input param invalid" && exit -1 - echo "=== Install Chaincode $name:$version ($path) on org${org} peer$peer === " + echo "=== Install Chaincode $name:$version ($path) on org ${org}/peer $peer === " setEnvs $org $peer peer chaincode install \ -n ${name} \ @@ -333,7 +344,7 @@ chaincodeInstall () { >&log.txt rc=$? [ $rc -ne 0 ] && cat log.txt - verifyResult $rc "Chaincode installation on remote peer$peer has Failed" + verifyResult $rc "Chaincode installation on remote org ${org}/peer$peer has Failed" echo "=== Chaincode is installed on remote peer$peer === " } @@ -348,7 +359,7 @@ chaincodeInstantiate () { local args=$6 [ -z $channel ] && [ -z $org ] && [ -z $peer ] && [ -z $name ] && [ -z $version ] && [ -z $args ] && echo_r "input param invalid" && exit -1 setEnvs $org $peer - echo "=== chaincodeInstantiate for channel ${channel} on org $org peer $peer ====" + echo "=== chaincodeInstantiate for channel ${channel} on org $org/peer $peer ====" # while 'peer chaincode' command can get the orderer endpoint from the peer (if join was successful), # lets supply it directly as we know it using the "-o" option if [ -z "$CORE_PEER_TLS_ENABLED" -o "$CORE_PEER_TLS_ENABLED" = "false" ]; then @@ -374,7 +385,7 @@ chaincodeInstantiate () { fi rc=$? [ $rc -ne 0 ] && cat log.txt - verifyResult $rc "ChaincodeInstantiation on peer$peer in channel ${channel} failed" + verifyResult $rc "ChaincodeInstantiation on org $org/peer$peer in channel ${channel} failed" echo "=== Chaincode Instantiated in channel ${channel} by peer$peer ===" } @@ -423,14 +434,14 @@ chaincodeQuery () { local args=$5 [ -z $channel ] && [ -z $org ] && [ -z $peer ] && [ -z $name ] && [ -z $args ] && echo_r "input param invalid" && exit -1 [ $# -gt 5 ] && local expected_result=$6 - echo "=== Querying on org$org peer$peer in channel ${channel}... === " + echo "=== Querying on org $org/peer $peer in channel ${channel}... === " local rc=1 local starttime=$(date +%s) setEnvs $org $peer # we either get a successful response, or reach TIMEOUT while [ "$(($(date +%s)-starttime))" -lt "$TIMEOUT" -a $rc -ne 0 ]; do - echo "Attempting to Query peer${peer}.org${org} ...$(($(date +%s)-starttime)) secs" + echo "Attempting to Query org ${org}/peer ${peer} ...$(($(date +%s)-starttime)) secs" peer chaincode query \ -C "${channel}" \ -n "${name}" \ @@ -483,7 +494,7 @@ chaincodeUpgrade () { local version=$5 local args=$6 [ -z $channel ] && [ -z $org ] && [ -z $peer ] && [ -z $name ] && [ -z $version ] && [ -z $args ] && echo_r "input param invalid" && exit -1 - echo "=== Upgrade chaincode to version $version on peer$peer in channel ${channel} === " + echo "=== Upgrade chaincode to version $version on org ${org}/peer $peer in channel ${channel} === " setEnvs $org $peer # while 'peer chaincode' command can get the orderer endpoint from the peer (if join was successful), @@ -570,8 +581,7 @@ configtxlatorCompare() { [ $? -eq 0 ] || echo_r "Failed to compute config update" } - # Run cmd inside the config generator container gen_con_exec() { docker exec -it $GEN_CONTAINER "$@" -} +} \ No newline at end of file diff --git a/hyperledger_fabric/v1.0.2/scripts/header.sh b/hyperledger_fabric/v1.0.2/scripts/header.sh deleted file mode 100644 index 7620a87e..00000000 --- a/hyperledger_fabric/v1.0.2/scripts/header.sh +++ /dev/null @@ -1,19 +0,0 @@ -#!/usr/bin/env bash - -## DO NOT MODIFY THE FOLLOWING PART, UNLESS YOU KNOW WHAT IT MEANS ## -echo_r () { - [ $# -ne 1 ] && return 0 - echo -e "\033[31m$1\033[0m" -} -echo_g () { - [ $# -ne 1 ] && return 0 - echo -e "\033[32m$1\033[0m" -} -echo_y () { - [ $# -ne 1 ] && return 0 - echo -e "\033[33m$1\033[0m" -} -echo_b () { - [ $# -ne 1 ] && return 0 - echo -e "\033[34m$1\033[0m" -} \ No newline at end of file diff --git a/hyperledger_fabric/v1.0.2/scripts/setup_env.sh b/hyperledger_fabric/v1.0.2/scripts/setup_env.sh deleted file mode 100644 index d3cbff3a..00000000 --- a/hyperledger_fabric/v1.0.2/scripts/setup_env.sh +++ /dev/null @@ -1,40 +0,0 @@ -#!/usr/bin/env bash - -# Install docker on Ubuntu/Debian system - -# Detecting whether can import the header file to render colorful cli output -if [ -f ./header.sh ]; then - source ./header.sh -elif [ -f scripts/header.sh ]; then - source scripts/header.sh -else - alias echo_r="echo" - alias echo_g="echo" - alias echo_b="echo" -fi - -if [ xroot != x$(whoami) ] -then - echo_r "You must run as root (Hint: sudo su)" - exit -fi - -apt-get update && apt-get install curl -y - -echo_b "Install Docker..." - -wget -qO- https://get.docker.com/ | sh -sudo service docker stop -nohup sudo docker daemon --api-cors-header="*" -H tcp://0.0.0.0:2375 -H unix:///var/run/docker.sock& - -echo_g "Docker Installation Done" - -echo_b "Install Docker-Compose..." - -curl -L https://github.com/docker/compose/releases/download/1.17.0/docker-compose-`uname -s`-`uname -m` > /usr/local/bin/docker-compose -chmod +x /usr/local/bin/docker-compose -docker-compose --version - - -echo_g "Docker-Compose Installation Done" - diff --git a/hyperledger_fabric/v1.0.2/scripts/test_cc_instantiate.sh b/hyperledger_fabric/v1.0.2/scripts/test_cc_instantiate.sh index 3e56b9f8..be951a5e 100644 --- a/hyperledger_fabric/v1.0.2/scripts/test_cc_instantiate.sh +++ b/hyperledger_fabric/v1.0.2/scripts/test_cc_instantiate.sh @@ -8,9 +8,6 @@ elif [ -f scripts/func.sh ]; then fi # Instantiate chaincode in the channel, executed once on any node is enough -CC_NAME=${CC_02_NAME} -CC_INIT_ARGS=${CC_02_INIT_ARGS} - # (once for each channel is enough, we make it concurrent here) echo_b "=== Instantiating chaincode on channel ${APP_CHANNEL}... ===" @@ -19,4 +16,4 @@ chaincodeInstantiate "${APP_CHANNEL}" 2 0 ${CC_NAME} ${CC_INIT_VERSION} ${CC_INI echo_g "=== Instantiate chaincode on channel ${APP_CHANNEL} done ===" -echo +echo \ No newline at end of file diff --git a/hyperledger_fabric/v1.0.2/scripts/variables.sh b/hyperledger_fabric/v1.0.2/scripts/variables.sh index 1a0b47ed..2d74f7c2 100644 --- a/hyperledger_fabric/v1.0.2/scripts/variables.sh +++ b/hyperledger_fabric/v1.0.2/scripts/variables.sh @@ -40,9 +40,6 @@ ORG1_PEER1_URL="peer1.org1.example.com:7051" ORG2_PEER0_URL="peer0.org2.example.com:7051" ORG2_PEER1_URL="peer1.org2.example.com:7051" -CC_INIT_VERSION=1.0 -CC_UPGRADE_VERSION=1.1 - # Chaincode exp02 related CC_02_NAME="exp02" CC_02_PATH="examples/chaincode/go/chaincode_example02" @@ -59,6 +56,16 @@ CC_MAP_UPGRADE_ARGS='{"Args":["upgrade",""]}' CC_MAP_INVOKE_ARGS='{"Args":["invoke","put","key","value"]}' CC_MAP_QUERY_ARGS='{"Args":["get","key"]}' +# unique chaincode params +CC_NAME=${CC_02_NAME} +CC_PATH=${CC_02_PATH} +CC_INIT_ARGS=${CC_02_INIT_ARGS} +CC_INIT_VERSION=1.0 +CC_UPGRADE_ARGS=${CC_02_UPGRADE_ARGS} +CC_UPGRADE_VERSION=1.1 +CC_INVOKE_ARGS=${CC_02_INVOKE_ARGS} +CC_QUERY_ARGS=${CC_02_QUERY_ARGS} + # TLS config CORE_PEER_TLS_ENABLED="true" @@ -98,4 +105,4 @@ UPDATED_CFG_PB=updated_config.pb CFG_DELTA_JSON=config_delta.json CFG_DELTA_PB=config_delta.pb CFG_DELTA_ENV_JSON=config_delta_env.json -CFG_DELTA_ENV_PB=config_delta_env.pb +CFG_DELTA_ENV_PB=config_delta_env.pb \ No newline at end of file diff --git a/hyperledger_fabric/v1.0.2/solo/channel-artifacts/businesschannel_0.block b/hyperledger_fabric/v1.0.2/solo/channel-artifacts/businesschannel_0.block index bc82ded4b737f1e1039a403be561c6831b838cfd..1dec26a798161e3e921482fd828afd0b86665b4b 100644 GIT binary patch delta 468 zcmV;_0W1EcU8P++3L+XHDS&WtleSZtfXz@AZ4NC}NKCun?*0g_|Ev;tBJU2n67*aO z@mva~Tne`a3L6Lk8U_f5(t*>lI}`&Wwk!^L@!a{HZ+(QCez3;MJ3tJ`eE3b>66sY6 zqD2S+5}ie}MHz7llh-3=leHrulRYG$vvLE|6_al&B$EXtFq2s&N|W6rD3iw}NRt^E zBoq?C5DNAW3dsfv8wdg#1_+1Jfzz`iCME+K>O0v4SovU~<+L~=PQrq0`Z*8nvGaGJ z5~s6cDKP;7^|O^K6$5`|Nkz+p=$Pk8&I*fp9$G!}+RKm0h)paKM=(VKApnu5a>fQy z<^0@%RCZK>+CEsG5#RA=`;zTp@4T)PP88K%`5=JmY0w6kzEA22qPyYU_^fUjTLC*hT1}GNN1vh*wKQhM>j%4BjAW8Rj z@^y^;)W)}pe-l`tMgbO8A8`^DprY@^h>Yd^1rkOuL;@ffnGKE~(%Yi)4 zHR{yfp!MUg8bz%k9tA4`AYY^+aY0LSt{Uy4v$rcWo0DODAymdRhvvQbOtpzP9~uY> K015yK015zGn8siL delta 464 zcmV;>0WbcgU8P++3L+XHHj0u;+NPOJ>^*V7>>!JYXu@Ad}(^XOn6Upp$zgD3bvtFq3d9Ba<*COOuukY!ni} z5DN7V3dsfv8wdg#1_;~!|I)J~CME+KJ&Xp0Dv85ikKM|)p<%^=KxU2@fT%kg5~j0b zDKP;7^s|*J6$5{8-mB~Gx1>=9k8l)I@CMleJIASnm+J9USkq-Oo} zjGZ$!^f|XKg8L`7C-^5Erkyv>`V;~_%ZoS?faw-el9Qp z50NnvMleJIAW-b;MjFrZ?PW7~*CZfIdM7C4%;^o3r9*sNLkY|FLD&KyR?C*JJxTbT zc8xK78mgFRYidN1XNRenR!Fwp>-3f05=Ssa0wDmz-X8$T^Fh-@?C`YthxK6AaJ-d5 znuN<8sU<5A8;qp_AUv}zg&L+TtR@8m6L&vNQvd>M_=~|kdd7HKVFyDP>uw4_UT_@UssEN5{q35h+PW2Tne`a3L6Lk8U_f8 z(t*>HfhH5NasdMvsZ}uH25#ngBsa8g#n6eGTouaN8o4V!vx@_K3X>=fW|IaEA(Q$J zERzonfhHyc8nlw?)TfpmP*cE!;{iH=n{gn!6^*^0ra!aDis5Nq64LB zv6ydiK$D@o?P9Y_K`H17@Q{_>5=JmY0w7fuptf;fr}k_KAxK~6xi;%M{3V{sk);+nbCK%{S729TG+`L;@fJoEf{A;j7o@5A|Y>I&n3x4eltoe$h^H zsJ?&x_|!`RAPrv~HI0aPp_+MO#r?+5O$eLzl3vx@_K3X^UQAd?0TXOp@P zY?F=-EVCvLUJ8>bBqWmz8V-|NBqo#F84Z)R88NdO8V?GSwizV^GEGxZlOQB*lfNVj zlLZeUlSw8dlj|fT0VQu$(Bf~fnk0RFqWe~VMo`z33`dUv0w4xH)4Mr#`T9WH(`5&%44?VQV<@hM z?T)AV!l3~9d72VNFhl|%bKo~rC^XAWV^zF!LYF?g%UvwhcmUIisCrnT|tmfHX^XkZV zuV#BW_<(!@AawCt)r1vr&o)015yn`brr9 diff --git a/hyperledger_fabric/v1.0.2/solo/channel-artifacts/businesschannel_2.block b/hyperledger_fabric/v1.0.2/solo/channel-artifacts/businesschannel_2.block index a74bf8cd14841394dc9941ecd1731c2da2acfde6..e1a2a03a0577e9c6d8974e22162fc284ce238f7e 100644 GIT binary patch delta 792 zcmV+z1LyqeYwK%Y3PuP55+H2v2!*i?=i0{5l7Ob4c9r@u!%<*{M9=r!IlAx&_!Al+ z7RY>{e2V2dRwKauw1%lM<#iK2BI}3L5eg%bye%;b62x5!!CeaWTne`a3L6Lk8U_fB z(t*>lUlaoxC(uz8k!|5YDb4rXRQ#faZh@S#wY^HT61lUD19}RRYz`um1`cJD`VK6U zgC-=CNhKtcUnV4zCJ!aEDjGQolgA`7leQTqle#1glj#{Hle#1flNuTj0Wp&+8Yq)% z85omm8Wyu^58(-uwi#rT#v~<^s2L8E`6LXJwhkkch9)7C)(#{BDh89fB`=d0CL@#R zB`}kAB}$Xl4keR>CL@zcB_tFQoe&Dq4+_Z!3L6Ll8U_fB(t*>nyCxOlqqk4zu|wB?N!^9A2XSB8&NddaIn!nwRDcX5ZqVWKCESMleJI zAV}eaJ_qyVcRvafaEKELBSY+kvo@4)7b4CPN4r1V1p**cc0x*{85Y|9Lnu(C0=NKU zfpuu!NX3TW?tF)KSzU1wM=(VKApoa8(leL zEjQ8vAQ_o(y;~9g&ro!erG~Z6`9Pgy1jwa4Ir*#GM!soO#1cj@L;@fV{1H%=C7q#I zRL3`pT`6Mj`;QB0bydUtZ3h*sJ3l4@ASsdBQfk^3bdSs++$e&%UN0&m;$R&kx=Y-> zlEQ~M&>Gnd3gre8;sy$r1`4wqFa82xf}%TqeDuTaD%9;J>Aq_#JEumoov=w75=JmY z0w6y=pw)yYaUXYp9|K!6#eEQ^T0hTJ;hwv# WuWoN@R_LZ%Tono84SG@v015yiL`$mx delta 791 zcmV+y1L*wgYwBxX3PuP55+K8?s#WOPvPr|AP?!3)AtQrI27qc6OZIl`y zsV$`*;@4`(X)+@HLlrDojrdITF62n~zz+DRUTne`a3L6Lk8U_g8 z{{PakUlaoxVG7_ZvS8g1QOQ5T0wn=6nnQe`&Q$Y}61cOC19}RRDh_0m1`Z>WB_$`5 zh9)7CNhKtcjt(r7CJ!YEF-=oY63`V00kdlw_X(4bDj<_n8W@wtBr}t?877muBn^}4 z86}gtBn*=p8W6Kf4><~xw;5xT#v~<^s2L8E`6LXJDJ4XcgC-;aDwF9YQj>KhDU-q_ zFO!}nBa;CoCzDJiA(LMwBoq>y5DL)`3dsfv8wdg#1_dVdk{xP-`L z@&X`H%+GwznZKxQ$!4OFM-XB5Ix4SnkZ)Lox^14%an{rlMleJIAQ~C}&hLk|E{|!* z$pE66E+TAsy=aEsksi(ht0%(cu>v3$_%X_0IT}l2>2S^JF8gtWz5rRy=QxtF!;;U1 zD%k)U*$oQi1`^^13YP{7`m-G`{Q_V{#7;UR+`rf+warY{Z^)vc7gp4JrW3gmMleJI zAOd|WqOWi6Q$Jzv>%6o;!)mnjk4t2ApskjMV2ugV90DMB2#fD$E=+4*(#8z&l_8}D z2!vM$>W#KIBl1z5`zN)tdNK?HWlaa6`3wFDS+N^USi_O|1SSExrJN&beG*47MFJrJ zvm%#7Rq5(4EQ+%_)1s^xSdtDJjuOO|dnuLNG?-{R0w8hvM##g#Q=h9~jgMsi(7UME VSd?VKW%6p8py5%9+7t=^3IGcnQ;`4w diff --git a/hyperledger_fabric/v1.0.2/solo/channel-artifacts/businesschannel_3.block b/hyperledger_fabric/v1.0.2/solo/channel-artifacts/businesschannel_3.block index 2651480ac27c1345b6ce40d031b2062fda6f0cc4..f5428a8e3526ad54060648cda67d102ec8325579 100644 GIT binary patch delta 706 zcmaE@@j|1X%Z-CsNa3ARvGe?jfMW}Oc`#PTEd8*$+;HxC1MxHYe>4idABpFeQkZmr z(VE{i>{Shm@OPiOfWo-)8!EeI2%hkLW!5zPx4>JWLsDG(rMSLGa?NJv%H?2|;^CNl zsqr$az>E2<9ZX96Nu|Y^d8x(4$r*`xd8s*C4rZo?X-1Y-mgeTB=BCMJ76ysN7A9$_ z1{UUtriMx829}m7Mv2BImZ|1OMwW)jmT5^QMy8ggi3VvY7G`NCsb(8@$}ubKUhu`} zA-D2{<=ZABE1Cs2J4p^}XR2+XdU2Ov+WxA9UF)+qL-)y8sj8_04ZN1)1yJ z3|yELWCUcFFM2(1b48=Y-Ys3MS_{urX1|njdHSgFbM~?Bl`KpO>PcEKuI{ zZ~p6+9sQ+EOL97jclO_$zs}MBtd9`boPyULA2)xK*K?_|SNPYx_~GvPQ5))bGIhRW zsEF&HznjCPP=9%Lm8y%!M@$+A234y0Lj8FDG;T zv^m!juDx3OYS{)WZ*lq*Z<$iUb$32HXqUM%_gnU>-h8{Wd)-zp z?A;hq3UP#Hf=ONIq#bs$uE&r0SVwwSm-$*J1cWZ(y%jRKOONLelR|0!A8ed?xYE){9foUT*95g#lXb?0ImWnhyVZp delta 687 zcmaE%@miyv%Z-CsNFln$?^DUP`a{#CH$`1(OOfMI+;Df|j;(X+D_`%mn!aP9l){Tv zGtQY)58CCNlA9(oVcld-+fK$Ri_Np6ck~KIys*y{IwHk&P>SoTB-dadJjtUS4XBmP2Y%Vp3A7Rg#H;fqAlli9w>Vk%fhM zqM5n5fk~QWibYzgxp_*mkx{B?s%4^KqPcO3Ns^JVsfj_7MQU=gg^|g|opQ_y2j?GF z(sus-MC829dXQwGwOZ(k5Z6T^u9cJDa;j~XWqHFSg;V9C$;#}L)cd)) zHnMOjte(E>);litC(JjJ45Q8S#2j@k#UXKm)cqblZy!=DPuB5x#hyL$O zDrNx@u1<4Ve^i64vCH(ht;6Oo-t;`L`?%unzQ22{zx~ur(=gP6tJtQz!C-Oq%j%^}S8ox9|vtc>bz_dTgIv>Z*S;uD`#z z_V<(nv))`Vl@N1okMDTLsUmC=9yr09Nx|dP%Kh3$Qfw|R3y#_Gd$H47ht!3ZnM+eP QrL%vZ_`Rc&i-C&)05mNnasU7T diff --git a/hyperledger_fabric/v1.0.2/solo/channel-artifacts/businesschannel_4.block b/hyperledger_fabric/v1.0.2/solo/channel-artifacts/businesschannel_4.block index 383c9b15db5d718a26808812571c5156891bb1c5..373655dd00de755f4d77201ca9a234792d790f1e 100644 GIT binary patch delta 706 zcmaE@@lvCn%Z-CYNTDk@jK5yLPxpq8wMoFypr$7Wdd!liTJc!U-XYc0;l5K!;p~PQ zqjL{}x7WI_b?j)qUU5+-!prRzzw)v9_qPakC(aW(B*nE~itCFc*DQ9f91dnFZjN=A z8ZWa7yq^6=ONl?Jv^X;_wYWGrBQY;8HAl+$hB`(K0E~I4#98G1)B9 z(jqw}HQB`6AlWF%B-to2EyW@w#mvyiBH7%~G%?Y_GBL%{#LV0%dE-twW`)OshO8^f zSDiX-Vwi99=}^G#bUTv=d!>#ET@m8CD8#jL@>@=`&AKdin51y3Tr^pkeUf@VH`hiM zE(NignwGDOZ>FnWxAtX}?t1<2X`xrqrsH=jONp#^tD4(>^TWhz+N(1|QV+O!L?62o_R;gC6q7>WoBi>zaiz8ID|zM# z9A00cV81l%j_C~#Ug>}T?)88CBIIV^!lY0%Q*h4Y$=t7RUU9fqdhA)*f`vI9x&0m< zi_@% delta 708 zcmaE<@miyv%Z-CYNMSnPzMJaz)(R`hoW84O^<(BKosdb!2DM42vVJP?KW;iJrSQe& zb?u_&_{z(I2lbcyzcJg~bZhQ0EuAx4Ik>v>zPz|4bXbb(fE3pkNv_%KT)7;~Qal`g z|NXzjDlnmC^(JN|{-o04%)Hd%;^d6Pyu8#LEeBH*lQd&Vn!)dlzhvg2F6i$^3Co8c}Qt#vD z+Q`DC&@35pGTkDzQ?5| zkk)iM#m$jbr}ShxlS0DYrkLDYn~(pPZdH-gB_llb%7y6c$nrCblvePXZC$(SkJPQr z{k)va_58p6QeQk?H1(216>nDHiL0G=?A}PTZV7?fG_C&qsSC0bS3dN4^~iSii7)Tg zJepjeC=huoR!UtxC_s@(fkRCpEOb^ucKMGv2U?Zp?@Ii@ey+@n^I$N){59SZ=_0OI zY+OtnOhS*@xTdpl{bJ?f@-IqBElMr&4Gs``y?GVyJEm0Abd6spKR6a{f5~fkRyXYC zA};+zuIcBaVUCb~sd{GUy4S-si1o%gvUquKoH-&Q1ZF>o;e01$ccVX?6x|}cj*I0PIJW=MkQ(Se4q4nqq8XXp)v{VQFS& zX<}hvVr-sdk(8EbmYif}l5CiiW}IxAl$K(dXk==cm~5VCX_}gvYPoTzJhQC29{xB0m1S=T#bx(Q~Y@S{|H|)|bn^r(-{m+2 z#hcFjEpS<;j>pjP%BINGLJ)&C#dxL6^;*35*VNtm;lA?zL5ucv6tRT!eob6g$gl4m z$fTfNtrSpe>pn+WHRgrfZjosZU2iPVJ$>M`@D$zvkE2~oH>GZFF6HKA&iuw{vB>?> zxtDKk+g_+Qw=i+fcxSpe6ivPq(U1RozKk H3|tHVPPrEm delta 682 zcmX@Fa!#e5%Z-CoNMYrom|P>a1-hw+^P<0R_xI4Zo%S+ACaPs-(}}& zVB}KpT^jJWn7Mn2QWocfOr5#6mYz{eeo!FQ_DMTbdXC9Ujmd@V@r>6uUt||#u6HwV zVN&qfyk+`g%hN4u?k>7MwJ~$g=EStGmu~);>QS}qyLs4BE+&PrTlrt-lrz4)#;^MM z-=sA)w>~gs9_|0kI^%9_r<3{J%|h-5u1tyy(^pNBUKr%;HQ&H&9s30}{*$MseyvYg z_DlGND&wyYE&WUi*8K_REjAq%;%Thsd46h=@X3F2TYj&Vxgq@de~Ed$*=r%G8=FhH zIhoT%icdRSPG44fA*sL8{;#u^8Cw>|nzhUS2!UN38}!pK@?k!2e)1RRDYq{zl@*!H z#qwlUZU3GqhrFc+IGGeIsuIr0KAXMGGH~Kco9CtTpPGO3Tl2e!l}j`1(oK~WFlKDdbB^uw5!xGFL8^x%njb!KtO8zfYE(G(EFMu%yWK Lvwbrc0~Z4TCoLfR diff --git a/hyperledger_fabric/v1.0.2/solo/channel-artifacts/businesschannel_6.block b/hyperledger_fabric/v1.0.2/solo/channel-artifacts/businesschannel_6.block index a88d998395d6ea4106ac6fdba0303c11fc4f9fda..3ad8ed07675e0228e4e4bab20137183ebda063a5 100644 GIT binary patch delta 679 zcmX@Fa!#e5%Z-CgNI|4B`ZBxF{oOhIe;C5Ho-@u0{r-$!+48LJ%f}m;TmIEZDa3Kl zjI(oViqDWZJYR4Pm-sx};_MHbGh!Ta&P@=p*r6!2LX2yv7}rfvt~u;nc^u4AJRI*Y zHC|>FIB>52ERzy{QfYB!UTSf1azg>j07shMSBs*y!nqET|HiLrrsO0q$sWs-SnYKpO?nNeb5V$#N)^31YnHUHux z{{^@N$Iax+{eQQ>QhZL?P|O7%WA`xjf=FO7Edl>k7v9-`3JMw<{#{@nd;pPT$mJe zmn`2=dy{o0?~+}c*2M1#4>xJA6T$vOZR&1MdlPz-P&Z&9ZR+oG|Jp1#agSXCHm-h6X z;~tc2Iqw0Jg6L8%-Np5PE6r{eb}RV(6qfgls`|pTYm%M65YyG9*4yqK?J zw7HU-l{rPI;N`WWuLX-wyxp{;eCy*&_V4-f=PyZ+fLInUvSv!=-ZwcnZ=aH~sT42D z`F{R@M7^7%EZXUo-;S9X)y0P`Ge2;!R{|5GudWaB$x@_)?Hu6 I#lXb?0Ld#KjsO4v delta 682 zcmX@7a$cpL%Z-CgNFnF@>ZS6hv?5Mlxwu)j?4Wv=K3}h7%ZL5O0{@)%Y)J@~QsDGF z?=6*>a696l%4t)@$&G%iSW{;=J&M|~^*f(PMt-f(3NfywVqCXGx#qBQ<#8}e@o?<= z|Nj!J!1X8ddKi`XlS+#-^HPh8lQR*w-txr_d`sWHqLsx!ZC%5gY8)kP)+eo3YyD_?CB*UeH#qc?S)1`&_kW{m`xJsZ5wE0I|sLh~viZvZ4;DyWRc&TzOued`%-|r39mN zoler_qux>n zJ>Fc+&CHyd$QbGSTK9aY4Oq5BgO5_U;zVX diff --git a/hyperledger_fabric/v1.0.2/solo/channel-artifacts/businesschannel_config.block b/hyperledger_fabric/v1.0.2/solo/channel-artifacts/businesschannel_config.block index a74bf8cd14841394dc9941ecd1731c2da2acfde6..e1a2a03a0577e9c6d8974e22162fc284ce238f7e 100644 GIT binary patch delta 792 zcmV+z1LyqeYwK%Y3PuP55+H2v2!*i?=i0{5l7Ob4c9r@u!%<*{M9=r!IlAx&_!Al+ z7RY>{e2V2dRwKauw1%lM<#iK2BI}3L5eg%bye%;b62x5!!CeaWTne`a3L6Lk8U_fB z(t*>lUlaoxC(uz8k!|5YDb4rXRQ#faZh@S#wY^HT61lUD19}RRYz`um1`cJD`VK6U zgC-=CNhKtcUnV4zCJ!aEDjGQolgA`7leQTqle#1glj#{Hle#1flNuTj0Wp&+8Yq)% z85omm8Wyu^58(-uwi#rT#v~<^s2L8E`6LXJwhkkch9)7C)(#{BDh89fB`=d0CL@#R zB`}kAB}$Xl4keR>CL@zcB_tFQoe&Dq4+_Z!3L6Ll8U_fB(t*>nyCxOlqqk4zu|wB?N!^9A2XSB8&NddaIn!nwRDcX5ZqVWKCESMleJI zAV}eaJ_qyVcRvafaEKELBSY+kvo@4)7b4CPN4r1V1p**cc0x*{85Y|9Lnu(C0=NKU zfpuu!NX3TW?tF)KSzU1wM=(VKApoa8(leL zEjQ8vAQ_o(y;~9g&ro!erG~Z6`9Pgy1jwa4Ir*#GM!soO#1cj@L;@fV{1H%=C7q#I zRL3`pT`6Mj`;QB0bydUtZ3h*sJ3l4@ASsdBQfk^3bdSs++$e&%UN0&m;$R&kx=Y-> zlEQ~M&>Gnd3gre8;sy$r1`4wqFa82xf}%TqeDuTaD%9;J>Aq_#JEumoov=w75=JmY z0w6y=pw)yYaUXYp9|K!6#eEQ^T0hTJ;hwv# WuWoN@R_LZ%Tono84SG@v015yiL`$mx delta 791 zcmV+y1L*wgYwBxX3PuP55+K8?s#WOPvPr|AP?!3)AtQrI27qc6OZIl`y zsV$`*;@4`(X)+@HLlrDojrdITF62n~zz+DRUTne`a3L6Lk8U_g8 z{{PakUlaoxVG7_ZvS8g1QOQ5T0wn=6nnQe`&Q$Y}61cOC19}RRDh_0m1`Z>WB_$`5 zh9)7CNhKtcjt(r7CJ!YEF-=oY63`V00kdlw_X(4bDj<_n8W@wtBr}t?877muBn^}4 z86}gtBn*=p8W6Kf4><~xw;5xT#v~<^s2L8E`6LXJDJ4XcgC-;aDwF9YQj>KhDU-q_ zFO!}nBa;CoCzDJiA(LMwBoq>y5DL)`3dsfv8wdg#1_dVdk{xP-`L z@&X`H%+GwznZKxQ$!4OFM-XB5Ix4SnkZ)Lox^14%an{rlMleJIAQ~C}&hLk|E{|!* z$pE66E+TAsy=aEsksi(ht0%(cu>v3$_%X_0IT}l2>2S^JF8gtWz5rRy=QxtF!;;U1 zD%k)U*$oQi1`^^13YP{7`m-G`{Q_V{#7;UR+`rf+warY{Z^)vc7gp4JrW3gmMleJI zAOd|WqOWi6Q$Jzv>%6o;!)mnjk4t2ApskjMV2ugV90DMB2#fD$E=+4*(#8z&l_8}D z2!vM$>W#KIBl1z5`zN)tdNK?HWlaa6`3wFDS+N^USi_O|1SSExrJN&beG*47MFJrJ zvm%#7Rq5(4EQ+%_)1s^xSdtDJjuOO|dnuLNG?-{R0w8hvM##g#Q=h9~jgMsi(7UME VSd?VKW%6p8py5%9+7t=^3IGcnQ;`4w diff --git a/hyperledger_fabric/v1.0.2/solo/channel-artifacts/orderer.genesis.updated.block b/hyperledger_fabric/v1.0.2/solo/channel-artifacts/orderer.genesis.updated.block index 66b8251280450ded91cc04e0296b4b6da093e04c..aeef7c295addd46d52baf58e7be5ff8760eba813 100644 GIT binary patch delta 50 zcmZp4Z*<=k*3p delta 45 zcmV+|0Mh?~M}bGMk|2}EAZnA5AT^UQA(N8~B2AOQAxHr#lZhgFlVKt+ljR{vlT0Hu DmE#c9 diff --git a/hyperledger_fabric/v1.0.2/solo/channel-artifacts/testchainid_1.block b/hyperledger_fabric/v1.0.2/solo/channel-artifacts/testchainid_1.block index b5e5605d3e5dbf5a2ca6e10c7a1174ba03251d66..246b3b32c07ad94d76766853d10bfa731832f210 100644 GIT binary patch delta 805 zcmbPJG`DDihPl)Vh6mHlbEe(7ddj<)`rjOJ1x{G^fQ_3TQb+G zWUkF@T;d!oQfwUUml`i`j2B?marwF-yj@|{5*3zJA3xi#u4eZ3Se&`;#xtRhFEEW)h3O^2`Yl~=5I;6ZRMpecIN-`g*@G-_^Xz_ zT%kBe$j!ioNx`aH`>lb4|G$50z8L?X?|ANi5}StDC06r#9ebnWLVYQZm=rv}mwhVj z`FrKq_O5#2h=p#9VxjVdLZS;6y+7K~^Ykw(#2|~^7w7Uud+w<+YK^&hy3yvm>8mUE z7JPlYUdnZ?q8zI>lS2Fwr9wyV;&oDQ7j53IZ8CduVvSIhPIle)&s^^8sEF&o#$JVxe>(CLe8HpfZIJIxU+Nc?s8$gSls zA4=SKtqryCkl*85vK!<7MzvX_EV^IuOs2RtU3gEm@%kSE8-5+VeTPYbb@Mwzp~W|r zDOs(VnSV6z@25MqjEkn7iVw2MJ?eX1j1|eU)W63}4LLR&%{U$MXx~Svnev*B32)6k zPbEVwyZZW^L&TYcITI7kd@SWM&WPC++EKY7(miHb?dfLatT-lxuw`7PZb@t#gD+;c ee!Z`kVV@)|qGkGY*PFO0%qN{!MsYE4F#rI${9%#+ delta 794 zcmV+#1Lgdka-4FIC^r$&vF&1u(&0iX`+kk4A*>O>R60ww%DaUmR;eV+!_T z3aVoYvjz$m2m~4i2;2Vu(y?C<11y}!(#?gcAC(|%Bh1;w_;lTKsa1Z5zU30}TneRJ z3bzId8wdd!1_;~!|I)LY0~7-zH4rrV+LGJvepISaj+3uSXtiLsTH~?766jS5qD2S+ z5}ie}Y7)~Gv(g4}3X`f4Ad^B7XOqeipp)AuD3f6*Fq6-mB~Gx1>=9k8l)I@CMleJIASnm+J9USkq-Oo}jGZ$! z^f|XKg8L`7C-^5Erkyv>`V;~_%ZoS?faw-el9Qp50Nnv zMleJIAW-b;MjFrZ?PW7~*CZfIdM7C4%;^o3r9*#QLkY|FLD&KyR?C*JJxTbTc8xK7 z8mgFRYidN1XNRenR!Fwp>-3f05=Ssa0wDmz-X8$T^Fh-@?C`YthxK6AaJ-d5nuN<8 zsU<5A8;qp_AUv}zg&L+TtR@8m6L&vNQvd>M_=~|kdd7HKVFyiU73`hyE*?#7QkWDRkf2?8KZe%GsODO7hhLf)UEUJAhNur z1z58zpF8I~iE?Nf)eW<-H3$P}Szdto!RhEn71@ERoMilIK(;1jbN}=i5=Ssa0wDmu zQ~l@MSlyL8FDnup2h$;^<8yHM=anx!hx1Y>lXorxATx2~o>n7$414|}d}x+S#L*gO zx9amE@P~-KsxkybLJH*u65<95v2FnaWP}NNmAfNu1wSUErg%}ucW%0hvnU14D-uR9 zL;@fP<30fdRYgzccVyV5AGeyoe#&y4Aj=9zH8^}-Qr7nZAXLN5YGy4Ra84fexJQI@ Y@Kf_$y(rE#-k+Q5}W0Q3M}PXGV_ diff --git a/hyperledger_fabric/v1.0.2/solo/logs/dev_all.log b/hyperledger_fabric/v1.0.2/solo/logs/dev_all.log index e6b2a8a2..bde65a84 100644 --- a/hyperledger_fabric/v1.0.2/solo/logs/dev_all.log +++ b/hyperledger_fabric/v1.0.2/solo/logs/dev_all.log @@ -1,16176 +1,16379 @@ -Attaching to peer1.org2.example.com, peer0.org2.example.com, peer1.org1.example.com, orderer.example.com, peer0.org1.example.com, fabric-cli -peer0.org2.example.com | [001 01-18 01:58:48.28 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: -peer0.org2.example.com | Version: 1.0.2 -peer0.org2.example.com | Go version: go1.9 -peer0.org2.example.com | OS/Arch: linux/amd64 -peer0.org2.example.com | Chaincode: -peer0.org2.example.com | Base Image Version: 0.3.2 -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 | -peer0.org2.example.com | [002 01-18 01:58:48.28 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO Initializing ledger mgmt -peer0.org2.example.com | [003 01-18 01:58:48.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO Initializing ledger provider -peer0.org2.example.com | [004 01-18 01:58:48.28 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/ledgerProvider/] -peer0.org2.example.com | [005 01-18 01:58:48.28 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] does not exist -peer0.org2.example.com | [006 01-18 01:58:48.28 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] exists -peer0.org2.example.com | [007 01-18 01:58:48.29 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/index/] -peer0.org2.example.com | [008 01-18 01:58:48.29 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/index/] does not exist -peer0.org2.example.com | [009 01-18 01:58:48.29 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/index/] exists -peer0.org2.example.com | [00a 01-18 01:58:48.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> DEBU Constructing leveldb VersionedDBProvider -peer0.org2.example.com | [00b 01-18 01:58:48.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider -> DEBU constructing VersionedDBProvider dbPath=/var/hyperledger/production/ledgersData/stateLeveldb -peer0.org2.example.com | [00c 01-18 01:58:48.30 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/stateLeveldb/] -peer0.org2.example.com | [00d 01-18 01:58:48.30 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] does not exist -peer0.org2.example.com | [00e 01-18 01:58:48.30 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] exists -peer0.org2.example.com | [00f 01-18 01:58:48.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider -> DEBU constructing HistoryDBProvider dbPath=/var/hyperledger/production/ledgersData/historyLeveldb -peer0.org2.example.com | [010 01-18 01:58:48.31 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/historyLeveldb/] -peer0.org2.example.com | [011 01-18 01:58:48.31 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] does not exist -peer0.org2.example.com | [012 01-18 01:58:48.31 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] exists -peer0.org2.example.com | [013 01-18 01:58:48.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO ledger provider Initialized -peer0.org2.example.com | [014 01-18 01:58:48.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.recoverUnderConstructionLedger -> DEBU Recovering under construction ledger -peer0.org2.example.com | [015 01-18 01:58:48.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.recoverUnderConstructionLedger -> DEBU No under construction ledger found. Quitting recovery -peer0.org2.example.com | [016 01-18 01:58:48.32 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO ledger mgmt initialized -peer0.org2.example.com | [017 01-18 01:58:48.33 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with TLS enabled -peer0.org2.example.com | [018 01-18 01:58:48.33 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering BLOCK -peer0.org2.example.com | [019 01-18 01:58:48.33 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering CHAINCODE -peer0.org2.example.com | [01a 01-18 01:58:48.33 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REJECTION -peer0.org2.example.com | [01b 01-18 01:58:48.33 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REGISTER -peer0.org2.example.com | [01c 01-18 01:58:48.33 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started -peer0.org2.example.com | [01d 01-18 01:58:48.34 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport -> DEBU Chaincode startup timeout value set to 5m0s -peer0.org2.example.com | [01e 01-18 01:58:48.34 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> INFO Chaincode support using peerAddress: peer0.org2.example.com:7052 -peer0.org2.example.com | [01f 01-18 01:58:48.35 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Turn off keepalive(value 0) -peer0.org2.example.com | [020 01-18 01:58:48.35 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Setting execute timeout value to 30s -peer0.org2.example.com | [021 01-18 01:58:48.35 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_LEVEL set to level info -peer0.org2.example.com | [022 01-18 01:58:48.35 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_SHIM set to level warning -peer0.org2.example.com | [023 01-18 01:58:48.35 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered -peer0.org2.example.com | [024 01-18 01:58:48.35 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered -peer0.org2.example.com | [025 01-18 01:58:48.35 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode escc(github.com/hyperledger/fabric/core/scc/escc) registered -peer0.org2.example.com | [026 01-18 01:58:48.35 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode vscc(github.com/hyperledger/fabric/core/scc/vscc) registered -peer0.org2.example.com | [027 01-18 01:58:48.35 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/chaincode/qscc) registered -peer0.org2.example.com | [028 01-18 01:58:48.35 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer -peer0.org2.example.com | [029 01-18 01:58:48.35 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.NewEndorserServer.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [02a 01-18 01:58:48.35 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [02b 01-18 01:58:48.35 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org2.example.com | [02c 01-18 01:58:48.35 UTC] [github.com/hyperledger/fabric/gossip/service] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1 -> INFO Initialize gossip with endpoint peer0.org2.example.com:7051 and bootstrap set [peer0.org2.example.com:7051] -peer0.org2.example.com | [02d 01-18 01:58:48.35 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [02e 01-18 01:58:48.35 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity -peer0.org2.example.com | [02f 01-18 01:58:48.35 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org2.example.com | MIICGjCCAcCgAwIBAgIRAPwSzyg1PPrCeVhRqDo4IRcwCgYIKoZIzj0EAwIwczEL -peer0.org2.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org2.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org2.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -peer0.org2.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org2.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMi5leGFtcGxlLmNvbTBZ -peer0.org2.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABHIO8CckN5HgY1i/7g0IJdzk172E2x4D -peer0.org2.example.com | lEymsPxBTC6SMx2H76gyAZbaUHLzDOc03WXuxNm/5CEb0PCug4gLmYqjTTBLMA4G -peer0.org2.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -peer0.org2.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQDuMCD1 -peer0.org2.example.com | cBz5946zQSaxCXuanblvvPmDo4EJj3fN1TTl4wIgK6OJNoi5UYFhv/CWtHvr86JU -peer0.org2.example.com | Cp7fopYLAR0CUyw+Xyk= -peer0.org2.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [030 01-18 01:58:48.35 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [031 01-18 01:58:48.35 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org2MSP validating identity -peer0.org2.example.com | [032 01-18 01:58:48.36 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [033 01-18 01:58:48.36 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity -> INFO Obtaining identity -peer0.org2.example.com | [034 01-18 01:58:48.36 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org2.example.com | MIICGjCCAcCgAwIBAgIRAPwSzyg1PPrCeVhRqDo4IRcwCgYIKoZIzj0EAwIwczEL -peer0.org2.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org2.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org2.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -peer0.org2.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org2.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMi5leGFtcGxlLmNvbTBZ -peer0.org2.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABHIO8CckN5HgY1i/7g0IJdzk172E2x4D -peer0.org2.example.com | lEymsPxBTC6SMx2H76gyAZbaUHLzDOc03WXuxNm/5CEb0PCug4gLmYqjTTBLMA4G -peer0.org2.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -peer0.org2.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQDuMCD1 -peer0.org2.example.com | cBz5946zQSaxCXuanblvvPmDo4EJj3fN1TTl4wIgK6OJNoi5UYFhv/CWtHvr86JU -peer0.org2.example.com | Cp7fopYLAR0CUyw+Xyk= -peer0.org2.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [035 01-18 01:58:48.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewDiscoveryService -> INFO Started {peer0.org2.example.com:7051 [] [18 47 95 192 156 61 173 63 80 232 96 64 91 49 101 242 206 87 32 24 89 4 87 160 47 124 250 124 112 185 123 13] peer0.org2.example.com:7051} incTime is 1516240728369088189 -peer0.org2.example.com | [036 01-18 01:58:48.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService -> INFO Creating gossip service with self membership of {peer0.org2.example.com:7051 [] [18 47 95 192 156 61 173 63 80 232 96 64 91 49 101 242 206 87 32 24 89 4 87 160 47 124 250 124 112 185 123 13] peer0.org2.example.com:7051} -peer0.org2.example.com | [037 01-18 01:58:48.37 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [038 01-18 01:58:48.37 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity -peer0.org2.example.com | [039 01-18 01:58:48.37 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org2.example.com | MIICGjCCAcCgAwIBAgIRAPwSzyg1PPrCeVhRqDo4IRcwCgYIKoZIzj0EAwIwczEL -peer0.org2.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org2.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org2.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -peer0.org2.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org2.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMi5leGFtcGxlLmNvbTBZ -peer0.org2.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABHIO8CckN5HgY1i/7g0IJdzk172E2x4D -peer0.org2.example.com | lEymsPxBTC6SMx2H76gyAZbaUHLzDOc03WXuxNm/5CEb0PCug4gLmYqjTTBLMA4G -peer0.org2.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -peer0.org2.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQDuMCD1 -peer0.org2.example.com | cBz5946zQSaxCXuanblvvPmDo4EJj3fN1TTl4wIgK6OJNoi5UYFhv/CWtHvr86JU -peer0.org2.example.com | Cp7fopYLAR0CUyw+Xyk= -peer0.org2.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [03a 01-18 01:58:48.37 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [03b 01-18 01:58:48.37 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org2MSP validating identity -peer0.org2.example.com | [03c 01-18 01:58:48.37 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [03d 01-18 01:58:48.37 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org2.example.com | [03e 01-18 01:58:48.37 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: plaintext: 1801AA01B1060A20122F5FC09C3DAD3F...0A2D2D2D2D2D454E44202D2D2D2D2D0A -peer0.org2.example.com | [03f 01-18 01:58:48.37 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: digest: 57085B15048F457A96ECEF4045625EBF83CC3E2BBC2AB42A60296E223E61FD79 -peer0.org2.example.com | [040 01-18 01:58:48.37 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.0.2,txid=9deece61-a892-400f-9fa3-17be96c9bdae,syscc=true,proposal=0x0,canname=cscc:1.0.2 -peer0.org2.example.com | [041 01-18 01:58:48.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode cscc:1.0.2 is being launched -peer0.org2.example.com | [043 01-18 01:58:48.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -peer0.org2.example.com | [044 01-18 01:58:48.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org2.example.com:7052] -peer0.org2.example.com | [045 01-18 01:58:48.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: cscc:1.0.2(networkid:dev,peerid:peer0.org2.example.com) -peer0.org2.example.com | [046 01-18 01:58:48.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org2.example.com:7052 -peer0.org2.example.com | [047 01-18 01:58:48.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: -peer0.org2.example.com | CORE_CHAINCODE_ID_NAME=cscc:1.0.2 -peer0.org2.example.com | CORE_PEER_TLS_ENABLED=true -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer0.org2.example.com | [048 01-18 01:58:48.37 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.0.2) lock -peer0.org2.example.com | [049 01-18 01:58:48.37 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.0.2) lock -peer0.org2.example.com | [04a 01-18 01:58:48.37 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for cscc-1.0.2 -peer0.org2.example.com | [04b 01-18 01:58:48.37 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.0.2) -peer0.org2.example.com | [04c 01-18 01:58:48.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance peer0.org2.example.com:7051 started -peer0.org2.example.com | [04d 01-18 01:58:48.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Skipping connecting to myself -peer0.org2.example.com | [042 01-18 01:58:48.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer0.org2.example.com | [04e 01-18 01:58:48.37 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.0.2 -peer0.org2.example.com | [04f 01-18 01:58:48.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer0.org2.example.com | [050 01-18 01:58:48.37 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [051 01-18 01:58:48.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s -peer0.org2.example.com | [052 01-18 01:58:48.37 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [053 01-18 01:58:48.37 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org2.example.com | [054 01-18 01:58:48.37 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 18012ADE060A3F0A1B70656572302E6F...0A2D2D2D2D2D454E44202D2D2D2D2D0A -peer0.org2.example.com | [055 01-18 01:58:48.37 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: digest: B30263C4AF2A26D692E2BD9D671BE2F9C472CDC0CFCFCFA4836D8E33A331943C -peer0.org2.example.com | [056 01-18 01:58:48.37 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [057 01-18 01:58:48.37 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org2.example.com | [058 01-18 01:58:48.37 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A1B70656572302E6F7267322E6578616D706C652E636F6D3A37303531 -peer0.org2.example.com | [059 01-18 01:58:48.37 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: digest: 31AA5BDA348977D7C004285715D545FB004C7F32E9BB02A9710DB7C2282B8EA6 -peer0.org2.example.com | [05a 01-18 01:58:48.37 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.0.2 -peer0.org2.example.com | [05b 01-18 01:58:48.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org2.example.com:7052] -peer0.org2.example.com | [05c 01-18 01:58:48.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.0.2 -peer0.org2.example.com | [05d 01-18 01:58:48.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer0.org2.example.com | [05e 01-18 01:58:48.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer0.org2.example.com | [05f 01-18 01:58:48.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer0.org2.example.com | [060 01-18 01:58:48.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s -peer0.org2.example.com | [061 01-18 01:58:48.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer0.org2.example.com | [062 01-18 01:58:48.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode cscc:1.0.2 -peer0.org2.example.com | [063 01-18 01:58:48.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"cscc:1.0.2" , sending back REGISTERED -peer0.org2.example.com | [064 01-18 01:58:48.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer0.org2.example.com | [065 01-18 01:58:48.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer0.org2.example.com | [066 01-18 01:58:48.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer0.org2.example.com | [067 01-18 01:58:48.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer0.org2.example.com | [068 01-18 01:58:48.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode cscc:1.0.2 launch seq completed -peer0.org2.example.com | [069 01-18 01:58:48.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -peer0.org2.example.com | [06a 01-18 01:58:48.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [06b 01-18 01:58:48.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9deece61]Move state message READY -peer0.org2.example.com | [06c 01-18 01:58:48.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9deece61]Fabric side Handling ChaincodeMessage of type: READY in state established -peer0.org2.example.com | [06d 01-18 01:58:48.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [9deece61]Entered state ready -peer0.org2.example.com | [06e 01-18 01:58:48.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:9deece61-a892-400f-9fa3-17be96c9bdae -peer1.org2.example.com | [001 01-18 01:58:48.57 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: -peer0.org2.example.com | [06f 01-18 01:58:48.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9deece61]sending state message READY -peer0.org2.example.com | [070 01-18 01:58:48.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9deece61]Received message READY from shim -peer0.org2.example.com | [071 01-18 01:58:48.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9deece61]Handling ChaincodeMessage of type: READY(state:established) -peer1.org2.example.com | Version: 1.0.2 -peer1.org2.example.com | Go version: go1.9 -peer0.org2.example.com | [072 01-18 01:58:48.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -peer1.org2.example.com | OS/Arch: linux/amd64 -peer0.org2.example.com | [073 01-18 01:58:48.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -peer1.org2.example.com | Chaincode: -peer0.org2.example.com | [074 01-18 01:58:48.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org2.example.com | Base Image Version: 0.3.2 -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 | -peer1.org2.example.com | [002 01-18 01:58:48.57 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO Initializing ledger mgmt -peer1.org2.example.com | [003 01-18 01:58:48.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO Initializing ledger provider -peer0.org2.example.com | [075 01-18 01:58:48.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.2 -peer1.org2.example.com | [004 01-18 01:58:48.57 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/ledgerProvider/] -peer1.org2.example.com | [005 01-18 01:58:48.57 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] does not exist -peer1.org2.example.com | [006 01-18 01:58:48.57 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] exists -peer1.org2.example.com | [007 01-18 01:58:48.57 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/index/] -peer1.org2.example.com | [008 01-18 01:58:48.57 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/index/] does not exist -peer1.org2.example.com | [009 01-18 01:58:48.57 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/index/] exists -peer1.org2.example.com | [00a 01-18 01:58:48.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> DEBU Constructing leveldb VersionedDBProvider -peer1.org2.example.com | [00b 01-18 01:58:48.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider -> DEBU constructing VersionedDBProvider dbPath=/var/hyperledger/production/ledgersData/stateLeveldb -peer1.org2.example.com | [00c 01-18 01:58:48.58 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/stateLeveldb/] -peer1.org2.example.com | [00d 01-18 01:58:48.58 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] does not exist -peer0.org2.example.com | [076 01-18 01:58:48.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [9deece61]Inside sendExecuteMessage. Message INIT -peer1.org2.example.com | [00e 01-18 01:58:48.58 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] exists -peer0.org2.example.com | [077 01-18 01:58:48.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [00f 01-18 01:58:48.59 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider -> DEBU constructing HistoryDBProvider dbPath=/var/hyperledger/production/ledgersData/historyLeveldb -peer1.org2.example.com | [010 01-18 01:58:48.59 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/historyLeveldb/] -peer1.org2.example.com | [011 01-18 01:58:48.59 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] does not exist -peer1.org2.example.com | [012 01-18 01:58:48.59 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] exists -peer1.org2.example.com | [013 01-18 01:58:48.59 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO ledger provider Initialized -peer1.org2.example.com | [014 01-18 01:58:48.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.recoverUnderConstructionLedger -> DEBU Recovering under construction ledger -peer1.org2.example.com | [015 01-18 01:58:48.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.recoverUnderConstructionLedger -> DEBU No under construction ledger found. Quitting recovery -peer1.org2.example.com | [016 01-18 01:58:48.60 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO ledger mgmt initialized -peer0.org2.example.com | [078 01-18 01:58:48.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [9deece61]sendExecuteMsg trigger event INIT -peer1.org2.example.com | [017 01-18 01:58:48.60 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with TLS enabled -peer0.org2.example.com | [079 01-18 01:58:48.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9deece61]Move state message INIT -peer1.org2.example.com | [018 01-18 01:58:48.61 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering BLOCK -peer0.org2.example.com | [07a 01-18 01:58:48.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9deece61]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org2.example.com | [019 01-18 01:58:48.61 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering CHAINCODE -peer0.org2.example.com | [07b 01-18 01:58:48.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [01a 01-18 01:58:48.61 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REJECTION -peer1.org2.example.com | [01b 01-18 01:58:48.61 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REGISTER -peer1.org2.example.com | [01c 01-18 01:58:48.61 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started -peer1.org2.example.com | [01d 01-18 01:58:48.61 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport -> DEBU Chaincode startup timeout value set to 5m0s -peer0.org2.example.com | [07c 01-18 01:58:48.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9deece61]sending state message INIT -peer1.org2.example.com | [01e 01-18 01:58:48.61 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> INFO Chaincode support using peerAddress: peer1.org2.example.com:7052 -peer0.org2.example.com | [07d 01-18 01:58:48.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9deece61]Received message INIT from shim -peer1.org2.example.com | [01f 01-18 01:58:48.61 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Turn off keepalive(value 0) -peer0.org2.example.com | [07e 01-18 01:58:48.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9deece61]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org2.example.com | [020 01-18 01:58:48.61 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Setting execute timeout value to 30s -peer1.org2.example.com | [021 01-18 01:58:48.61 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_LEVEL set to level info -peer1.org2.example.com | [022 01-18 01:58:48.61 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_SHIM set to level warning -peer0.org2.example.com | [07f 01-18 01:58:48.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org2.example.com | [023 01-18 01:58:48.62 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered -peer0.org2.example.com | [080 01-18 01:58:48.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [9deece61]Received INIT, initializing chaincode -peer1.org2.example.com | [024 01-18 01:58:48.62 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered -peer0.org2.example.com | [081 01-18 01:58:48.38 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -peer1.org2.example.com | [025 01-18 01:58:48.62 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode escc(github.com/hyperledger/fabric/core/scc/escc) registered -peer0.org2.example.com | [082 01-18 01:58:48.38 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [083 01-18 01:58:48.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9deece61]Init get response status: 200 -peer0.org2.example.com | [084 01-18 01:58:48.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9deece61]Init succeeded. Sending COMPLETED -peer1.org2.example.com | [026 01-18 01:58:48.62 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode vscc(github.com/hyperledger/fabric/core/scc/vscc) registered -peer0.org2.example.com | [085 01-18 01:58:48.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9deece61]Move state message COMPLETED -peer1.org2.example.com | [027 01-18 01:58:48.62 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/chaincode/qscc) registered -peer1.org2.example.com | [028 01-18 01:58:48.62 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer -peer0.org2.example.com | [086 01-18 01:58:48.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9deece61]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [029 01-18 01:58:48.62 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.NewEndorserServer.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [02a 01-18 01:58:48.62 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [02b 01-18 01:58:48.62 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer1.org2.example.com | [02c 01-18 01:58:48.62 UTC] [github.com/hyperledger/fabric/gossip/service] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1 -> INFO Initialize gossip with endpoint peer1.org2.example.com:7051 and bootstrap set [peer0.org2.example.com:7051] -peer0.org2.example.com | [087 01-18 01:58:48.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9deece61]send state message COMPLETED -peer1.org2.example.com | [02d 01-18 01:58:48.62 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [02e 01-18 01:58:48.62 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity -peer1.org2.example.com | [02f 01-18 01:58:48.62 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org2.example.com | MIICGTCCAcCgAwIBAgIRAKEIKOsKrnb1ltxHMap6pEUwCgYIKoZIzj0EAwIwczEL -peer1.org2.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org2.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org2.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -peer1.org2.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org2.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMi5leGFtcGxlLmNvbTBZ -peer0.org2.example.com | [088 01-18 01:58:48.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9deece61]Received message COMPLETED from shim -peer1.org2.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABOEfGjC8VbMEzCYCPKLJGSdrrYdZfeRA -peer0.org2.example.com | [089 01-18 01:58:48.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9deece61]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [08a 01-18 01:58:48.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9deece61-a892-400f-9fa3-17be96c9bdae]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [08b 01-18 01:58:48.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:9deece61-a892-400f-9fa3-17be96c9bdae -peer0.org2.example.com | [08c 01-18 01:58:48.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [08d 01-18 01:58:48.38 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed -peer0.org2.example.com | [08e 01-18 01:58:48.38 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.0.2,txid=5ee54cbd-276e-4b74-8fad-e0d0875f6cf3,syscc=true,proposal=0x0,canname=lscc:1.0.2 -peer1.org2.example.com | FHWCX2T+6UK2uUSrL6Y3CjGhA0k9dcQUlvz6/JhbFMhUDE8Iq9VerOSjTTBLMA4G -peer1.org2.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -peer1.org2.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0cAMEQCIALDRpu4 -peer1.org2.example.com | 6rlRGqwZERIU0Bhc6EjFDrOLy8+aQtu5vf5IAiBsx4vZaqvuR1JyVZJx/5ysU+j7 -peer1.org2.example.com | 7xpnfkN/TxNBsS31VA== -peer1.org2.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [030 01-18 01:58:48.62 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [031 01-18 01:58:48.62 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org2MSP validating identity -peer1.org2.example.com | [032 01-18 01:58:48.63 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [033 01-18 01:58:48.63 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity -> INFO Obtaining identity -peer1.org2.example.com | [034 01-18 01:58:48.63 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org2.example.com | MIICGTCCAcCgAwIBAgIRAKEIKOsKrnb1ltxHMap6pEUwCgYIKoZIzj0EAwIwczEL -peer0.org2.example.com | [08f 01-18 01:58:48.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode lscc:1.0.2 is being launched -peer1.org2.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org2.example.com | [090 01-18 01:58:48.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -peer1.org2.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org2.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -peer1.org2.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org2.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMi5leGFtcGxlLmNvbTBZ -peer1.org2.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABOEfGjC8VbMEzCYCPKLJGSdrrYdZfeRA -peer1.org2.example.com | FHWCX2T+6UK2uUSrL6Y3CjGhA0k9dcQUlvz6/JhbFMhUDE8Iq9VerOSjTTBLMA4G -peer1.org2.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -peer0.org2.example.com | [091 01-18 01:58:48.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org2.example.com:7052] -peer1.org2.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0cAMEQCIALDRpu4 -peer0.org2.example.com | [092 01-18 01:58:48.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: lscc:1.0.2(networkid:dev,peerid:peer0.org2.example.com) -peer1.org2.example.com | 6rlRGqwZERIU0Bhc6EjFDrOLy8+aQtu5vf5IAiBsx4vZaqvuR1JyVZJx/5ysU+j7 -peer0.org2.example.com | [093 01-18 01:58:48.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org2.example.com:7052 -peer1.org2.example.com | 7xpnfkN/TxNBsS31VA== -peer0.org2.example.com | [094 01-18 01:58:48.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: -peer0.org2.example.com | CORE_CHAINCODE_ID_NAME=lscc:1.0.2 -peer1.org2.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | CORE_PEER_TLS_ENABLED=true -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer1.org2.example.com | [035 01-18 01:58:48.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewDiscoveryService -> INFO Started {peer1.org2.example.com:7051 [] [144 119 48 161 152 16 111 55 135 212 104 153 242 128 107 239 162 108 100 105 229 13 64 139 107 78 122 75 126 238 20 116] peer1.org2.example.com:7051} incTime is 1516240728635187573 -peer1.org2.example.com | [036 01-18 01:58:48.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService -> INFO Creating gossip service with self membership of {peer1.org2.example.com:7051 [] [144 119 48 161 152 16 111 55 135 212 104 153 242 128 107 239 162 108 100 105 229 13 64 139 107 78 122 75 126 238 20 116] peer1.org2.example.com:7051} -peer1.org2.example.com | [037 01-18 01:58:48.63 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer1.org2.example.com | [038 01-18 01:58:48.63 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer1.org2.example.com | [039 01-18 01:58:48.63 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [095 01-18 01:58:48.38 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.0.2) lock -peer1.org2.example.com | MIICGTCCAcCgAwIBAgIRAKEIKOsKrnb1ltxHMap6pEUwCgYIKoZIzj0EAwIwczEL -peer0.org2.example.com | [096 01-18 01:58:48.38 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.0.2) lock -peer1.org2.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org2.example.com | [097 01-18 01:58:48.38 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for lscc-1.0.2 -peer0.org2.example.com | [098 01-18 01:58:48.38 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.0.2) -peer1.org2.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org2.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -peer0.org2.example.com | [099 01-18 01:58:48.38 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.0.2 -peer1.org2.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org2.example.com | [09a 01-18 01:58:48.38 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.0.2 -peer1.org2.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMi5leGFtcGxlLmNvbTBZ -peer0.org2.example.com | [09c 01-18 01:58:48.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org2.example.com:7052] -peer1.org2.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABOEfGjC8VbMEzCYCPKLJGSdrrYdZfeRA -peer1.org2.example.com | FHWCX2T+6UK2uUSrL6Y3CjGhA0k9dcQUlvz6/JhbFMhUDE8Iq9VerOSjTTBLMA4G -peer1.org2.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -peer1.org2.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0cAMEQCIALDRpu4 -peer0.org2.example.com | [09d 01-18 01:58:48.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=lscc:1.0.2 -peer1.org2.example.com | 6rlRGqwZERIU0Bhc6EjFDrOLy8+aQtu5vf5IAiBsx4vZaqvuR1JyVZJx/5ysU+j7 -peer0.org2.example.com | [09e 01-18 01:58:48.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer0.org2.example.com | [09b 01-18 01:58:48.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer1.org2.example.com | 7xpnfkN/TxNBsS31VA== -peer0.org2.example.com | [09f 01-18 01:58:48.39 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [0a0 01-18 01:58:48.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer1.org2.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [0a1 01-18 01:58:48.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer1.org2.example.com | [03a 01-18 01:58:48.63 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [03b 01-18 01:58:48.63 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org2MSP validating identity -peer0.org2.example.com | [0a2 01-18 01:58:48.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer1.org2.example.com | [03c 01-18 01:58:48.63 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [0a3 01-18 01:58:48.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode lscc:1.0.2 -peer1.org2.example.com | [03d 01-18 01:58:48.63 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org2.example.com | [0a4 01-18 01:58:48.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"lscc:1.0.2" , sending back REGISTERED -peer1.org2.example.com | [03e 01-18 01:58:48.63 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: plaintext: 1801AA01B1060A20907730A198106F37...0A2D2D2D2D2D454E44202D2D2D2D2D0A -peer1.org2.example.com | [03f 01-18 01:58:48.63 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: digest: F21BE5B0722E39BF9E0A2FC0299B97E074CFD5C609916BF206F14668BA5F9AAC -peer0.org2.example.com | [0a5 01-18 01:58:48.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer1.org2.example.com | [040 01-18 01:58:48.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer0.org2.example.com | [0a6 01-18 01:58:48.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer1.org2.example.com | [041 01-18 01:58:48.63 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.0.2,txid=a1f22548-6b95-4d04-844a-0d480c012c79,syscc=true,proposal=0x0,canname=cscc:1.0.2 -peer0.org2.example.com | [0a8 01-18 01:58:48.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer0.org2.example.com | [0a7 01-18 01:58:48.39 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode lscc:1.0.2 launch seq completed -peer1.org2.example.com | [042 01-18 01:58:48.63 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode cscc:1.0.2 is being launched -peer0.org2.example.com | [0aa 01-18 01:58:48.39 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -peer1.org2.example.com | [043 01-18 01:58:48.63 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -peer1.org2.example.com | [044 01-18 01:58:48.63 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer1.org2.example.com:7052] -peer0.org2.example.com | [0ab 01-18 01:58:48.39 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [0ac 01-18 01:58:48.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5ee54cbd]Move state message READY -peer0.org2.example.com | [0ad 01-18 01:58:48.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5ee54cbd]Fabric side Handling ChaincodeMessage of type: READY in state established -peer0.org2.example.com | [0ae 01-18 01:58:48.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [5ee54cbd]Entered state ready -peer0.org2.example.com | [0af 01-18 01:58:48.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:5ee54cbd-276e-4b74-8fad-e0d0875f6cf3 -peer0.org2.example.com | [0b0 01-18 01:58:48.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5ee54cbd]sending state message READY -peer0.org2.example.com | [0b1 01-18 01:58:48.39 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -peer0.org2.example.com | [0b2 01-18 01:58:48.39 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -peer0.org2.example.com | [0b3 01-18 01:58:48.39 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [045 01-18 01:58:48.63 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: cscc:1.0.2(networkid:dev,peerid:peer1.org2.example.com) -peer0.org2.example.com | [0b4 01-18 01:58:48.39 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -peer0.org2.example.com | [0b5 01-18 01:58:48.39 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [5ee54cbd]Inside sendExecuteMessage. Message INIT -peer1.org2.example.com | [046 01-18 01:58:48.63 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer1.org2.example.com:7052 -peer0.org2.example.com | [0b6 01-18 01:58:48.39 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [0b7 01-18 01:58:48.39 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [5ee54cbd]sendExecuteMsg trigger event INIT -peer1.org2.example.com | [047 01-18 01:58:48.63 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: -peer1.org2.example.com | CORE_CHAINCODE_ID_NAME=cscc:1.0.2 -peer1.org2.example.com | CORE_PEER_TLS_ENABLED=true -peer0.org2.example.com | [0a9 01-18 01:58:48.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer0.org2.example.com | [0b8 01-18 01:58:48.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5ee54cbd]Received message READY from shim -peer0.org2.example.com | [0b9 01-18 01:58:48.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5ee54cbd]Move state message INIT -peer0.org2.example.com | [0bb 01-18 01:58:48.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5ee54cbd]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer0.org2.example.com | [0bc 01-18 01:58:48.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [0bd 01-18 01:58:48.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5ee54cbd]sending state message INIT -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer0.org2.example.com | [0ba 01-18 01:58:48.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5ee54cbd]Handling ChaincodeMessage of type: READY(state:established) -peer0.org2.example.com | [0be 01-18 01:58:48.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5ee54cbd]Received message INIT from shim -peer0.org2.example.com | [0bf 01-18 01:58:48.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5ee54cbd]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [0c0 01-18 01:58:48.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org2.example.com | [0c1 01-18 01:58:48.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [5ee54cbd]Received INIT, initializing chaincode -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer0.org2.example.com | [0c2 01-18 01:58:48.39 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetPolicyChecker.GetPolicyChecker.NewPolicyChecker.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [0c3 01-18 01:58:48.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5ee54cbd]Init get response status: 200 -peer0.org2.example.com | [0c4 01-18 01:58:48.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5ee54cbd]Init succeeded. Sending COMPLETED -peer0.org2.example.com | [0c5 01-18 01:58:48.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5ee54cbd]Move state message COMPLETED -peer0.org2.example.com | [0c6 01-18 01:58:48.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5ee54cbd]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [048 01-18 01:58:48.63 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.0.2) lock -peer0.org2.example.com | [0c7 01-18 01:58:48.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5ee54cbd]send state message COMPLETED -peer1.org2.example.com | [049 01-18 01:58:48.63 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.0.2) lock -peer0.org2.example.com | [0c8 01-18 01:58:48.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5ee54cbd]Received message COMPLETED from shim -peer1.org2.example.com | [04a 01-18 01:58:48.63 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for cscc-1.0.2 -peer0.org2.example.com | [0c9 01-18 01:58:48.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5ee54cbd]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [04b 01-18 01:58:48.63 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.0.2) -peer0.org2.example.com | [0ca 01-18 01:58:48.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5ee54cbd-276e-4b74-8fad-e0d0875f6cf3]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [04c 01-18 01:58:48.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance peer1.org2.example.com:7051 started -peer1.org2.example.com | [04d 01-18 01:58:48.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Entering {peer0.org2.example.com:7051 [] [] peer0.org2.example.com:7051} -peer1.org2.example.com | [04e 01-18 01:58:48.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Exiting -peer1.org2.example.com | [04f 01-18 01:58:48.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s -peer1.org2.example.com | [050 01-18 01:58:48.64 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.0.2 -peer1.org2.example.com | [051 01-18 01:58:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer1.org2.example.com | [052 01-18 01:58:48.64 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [053 01-18 01:58:48.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s -peer1.org2.example.com | [054 01-18 01:58:48.64 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [055 01-18 01:58:48.64 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer1.org2.example.com | [056 01-18 01:58:48.64 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 18012ADE060A3F0A1B70656572312E6F...0A2D2D2D2D2D454E44202D2D2D2D2D0A -peer1.org2.example.com | [057 01-18 01:58:48.64 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: digest: 170819CDD3E537CF89AD88A1F6F000326D307D7C5235772B3374C6E8265576E4 -peer1.org2.example.com | [058 01-18 01:58:48.64 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [059 01-18 01:58:48.64 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer1.org2.example.com | [05a 01-18 01:58:48.64 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A1B70656572312E6F7267322E6578616D706C652E636F6D3A37303531 -peer0.org2.example.com | [0cb 01-18 01:58:48.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:5ee54cbd-276e-4b74-8fad-e0d0875f6cf3 -peer0.org2.example.com | [0cc 01-18 01:58:48.40 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [05b 01-18 01:58:48.64 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: digest: 84DCB4760C577E9B4E2A280CB22EA6979C16748D7FD46DCFD4002D8650CAD285 -peer0.org2.example.com | [0cd 01-18 01:58:48.40 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed -peer0.org2.example.com | [0ce 01-18 01:58:48.40 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=escc,version=1.0.2,txid=c395ddfe-8130-4fad-b0e3-6bdd2de68b03,syscc=true,proposal=0x0,canname=escc:1.0.2 -peer1.org2.example.com | [05c 01-18 01:58:48.64 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.0.2 -peer1.org2.example.com | [05d 01-18 01:58:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org2.example.com:7052] -peer0.org2.example.com | [0cf 01-18 01:58:48.40 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode escc:1.0.2 is being launched -peer0.org2.example.com | [0d0 01-18 01:58:48.40 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -peer1.org2.example.com | [05e 01-18 01:58:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.0.2 -peer0.org2.example.com | [0d1 01-18 01:58:48.40 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org2.example.com:7052] -peer1.org2.example.com | [05f 01-18 01:58:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer1.org2.example.com | [060 01-18 01:58:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer1.org2.example.com | [061 01-18 01:58:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer0.org2.example.com | [0d2 01-18 01:58:48.40 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: escc:1.0.2(networkid:dev,peerid:peer0.org2.example.com) -peer0.org2.example.com | [0d3 01-18 01:58:48.40 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org2.example.com:7052 -peer0.org2.example.com | [0d4 01-18 01:58:48.40 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: -peer0.org2.example.com | CORE_CHAINCODE_ID_NAME=escc:1.0.2 -peer0.org2.example.com | CORE_PEER_TLS_ENABLED=true -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer0.org2.example.com | [0d5 01-18 01:58:48.40 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(escc-1.0.2) lock -peer0.org2.example.com | [0d6 01-18 01:58:48.40 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (escc-1.0.2) lock -peer0.org2.example.com | [0d7 01-18 01:58:48.40 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for escc-1.0.2 -peer0.org2.example.com | [0d8 01-18 01:58:48.40 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(escc-1.0.2) -peer0.org2.example.com | [0d9 01-18 01:58:48.40 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for escc-1.0.2 -peer1.org2.example.com | [062 01-18 01:58:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer1.org2.example.com | [063 01-18 01:58:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode cscc:1.0.2 -peer1.org2.example.com | [064 01-18 01:58:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"cscc:1.0.2" , sending back REGISTERED -peer0.org2.example.com | [0db 01-18 01:58:48.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer1.org2.example.com | [065 01-18 01:58:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer0.org2.example.com | [0da 01-18 01:58:48.40 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for escc-1.0.2 -peer0.org2.example.com | [0dc 01-18 01:58:48.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org2.example.com:7052] -peer1.org2.example.com | [066 01-18 01:58:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer0.org2.example.com | [0dd 01-18 01:58:48.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=escc:1.0.2 -peer1.org2.example.com | [067 01-18 01:58:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer0.org2.example.com | [0de 01-18 01:58:48.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer0.org2.example.com | [0df 01-18 01:58:48.40 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [068 01-18 01:58:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer0.org2.example.com | [0e0 01-18 01:58:48.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer1.org2.example.com | [069 01-18 01:58:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode cscc:1.0.2 launch seq completed -peer0.org2.example.com | [0e1 01-18 01:58:48.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer1.org2.example.com | [06a 01-18 01:58:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -peer1.org2.example.com | [06b 01-18 01:58:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [0e2 01-18 01:58:48.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer1.org2.example.com | [06c 01-18 01:58:48.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a1f22548]Move state message READY -peer1.org2.example.com | [06d 01-18 01:58:48.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a1f22548]Fabric side Handling ChaincodeMessage of type: READY in state established -peer0.org2.example.com | [0e3 01-18 01:58:48.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode escc:1.0.2 -peer1.org2.example.com | [06e 01-18 01:58:48.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [a1f22548]Entered state ready -peer0.org2.example.com | [0e4 01-18 01:58:48.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"escc:1.0.2" , sending back REGISTERED -peer0.org2.example.com | [0e6 01-18 01:58:48.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer0.org2.example.com | [0e7 01-18 01:58:48.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer0.org2.example.com | [0e8 01-18 01:58:48.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer0.org2.example.com | [0e5 01-18 01:58:48.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer0.org2.example.com | [0e9 01-18 01:58:48.40 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode escc:1.0.2 launch seq completed -peer0.org2.example.com | [0ea 01-18 01:58:48.40 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -peer0.org2.example.com | [0eb 01-18 01:58:48.40 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [0ec 01-18 01:58:48.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c395ddfe]Move state message READY -peer0.org2.example.com | [0ed 01-18 01:58:48.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c395ddfe]Fabric side Handling ChaincodeMessage of type: READY in state established -peer0.org2.example.com | [0ee 01-18 01:58:48.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [c395ddfe]Entered state ready -peer0.org2.example.com | [0ef 01-18 01:58:48.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:c395ddfe-8130-4fad-b0e3-6bdd2de68b03 -peer0.org2.example.com | [0f0 01-18 01:58:48.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c395ddfe]sending state message READY -peer0.org2.example.com | [0f1 01-18 01:58:48.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c395ddfe]Received message READY from shim -peer0.org2.example.com | [0f2 01-18 01:58:48.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c395ddfe]Handling ChaincodeMessage of type: READY(state:established) -peer0.org2.example.com | [0f3 01-18 01:58:48.40 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -peer0.org2.example.com | [0f4 01-18 01:58:48.40 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -peer0.org2.example.com | [0f5 01-18 01:58:48.40 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [0f6 01-18 01:58:48.40 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 -peer1.org2.example.com | [06f 01-18 01:58:48.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:a1f22548-6b95-4d04-844a-0d480c012c79 -peer1.org2.example.com | [070 01-18 01:58:48.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a1f22548]sending state message READY -peer1.org2.example.com | [071 01-18 01:58:48.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a1f22548]Received message READY from shim -peer1.org2.example.com | [072 01-18 01:58:48.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a1f22548]Handling ChaincodeMessage of type: READY(state:established) -peer1.org2.example.com | [073 01-18 01:58:48.65 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -peer1.org2.example.com | [074 01-18 01:58:48.65 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -peer1.org2.example.com | [075 01-18 01:58:48.65 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [076 01-18 01:58:48.65 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.2 -peer1.org2.example.com | [077 01-18 01:58:48.65 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [a1f22548]Inside sendExecuteMessage. Message INIT -peer1.org2.example.com | [078 01-18 01:58:48.65 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [079 01-18 01:58:48.65 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [a1f22548]sendExecuteMsg trigger event INIT -peer1.org2.example.com | [07a 01-18 01:58:48.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a1f22548]Move state message INIT -peer1.org2.example.com | [07b 01-18 01:58:48.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a1f22548]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org2.example.com | [07c 01-18 01:58:48.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [07d 01-18 01:58:48.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a1f22548]sending state message INIT -peer1.org2.example.com | [07e 01-18 01:58:48.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a1f22548]Received message INIT from shim -peer1.org2.example.com | [07f 01-18 01:58:48.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a1f22548]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org2.example.com | [080 01-18 01:58:48.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org2.example.com | [081 01-18 01:58:48.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [a1f22548]Received INIT, initializing chaincode -peer1.org2.example.com | [082 01-18 01:58:48.65 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -peer1.org2.example.com | [083 01-18 01:58:48.65 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [0f7 01-18 01:58:48.40 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [c395ddfe]Inside sendExecuteMessage. Message INIT -peer1.org2.example.com | [084 01-18 01:58:48.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a1f22548]Init get response status: 200 -peer1.org2.example.com | [085 01-18 01:58:48.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a1f22548]Init succeeded. Sending COMPLETED -peer1.org2.example.com | [086 01-18 01:58:48.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a1f22548]Move state message COMPLETED -peer1.org2.example.com | [087 01-18 01:58:48.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a1f22548]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [0f8 01-18 01:58:48.40 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [0f9 01-18 01:58:48.40 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [c395ddfe]sendExecuteMsg trigger event INIT -peer0.org2.example.com | [0fa 01-18 01:58:48.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c395ddfe]Move state message INIT -peer0.org2.example.com | [0fb 01-18 01:58:48.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c395ddfe]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org2.example.com | [088 01-18 01:58:48.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a1f22548]send state message COMPLETED -peer0.org2.example.com | [0fc 01-18 01:58:48.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [089 01-18 01:58:48.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a1f22548]Received message COMPLETED from shim -peer0.org2.example.com | [0fd 01-18 01:58:48.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c395ddfe]sending state message INIT -peer1.org2.example.com | [08a 01-18 01:58:48.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a1f22548]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [0fe 01-18 01:58:48.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c395ddfe]Received message INIT from shim -peer1.org2.example.com | [08b 01-18 01:58:48.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a1f22548-6b95-4d04-844a-0d480c012c79]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [0ff 01-18 01:58:48.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c395ddfe]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org2.example.com | [08c 01-18 01:58:48.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:a1f22548-6b95-4d04-844a-0d480c012c79 -peer0.org2.example.com | [100 01-18 01:58:48.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org2.example.com | [08d 01-18 01:58:48.65 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [08e 01-18 01:58:48.65 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed -peer0.org2.example.com | [101 01-18 01:58:48.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [c395ddfe]Received INIT, initializing chaincode -peer1.org2.example.com | [08f 01-18 01:58:48.65 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.0.2,txid=3b7a7261-89d0-45ed-9c54-749444b5b936,syscc=true,proposal=0x0,canname=lscc:1.0.2 -peer0.org2.example.com | [102 01-18 01:58:48.40 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC -peer0.org2.example.com | [103 01-18 01:58:48.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c395ddfe]Init get response status: 200 -peer0.org2.example.com | [104 01-18 01:58:48.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c395ddfe]Init succeeded. Sending COMPLETED -peer0.org2.example.com | [105 01-18 01:58:48.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c395ddfe]Move state message COMPLETED -peer0.org2.example.com | [106 01-18 01:58:48.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c395ddfe]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [107 01-18 01:58:48.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c395ddfe]send state message COMPLETED -peer1.org2.example.com | [090 01-18 01:58:48.65 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode lscc:1.0.2 is being launched -peer0.org2.example.com | [108 01-18 01:58:48.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c395ddfe]Received message COMPLETED from shim -peer0.org2.example.com | [109 01-18 01:58:48.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c395ddfe]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [091 01-18 01:58:48.65 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -peer0.org2.example.com | [10a 01-18 01:58:48.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c395ddfe-8130-4fad-b0e3-6bdd2de68b03]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [092 01-18 01:58:48.65 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer1.org2.example.com:7052] -peer0.org2.example.com | [10b 01-18 01:58:48.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:c395ddfe-8130-4fad-b0e3-6bdd2de68b03 -peer0.org2.example.com | [10c 01-18 01:58:48.41 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [093 01-18 01:58:48.65 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: lscc:1.0.2(networkid:dev,peerid:peer1.org2.example.com) -peer0.org2.example.com | [10d 01-18 01:58:48.41 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode escc/(github.com/hyperledger/fabric/core/scc/escc) deployed -peer0.org2.example.com | [10e 01-18 01:58:48.41 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=vscc,version=1.0.2,txid=c00a15b0-000f-4d92-a8cc-a9b3caf09038,syscc=true,proposal=0x0,canname=vscc:1.0.2 -peer1.org2.example.com | [094 01-18 01:58:48.65 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer1.org2.example.com:7052 -peer1.org2.example.com | [095 01-18 01:58:48.66 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: -peer1.org2.example.com | CORE_CHAINCODE_ID_NAME=lscc:1.0.2 -peer1.org2.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer0.org2.example.com | [10f 01-18 01:58:48.41 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode vscc:1.0.2 is being launched -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer1.org2.example.com | [096 01-18 01:58:48.66 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.0.2) lock -peer0.org2.example.com | [110 01-18 01:58:48.41 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -peer1.org2.example.com | [097 01-18 01:58:48.66 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.0.2) lock -peer1.org2.example.com | [098 01-18 01:58:48.66 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for lscc-1.0.2 -peer1.org2.example.com | [099 01-18 01:58:48.66 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.0.2) -peer1.org2.example.com | [09a 01-18 01:58:48.66 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.0.2 -peer1.org2.example.com | [09b 01-18 01:58:48.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer0.org2.example.com | [111 01-18 01:58:48.41 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org2.example.com:7052] -peer1.org2.example.com | [09c 01-18 01:58:48.66 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [09d 01-18 01:58:48.66 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.0.2 -peer1.org2.example.com | [09e 01-18 01:58:48.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org2.example.com:7052] -peer0.org2.example.com | [112 01-18 01:58:48.41 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: vscc:1.0.2(networkid:dev,peerid:peer0.org2.example.com) -peer1.org2.example.com | [09f 01-18 01:58:48.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=lscc:1.0.2 -peer1.org2.example.com | [0a0 01-18 01:58:48.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer0.org2.example.com | [113 01-18 01:58:48.41 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org2.example.com:7052 -peer1.org2.example.com | [0a1 01-18 01:58:48.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer1.org2.example.com | [0a2 01-18 01:58:48.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer1.org2.example.com | [0a3 01-18 01:58:48.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer0.org2.example.com | [114 01-18 01:58:48.41 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: -peer1.org2.example.com | [0a4 01-18 01:58:48.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode lscc:1.0.2 -peer1.org2.example.com | [0a5 01-18 01:58:48.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"lscc:1.0.2" , sending back REGISTERED -peer0.org2.example.com | CORE_CHAINCODE_ID_NAME=vscc:1.0.2 -peer0.org2.example.com | CORE_PEER_TLS_ENABLED=true -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer0.org2.example.com | [115 01-18 01:58:48.41 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(vscc-1.0.2) lock -peer0.org2.example.com | [116 01-18 01:58:48.41 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (vscc-1.0.2) lock -peer0.org2.example.com | [117 01-18 01:58:48.41 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for vscc-1.0.2 -peer0.org2.example.com | [118 01-18 01:58:48.41 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(vscc-1.0.2) -peer0.org2.example.com | [119 01-18 01:58:48.41 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for vscc-1.0.2 -peer0.org2.example.com | [11a 01-18 01:58:48.41 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for vscc-1.0.2 -peer0.org2.example.com | [11c 01-18 01:58:48.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer1.org2.example.com | [0a6 01-18 01:58:48.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer1.org2.example.com | [0a7 01-18 01:58:48.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer1.org2.example.com | [0a8 01-18 01:58:48.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer1.org2.example.com | [0a9 01-18 01:58:48.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer1.org2.example.com | [0aa 01-18 01:58:48.66 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode lscc:1.0.2 launch seq completed -peer0.org2.example.com | [11b 01-18 01:58:48.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org2.example.com:7052] -peer1.org2.example.com | [0ab 01-18 01:58:48.66 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -peer1.org2.example.com | [0ac 01-18 01:58:48.66 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [0ad 01-18 01:58:48.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3b7a7261]Move state message READY -peer1.org2.example.com | [0ae 01-18 01:58:48.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3b7a7261]Fabric side Handling ChaincodeMessage of type: READY in state established -peer0.org2.example.com | [11e 01-18 01:58:48.41 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [0af 01-18 01:58:48.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [3b7a7261]Entered state ready -peer1.org2.example.com | [0b0 01-18 01:58:48.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:3b7a7261-89d0-45ed-9c54-749444b5b936 -peer0.org2.example.com | [11d 01-18 01:58:48.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=vscc:1.0.2 -peer1.org2.example.com | [0b2 01-18 01:58:48.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3b7a7261]sending state message READY -peer0.org2.example.com | [11f 01-18 01:58:48.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer0.org2.example.com | [120 01-18 01:58:48.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer1.org2.example.com | [0b3 01-18 01:58:48.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3b7a7261]Received message READY from shim -peer1.org2.example.com | [0b4 01-18 01:58:48.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3b7a7261]Handling ChaincodeMessage of type: READY(state:established) -peer0.org2.example.com | [121 01-18 01:58:48.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer1.org2.example.com | [0b5 01-18 01:58:48.66 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -peer0.org2.example.com | [122 01-18 01:58:48.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer0.org2.example.com | [123 01-18 01:58:48.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode vscc:1.0.2 -peer1.org2.example.com | [0b1 01-18 01:58:48.66 UTC] [github.com/hyperledger/fabric/msp/mgmt] func1.Handshake.authenticateRemotePeer.createConnectionMsg.Sign.func1.Sign.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [124 01-18 01:58:48.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"vscc:1.0.2" , sending back REGISTERED -peer1.org2.example.com | [0b7 01-18 01:58:48.66 UTC] [github.com/hyperledger/fabric/msp] func1.Handshake.authenticateRemotePeer.createConnectionMsg.Sign.func1.Sign.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer1.org2.example.com | [0b8 01-18 01:58:48.66 UTC] [github.com/hyperledger/fabric/msp] func1.Handshake.authenticateRemotePeer.createConnectionMsg.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: plaintext: 180172D3060A20907730A198106F3787...293CAFE19A97D7026ECBDF4E276BE59C -peer0.org2.example.com | [125 01-18 01:58:48.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer1.org2.example.com | [0b9 01-18 01:58:48.66 UTC] [github.com/hyperledger/fabric/msp] func1.Handshake.authenticateRemotePeer.createConnectionMsg.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: digest: D188AA5BAD0067B4227E19B0E31A38513921598F128235D7C4862008E504B4F6 -peer0.org2.example.com | [126 01-18 01:58:48.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer1.org2.example.com | [0b6 01-18 01:58:48.66 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -peer0.org2.example.com | [127 01-18 01:58:48.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer0.org2.example.com | [128 01-18 01:58:48.41 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode vscc:1.0.2 launch seq completed -peer1.org2.example.com | [0bb 01-18 01:58:48.66 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [12a 01-18 01:58:48.41 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -peer1.org2.example.com | [0bc 01-18 01:58:48.66 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -peer0.org2.example.com | [129 01-18 01:58:48.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer0.org2.example.com | [12b 01-18 01:58:48.41 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [0bd 01-18 01:58:48.66 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [3b7a7261]Inside sendExecuteMessage. Message INIT -peer0.org2.example.com | [12c 01-18 01:58:48.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c00a15b0]Move state message READY -peer1.org2.example.com | [0be 01-18 01:58:48.66 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [0bf 01-18 01:58:48.66 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [3b7a7261]sendExecuteMsg trigger event INIT -peer0.org2.example.com | [12d 01-18 01:58:48.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c00a15b0]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org2.example.com | [0ba 01-18 01:58:48.66 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 856 bytes, Signature: 71 bytes to 172.18.0.6:7051 -peer0.org2.example.com | [12e 01-18 01:58:48.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [c00a15b0]Entered state ready -peer0.org2.example.com | [12f 01-18 01:58:48.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:c00a15b0-000f-4d92-a8cc-a9b3caf09038 -peer1.org2.example.com | [0c0 01-18 01:58:48.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3b7a7261]Move state message INIT -peer0.org2.example.com | [130 01-18 01:58:48.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c00a15b0]sending state message READY -peer1.org2.example.com | [0c1 01-18 01:58:48.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3b7a7261]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org2.example.com | [0c3 01-18 01:58:48.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [132 01-18 01:58:48.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c00a15b0]Received message READY from shim -peer1.org2.example.com | [0c4 01-18 01:58:48.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3b7a7261]sending state message INIT -peer1.org2.example.com | [0c2 01-18 01:58:48.66 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Received pki_id:"\022/_\300\234=\255?P\350`@[1e\362\316W \030Y\004W\240/|\372|p\271{\r" identity:"\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAPwSzyg1PPrCeVhRqDo4IRcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABHIO8CckN5HgY1i/7g0IJdzk172E2x4D\nlEymsPxBTC6SMx2H76gyAZbaUHLzDOc03WXuxNm/5CEb0PCug4gLmYqjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQDuMCD1\ncBz5946zQSaxCXuanblvvPmDo4EJj3fN1TTl4wIgK6OJNoi5UYFhv/CWtHvr86JU\nCp7fopYLAR0CUyw+Xyk=\n-----END -----\n" tls_cert_hash:"\0045\260\320\247i\237q\231 ;\356\213\267_\305\3425n:\215G\246'V\004\332o\222R\316l" from 172.18.0.6:7051 -peer1.org2.example.com | [0c6 01-18 01:58:48.66 UTC] [github.com/hyperledger/fabric/msp/mgmt] func1.Handshake.authenticateRemotePeer.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [131 01-18 01:58:48.41 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -peer0.org2.example.com | [134 01-18 01:58:48.41 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -peer1.org2.example.com | [0c5 01-18 01:58:48.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3b7a7261]Received message INIT from shim -peer1.org2.example.com | [0c7 01-18 01:58:48.66 UTC] [github.com/hyperledger/fabric/msp] func1.Handshake.authenticateRemotePeer.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity -peer0.org2.example.com | [133 01-18 01:58:48.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c00a15b0]Handling ChaincodeMessage of type: READY(state:established) -peer0.org2.example.com | [135 01-18 01:58:48.41 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [0c8 01-18 01:58:48.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3b7a7261]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [136 01-18 01:58:48.41 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 -peer0.org2.example.com | [137 01-18 01:58:48.41 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [c00a15b0]Inside sendExecuteMessage. Message INIT -peer1.org2.example.com | [0c9 01-18 01:58:48.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org2.example.com | [138 01-18 01:58:48.41 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [0ca 01-18 01:58:48.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [3b7a7261]Received INIT, initializing chaincode -peer0.org2.example.com | [139 01-18 01:58:48.41 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [c00a15b0]sendExecuteMsg trigger event INIT -peer0.org2.example.com | [13a 01-18 01:58:48.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c00a15b0]Move state message INIT -peer0.org2.example.com | [13b 01-18 01:58:48.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c00a15b0]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org2.example.com | [13c 01-18 01:58:48.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [0cb 01-18 01:58:48.66 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetPolicyChecker.GetPolicyChecker.NewPolicyChecker.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [13d 01-18 01:58:48.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c00a15b0]sending state message INIT -peer1.org2.example.com | [0cc 01-18 01:58:48.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3b7a7261]Init get response status: 200 -peer0.org2.example.com | [13e 01-18 01:58:48.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c00a15b0]Received message INIT from shim -peer0.org2.example.com | [13f 01-18 01:58:48.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c00a15b0]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [140 01-18 01:58:48.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org2.example.com | [141 01-18 01:58:48.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [c00a15b0]Received INIT, initializing chaincode -peer0.org2.example.com | [142 01-18 01:58:48.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c00a15b0]Init get response status: 200 -peer0.org2.example.com | [143 01-18 01:58:48.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c00a15b0]Init succeeded. Sending COMPLETED -peer0.org2.example.com | [144 01-18 01:58:48.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c00a15b0]Move state message COMPLETED -peer0.org2.example.com | [145 01-18 01:58:48.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c00a15b0]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [146 01-18 01:58:48.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c00a15b0]send state message COMPLETED -peer0.org2.example.com | [147 01-18 01:58:48.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c00a15b0]Received message COMPLETED from shim -peer0.org2.example.com | [148 01-18 01:58:48.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c00a15b0]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [149 01-18 01:58:48.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c00a15b0-000f-4d92-a8cc-a9b3caf09038]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [14a 01-18 01:58:48.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:c00a15b0-000f-4d92-a8cc-a9b3caf09038 -peer0.org2.example.com | [14b 01-18 01:58:48.42 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [14c 01-18 01:58:48.42 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/(github.com/hyperledger/fabric/core/scc/vscc) deployed -peer0.org2.example.com | [14d 01-18 01:58:48.42 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=qscc,version=1.0.2,txid=2cdddf1a-93f1-49aa-83bc-12d659f12a3d,syscc=true,proposal=0x0,canname=qscc:1.0.2 -peer0.org2.example.com | [14e 01-18 01:58:48.42 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode qscc:1.0.2 is being launched -peer0.org2.example.com | [14f 01-18 01:58:48.42 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -peer0.org2.example.com | [150 01-18 01:58:48.42 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org2.example.com:7052] -peer0.org2.example.com | [151 01-18 01:58:48.42 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: qscc:1.0.2(networkid:dev,peerid:peer0.org2.example.com) -peer0.org2.example.com | [152 01-18 01:58:48.42 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org2.example.com:7052 -peer0.org2.example.com | [153 01-18 01:58:48.42 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: -peer1.org2.example.com | [0cd 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3b7a7261]Init succeeded. Sending COMPLETED -peer1.org2.example.com | [0ce 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3b7a7261]Move state message COMPLETED -peer1.org2.example.com | [0d0 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3b7a7261]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [0d1 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3b7a7261]send state message COMPLETED -peer1.org2.example.com | [0cf 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/msp] func1.Handshake.authenticateRemotePeer.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org2.example.com | MIICGjCCAcCgAwIBAgIRAPwSzyg1PPrCeVhRqDo4IRcwCgYIKoZIzj0EAwIwczEL -peer1.org2.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org2.example.com | CORE_CHAINCODE_ID_NAME=qscc:1.0.2 -peer0.org2.example.com | CORE_PEER_TLS_ENABLED=true -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer0.org2.example.com | [154 01-18 01:58:48.42 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.0.2) lock -peer1.org2.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org2.example.com | [155 01-18 01:58:48.42 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.0.2) lock -peer0.org1.example.com | [001 01-18 01:58:46.62 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: -peer1.org2.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -orderer.example.com | 2018-01-18 01:58:46.431 UTC [orderer/main] main -> INFO 001 Starting orderer: -peer0.org1.example.com | Version: 1.0.2 -peer0.org2.example.com | [156 01-18 01:58:48.42 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for qscc-1.0.2 -orderer.example.com | Version: 1.0.2 -peer1.org1.example.com | [001 01-18 01:58:49.56 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: -peer0.org1.example.com | Go version: go1.9 -peer1.org2.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org2.example.com | [157 01-18 01:58:48.42 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.0.2) -orderer.example.com | Go version: go1.7.5 -peer1.org1.example.com | Version: 1.0.2 -peer0.org1.example.com | OS/Arch: linux/amd64 -peer1.org2.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | OS/Arch: linux/amd64 -orderer.example.com | 2018-01-18 01:58:46.437 UTC [orderer/main] initializeSecureServerConfig -> INFO 002 Starting orderer with TLS enabled -peer1.org1.example.com | Go version: go1.9 -peer0.org2.example.com | [158 01-18 01:58:48.42 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.0.2 -peer0.org1.example.com | Chaincode: -peer0.org1.example.com | Base Image Version: 0.3.2 -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 | -peer0.org1.example.com | [002 01-18 01:58:46.63 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO Initializing ledger mgmt -peer0.org1.example.com | [003 01-18 01:58:46.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO Initializing ledger provider -peer1.org2.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABHIO8CckN5HgY1i/7g0IJdzk172E2x4D -peer1.org2.example.com | lEymsPxBTC6SMx2H76gyAZbaUHLzDOc03WXuxNm/5CEb0PCug4gLmYqjTTBLMA4G -peer1.org2.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -peer1.org2.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQDuMCD1 -orderer.example.com | 2018-01-18 01:58:46.465 UTC [bccsp_sw] openKeyStore -> DEBU 003 KeyStore opened at [/var/hyperledger/orderer/msp/keystore]...done -peer0.org1.example.com | [004 01-18 01:58:46.63 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/ledgerProvider/] -peer0.org1.example.com | [005 01-18 01:58:46.63 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] does not exist -peer0.org1.example.com | [006 01-18 01:58:46.63 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] exists -peer0.org1.example.com | [007 01-18 01:58:46.63 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/index/] -peer0.org1.example.com | [008 01-18 01:58:46.63 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/index/] does not exist -peer0.org1.example.com | [009 01-18 01:58:46.63 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/index/] exists -peer0.org1.example.com | [00a 01-18 01:58:46.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> DEBU Constructing leveldb VersionedDBProvider -peer0.org1.example.com | [00b 01-18 01:58:46.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider -> DEBU constructing VersionedDBProvider dbPath=/var/hyperledger/production/ledgersData/stateLeveldb -peer0.org1.example.com | [00c 01-18 01:58:46.64 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/stateLeveldb/] -peer0.org1.example.com | [00d 01-18 01:58:46.64 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] does not exist -peer0.org2.example.com | [15a 01-18 01:58:48.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer0.org2.example.com | [15b 01-18 01:58:48.42 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | OS/Arch: linux/amd64 -peer1.org2.example.com | cBz5946zQSaxCXuanblvvPmDo4EJj3fN1TTl4wIgK6OJNoi5UYFhv/CWtHvr86JU -peer0.org1.example.com | [00e 01-18 01:58:46.64 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] exists -orderer.example.com | 2018-01-18 01:58:46.465 UTC [bccsp] initBCCSP -> DEBU 004 Initialize BCCSP [SW] -orderer.example.com | 2018-01-18 01:58:46.465 UTC [msp] getPemMaterialFromDir -> DEBU 005 Reading directory /var/hyperledger/orderer/msp/signcerts -peer1.org1.example.com | Chaincode: -peer1.org2.example.com | Cp7fopYLAR0CUyw+Xyk= -peer1.org2.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [00f 01-18 01:58:46.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider -> DEBU constructing HistoryDBProvider dbPath=/var/hyperledger/production/ledgersData/historyLeveldb -peer0.org1.example.com | [010 01-18 01:58:46.65 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/historyLeveldb/] -peer1.org1.example.com | Base Image Version: 0.3.2 -peer0.org2.example.com | [159 01-18 01:58:48.42 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.0.2 -peer1.org2.example.com | [0d2 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3b7a7261]Received message COMPLETED from shim -peer1.org2.example.com | [0d4 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3b7a7261]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | 2018-01-18 01:58:46.467 UTC [msp] getPemMaterialFromDir -> DEBU 006 Inspecting file /var/hyperledger/orderer/msp/signcerts/orderer.example.com-cert.pem -peer1.org1.example.com | Base Docker Namespace: hyperledger -peer1.org1.example.com | Base Docker Label: org.hyperledger.fabric -peer0.org2.example.com | [15c 01-18 01:58:48.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org2.example.com:7052] -peer0.org2.example.com | [15d 01-18 01:58:48.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.0.2 -peer1.org2.example.com | [0d5 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3b7a7261-89d0-45ed-9c54-749444b5b936]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [011 01-18 01:58:46.65 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] does not exist -peer1.org1.example.com | Docker Namespace: hyperledger -orderer.example.com | 2018-01-18 01:58:46.470 UTC [msp] getPemMaterialFromDir -> DEBU 007 Reading directory /var/hyperledger/orderer/msp/cacerts -peer1.org2.example.com | [0d3 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/msp/mgmt] func1.Handshake.authenticateRemotePeer.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | -peer0.org2.example.com | [15e 01-18 01:58:48.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -orderer.example.com | 2018-01-18 01:58:46.472 UTC [msp] getPemMaterialFromDir -> DEBU 008 Inspecting file /var/hyperledger/orderer/msp/cacerts/ca.example.com-cert.pem -peer0.org1.example.com | [012 01-18 01:58:46.65 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] exists -peer1.org2.example.com | [0d6 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:3b7a7261-89d0-45ed-9c54-749444b5b936 -peer1.org1.example.com | [002 01-18 01:58:49.56 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO Initializing ledger mgmt -orderer.example.com | 2018-01-18 01:58:46.474 UTC [msp] getPemMaterialFromDir -> DEBU 009 Reading directory /var/hyperledger/orderer/msp/admincerts -orderer.example.com | 2018-01-18 01:58:46.477 UTC [msp] getPemMaterialFromDir -> DEBU 00a Inspecting file /var/hyperledger/orderer/msp/admincerts/Admin@example.com-cert.pem -peer0.org2.example.com | [15f 01-18 01:58:48.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer0.org1.example.com | [013 01-18 01:58:46.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO ledger provider Initialized -peer1.org1.example.com | [003 01-18 01:58:49.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO Initializing ledger provider -peer1.org1.example.com | [004 01-18 01:58:49.56 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/ledgerProvider/] -peer1.org1.example.com | [005 01-18 01:58:49.56 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] does not exist -peer1.org1.example.com | [006 01-18 01:58:49.56 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] exists -orderer.example.com | 2018-01-18 01:58:46.479 UTC [msp] getPemMaterialFromDir -> DEBU 00b Reading directory /var/hyperledger/orderer/msp/intermediatecerts -peer0.org1.example.com | [014 01-18 01:58:46.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.recoverUnderConstructionLedger -> DEBU Recovering under construction ledger -peer1.org2.example.com | [0d7 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/msp] func1.Handshake.authenticateRemotePeer.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org2MSP validating identity -peer0.org2.example.com | [160 01-18 01:58:48.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer0.org2.example.com | [161 01-18 01:58:48.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer0.org2.example.com | [162 01-18 01:58:48.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode qscc:1.0.2 -peer0.org2.example.com | [163 01-18 01:58:48.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"qscc:1.0.2" , sending back REGISTERED -peer0.org2.example.com | [164 01-18 01:58:48.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer1.org1.example.com | [007 01-18 01:58:49.57 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/index/] -peer1.org1.example.com | [008 01-18 01:58:49.57 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/index/] does not exist -orderer.example.com | 2018-01-18 01:58:46.479 UTC [msp] getMspConfig -> DEBU 00c Intermediate certs folder not found at [/var/hyperledger/orderer/msp/intermediatecerts]. Skipping. [stat /var/hyperledger/orderer/msp/intermediatecerts: no such file or directory] -peer1.org2.example.com | [0d8 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [166 01-18 01:58:48.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer0.org1.example.com | [015 01-18 01:58:46.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.recoverUnderConstructionLedger -> DEBU No under construction ledger found. Quitting recovery -peer1.org1.example.com | [009 01-18 01:58:49.57 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/index/] exists -orderer.example.com | 2018-01-18 01:58:46.479 UTC [msp] getPemMaterialFromDir -> DEBU 00d Reading directory /var/hyperledger/orderer/msp/tlscacerts -peer1.org2.example.com | [0d9 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed -peer0.org2.example.com | [167 01-18 01:58:48.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer0.org1.example.com | [016 01-18 01:58:46.65 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO ledger mgmt initialized -peer1.org1.example.com | [00a 01-18 01:58:49.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> DEBU Constructing leveldb VersionedDBProvider -peer1.org1.example.com | [00b 01-18 01:58:49.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider -> DEBU constructing VersionedDBProvider dbPath=/var/hyperledger/production/ledgersData/stateLeveldb -peer1.org1.example.com | [00c 01-18 01:58:49.58 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/stateLeveldb/] -peer1.org1.example.com | [00d 01-18 01:58:49.58 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] does not exist -peer1.org1.example.com | [00e 01-18 01:58:49.58 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] exists -peer1.org1.example.com | [00f 01-18 01:58:49.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider -> DEBU constructing HistoryDBProvider dbPath=/var/hyperledger/production/ledgersData/historyLeveldb -peer1.org1.example.com | [010 01-18 01:58:49.60 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/historyLeveldb/] -peer1.org1.example.com | [011 01-18 01:58:49.60 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] does not exist -peer1.org1.example.com | [012 01-18 01:58:49.60 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] exists -peer1.org1.example.com | [013 01-18 01:58:49.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO ledger provider Initialized -orderer.example.com | 2018-01-18 01:58:46.482 UTC [msp] getPemMaterialFromDir -> DEBU 00e Inspecting file /var/hyperledger/orderer/msp/tlscacerts/tlsca.example.com-cert.pem -peer0.org1.example.com | [017 01-18 01:58:46.66 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with TLS enabled -peer0.org1.example.com | [018 01-18 01:58:46.66 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering BLOCK -peer0.org1.example.com | [019 01-18 01:58:46.66 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering CHAINCODE -peer0.org1.example.com | [01a 01-18 01:58:46.66 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REJECTION -peer0.org1.example.com | [01b 01-18 01:58:46.66 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REGISTER -peer0.org1.example.com | [01c 01-18 01:58:46.67 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started -peer0.org1.example.com | [01d 01-18 01:58:46.67 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport -> DEBU Chaincode startup timeout value set to 5m0s -peer0.org1.example.com | [01e 01-18 01:58:46.67 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> INFO Chaincode support using peerAddress: peer0.org1.example.com:7052 -peer0.org1.example.com | [01f 01-18 01:58:46.67 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Turn off keepalive(value 0) -peer0.org1.example.com | [020 01-18 01:58:46.67 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Setting execute timeout value to 30s -peer0.org1.example.com | [021 01-18 01:58:46.67 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_LEVEL set to level info -peer0.org1.example.com | [022 01-18 01:58:46.67 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_SHIM set to level warning -peer0.org1.example.com | [023 01-18 01:58:46.67 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered -peer0.org1.example.com | [024 01-18 01:58:46.68 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered -peer0.org1.example.com | [025 01-18 01:58:46.68 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode escc(github.com/hyperledger/fabric/core/scc/escc) registered -peer1.org2.example.com | [0da 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/msp/mgmt] func1.Handshake.authenticateRemotePeer.Verify.func3.Verify.Verify.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [0db 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=escc,version=1.0.2,txid=c118ab6e-9075-4291-82ee-cae9395e3907,syscc=true,proposal=0x0,canname=escc:1.0.2 -peer0.org2.example.com | [168 01-18 01:58:48.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -orderer.example.com | 2018-01-18 01:58:46.484 UTC [msp] getPemMaterialFromDir -> DEBU 00f Reading directory /var/hyperledger/orderer/msp/tlsintermediatecerts -peer0.org1.example.com | [026 01-18 01:58:46.68 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode vscc(github.com/hyperledger/fabric/core/scc/vscc) registered -peer1.org1.example.com | [014 01-18 01:58:49.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.recoverUnderConstructionLedger -> DEBU Recovering under construction ledger -orderer.example.com | 2018-01-18 01:58:46.485 UTC [msp] getMspConfig -> DEBU 010 TLS intermediate certs folder not found at [/var/hyperledger/orderer/msp/tlsintermediatecerts]. Skipping. [stat /var/hyperledger/orderer/msp/tlsintermediatecerts: no such file or directory] -peer0.org2.example.com | [165 01-18 01:58:48.42 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode qscc:1.0.2 launch seq completed -peer1.org2.example.com | [0dd 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode escc:1.0.2 is being launched -peer0.org1.example.com | [027 01-18 01:58:46.68 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/chaincode/qscc) registered -peer1.org1.example.com | [015 01-18 01:58:49.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.recoverUnderConstructionLedger -> DEBU No under construction ledger found. Quitting recovery -orderer.example.com | 2018-01-18 01:58:46.485 UTC [msp] getPemMaterialFromDir -> DEBU 011 Reading directory /var/hyperledger/orderer/msp/crls -peer0.org2.example.com | [169 01-18 01:58:48.42 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -peer0.org1.example.com | [028 01-18 01:58:46.68 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer -peer1.org2.example.com | [0de 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -peer1.org1.example.com | [016 01-18 01:58:49.62 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO ledger mgmt initialized -orderer.example.com | 2018-01-18 01:58:46.486 UTC [msp] getMspConfig -> DEBU 012 crls folder not found at [/var/hyperledger/orderer/msp/crls]. Skipping. [stat /var/hyperledger/orderer/msp/crls: no such file or directory] -peer0.org1.example.com | [029 01-18 01:58:46.68 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.NewEndorserServer.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [017 01-18 01:58:49.63 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with TLS enabled -orderer.example.com | 2018-01-18 01:58:46.486 UTC [msp] getMspConfig -> DEBU 013 MSP configuration file not found at [/var/hyperledger/orderer/msp/config.yaml]: [stat /var/hyperledger/orderer/msp/config.yaml: no such file or directory] -peer0.org2.example.com | [16a 01-18 01:58:48.42 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [0df 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer1.org2.example.com:7052] -peer0.org1.example.com | [02a 01-18 01:58:46.68 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [018 01-18 01:58:49.63 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering BLOCK -orderer.example.com | 2018-01-18 01:58:46.486 UTC [msp] NewBccspMsp -> DEBU 014 Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-18 01:58:46.486 UTC [msp] GetLocalMSP -> DEBU 015 Created new local MSP -orderer.example.com | 2018-01-18 01:58:46.486 UTC [msp] Setup -> DEBU 016 Setting up MSP instance OrdererMSP -peer1.org2.example.com | [0e0 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: escc:1.0.2(networkid:dev,peerid:peer1.org2.example.com) -peer0.org1.example.com | [02b 01-18 01:58:46.68 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | 2018-01-18 01:58:46.487 UTC [msp/identity] newIdentity -> DEBU 017 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [019 01-18 01:58:49.63 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering CHAINCODE -peer0.org2.example.com | [16b 01-18 01:58:48.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2cdddf1a]Move state message READY -peer0.org1.example.com | [02c 01-18 01:58:46.68 UTC] [github.com/hyperledger/fabric/gossip/service] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1 -> INFO Initialize gossip with endpoint peer0.org1.example.com:7051 and bootstrap set [127.0.0.1:7051] -orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL -peer1.org1.example.com | [01a 01-18 01:58:49.63 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REJECTION -peer0.org1.example.com | [02d 01-18 01:58:46.68 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [0e1 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer1.org2.example.com:7052 -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org2.example.com | [16c 01-18 01:58:48.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2cdddf1a]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org1.example.com | [01b 01-18 01:58:49.63 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REGISTER -peer0.org1.example.com | [02e 01-18 01:58:46.68 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -peer1.org2.example.com | [0e2 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: -peer1.org1.example.com | [01c 01-18 01:58:49.63 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started -peer0.org1.example.com | [02f 01-18 01:58:46.68 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [16d 01-18 01:58:48.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [2cdddf1a]Entered state ready -peer0.org2.example.com | [16e 01-18 01:58:48.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:2cdddf1a-93f1-49aa-83bc-12d659f12a3d -peer0.org2.example.com | [16f 01-18 01:58:48.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2cdddf1a]sending state message READY -peer0.org2.example.com | [170 01-18 01:58:48.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2cdddf1a]Received message READY from shim -peer0.org2.example.com | [171 01-18 01:58:48.42 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -peer0.org2.example.com | [172 01-18 01:58:48.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2cdddf1a]Handling ChaincodeMessage of type: READY(state:established) -peer0.org2.example.com | [173 01-18 01:58:48.42 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -peer0.org2.example.com | [174 01-18 01:58:48.42 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [175 01-18 01:58:48.42 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.2 -peer0.org2.example.com | [176 01-18 01:58:48.42 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [2cdddf1a]Inside sendExecuteMessage. Message INIT -orderer.example.com | cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW -orderer.example.com | gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w -orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -orderer.example.com | AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK -orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs -orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= -peer1.org1.example.com | [01d 01-18 01:58:49.64 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport -> DEBU Chaincode startup timeout value set to 5m0s -peer1.org2.example.com | CORE_CHAINCODE_ID_NAME=escc:1.0.2 -peer1.org2.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer1.org2.example.com | [0e3 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(escc-1.0.2) lock -peer1.org2.example.com | [0e4 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (escc-1.0.2) lock -peer0.org1.example.com | MIICGTCCAcCgAwIBAgIRALw0jT/FIanMxPg6w2uUMSowCgYIKoZIzj0EAwIwczEL -orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [01e 01-18 01:58:49.64 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> INFO Chaincode support using peerAddress: peer1.org1.example.com:7052 -peer1.org1.example.com | [01f 01-18 01:58:49.64 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Turn off keepalive(value 0) -orderer.example.com | 2018-01-18 01:58:46.488 UTC [msp/identity] newIdentity -> DEBU 018 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -peer1.org2.example.com | [0e5 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for escc-1.0.2 -peer1.org2.example.com | [0e6 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(escc-1.0.2) -peer1.org2.example.com | [0e7 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for escc-1.0.2 -peer1.org2.example.com | [0e8 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer1.org2.example.com | [0e9 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [0ea 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for escc-1.0.2 -peer1.org2.example.com | [0eb 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org2.example.com:7052] -peer0.org2.example.com | [177 01-18 01:58:48.42 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -peer1.org1.example.com | [020 01-18 01:58:49.64 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Setting execute timeout value to 30s -peer0.org2.example.com | [178 01-18 01:58:48.42 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [2cdddf1a]sendExecuteMsg trigger event INIT -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer1.org2.example.com | [0ec 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=escc:1.0.2 -peer0.org1.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org1.example.com | [021 01-18 01:58:49.64 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_LEVEL set to level info -peer1.org1.example.com | [022 01-18 01:58:49.64 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_SHIM set to level warning -peer1.org1.example.com | [023 01-18 01:58:49.64 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered -peer1.org1.example.com | [024 01-18 01:58:49.64 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered -peer1.org1.example.com | [025 01-18 01:58:49.64 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode escc(github.com/hyperledger/fabric/core/scc/escc) registered -peer1.org1.example.com | [026 01-18 01:58:49.64 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode vscc(github.com/hyperledger/fabric/core/scc/vscc) registered -peer1.org1.example.com | [027 01-18 01:58:49.64 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/chaincode/qscc) registered -peer1.org1.example.com | [028 01-18 01:58:49.64 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer -peer1.org1.example.com | [029 01-18 01:58:49.64 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.NewEndorserServer.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [02a 01-18 01:58:49.65 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [02b 01-18 01:58:49.65 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer1.org1.example.com | [02c 01-18 01:58:49.65 UTC] [github.com/hyperledger/fabric/gossip/service] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1 -> INFO Initialize gossip with endpoint peer1.org1.example.com:7051 and bootstrap set [peer0.org1.example.com:7051] -peer1.org1.example.com | [02d 01-18 01:58:49.65 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -peer0.org1.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMS5leGFtcGxlLmNvbTBZ -peer1.org1.example.com | [02e 01-18 01:58:49.65 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity -peer1.org2.example.com | [0ed 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer0.org2.example.com | [179 01-18 01:58:48.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2cdddf1a]Move state message INIT -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -peer0.org1.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABKqfdWF/oY+2ymqjk+AlBN+RBThxPp/k -peer1.org1.example.com | [02f 01-18 01:58:49.65 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -peer0.org1.example.com | lU+BhmGArpnlGNd7iT6pil/iSDtfA5xZ9we5NIfTehFqmZcI6g1N172jTTBLMA4G -peer1.org1.example.com | MIICGTCCAcCgAwIBAgIRAP//zqWKYzSHLW7GfxKsMZYwCgYIKoZIzj0EAwIwczEL -peer1.org2.example.com | [0dc 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/msp] func1.Handshake.authenticateRemotePeer.Verify.func3.Verify.Verify.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity -peer0.org2.example.com | [17a 01-18 01:58:48.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2cdddf1a]Fabric side Handling ChaincodeMessage of type: INIT in state ready -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -peer0.org1.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -peer1.org1.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [0ee 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer0.org2.example.com | [17b 01-18 01:58:48.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIALSJqGc -peer1.org1.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | 2018-01-18 01:58:46.488 UTC [msp/identity] newIdentity -> DEBU 019 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | vdZHCJ0RecVQ2Rdtkdnok57p68XFlRBy2l4xAiAJS6Z2yxyElBubPI0MBn//Xs9l -peer1.org1.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -peer1.org1.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org1.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ -peer1.org1.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMkhzyzkBQMmDIFIj+Dmnud+j7/3h/LM -peer1.org1.example.com | sUwFjL4AqbRBEG6vNDX4lF1jwBBt39uJxvOBL2wKymZ0rY/LVNK4vumjTTBLMA4G -peer1.org1.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -peer1.org1.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIB1/N1vq -peer1.org1.example.com | NZ8srg0DN/kZsRGGbGxZDd6SUmUSPGopEZ+BAiAFLGQc/nVZ7H9e3TOSPWkj9xXI -peer1.org1.example.com | zBwtXbaE2rpu1wCNZg== -peer1.org1.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [030 01-18 01:58:49.65 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [031 01-18 01:58:49.65 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity -peer1.org1.example.com | [032 01-18 01:58:49.66 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -peer1.org2.example.com | [0ef 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer0.org1.example.com | 05n0MbLw/Ug3egJ3JA== -peer0.org2.example.com | [17c 01-18 01:58:48.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2cdddf1a]sending state message INIT -peer1.org1.example.com | [033 01-18 01:58:49.66 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity -> INFO Obtaining identity -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [17d 01-18 01:58:48.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2cdddf1a]Received message INIT from shim -peer1.org1.example.com | [034 01-18 01:58:49.66 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer0.org1.example.com | [030 01-18 01:58:46.68 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [0f0 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer1.org1.example.com | MIICGTCCAcCgAwIBAgIRAP//zqWKYzSHLW7GfxKsMZYwCgYIKoZIzj0EAwIwczEL -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -peer0.org1.example.com | [031 01-18 01:58:46.68 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity -peer1.org1.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org2.example.com | [0f1 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode escc:1.0.2 -peer0.org2.example.com | [17e 01-18 01:58:48.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2cdddf1a]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [17f 01-18 01:58:48.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org2.example.com | [180 01-18 01:58:48.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [2cdddf1a]Received INIT, initializing chaincode -peer0.org2.example.com | [181 01-18 01:58:48.42 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -peer0.org1.example.com | [032 01-18 01:58:46.69 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [033 01-18 01:58:46.69 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity -> INFO Obtaining identity -peer1.org2.example.com | [0f2 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"escc:1.0.2" , sending back REGISTERED -peer1.org1.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org2.example.com | [182 01-18 01:58:48.42 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -peer0.org1.example.com | [034 01-18 01:58:46.69 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | MIICGTCCAcCgAwIBAgIRALw0jT/FIanMxPg6w2uUMSowCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org2.example.com | [0f3 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer1.org1.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -peer0.org2.example.com | [183 01-18 01:58:48.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2cdddf1a]Init get response status: 200 -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -peer0.org1.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -peer0.org1.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMS5leGFtcGxlLmNvbTBZ -peer0.org1.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABKqfdWF/oY+2ymqjk+AlBN+RBThxPp/k -peer0.org1.example.com | lU+BhmGArpnlGNd7iT6pil/iSDtfA5xZ9we5NIfTehFqmZcI6g1N172jTTBLMA4G -peer0.org1.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -peer0.org1.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIALSJqGc -peer0.org1.example.com | vdZHCJ0RecVQ2Rdtkdnok57p68XFlRBy2l4xAiAJS6Z2yxyElBubPI0MBn//Xs9l -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -peer1.org1.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org2.example.com | [0f4 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer0.org1.example.com | 05n0MbLw/Ug3egJ3JA== -peer0.org2.example.com | [184 01-18 01:58:48.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2cdddf1a]Init succeeded. Sending COMPLETED -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -peer1.org1.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ -peer0.org2.example.com | [185 01-18 01:58:48.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2cdddf1a]Move state message COMPLETED -peer1.org2.example.com | [0f5 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer0.org1.example.com | -----END CERTIFICATE----- -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:46.489 UTC [msp/identity] newIdentity -> DEBU 01a Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq -orderer.example.com | hkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz -orderer.example.com | MKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw -orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN -orderer.example.com | RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH -orderer.example.com | /4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl -orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMkhzyzkBQMmDIFIj+Dmnud+j7/3h/LM -peer1.org1.example.com | sUwFjL4AqbRBEG6vNDX4lF1jwBBt39uJxvOBL2wKymZ0rY/LVNK4vumjTTBLMA4G -peer1.org1.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -peer0.org2.example.com | [186 01-18 01:58:48.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2cdddf1a]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [187 01-18 01:58:48.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2cdddf1a]send state message COMPLETED -peer0.org2.example.com | [188 01-18 01:58:48.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2cdddf1a]Received message COMPLETED from shim -peer0.org2.example.com | [189 01-18 01:58:48.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2cdddf1a]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [18a 01-18 01:58:48.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2cdddf1a-93f1-49aa-83bc-12d659f12a3d]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [18b 01-18 01:58:48.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:2cdddf1a-93f1-49aa-83bc-12d659f12a3d -peer0.org2.example.com | [18c 01-18 01:58:48.42 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [18d 01-18 01:58:48.42 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/chaincode/qscc) deployed -peer0.org2.example.com | [18e 01-18 01:58:48.42 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.initSysCCs -> INFO Deployed system chaincodess -peer0.org2.example.com | [18f 01-18 01:58:48.42 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with ID=[name:"peer0.org2.example.com" ], network ID=[dev], address=[peer0.org2.example.com:7051] -peer0.org2.example.com | [190 01-18 01:58:48.43 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Started peer with ID=[name:"peer0.org2.example.com" ], network ID=[dev], address=[peer0.org2.example.com:7051] -peer0.org2.example.com | [191 01-18 01:58:48.43 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'configvalues/msp' logger enabled for log level 'WARNING' -orderer.example.com | 2018-01-18 01:58:46.492 UTC [bccsp_sw] loadPrivateKey -> DEBU 01b Loading private key [0edbe541bf5502a74172e6e52540bc522e7cbcdf9ba374fad803a4c87fd2e14e] at [/var/hyperledger/orderer/msp/keystore/0edbe541bf5502a74172e6e52540bc522e7cbcdf9ba374fad803a4c87fd2e14e_sk]... -orderer.example.com | 2018-01-18 01:58:46.495 UTC [msp/identity] newIdentity -> DEBU 01c Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw -peer0.org1.example.com | [036 01-18 01:58:46.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer0.org2.example.com | [192 01-18 01:58:48.43 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'msp/identity' logger enabled for log level 'WARNING' -peer1.org2.example.com | [0f6 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [037 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s -peer1.org1.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIB1/N1vq -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer0.org2.example.com | [193 01-18 01:58:48.43 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'msp' logger enabled for log level 'WARNING' -peer1.org1.example.com | NZ8srg0DN/kZsRGGbGxZDd6SUmUSPGopEZ+BAiAFLGQc/nVZ7H9e3TOSPWkj9xXI -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE -peer1.org2.example.com | [0f8 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode escc:1.0.2 launch seq completed -peer0.org2.example.com | [194 01-18 01:58:48.43 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'peer/gossip/sa' logger enabled for log level 'WARNING' -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer1.org1.example.com | zBwtXbaE2rpu1wCNZg== -peer1.org2.example.com | [0f9 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -peer0.org1.example.com | [035 01-18 01:58:46.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewDiscoveryService -> INFO Started {peer0.org1.example.com:7051 [] [67 57 124 107 226 101 123 170 242 161 114 171 7 37 125 129 66 25 246 152 76 9 231 202 239 174 113 90 43 207 127 228] peer0.org1.example.com:7051} incTime is 1516240726695314194 -peer0.org2.example.com | [195 01-18 01:58:48.43 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/election' logger enabled for log level 'WARNING' -orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq -peer1.org1.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [0fa 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [035 01-18 01:58:49.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewDiscoveryService -> INFO Started {peer1.org1.example.com:7051 [] [41 212 113 155 111 60 253 152 128 154 139 93 55 46 176 226 115 170 244 7 180 226 17 187 201 154 21 203 20 223 179 175] peer1.org1.example.com:7051} incTime is 1516240729664533142 -peer0.org1.example.com | [038 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService -> INFO Creating gossip service with self membership of {peer0.org1.example.com:7051 [] [67 57 124 107 226 101 123 170 242 161 114 171 7 37 125 129 66 25 246 152 76 9 231 202 239 174 113 90 43 207 127 228] peer0.org1.example.com:7051} -peer0.org2.example.com | [196 01-18 01:58:48.43 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/state' logger enabled for log level 'WARNING' -orderer.example.com | hkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz -peer1.org1.example.com | [038 01-18 01:58:49.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService -> INFO Creating gossip service with self membership of {peer1.org1.example.com:7051 [] [41 212 113 155 111 60 253 152 128 154 139 93 55 46 176 226 115 170 244 7 180 226 17 187 201 154 21 203 20 223 179 175] peer1.org1.example.com:7051} -peer1.org2.example.com | [0fb 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c118ab6e]Move state message READY -peer0.org1.example.com | [039 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | MKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw -peer0.org2.example.com | [197 01-18 01:58:48.43 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'peer/gossip/mcs' logger enabled for log level 'WARNING' -peer1.org1.example.com | [036 01-18 01:58:49.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer1.org2.example.com | [0fc 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c118ab6e]Fabric side Handling ChaincodeMessage of type: READY in state established -orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN -peer0.org1.example.com | [03a 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity -peer0.org1.example.com | [03b 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [037 01-18 01:58:49.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s -peer1.org1.example.com | [039 01-18 01:58:49.66 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH -peer0.org2.example.com | [198 01-18 01:58:48.43 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/discovery' logger enabled for log level 'WARNING' -peer0.org1.example.com | MIICGTCCAcCgAwIBAgIRALw0jT/FIanMxPg6w2uUMSowCgYIKoZIzj0EAwIwczEL -peer1.org2.example.com | [0fd 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [c118ab6e]Entered state ready -peer1.org1.example.com | [03a 01-18 01:58:49.66 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity -orderer.example.com | /4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl -peer0.org2.example.com | [199 01-18 01:58:48.43 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/comm' logger enabled for log level 'WARNING' -peer1.org1.example.com | [03b 01-18 01:58:49.67 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [0fe 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:c118ab6e-9075-4291-82ee-cae9395e3907 -orderer.example.com | 2018-01-18 01:58:46.497 UTC [msp] Validate -> DEBU 01d MSP OrdererMSP validating identity -peer0.org1.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org1.example.com | MIICGTCCAcCgAwIBAgIRAP//zqWKYzSHLW7GfxKsMZYwCgYIKoZIzj0EAwIwczEL -orderer.example.com | 2018-01-18 01:58:46.498 UTC [orderer/main] createLedgerFactory -> DEBU 01e Ledger dir: /var/hyperledger/production/orderer -peer0.org2.example.com | [19a 01-18 01:58:48.43 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/pull' logger enabled for log level 'WARNING' -peer1.org2.example.com | [0f7 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/msp] func1.Handshake.authenticateRemotePeer.Verify.func3.Verify.Verify.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org1.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | 2018-01-18 01:58:46.498 UTC [kvledger.util] CreateDirIfMissing -> DEBU 01f CreateDirIfMissing [/var/hyperledger/production/orderer/index/] -peer1.org2.example.com | MIICGjCCAcCgAwIBAgIRAPwSzyg1PPrCeVhRqDo4IRcwCgYIKoZIzj0EAwIwczEL -peer1.org1.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | 2018-01-18 01:58:46.498 UTC [kvledger.util] logDirStatus -> DEBU 020 Before creating dir - [/var/hyperledger/production/orderer/index/] does not exist -peer0.org1.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -peer1.org1.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -peer1.org1.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org1.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ -peer1.org1.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMkhzyzkBQMmDIFIj+Dmnud+j7/3h/LM -peer1.org1.example.com | sUwFjL4AqbRBEG6vNDX4lF1jwBBt39uJxvOBL2wKymZ0rY/LVNK4vumjTTBLMA4G -peer1.org1.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -peer1.org1.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIB1/N1vq -peer1.org1.example.com | NZ8srg0DN/kZsRGGbGxZDd6SUmUSPGopEZ+BAiAFLGQc/nVZ7H9e3TOSPWkj9xXI -peer1.org1.example.com | zBwtXbaE2rpu1wCNZg== -peer1.org1.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [03c 01-18 01:58:49.67 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [03d 01-18 01:58:49.67 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity -peer1.org1.example.com | [03e 01-18 01:58:49.67 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [03f 01-18 01:58:49.67 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org2.example.com | [19b 01-18 01:58:48.43 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/service' logger enabled for log level 'WARNING' -peer0.org2.example.com | [19c 01-18 01:58:48.43 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/gossip' logger enabled for log level 'WARNING' -peer1.org1.example.com | [040 01-18 01:58:49.67 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: plaintext: 1801AA01B1060A2029D4719B6F3CFD98...0A2D2D2D2D2D454E44202D2D2D2D2D0A -peer1.org1.example.com | [041 01-18 01:58:49.67 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: digest: 67B5A06203E1924331C334A5346029B42E35CDE66A3C99C448068A0EC421F682 -peer1.org1.example.com | [042 01-18 01:58:49.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance peer1.org1.example.com:7051 started -peer1.org1.example.com | [043 01-18 01:58:49.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s -peer1.org1.example.com | [044 01-18 01:58:49.67 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [045 01-18 01:58:49.67 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer1.org1.example.com | [047 01-18 01:58:49.67 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 18012ADE060A3F0A1B70656572312E6F...0A2D2D2D2D2D454E44202D2D2D2D2D0A -peer1.org1.example.com | [048 01-18 01:58:49.67 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: digest: 23564DF7B0772A7BF63A32A9E52476A518202B8F5C0FBACC30F0B69AD288307F -peer1.org1.example.com | [049 01-18 01:58:49.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Entering {peer0.org1.example.com:7051 [] [] peer0.org1.example.com:7051} -peer1.org1.example.com | [04b 01-18 01:58:49.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Exiting -peer0.org1.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org1.example.com | [04a 01-18 01:58:49.67 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org2.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | 2018-01-18 01:58:46.499 UTC [kvledger.util] logDirStatus -> DEBU 021 After creating dir - [/var/hyperledger/production/orderer/index/] exists -peer0.org1.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMS5leGFtcGxlLmNvbTBZ -peer1.org1.example.com | [04c 01-18 01:58:49.67 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org2.example.com | [19d 01-18 01:58:48.43 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'kvledger' logger enabled for log level 'INFO' -orderer.example.com | 2018-01-18 01:58:46.511 UTC [fsblkstorage] newBlockfileMgr -> DEBU 022 newBlockfileMgr() initializing file-based block storage for ledger: testchainid -peer0.org1.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABKqfdWF/oY+2ymqjk+AlBN+RBThxPp/k -peer1.org2.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -peer1.org1.example.com | [04d 01-18 01:58:49.67 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A1B70656572312E6F7267312E6578616D706C652E636F6D3A37303531 -orderer.example.com | 2018-01-18 01:58:46.511 UTC [kvledger.util] CreateDirIfMissing -> DEBU 023 CreateDirIfMissing [/var/hyperledger/production/orderer/chains/testchainid/] -peer0.org2.example.com | [19e 01-18 01:58:48.43 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'kvledger.util' logger enabled for log level 'INFO' -peer0.org1.example.com | lU+BhmGArpnlGNd7iT6pil/iSDtfA5xZ9we5NIfTehFqmZcI6g1N172jTTBLMA4G -peer1.org1.example.com | [04e 01-18 01:58:49.67 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: digest: 5E1207E32E2709D3C49FD6E4E42EA75E054BF7CAB0517372323BB60EB639719F -peer1.org2.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | 2018-01-18 01:58:46.511 UTC [kvledger.util] logDirStatus -> DEBU 024 Before creating dir - [/var/hyperledger/production/orderer/chains/testchainid/] does not exist -orderer.example.com | 2018-01-18 01:58:46.511 UTC [kvledger.util] logDirStatus -> DEBU 025 After creating dir - [/var/hyperledger/production/orderer/chains/testchainid/] exists -peer0.org2.example.com | [19f 01-18 01:58:48.43 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'ledgermgmt' logger enabled for log level 'INFO' -peer0.org1.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -peer1.org1.example.com | [046 01-18 01:58:49.67 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.0.2,txid=8b9ff424-d990-4984-bffb-2ef0da083ef8,syscc=true,proposal=0x0,canname=cscc:1.0.2 -peer1.org1.example.com | [04f 01-18 01:58:49.67 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode cscc:1.0.2 is being launched -orderer.example.com | 2018-01-18 01:58:46.512 UTC [fsblkstorage] syncCPInfoFromFS -> DEBU 026 Starting checkpoint=latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0] -peer0.org1.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIALSJqGc -peer0.org1.example.com | vdZHCJ0RecVQ2Rdtkdnok57p68XFlRBy2l4xAiAJS6Z2yxyElBubPI0MBn//Xs9l -peer0.org1.example.com | 05n0MbLw/Ug3egJ3JA== -peer0.org1.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [03c 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [03d 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity -peer1.org2.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMi5leGFtcGxlLmNvbTBZ -peer1.org2.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABHIO8CckN5HgY1i/7g0IJdzk172E2x4D -peer1.org2.example.com | lEymsPxBTC6SMx2H76gyAZbaUHLzDOc03WXuxNm/5CEb0PCug4gLmYqjTTBLMA4G -peer1.org2.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -peer1.org2.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQDuMCD1 -peer1.org2.example.com | cBz5946zQSaxCXuanblvvPmDo4EJj3fN1TTl4wIgK6OJNoi5UYFhv/CWtHvr86JU -peer1.org1.example.com | [050 01-18 01:58:49.67 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -peer1.org1.example.com | [051 01-18 01:58:49.67 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer1.org1.example.com:7052] -peer1.org1.example.com | [052 01-18 01:58:49.67 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: cscc:1.0.2(networkid:dev,peerid:peer1.org1.example.com) -peer1.org1.example.com | [053 01-18 01:58:49.67 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer1.org1.example.com:7052 -peer1.org1.example.com | [054 01-18 01:58:49.67 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: -peer1.org1.example.com | CORE_CHAINCODE_ID_NAME=cscc:1.0.2 -peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer1.org1.example.com | [055 01-18 01:58:49.67 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.0.2) lock -peer1.org1.example.com | [056 01-18 01:58:49.67 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.0.2) lock -peer1.org1.example.com | [057 01-18 01:58:49.67 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for cscc-1.0.2 -peer1.org1.example.com | [058 01-18 01:58:49.67 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.0.2) -peer1.org1.example.com | [059 01-18 01:58:49.67 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.0.2 -peer1.org1.example.com | [05a 01-18 01:58:49.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer1.org1.example.com | [05b 01-18 01:58:49.67 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [1a0 01-18 01:58:48.43 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'cauthdsl' logger enabled for log level 'WARNING' -peer0.org2.example.com | [1a1 01-18 01:58:48.43 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'policies' logger enabled for log level 'WARNING' -peer0.org2.example.com | [1a2 01-18 01:58:48.43 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'grpc' logger enabled for log level 'ERROR' -peer0.org2.example.com | [1a3 01-18 01:58:52.96 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -peer0.org2.example.com | [1a4 01-18 01:58:52.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4216f89f0 -peer0.org2.example.com | [1a5 01-18 01:58:52.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer0.org2.example.com | [1a6 01-18 01:58:52.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org2.example.com | [1a7 01-18 01:58:52.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} -orderer.example.com | 2018-01-18 01:58:46.513 UTC [fsblkstorage] syncCPInfoFromFS -> DEBU 027 status of file [/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000]: exists=[false], size=[0] -orderer.example.com | 2018-01-18 01:58:46.513 UTC [fsblkstorage] newBlockIndex -> DEBU 028 newBlockIndex() - indexItems:[[BlockNum]] -orderer.example.com | 2018-01-18 01:58:46.513 UTC [fsblkstorage] newBlockfileStream -> DEBU 029 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] -orderer.example.com | 2018-01-18 01:58:46.513 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 02a Finished reading file number [0] -orderer.example.com | 2018-01-18 01:58:46.513 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 02b blockbytes [0] read from file [0] -peer0.org1.example.com | [03e 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [03f 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org1.example.com | [040 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: plaintext: 1801AA01B1060A2043397C6BE2657BAA...0A2D2D2D2D2D454E44202D2D2D2D2D0A -peer0.org1.example.com | [041 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: digest: 69B0B99854ABC12C15CEC60EABCF9E5C3A71C9284F1136F83AF170B4B7A7CAB3 -peer1.org2.example.com | Cp7fopYLAR0CUyw+Xyk= -peer0.org2.example.com | [1a8 01-18 01:58:52.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | 2018-01-18 01:58:46.515 UTC [fsblkstorage] indexBlock -> DEBU 02c Indexing block [blockNum=0, blockHash=[]byte{0x89, 0xd5, 0xd2, 0x88, 0xd1, 0xb6, 0xc3, 0x25, 0x91, 0xfb, 0x5e, 0x94, 0x7f, 0x80, 0xeb, 0xd3, 0x7d, 0xdd, 0x80, 0xdf, 0x56, 0xc0, 0xb2, 0xfc, 0xe3, 0x98, 0x5f, 0x12, 0xd8, 0x6b, 0xb0, 0x21} txOffsets= -peer1.org1.example.com | [05c 01-18 01:58:49.67 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.0.2 -peer1.org2.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [101 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/msp/mgmt] func1.Handshake.authenticateRemotePeer.Verify.func3.Verify.Verify.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [1a9 01-18 01:58:52.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org1.example.com | [042 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance peer0.org1.example.com:7051 started -orderer.example.com | txId=39266883a94d0b87be6c51e2f16ce943b4d54e117e366bcac9318c13c284ab01 locPointer=offset=38, bytesLength=9039 -peer1.org2.example.com | [102 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/msp] func1.Handshake.authenticateRemotePeer.Verify.func3.Verify.Verify.getValidatedIdentity.Validate.Validate -> DEBU MSP Org2MSP validating identity -peer1.org1.example.com | [05d 01-18 01:58:49.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org1.example.com:7052] -orderer.example.com | ] -peer0.org2.example.com | [1aa 01-18 01:58:52.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4216d10e0, header 0xc4216f8a80 -peer1.org2.example.com | [0ff 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c118ab6e]sending state message READY -peer0.org1.example.com | [043 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s -peer1.org1.example.com | [05e 01-18 01:58:49.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.0.2 -orderer.example.com | 2018-01-18 01:58:46.517 UTC [fsblkstorage] updateCheckpoint -> DEBU 02d Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[9082], isChainEmpty=[false], lastBlockNumber=[0] -peer0.org1.example.com | [044 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [1ab 01-18 01:58:52.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"cscc" -orderer.example.com | 2018-01-18 01:58:46.517 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 02e retrieveBlockByNumber() - blockNum = [0] -peer1.org2.example.com | [103 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c118ab6e]Received message READY from shim -peer1.org1.example.com | [05f 01-18 01:58:49.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer0.org1.example.com | [045 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org1.example.com | [046 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 18012ADE060A3F0A1B70656572302E6F...0A2D2D2D2D2D454E44202D2D2D2D2D0A -peer0.org1.example.com | [047 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: digest: FB2CA073A64C76E9CFBD656CB37101A33E3B5CDAB5C2E9D150311399C4C33E85 -peer0.org1.example.com | [048 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [049 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org1.example.com | [04a 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A1B70656572302E6F7267312E6578616D706C652E636F6D3A37303531 -peer0.org1.example.com | [04b 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: digest: A785FC0B61B5045A71C0FA6B50D12EB1E6F0CDB152C6F79E6575060F54022160 -peer0.org1.example.com | [04c 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Skipping connecting to myself -peer0.org1.example.com | [04d 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.0.2,txid=4e6ad60f-209e-4371-925b-e297e6246b42,syscc=true,proposal=0x0,canname=cscc:1.0.2 -peer0.org1.example.com | [04e 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode cscc:1.0.2 is being launched -peer0.org1.example.com | [04f 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -peer0.org1.example.com | [050 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -peer0.org1.example.com | [051 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: cscc:1.0.2(networkid:dev,peerid:peer0.org1.example.com) -peer0.org2.example.com | [1ac 01-18 01:58:52.96 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 18434f13562652139c3f53039bcad1e9962ac4cd044e53aff51065a429d2c68c -peer0.org2.example.com | [1ad 01-18 01:58:52.96 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 18434f13562652139c3f53039bcad1e9962ac4cd044e53aff51065a429d2c68c channel id: -peer0.org2.example.com | [1ae 01-18 01:58:52.96 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 18434f13562652139c3f53039bcad1e9962ac4cd044e53aff51065a429d2c68c channel id: version: 1.0.2 -peer0.org2.example.com | [1af 01-18 01:58:52.96 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.0.2,txid=18434f13562652139c3f53039bcad1e9962ac4cd044e53aff51065a429d2c68c,syscc=true,proposal=0xc4216d10e0,canname=cscc:1.0.2 -peer1.org1.example.com | [060 01-18 01:58:49.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer0.org1.example.com | [052 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -orderer.example.com | 2018-01-18 01:58:46.517 UTC [fsblkstorage] newBlockfileStream -> DEBU 02f newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] -peer1.org2.example.com | [104 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c118ab6e]Handling ChaincodeMessage of type: READY(state:established) -peer0.org1.example.com | [053 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: -orderer.example.com | 2018-01-18 01:58:46.517 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 030 Remaining bytes=[9082], Going to peek [8] bytes -peer0.org2.example.com | [1b0 01-18 01:58:52.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.0.2 -peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=cscc:1.0.2 -peer1.org1.example.com | [061 01-18 01:58:49.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer1.org2.example.com | [100 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -orderer.example.com | 2018-01-18 01:58:46.517 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 031 Returning blockbytes - length=[9080], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer0.org2.example.com | [1b1 01-18 01:58:52.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [105 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -orderer.example.com | 2018-01-18 01:58:46.517 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 032 retrieveBlockByNumber() - blockNum = [0] -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -orderer.example.com | 2018-01-18 01:58:46.517 UTC [fsblkstorage] newBlockfileStream -> DEBU 033 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] -peer0.org2.example.com | [1b2 01-18 01:58:52.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.2 -peer1.org1.example.com | [062 01-18 01:58:49.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer1.org2.example.com | [106 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -orderer.example.com | 2018-01-18 01:58:46.517 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 034 Remaining bytes=[9082], Going to peek [8] bytes -peer1.org1.example.com | [063 01-18 01:58:49.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode cscc:1.0.2 -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -orderer.example.com | 2018-01-18 01:58:46.517 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 035 Returning blockbytes - length=[9080], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -peer0.org2.example.com | [1b3 01-18 01:58:52.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [18434f13]Inside sendExecuteMessage. Message TRANSACTION -peer1.org2.example.com | [107 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 -peer0.org1.example.com | [054 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.0.2) lock -orderer.example.com | 2018-01-18 01:58:46.517 UTC [common/config] NewStandardValues -> DEBU 036 Initializing protos for *config.ChannelProtos -peer0.org2.example.com | [1b4 01-18 01:58:52.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [108 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/msp] func1.Handshake.authenticateRemotePeer.Verify.func3.Verify.Verify.Verify -> DEBU Verify: digest = 00000000 05 22 d9 e0 7c 06 92 ad f4 f5 bc 63 78 6d 8e f1 |."..|......cxm..| -peer1.org1.example.com | [064 01-18 01:58:49.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"cscc:1.0.2" , sending back REGISTERED -peer0.org1.example.com | [055 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.0.2) lock -orderer.example.com | 2018-01-18 01:58:46.517 UTC [common/config] initializeProtosStruct -> DEBU 037 Processing field: HashingAlgorithm -peer0.org1.example.com | [056 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for cscc-1.0.2 -peer1.org2.example.com | 00000010 5b c4 03 c9 cc 53 9b a2 bf 59 9f bc 7b 70 44 fb |[....S...Y..{pD.| -peer1.org1.example.com | [065 01-18 01:58:49.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -orderer.example.com | 2018-01-18 01:58:46.517 UTC [common/config] initializeProtosStruct -> DEBU 038 Processing field: BlockDataHashingStructure -peer0.org2.example.com | [1b5 01-18 01:58:52.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org1.example.com | [057 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.0.2) -peer1.org2.example.com | [10a 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/msp] func1.Handshake.authenticateRemotePeer.Verify.func3.Verify.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 9c 80 0c 22 15 d5 b7 f0 d0 76 cb |0E.!....".....v.| -peer1.org1.example.com | [066 01-18 01:58:49.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -orderer.example.com | 2018-01-18 01:58:46.517 UTC [common/config] initializeProtosStruct -> DEBU 039 Processing field: OrdererAddresses -peer0.org1.example.com | [058 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.0.2 -peer0.org2.example.com | [1b6 01-18 01:58:52.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [18434f13]sendExecuteMsg trigger event TRANSACTION -peer1.org1.example.com | [067 01-18 01:58:49.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -orderer.example.com | 2018-01-18 01:58:46.517 UTC [common/config] initializeProtosStruct -> DEBU 03a Processing field: Consortium -peer0.org1.example.com | [059 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer1.org2.example.com | 00000010 92 47 28 04 95 ae 3a 4d ac 8b b7 d7 42 e4 70 81 |.G(...:M....B.p.| -peer1.org1.example.com | [068 01-18 01:58:49.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -orderer.example.com | 2018-01-18 01:58:46.522 UTC [common/configtx] addToMap -> DEBU 03b Adding to config map: [Groups] /Channel -peer0.org1.example.com | [05a 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [1b7 01-18 01:58:52.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [18434f13]Move state message TRANSACTION -peer1.org1.example.com | [069 01-18 01:58:49.67 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode cscc:1.0.2 launch seq completed -peer1.org2.example.com | 00000020 38 1c eb d9 ab 02 20 77 0e c1 26 44 6c bf b5 68 |8..... w..&Dl..h| -orderer.example.com | 2018-01-18 01:58:46.522 UTC [common/configtx] addToMap -> DEBU 03c Adding to config map: [Groups] /Channel/Orderer -peer0.org1.example.com | [05b 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.0.2 -peer0.org1.example.com | [05c 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -peer0.org1.example.com | [05d 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.0.2 -peer1.org1.example.com | [06a 01-18 01:58:49.67 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -orderer.example.com | 2018-01-18 01:58:46.522 UTC [common/configtx] addToMap -> DEBU 03d Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -peer1.org2.example.com | 00000030 68 55 28 5a 48 28 4a 40 c1 c9 21 2b ef fb 35 f0 |hU(ZH(J@..!+..5.| -peer0.org1.example.com | [05e 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer0.org2.example.com | [1b8 01-18 01:58:52.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [18434f13]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | 2018-01-18 01:58:46.522 UTC [common/configtx] addToMap -> DEBU 03e Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -peer0.org1.example.com | [05f 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer1.org1.example.com | [06b 01-18 01:58:49.67 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [060 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer1.org2.example.com | 00000040 c4 90 e6 b8 57 48 c2 |....WH.| -orderer.example.com | 2018-01-18 01:58:46.522 UTC [common/configtx] addToMap -> DEBU 03f Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer0.org2.example.com | [1b9 01-18 01:58:52.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [06c 01-18 01:58:49.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8b9ff424]Move state message READY -peer0.org1.example.com | [061 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer1.org2.example.com | [109 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [c118ab6e]Inside sendExecuteMessage. Message INIT -orderer.example.com | 2018-01-18 01:58:46.522 UTC [common/configtx] addToMap -> DEBU 040 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer0.org2.example.com | [1ba 01-18 01:58:52.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [18434f13]sending state message TRANSACTION -peer1.org1.example.com | [06d 01-18 01:58:49.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8b9ff424]Fabric side Handling ChaincodeMessage of type: READY in state established -peer0.org1.example.com | [062 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode cscc:1.0.2 -orderer.example.com | 2018-01-18 01:58:46.522 UTC [common/configtx] addToMap -> DEBU 041 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer1.org2.example.com | [10b 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [06e 01-18 01:58:49.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [8b9ff424]Entered state ready -peer0.org1.example.com | [063 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"cscc:1.0.2" , sending back REGISTERED -peer0.org2.example.com | [1bb 01-18 01:58:52.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [18434f13]Received message TRANSACTION from shim -orderer.example.com | 2018-01-18 01:58:46.522 UTC [common/configtx] addToMap -> DEBU 042 Adding to config map: [Values] /Channel/Orderer/BatchSize -peer0.org1.example.com | [064 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer1.org1.example.com | [06f 01-18 01:58:49.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:8b9ff424-d990-4984-bffb-2ef0da083ef8 -peer1.org2.example.com | [10c 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [c118ab6e]sendExecuteMsg trigger event INIT -peer0.org2.example.com | [1bc 01-18 01:58:52.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [18434f13]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [065 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer1.org1.example.com | [070 01-18 01:58:49.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8b9ff424]sending state message READY -orderer.example.com | 2018-01-18 01:58:46.522 UTC [common/configtx] addToMap -> DEBU 043 Adding to config map: [Values] /Channel/Orderer/BatchTimeout -peer0.org1.example.com | [066 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer0.org2.example.com | [1bd 01-18 01:58:52.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [18434f13]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org2.example.com | [1be 01-18 01:58:52.97 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain -peer0.org2.example.com | [1bf 01-18 01:58:52.97 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block -peer0.org2.example.com | [1c0 01-18 01:58:52.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel -peer0.org2.example.com | [1c1 01-18 01:58:52.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncCPInfoFromFS -> DEBU Starting checkpoint=latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0] -peer0.org2.example.com | [1c2 01-18 01:58:52.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncCPInfoFromFS -> DEBU status of file [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/blockfile_000000]: exists=[false], size=[0] -peer0.org2.example.com | [1c3 01-18 01:58:52.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockHash BlockNum TxID BlockNumTranNum BlockTxID TxValidationCode]] -peer0.org2.example.com | [1c4 01-18 01:58:52.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/ledgersData/chains/chains/businesschannel/blockfile_000000], startOffset=[0] -peer0.org2.example.com | [1c5 01-18 01:58:52.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Finished reading file number [0] -peer0.org2.example.com | [1c6 01-18 01:58:52.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [0] read from file [0] -peer0.org2.example.com | [1c7 01-18 01:58:52.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer0.org2.example.com | [1c8 01-18 01:58:52.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc42162d940), Data:(*common.BlockData)(0xc42175e3a0), Metadata:(*common.BlockMetadata)(0xc42175e3e0)}, doMVCCValidation=true -peer0.org2.example.com | [1c9 01-18 01:58:52.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -peer0.org2.example.com | [1ca 01-18 01:58:52.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [0] Transaction index [0] because, the transaction type is [CONFIG] -peer0.org2.example.com | [1cb 01-18 01:58:52.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0xe1, 0x44, 0x7d, 0x23, 0xdf, 0xa2, 0x20, 0x82, 0xd4, 0xe4, 0x74, 0x4d, 0x77, 0xfd, 0x41, 0x93, 0xb7, 0xdb, 0xc6, 0xb0, 0x34, 0x30, 0xc2, 0xa7, 0xc6, 0x50, 0xfb, 0x2b, 0x1c, 0x26, 0xcf, 0x43} txOffsets= -peer1.org2.example.com | [10d 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c118ab6e]Move state message INIT -peer0.org2.example.com | txId= locPointer=offset=38, bytesLength=11891 -peer1.org2.example.com | [10e 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c118ab6e]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org1.example.com | [071 01-18 01:58:49.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8b9ff424]Received message READY from shim -orderer.example.com | 2018-01-18 01:58:46.522 UTC [common/configtx] addToMap -> DEBU 044 Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -peer0.org2.example.com | ] -peer1.org2.example.com | [10f 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [067 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer0.org2.example.com | [1cc 01-18 01:58:52.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=11891] for tx ID: [] to index -orderer.example.com | 2018-01-18 01:58:46.522 UTC [common/configtx] addToMap -> DEBU 045 Adding to config map: [Values] /Channel/Orderer/ConsensusType -peer1.org1.example.com | [072 01-18 01:58:49.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8b9ff424]Handling ChaincodeMessage of type: READY(state:established) -peer1.org2.example.com | [110 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c118ab6e]sending state message INIT -peer0.org2.example.com | [1cd 01-18 01:58:52.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=11891] for tx number:[0] ID: [] to blockNumTranNum index -peer0.org1.example.com | [068 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode cscc:1.0.2 launch seq completed -peer1.org2.example.com | [111 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c118ab6e]Received message INIT from shim -peer0.org2.example.com | [1ce 01-18 01:58:52.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[11935], isChainEmpty=[false], lastBlockNumber=[0] -peer1.org1.example.com | [073 01-18 01:58:49.67 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -orderer.example.com | 2018-01-18 01:58:46.535 UTC [common/configtx] addToMap -> DEBU 046 Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer1.org2.example.com | [112 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c118ab6e]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [1cf 01-18 01:58:52.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit -> INFO Channel [businesschannel]: Created block [0] with 1 transaction(s) -peer1.org1.example.com | [074 01-18 01:58:49.67 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -peer0.org1.example.com | [069 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -orderer.example.com | 2018-01-18 01:58:46.536 UTC [common/configtx] addToMap -> DEBU 047 Adding to config map: [Policy] /Channel/Orderer/Readers -peer1.org2.example.com | [113 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org2.example.com | [1d0 01-18 01:58:52.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Committing updates to state database -peer1.org1.example.com | [075 01-18 01:58:49.67 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [114 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [c118ab6e]Received INIT, initializing chaincode -peer0.org1.example.com | [06a 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [1d1 01-18 01:58:52.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -peer1.org2.example.com | [115 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC -orderer.example.com | 2018-01-18 01:58:46.536 UTC [common/configtx] addToMap -> DEBU 048 Adding to config map: [Policy] /Channel/Orderer/Writers -peer1.org1.example.com | [076 01-18 01:58:49.67 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.2 -peer0.org2.example.com | [1d2 01-18 01:58:52.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Updates committed to state database -peer1.org2.example.com | [116 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c118ab6e]Init get response status: 200 -orderer.example.com | 2018-01-18 01:58:46.536 UTC [common/configtx] addToMap -> DEBU 049 Adding to config map: [Policy] /Channel/Orderer/Admins -peer0.org1.example.com | [06b 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4e6ad60f]Move state message READY -peer1.org1.example.com | [077 01-18 01:58:49.67 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [8b9ff424]Inside sendExecuteMessage. Message INIT -peer1.org2.example.com | [117 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c118ab6e]Init succeeded. Sending COMPLETED -peer0.org2.example.com | [1d3 01-18 01:58:52.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [0] with [1] transactions -peer0.org1.example.com | [06c 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4e6ad60f]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org2.example.com | [118 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c118ab6e]Move state message COMPLETED -orderer.example.com | 2018-01-18 01:58:46.536 UTC [common/configtx] addToMap -> DEBU 04a Adding to config map: [Groups] /Channel/Consortiums -peer1.org1.example.com | [078 01-18 01:58:49.67 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [1d4 01-18 01:58:52.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -peer1.org2.example.com | [119 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c118ab6e]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | 2018-01-18 01:58:46.538 UTC [common/configtx] addToMap -> DEBU 04b Adding to config map: [Groups] /Channel/Consortiums/SampleConsortium -peer0.org1.example.com | [06d 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [4e6ad60f]Entered state ready -peer0.org2.example.com | [1d5 01-18 01:58:52.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [0] -peer1.org2.example.com | [11a 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c118ab6e]send state message COMPLETED -orderer.example.com | 2018-01-18 01:58:46.538 UTC [common/configtx] addToMap -> DEBU 04c Adding to config map: [Groups] /Channel/Consortiums/SampleConsortium/Org1MSP -peer1.org1.example.com | [079 01-18 01:58:49.67 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [8b9ff424]sendExecuteMsg trigger event INIT -peer1.org2.example.com | [11b 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c118ab6e]Received message COMPLETED from shim -peer0.org1.example.com | [06e 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:4e6ad60f-209e-4371-925b-e297e6246b42 -peer0.org2.example.com | [1d6 01-18 01:58:52.98 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block -orderer.example.com | 2018-01-18 01:58:46.538 UTC [common/configtx] addToMap -> DEBU 04d Adding to config map: [Values] /Channel/Consortiums/SampleConsortium/Org1MSP/MSP -peer1.org2.example.com | [11c 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c118ab6e]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [07a 01-18 01:58:49.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8b9ff424]Move state message INIT -peer0.org2.example.com | [1d7 01-18 01:58:52.98 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -peer1.org2.example.com | [11d 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c118ab6e-9075-4291-82ee-cae9395e3907]HandleMessage- COMPLETED. Notify -orderer.example.com | 2018-01-18 01:58:46.538 UTC [common/configtx] addToMap -> DEBU 04e Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Readers -peer0.org1.example.com | [06f 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4e6ad60f]sending state message READY -peer1.org1.example.com | [07b 01-18 01:58:49.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8b9ff424]Fabric side Handling ChaincodeMessage of type: INIT in state ready -orderer.example.com | 2018-01-18 01:58:46.538 UTC [common/configtx] addToMap -> DEBU 04f Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Writers -peer0.org2.example.com | [1d8 01-18 01:58:52.99 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer1.org2.example.com | [11e 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:c118ab6e-9075-4291-82ee-cae9395e3907 -peer0.org1.example.com | [070 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4e6ad60f]Received message READY from shim -peer1.org1.example.com | [07c 01-18 01:58:49.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [1d9 01-18 01:58:52.99 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org2.example.com | [11f 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -orderer.example.com | 2018-01-18 01:58:46.538 UTC [common/configtx] addToMap -> DEBU 050 Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Admins -peer0.org1.example.com | [072 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -peer1.org1.example.com | [07d 01-18 01:58:49.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8b9ff424]sending state message INIT -peer0.org2.example.com | [1da 01-18 01:58:52.99 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org2.example.com | [120 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode escc/(github.com/hyperledger/fabric/core/scc/escc) deployed -peer0.org1.example.com | [073 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -peer0.org2.example.com | [1db 01-18 01:58:52.99 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | 2018-01-18 01:58:46.539 UTC [common/configtx] addToMap -> DEBU 051 Adding to config map: [Groups] /Channel/Consortiums/SampleConsortium/Org2MSP -peer1.org1.example.com | [07e 01-18 01:58:49.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8b9ff424]Received message INIT from shim -peer1.org2.example.com | [121 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Authenticated 172.18.0.6:7051 -peer0.org1.example.com | [074 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -orderer.example.com | 2018-01-18 01:58:46.539 UTC [common/configtx] addToMap -> DEBU 052 Adding to config map: [Values] /Channel/Consortiums/SampleConsortium/Org2MSP/MSP -peer1.org2.example.com | [123 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/msp/mgmt] func1.OrgByPeerIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [1dc 01-18 01:58:52.99 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer1.org1.example.com | [07f 01-18 01:58:49.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8b9ff424]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org2.example.com | [124 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/msp] func1.OrgByPeerIdentity.DeserializeIdentity -> INFO Obtaining identity -peer0.org1.example.com | [075 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.2 -orderer.example.com | 2018-01-18 01:58:46.539 UTC [common/configtx] addToMap -> DEBU 053 Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Readers -peer1.org2.example.com | [125 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/msp] func1.OrgByPeerIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [1dd 01-18 01:58:52.99 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer0.org1.example.com | [076 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [4e6ad60f]Inside sendExecuteMessage. Message INIT -peer1.org1.example.com | [080 01-18 01:58:49.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org2.example.com | MIICGjCCAcCgAwIBAgIRAPwSzyg1PPrCeVhRqDo4IRcwCgYIKoZIzj0EAwIwczEL -orderer.example.com | 2018-01-18 01:58:46.539 UTC [common/configtx] addToMap -> DEBU 054 Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Writers -peer1.org1.example.com | [081 01-18 01:58:49.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [8b9ff424]Received INIT, initializing chaincode -peer1.org2.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org2.example.com | [1de 01-18 01:58:52.99 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -peer0.org1.example.com | [077 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [082 01-18 01:58:49.68 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -peer1.org2.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | 2018-01-18 01:58:46.539 UTC [common/configtx] addToMap -> DEBU 055 Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Admins -peer0.org2.example.com | [1df 01-18 01:58:52.99 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -peer0.org1.example.com | [078 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [4e6ad60f]sendExecuteMsg trigger event INIT -peer1.org1.example.com | [083 01-18 01:58:49.68 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -orderer.example.com | 2018-01-18 01:58:46.539 UTC [common/configtx] addToMap -> DEBU 056 Adding to config map: [Values] /Channel/Consortiums/SampleConsortium/ChannelCreationPolicy -peer1.org1.example.com | [084 01-18 01:58:49.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8b9ff424]Init get response status: 200 -peer1.org2.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [079 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4e6ad60f]Move state message INIT -peer0.org2.example.com | [1e0 01-18 01:58:52.99 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer1.org2.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | 2018-01-18 01:58:46.539 UTC [common/configtx] addToMap -> DEBU 057 Adding to config map: [Policy] /Channel/Consortiums/Admins -peer1.org1.example.com | [085 01-18 01:58:49.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8b9ff424]Init succeeded. Sending COMPLETED -peer1.org2.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABHIO8CckN5HgY1i/7g0IJdzk172E2x4D -peer0.org1.example.com | [07a 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4e6ad60f]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org1.example.com | [086 01-18 01:58:49.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8b9ff424]Move state message COMPLETED -peer1.org2.example.com | lEymsPxBTC6SMx2H76gyAZbaUHLzDOc03WXuxNm/5CEb0PCug4gLmYqjTTBLMA4G -orderer.example.com | 2018-01-18 01:58:46.539 UTC [common/configtx] addToMap -> DEBU 058 Adding to config map: [Values] /Channel/OrdererAddresses -peer1.org1.example.com | [087 01-18 01:58:49.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8b9ff424]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [07b 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -peer0.org2.example.com | [1e1 01-18 01:58:52.99 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer1.org1.example.com | [088 01-18 01:58:49.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8b9ff424]send state message COMPLETED -peer1.org2.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQDuMCD1 -peer0.org1.example.com | [07c 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4e6ad60f]sending state message INIT -orderer.example.com | 2018-01-18 01:58:46.539 UTC [common/configtx] addToMap -> DEBU 059 Adding to config map: [Values] /Channel/HashingAlgorithm -peer0.org2.example.com | [1e2 01-18 01:58:52.99 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer1.org1.example.com | [089 01-18 01:58:49.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8b9ff424]Received message COMPLETED from shim -peer1.org2.example.com | cBz5946zQSaxCXuanblvvPmDo4EJj3fN1TTl4wIgK6OJNoi5UYFhv/CWtHvr86JU -orderer.example.com | 2018-01-18 01:58:46.539 UTC [common/configtx] addToMap -> DEBU 05a Adding to config map: [Values] /Channel/BlockDataHashingStructure -peer1.org2.example.com | Cp7fopYLAR0CUyw+Xyk= -peer1.org1.example.com | [08a 01-18 01:58:49.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8b9ff424]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [071 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4e6ad60f]Handling ChaincodeMessage of type: READY(state:established) -peer0.org2.example.com | [1e3 01-18 01:58:52.99 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -peer1.org2.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [08b 01-18 01:58:49.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8b9ff424-d990-4984-bffb-2ef0da083ef8]HandleMessage- COMPLETED. Notify -orderer.example.com | 2018-01-18 01:58:46.540 UTC [common/configtx] addToMap -> DEBU 05b Adding to config map: [Policy] /Channel/Readers -peer0.org2.example.com | [1e4 01-18 01:58:52.99 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -peer0.org1.example.com | [07d 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4e6ad60f]Received message INIT from shim -peer1.org2.example.com | [122 01-18 01:58:48.67 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=vscc,version=1.0.2,txid=7df959cc-49df-4318-bfa7-dfa4df9b7f18,syscc=true,proposal=0x0,canname=vscc:1.0.2 -peer1.org1.example.com | [08c 01-18 01:58:49.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:8b9ff424-d990-4984-bffb-2ef0da083ef8 -peer0.org2.example.com | [1e5 01-18 01:58:52.99 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | 2018-01-18 01:58:46.540 UTC [common/configtx] addToMap -> DEBU 05c Adding to config map: [Policy] /Channel/Writers -peer1.org2.example.com | [126 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode vscc:1.0.2 is being launched -peer0.org1.example.com | [07e 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4e6ad60f]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org1.example.com | [08d 01-18 01:58:49.68 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [127 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -orderer.example.com | 2018-01-18 01:58:46.540 UTC [common/configtx] addToMap -> DEBU 05d Adding to config map: [Policy] /Channel/Admins -peer0.org2.example.com | [1e6 01-18 01:58:52.99 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org1.example.com | [07f 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org1.example.com | [08e 01-18 01:58:49.68 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed -peer1.org2.example.com | [128 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer1.org2.example.com:7052] -orderer.example.com | 2018-01-18 01:58:46.540 UTC [common/configtx] processConfig -> DEBU 05e Beginning new config for channel testchainid -peer1.org1.example.com | [08f 01-18 01:58:49.68 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.0.2,txid=67e38f2a-1a08-414e-a9bf-b6d4a86d7ebd,syscc=true,proposal=0x0,canname=lscc:1.0.2 -peer0.org2.example.com | [1e7 01-18 01:58:52.99 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer1.org1.example.com | [090 01-18 01:58:49.68 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode lscc:1.0.2 is being launched -peer1.org2.example.com | [129 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: vscc:1.0.2(networkid:dev,peerid:peer1.org2.example.com) -peer0.org1.example.com | [080 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [4e6ad60f]Received INIT, initializing chaincode -peer0.org2.example.com | [1e8 01-18 01:58:52.99 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -orderer.example.com | 2018-01-18 01:58:46.540 UTC [common/config] NewStandardValues -> DEBU 05f Initializing protos for *config.ChannelProtos -peer1.org1.example.com | [092 01-18 01:58:49.68 UTC] [github.com/hyperledger/fabric/msp/mgmt] func1.Handshake.authenticateRemotePeer.createConnectionMsg.Sign.func1.Sign.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [093 01-18 01:58:49.68 UTC] [github.com/hyperledger/fabric/msp] func1.Handshake.authenticateRemotePeer.createConnectionMsg.Sign.func1.Sign.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org1.example.com | [081 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -peer1.org1.example.com | [094 01-18 01:58:49.68 UTC] [github.com/hyperledger/fabric/msp] func1.Handshake.authenticateRemotePeer.createConnectionMsg.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: plaintext: 180172D3060A2029D4719B6F3CFD9880...438BC453EB2951588BC6253E0DBCB3B8 -peer0.org2.example.com | [1e9 01-18 01:58:52.99 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -orderer.example.com | 2018-01-18 01:58:46.540 UTC [common/config] initializeProtosStruct -> DEBU 060 Processing field: HashingAlgorithm -peer1.org2.example.com | [12a 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer1.org2.example.com:7052 -peer1.org1.example.com | [095 01-18 01:58:49.68 UTC] [github.com/hyperledger/fabric/msp] func1.Handshake.authenticateRemotePeer.createConnectionMsg.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: digest: 117F31E621EC63A63222BAB09CD38E5BACEB0C484CDA0A2AFDEE7856AB236236 -peer0.org1.example.com | [082 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | 2018-01-18 01:58:46.541 UTC [common/config] initializeProtosStruct -> DEBU 061 Processing field: BlockDataHashingStructure -peer0.org2.example.com | [1ea 01-18 01:58:52.99 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer1.org1.example.com | [096 01-18 01:58:49.68 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\r\274\263\270" > , Envelope: 856 bytes, Signature: 71 bytes to 172.18.0.4:7051 -peer1.org2.example.com | [12b 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: -peer0.org1.example.com | [083 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4e6ad60f]Init get response status: 200 -orderer.example.com | 2018-01-18 01:58:46.541 UTC [common/config] initializeProtosStruct -> DEBU 062 Processing field: OrdererAddresses -peer1.org1.example.com | [097 01-18 01:58:49.68 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Received pki_id:"C9|k\342e{\252\362\241r\253\007%}\201B\031\366\230L\t\347\312\357\256qZ+\317\177\344" identity:"\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRALw0jT/FIanMxPg6w2uUMSowCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABKqfdWF/oY+2ymqjk+AlBN+RBThxPp/k\nlU+BhmGArpnlGNd7iT6pil/iSDtfA5xZ9we5NIfTehFqmZcI6g1N172jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIALSJqGc\nvdZHCJ0RecVQ2Rdtkdnok57p68XFlRBy2l4xAiAJS6Z2yxyElBubPI0MBn//Xs9l\n05n0MbLw/Ug3egJ3JA==\n-----END -----\n" tls_cert_hash:"\rR\257\230y\331\016B\036='k\353\377v2\347\032\301\327\024\270g\243\373\320\370F\226\341_a" from 172.18.0.4:7051 -peer0.org2.example.com | [1eb 01-18 01:58:52.99 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -orderer.example.com | 2018-01-18 01:58:46.541 UTC [common/config] initializeProtosStruct -> DEBU 063 Processing field: Consortium -peer1.org2.example.com | CORE_CHAINCODE_ID_NAME=vscc:1.0.2 -peer1.org1.example.com | [098 01-18 01:58:49.68 UTC] [github.com/hyperledger/fabric/msp/mgmt] func1.Handshake.authenticateRemotePeer.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | 2018-01-18 01:58:46.541 UTC [policies] ProposePolicy -> DEBU 064 Proposed new policy Writers for Channel -peer0.org2.example.com | [1ec 01-18 01:58:52.99 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -peer0.org1.example.com | [084 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4e6ad60f]Init succeeded. Sending COMPLETED -peer1.org2.example.com | CORE_PEER_TLS_ENABLED=true -orderer.example.com | 2018-01-18 01:58:46.541 UTC [policies] ProposePolicy -> DEBU 065 Proposed new policy Admins for Channel -peer1.org1.example.com | [099 01-18 01:58:49.68 UTC] [github.com/hyperledger/fabric/msp] func1.Handshake.authenticateRemotePeer.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity -peer0.org1.example.com | [085 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4e6ad60f]Move state message COMPLETED -peer0.org2.example.com | [1ed 01-18 01:58:52.99 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -orderer.example.com | 2018-01-18 01:58:46.541 UTC [policies] ProposePolicy -> DEBU 066 Proposed new policy Readers for Channel -peer1.org1.example.com | [09a 01-18 01:58:49.68 UTC] [github.com/hyperledger/fabric/msp] func1.Handshake.authenticateRemotePeer.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer0.org2.example.com | [1ee 01-18 01:58:52.99 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer0.org1.example.com | [086 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4e6ad60f]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | 2018-01-18 01:58:46.541 UTC [common/config] NewStandardValues -> DEBU 067 Initializing protos for *config.OrdererProtos -peer1.org1.example.com | MIICGTCCAcCgAwIBAgIRALw0jT/FIanMxPg6w2uUMSowCgYIKoZIzj0EAwIwczEL -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer0.org1.example.com | [087 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4e6ad60f]send state message COMPLETED -peer0.org2.example.com | [1ef 01-18 01:58:52.99 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | 2018-01-18 01:58:46.542 UTC [common/config] initializeProtosStruct -> DEBU 068 Processing field: ConsensusType -peer1.org1.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer0.org2.example.com | [1f0 01-18 01:58:52.99 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer0.org1.example.com | [088 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4e6ad60f]Received message COMPLETED from shim -orderer.example.com | 2018-01-18 01:58:46.542 UTC [common/config] initializeProtosStruct -> DEBU 069 Processing field: BatchSize -peer1.org1.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org2.example.com | [1f1 01-18 01:58:52.99 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -peer0.org1.example.com | [089 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4e6ad60f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [1f2 01-18 01:58:52.99 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -peer1.org2.example.com | [12c 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(vscc-1.0.2) lock -orderer.example.com | 2018-01-18 01:58:46.542 UTC [common/config] initializeProtosStruct -> DEBU 06a Processing field: BatchTimeout -peer1.org1.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -peer0.org1.example.com | [08a 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4e6ad60f-209e-4371-925b-e297e6246b42]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [1f3 01-18 01:58:53.00 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -orderer.example.com | 2018-01-18 01:58:46.542 UTC [common/config] initializeProtosStruct -> DEBU 06b Processing field: KafkaBrokers -peer1.org1.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org2.example.com | [12d 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (vscc-1.0.2) lock -peer1.org1.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMS5leGFtcGxlLmNvbTBZ -peer0.org1.example.com | [08b 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:4e6ad60f-209e-4371-925b-e297e6246b42 -orderer.example.com | 2018-01-18 01:58:46.542 UTC [common/config] initializeProtosStruct -> DEBU 06c Processing field: ChannelRestrictions -peer0.org2.example.com | [1f4 01-18 01:58:53.00 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -peer1.org2.example.com | [12e 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for vscc-1.0.2 -peer1.org1.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABKqfdWF/oY+2ymqjk+AlBN+RBThxPp/k -peer0.org1.example.com | [08c 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -orderer.example.com | 2018-01-18 01:58:46.542 UTC [policies] ProposePolicy -> DEBU 06d Proposed new policy Writers for Orderer -peer0.org2.example.com | [1f5 01-18 01:58:53.00 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer1.org2.example.com | [12f 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(vscc-1.0.2) -peer1.org1.example.com | lU+BhmGArpnlGNd7iT6pil/iSDtfA5xZ9we5NIfTehFqmZcI6g1N172jTTBLMA4G -orderer.example.com | 2018-01-18 01:58:46.542 UTC [policies] ProposePolicy -> DEBU 06e Proposed new policy Admins for Orderer -peer0.org1.example.com | [08d 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed -peer0.org2.example.com | [1f6 01-18 01:58:53.00 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer1.org2.example.com | [130 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for vscc-1.0.2 -peer0.org1.example.com | [08e 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.0.2,txid=76bd883f-10b8-454f-9ce2-12866c5ddc22,syscc=true,proposal=0x0,canname=lscc:1.0.2 -orderer.example.com | 2018-01-18 01:58:46.542 UTC [policies] ProposePolicy -> DEBU 06f Proposed new policy BlockValidation for Orderer -peer1.org1.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -peer0.org2.example.com | [1f7 01-18 01:58:53.00 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer1.org2.example.com | [131 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer1.org1.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIALSJqGc -orderer.example.com | 2018-01-18 01:58:46.542 UTC [policies] ProposePolicy -> DEBU 070 Proposed new policy Readers for Orderer -peer0.org1.example.com | [08f 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode lscc:1.0.2 is being launched -peer1.org2.example.com | [132 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [1f8 01-18 01:58:53.00 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -orderer.example.com | 2018-01-18 01:58:46.543 UTC [common/config] NewStandardValues -> DEBU 071 Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [090 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -peer1.org1.example.com | vdZHCJ0RecVQ2Rdtkdnok57p68XFlRBy2l4xAiAJS6Z2yxyElBubPI0MBn//Xs9l -peer1.org2.example.com | [133 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for vscc-1.0.2 -peer0.org2.example.com | [1f9 01-18 01:58:53.00 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -orderer.example.com | 2018-01-18 01:58:46.543 UTC [common/config] initializeProtosStruct -> DEBU 072 Processing field: MSP -peer0.org1.example.com | [091 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -peer1.org2.example.com | [134 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org2.example.com:7052] -peer1.org1.example.com | 05n0MbLw/Ug3egJ3JA== -peer0.org1.example.com | [092 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: lscc:1.0.2(networkid:dev,peerid:peer0.org1.example.com) -orderer.example.com | 2018-01-18 01:58:46.543 UTC [policies] ProposePolicy -> DEBU 073 Proposed new policy Writers for OrdererOrg -peer1.org2.example.com | [135 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=vscc:1.0.2 -peer1.org1.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [1fa 01-18 01:58:53.00 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -peer0.org1.example.com | [093 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -peer1.org2.example.com | [136 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -orderer.example.com | 2018-01-18 01:58:46.543 UTC [policies] ProposePolicy -> DEBU 074 Proposed new policy Admins for OrdererOrg -peer1.org1.example.com | [09b 01-18 01:58:49.68 UTC] [github.com/hyperledger/fabric/msp/mgmt] func1.Handshake.authenticateRemotePeer.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [1fb 01-18 01:58:53.00 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -peer0.org1.example.com | [094 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: -orderer.example.com | 2018-01-18 01:58:46.543 UTC [policies] ProposePolicy -> DEBU 075 Proposed new policy Readers for OrdererOrg -peer1.org1.example.com | [09c 01-18 01:58:49.68 UTC] [github.com/hyperledger/fabric/msp] func1.Handshake.authenticateRemotePeer.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity -peer1.org2.example.com | [137 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -orderer.example.com | 2018-01-18 01:58:46.544 UTC [policies] ProposePolicy -> DEBU 076 Proposed new policy Admins for Consortiums -peer0.org2.example.com | [1fc 01-18 01:58:53.00 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=lscc:1.0.2 -peer1.org1.example.com | [09d 01-18 01:58:49.68 UTC] [github.com/hyperledger/fabric/msp/mgmt] func1.Handshake.authenticateRemotePeer.Verify.func3.Verify.Verify.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [138 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer0.org2.example.com | [1fd 01-18 01:58:53.00 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -orderer.example.com | 2018-01-18 01:58:46.544 UTC [common/config] NewStandardValues -> DEBU 077 Initializing protos for *config.ConsortiumProtos -peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org1.example.com | [09e 01-18 01:58:49.68 UTC] [github.com/hyperledger/fabric/msp] func1.Handshake.authenticateRemotePeer.Verify.func3.Verify.Verify.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity -peer1.org2.example.com | [139 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer0.org2.example.com | [1fe 01-18 01:58:53.00 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer1.org1.example.com | [09f 01-18 01:58:49.68 UTC] [github.com/hyperledger/fabric/msp] func1.Handshake.authenticateRemotePeer.Verify.func3.Verify.Verify.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -orderer.example.com | 2018-01-18 01:58:46.544 UTC [common/config] initializeProtosStruct -> DEBU 078 Processing field: ChannelCreationPolicy -peer1.org2.example.com | [13a 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode vscc:1.0.2 -peer1.org1.example.com | MIICGTCCAcCgAwIBAgIRALw0jT/FIanMxPg6w2uUMSowCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer0.org2.example.com | [1ff 01-18 01:58:53.00 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer1.org2.example.com | [13b 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"vscc:1.0.2" , sending back REGISTERED -peer1.org1.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org2.example.com | [200 01-18 01:58:53.00 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -orderer.example.com | 2018-01-18 01:58:46.544 UTC [common/config] NewStandardValues -> DEBU 079 Initializing protos for *config.OrganizationProtos -peer1.org2.example.com | [13c 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer1.org1.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org2.example.com | [201 01-18 01:58:53.00 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -peer0.org1.example.com | [095 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.0.2) lock -peer1.org2.example.com | [13d 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -orderer.example.com | 2018-01-18 01:58:46.544 UTC [common/config] initializeProtosStruct -> DEBU 07a Processing field: MSP -peer0.org1.example.com | [096 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.0.2) lock -peer1.org2.example.com | [13e 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer1.org1.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -peer0.org2.example.com | [202 01-18 01:58:53.00 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org1.example.com | [097 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for lscc-1.0.2 -orderer.example.com | 2018-01-18 01:58:46.544 UTC [policies] ProposePolicy -> DEBU 07b Proposed new policy Readers for Org1MSP -peer1.org2.example.com | [13f 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer1.org1.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org2.example.com | [203 01-18 01:58:53.00 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -orderer.example.com | 2018-01-18 01:58:46.544 UTC [policies] ProposePolicy -> DEBU 07c Proposed new policy Writers for Org1MSP -peer0.org1.example.com | [098 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.0.2) -peer1.org2.example.com | [140 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode vscc:1.0.2 launch seq completed -peer1.org1.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMS5leGFtcGxlLmNvbTBZ -peer0.org2.example.com | [204 01-18 01:58:53.00 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -orderer.example.com | 2018-01-18 01:58:46.544 UTC [policies] ProposePolicy -> DEBU 07d Proposed new policy Admins for Org1MSP -peer0.org1.example.com | [099 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.0.2 -peer1.org2.example.com | [141 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -peer1.org1.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABKqfdWF/oY+2ymqjk+AlBN+RBThxPp/k -peer0.org2.example.com | [205 01-18 01:58:53.00 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | 2018-01-18 01:58:46.544 UTC [common/config] NewStandardValues -> DEBU 07e Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [09a 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer1.org2.example.com | [142 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [206 01-18 01:58:53.00 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -peer1.org1.example.com | lU+BhmGArpnlGNd7iT6pil/iSDtfA5xZ9we5NIfTehFqmZcI6g1N172jTTBLMA4G -orderer.example.com | 2018-01-18 01:58:46.544 UTC [common/config] initializeProtosStruct -> DEBU 07f Processing field: MSP -peer0.org1.example.com | [09b 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [207 01-18 01:58:53.00 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org2.example.com | [143 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7df959cc]Move state message READY -peer1.org1.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -orderer.example.com | 2018-01-18 01:58:46.545 UTC [policies] ProposePolicy -> DEBU 080 Proposed new policy Writers for Org2MSP -peer0.org1.example.com | [09c 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.0.2 -peer1.org1.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIALSJqGc -peer0.org2.example.com | [208 01-18 01:58:53.00 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [145 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7df959cc]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org1.example.com | vdZHCJ0RecVQ2Rdtkdnok57p68XFlRBy2l4xAiAJS6Z2yxyElBubPI0MBn//Xs9l -peer0.org1.example.com | [09d 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -orderer.example.com | 2018-01-18 01:58:46.545 UTC [policies] ProposePolicy -> DEBU 081 Proposed new policy Admins for Org2MSP -peer1.org2.example.com | [146 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [7df959cc]Entered state ready -peer0.org2.example.com | [209 01-18 01:58:53.00 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer1.org1.example.com | 05n0MbLw/Ug3egJ3JA== -peer0.org1.example.com | [09e 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=lscc:1.0.2 -peer1.org2.example.com | [147 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:7df959cc-49df-4318-bfa7-dfa4df9b7f18 -peer1.org1.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:46.545 UTC [policies] ProposePolicy -> DEBU 082 Proposed new policy Readers for Org2MSP -peer0.org2.example.com | [20a 01-18 01:58:53.00 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org2.example.com | [144 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/msp/mgmt] createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [091 01-18 01:58:49.68 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -peer0.org1.example.com | [09f 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -orderer.example.com | 2018-01-18 01:58:46.545 UTC [common/config] validateMSP -> DEBU 083 Setting up MSP for org OrdererOrg -peer0.org2.example.com | [20b 01-18 01:58:53.00 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org2.example.com | [14a 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/msp] createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer1.org1.example.com | [0a0 01-18 01:58:49.68 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer1.org1.example.com:7052] -orderer.example.com | 2018-01-18 01:58:46.545 UTC [msp] NewBccspMsp -> DEBU 084 Creating BCCSP-based MSP instance -peer0.org2.example.com | [20c 01-18 01:58:53.00 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [0a0 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer1.org2.example.com | [14b 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/msp] createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 18012ADE060A3F0A1B70656572312E6F...0A2D2D2D2D2D454E44202D2D2D2D2D0A -orderer.example.com | 2018-01-18 01:58:46.545 UTC [msp] Setup -> DEBU 085 Setting up MSP instance OrdererMSP -peer1.org1.example.com | [0a1 01-18 01:58:49.68 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: lscc:1.0.2(networkid:dev,peerid:peer1.org1.example.com) -peer0.org2.example.com | [20d 01-18 01:58:53.00 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:46.549 UTC [msp/identity] newIdentity -> DEBU 086 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL -peer0.org2.example.com | [20e 01-18 01:58:53.00 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [14c 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/msp] createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: digest: 0FB380662C308E9327D8EAFCF737FF8738E13FC992A200353118AAAFF12A049C -peer1.org1.example.com | [0a3 01-18 01:58:49.68 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer1.org1.example.com:7052 -peer0.org1.example.com | [0a1 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org2.example.com | [20f 01-18 01:58:53.00 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer1.org1.example.com | [0a2 01-18 01:58:49.68 UTC] [github.com/hyperledger/fabric/msp/mgmt] func1.Handshake.authenticateRemotePeer.Verify.func3.Verify.Verify.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [148 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7df959cc]sending state message READY -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -peer0.org1.example.com | [0a2 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer0.org2.example.com | [210 01-18 01:58:53.00 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV -peer1.org2.example.com | [14e 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7df959cc]Received message READY from shim -peer1.org1.example.com | [0a5 01-18 01:58:49.68 UTC] [github.com/hyperledger/fabric/msp] func1.Handshake.authenticateRemotePeer.Verify.func3.Verify.Verify.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity -peer0.org1.example.com | [0a3 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode lscc:1.0.2 -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -peer0.org2.example.com | [211 01-18 01:58:53.00 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [0a4 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"lscc:1.0.2" , sending back REGISTERED -peer1.org1.example.com | [0a4 01-18 01:58:49.68 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: -orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -peer1.org2.example.com | [14f 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7df959cc]Handling ChaincodeMessage of type: READY(state:established) -peer0.org1.example.com | [0a5 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer0.org2.example.com | [212 01-18 01:58:53.00 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW -peer1.org1.example.com | CORE_CHAINCODE_ID_NAME=lscc:1.0.2 -peer0.org1.example.com | [0a6 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer1.org2.example.com | [149 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -peer0.org2.example.com | [213 01-18 01:58:53.00 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -orderer.example.com | gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w -peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org2.example.com | [14d 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/msp/mgmt] createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -peer0.org1.example.com | [0a7 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer0.org2.example.com | [214 01-18 01:58:53.00 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -orderer.example.com | AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK -peer1.org2.example.com | [151 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/msp] createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org2.example.com | [215 01-18 01:58:53.00 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer0.org1.example.com | [0a8 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer0.org2.example.com | [216 01-18 01:58:53.00 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= -peer1.org2.example.com | [152 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/msp] createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A1B70656572312E6F7267322E6578616D706C652E636F6D3A37303531 -peer0.org1.example.com | [0a9 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode lscc:1.0.2 launch seq completed -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [153 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/msp] createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: digest: 84DCB4760C577E9B4E2A280CB22EA6979C16748D7FD46DCFD4002D8650CAD285 -peer0.org2.example.com | [217 01-18 01:58:53.00 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -orderer.example.com | 2018-01-18 01:58:46.549 UTC [msp/identity] newIdentity -> DEBU 087 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [0a6 01-18 01:58:49.68 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.0.2) lock -peer0.org1.example.com | [0aa 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -peer1.org2.example.com | [150 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -peer0.org2.example.com | [218 01-18 01:58:53.00 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -peer1.org2.example.com | [154 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [0a7 01-18 01:58:49.68 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.0.2) lock -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [0ab 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [219 01-18 01:58:53.00 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer1.org2.example.com | [155 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 -peer1.org1.example.com | [0a8 01-18 01:58:49.68 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for lscc-1.0.2 -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -peer0.org1.example.com | [0ac 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [76bd883f]Move state message READY -peer1.org2.example.com | [156 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [7df959cc]Inside sendExecuteMessage. Message INIT -peer0.org2.example.com | [21a 01-18 01:58:53.00 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer1.org1.example.com | [0a9 01-18 01:58:49.68 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.0.2) -peer0.org1.example.com | [0ad 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [76bd883f]Fabric side Handling ChaincodeMessage of type: READY in state established -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -peer1.org2.example.com | [157 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [21b 01-18 01:58:53.00 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are -peer0.org1.example.com | [0ae 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [76bd883f]Entered state ready -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -peer1.org1.example.com | [0aa 01-18 01:58:49.68 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.0.2 -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -peer0.org2.example.com | [21c 01-18 01:58:53.00 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer1.org2.example.com | [158 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [7df959cc]sendExecuteMsg trigger event INIT -peer1.org1.example.com | [0ab 01-18 01:58:49.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer0.org1.example.com | [0af 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:76bd883f-10b8-454f-9ce2-12866c5ddc22 -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -peer1.org2.example.com | [159 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/msp/mgmt] SendToPeer.disclosurePolicy)-fm.disclosurePolicy.getOrgOfPeer.OrgByPeerIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [0ac 01-18 01:58:49.69 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [21d 01-18 01:58:53.00 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -peer0.org1.example.com | [0b0 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [76bd883f]sending state message READY -peer1.org1.example.com | [0ad 01-18 01:58:49.69 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.0.2 -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -peer0.org2.example.com | [21e 01-18 01:58:53.00 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer1.org2.example.com | [15b 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/msp] SendToPeer.disclosurePolicy)-fm.disclosurePolicy.getOrgOfPeer.OrgByPeerIdentity.DeserializeIdentity -> INFO Obtaining identity -peer0.org1.example.com | [0b1 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [76bd883f]Received message READY from shim -peer1.org1.example.com | [0ae 01-18 01:58:49.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org1.example.com:7052] -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [21f 01-18 01:58:53.01 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer0.org1.example.com | [0b2 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [76bd883f]Handling ChaincodeMessage of type: READY(state:established) -orderer.example.com | 2018-01-18 01:58:46.550 UTC [msp/identity] newIdentity -> DEBU 088 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [15a 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7df959cc]Move state message INIT -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -peer1.org1.example.com | [0af 01-18 01:58:49.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=lscc:1.0.2 -peer0.org1.example.com | [0b3 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -peer0.org2.example.com | [220 01-18 01:58:53.01 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org2.example.com | [15c 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7df959cc]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org1.example.com | [0b4 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer1.org1.example.com | [0b0 01-18 01:58:49.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer0.org2.example.com | [221 01-18 01:58:53.01 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer0.org1.example.com | [0b5 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [15d 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -peer1.org1.example.com | [0b1 01-18 01:58:49.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer0.org2.example.com | [222 01-18 01:58:53.01 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer0.org1.example.com | [0b6 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -peer1.org2.example.com | [15e 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7df959cc]sending state message INIT -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -peer1.org1.example.com | [0b2 01-18 01:58:49.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer0.org2.example.com | [223 01-18 01:58:53.01 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -peer0.org1.example.com | [0b7 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [76bd883f]Inside sendExecuteMessage. Message INIT -peer1.org2.example.com | [15f 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7df959cc]Received message INIT from shim -peer1.org1.example.com | [0b3 01-18 01:58:49.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer0.org2.example.com | [224 01-18 01:58:53.02 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -peer0.org1.example.com | [0b8 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [160 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7df959cc]Handling ChaincodeMessage of type: INIT(state:ready) -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -peer0.org2.example.com | [225 01-18 01:58:53.02 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.InitChain -> DEBU Init chain businesschannel -peer1.org1.example.com | [0b4 01-18 01:58:49.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode lscc:1.0.2 -peer1.org1.example.com | [0b5 01-18 01:58:49.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"lscc:1.0.2" , sending back REGISTERED -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -peer1.org2.example.com | [161 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org1.example.com | [0b9 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [76bd883f]sendExecuteMsg trigger event INIT -peer0.org2.example.com | [226 01-18 01:58:53.02 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.joinChain.InitChain.func2 -> DEBU Deploying system CC, for chain -peer1.org1.example.com | [0b6 01-18 01:58:49.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -peer0.org1.example.com | [0ba 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [76bd883f]Move state message INIT -peer1.org2.example.com | [162 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [7df959cc]Received INIT, initializing chaincode -peer0.org2.example.com | [227 01-18 01:58:53.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [0b7 01-18 01:58:49.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -orderer.example.com | 2018-01-18 01:58:46.554 UTC [msp] Validate -> DEBU 089 MSP OrdererMSP validating identity -peer1.org2.example.com | [163 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7df959cc]Init get response status: 200 -peer0.org1.example.com | [0bb 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [76bd883f]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org2.example.com | [228 01-18 01:58:53.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [94d95d89-8ec6-4159-9f73-f1443acb0cdc] -peer1.org1.example.com | [0b8 01-18 01:58:49.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -orderer.example.com | 2018-01-18 01:58:46.555 UTC [common/config] validateMSP -> DEBU 08a Setting up MSP for org Org1MSP -peer0.org1.example.com | [0bc 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [164 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7df959cc]Init succeeded. Sending COMPLETED -peer1.org1.example.com | [0b9 01-18 01:58:49.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer0.org2.example.com | [229 01-18 01:58:53.02 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=cscc,version=1.0.2,txid=6cc0581b-a2f4-48f7-98ca-438191c1efa5,syscc=true,proposal=0x0,canname=cscc:1.0.2 -orderer.example.com | 2018-01-18 01:58:46.555 UTC [msp] NewBccspMsp -> DEBU 08b Creating BCCSP-based MSP instance -peer1.org2.example.com | [165 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7df959cc]Move state message COMPLETED -peer0.org1.example.com | [0bd 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [76bd883f]sending state message INIT -orderer.example.com | 2018-01-18 01:58:46.555 UTC [msp] Setup -> DEBU 08c Setting up MSP instance Org1MSP -peer0.org2.example.com | [22a 01-18 01:58:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.0.2 -peer1.org2.example.com | [166 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7df959cc]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [0ba 01-18 01:58:49.69 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode lscc:1.0.2 launch seq completed -orderer.example.com | 2018-01-18 01:58:46.560 UTC [msp/identity] newIdentity -> DEBU 08d Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [0be 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [76bd883f]Received message INIT from shim -peer1.org2.example.com | [167 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7df959cc]send state message COMPLETED -orderer.example.com | MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL -peer0.org2.example.com | [22b 01-18 01:58:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [0bb 01-18 01:58:49.69 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org2.example.com | [168 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7df959cc]Received message COMPLETED from shim -peer0.org2.example.com | [22c 01-18 01:58:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.2 -peer0.org1.example.com | [0bf 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [76bd883f]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org1.example.com | [0bc 01-18 01:58:49.69 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -peer1.org2.example.com | [169 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7df959cc]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [0c0 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org2.example.com | [22d 01-18 01:58:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [6cc0581b]Inside sendExecuteMessage. Message INIT -peer1.org1.example.com | [0bd 01-18 01:58:49.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [67e38f2a]Move state message READY -peer1.org2.example.com | [16a 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7df959cc-49df-4318-bfa7-dfa4df9b7f18]HandleMessage- COMPLETED. Notify -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -peer0.org2.example.com | [22e 01-18 01:58:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [0c1 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [76bd883f]Received INIT, initializing chaincode -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -peer0.org2.example.com | [22f 01-18 01:58:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [6cc0581b]sendExecuteMsg trigger event INIT -orderer.example.com | BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf -peer1.org1.example.com | [0be 01-18 01:58:49.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [67e38f2a]Fabric side Handling ChaincodeMessage of type: READY in state established -peer0.org1.example.com | [0c2 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetPolicyChecker.GetPolicyChecker.NewPolicyChecker.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [16b 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:7df959cc-49df-4318-bfa7-dfa4df9b7f18 -peer0.org2.example.com | [230 01-18 01:58:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6cc0581b]Move state message INIT -orderer.example.com | db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -peer1.org1.example.com | [0bf 01-18 01:58:49.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [67e38f2a]Entered state ready -peer0.org2.example.com | [231 01-18 01:58:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [6cc0581b]Fabric side Handling ChaincodeMessage of type: INIT in state ready -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx -peer0.org1.example.com | [0c3 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [76bd883f]Init get response status: 200 -peer0.org2.example.com | [232 01-18 01:58:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [0c0 01-18 01:58:49.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:67e38f2a-1a08-414e-a9bf-b6d4a86d7ebd -orderer.example.com | JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi -peer0.org2.example.com | [233 01-18 01:58:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6cc0581b]sending state message INIT -peer0.org1.example.com | [0c4 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [76bd883f]Init succeeded. Sending COMPLETED -peer1.org1.example.com | [0c1 01-18 01:58:49.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [67e38f2a]sending state message READY -orderer.example.com | /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ -peer1.org2.example.com | [16c 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [234 01-18 01:58:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6cc0581b]Received message INIT from shim -orderer.example.com | H7n8z1pj5w== -peer0.org1.example.com | [0c5 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [76bd883f]Move state message COMPLETED -peer1.org1.example.com | [0c2 01-18 01:58:49.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [67e38f2a]Received message READY from shim -peer0.org2.example.com | [235 01-18 01:58:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [6cc0581b]Handling ChaincodeMessage of type: INIT(state:ready) -orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [16d 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/(github.com/hyperledger/fabric/core/scc/vscc) deployed -peer0.org2.example.com | [236 01-18 01:58:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org1.example.com | [0c6 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [76bd883f]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | 2018-01-18 01:58:46.560 UTC [msp/identity] newIdentity -> DEBU 08e Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [237 01-18 01:58:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [6cc0581b]Received INIT, initializing chaincode -peer0.org1.example.com | [0c7 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [76bd883f]send state message COMPLETED -peer1.org2.example.com | [16e 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/msp] SendToPeer.disclosurePolicy)-fm.disclosurePolicy.getOrgOfPeer.OrgByPeerIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [0c3 01-18 01:58:49.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [67e38f2a]Handling ChaincodeMessage of type: READY(state:established) -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -peer0.org2.example.com | [238 01-18 01:58:53.02 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org2.example.com | [239 01-18 01:58:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6cc0581b]Init get response status: 200 -peer1.org1.example.com | [0c4 01-18 01:58:49.69 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -peer0.org1.example.com | [0c8 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [76bd883f]Received message COMPLETED from shim -peer1.org2.example.com | MIICGjCCAcCgAwIBAgIRAPwSzyg1PPrCeVhRqDo4IRcwCgYIKoZIzj0EAwIwczEL -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org2.example.com | [23a 01-18 01:58:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6cc0581b]Init succeeded. Sending COMPLETED -peer1.org1.example.com | [0c5 01-18 01:58:49.69 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -peer0.org2.example.com | [23b 01-18 01:58:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6cc0581b]Move state message COMPLETED -peer1.org2.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [0c9 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [76bd883f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org2.example.com | [23c 01-18 01:58:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [6cc0581b]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [0c6 01-18 01:58:49.69 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [23d 01-18 01:58:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6cc0581b]send state message COMPLETED -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer0.org1.example.com | [0ca 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [76bd883f-10b8-454f-9ce2-12866c5ddc22]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org2.example.com | [23e 01-18 01:58:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6cc0581b]Received message COMPLETED from shim -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -peer0.org1.example.com | [0cb 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:76bd883f-10b8-454f-9ce2-12866c5ddc22 -peer1.org1.example.com | [0c7 01-18 01:58:49.69 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -peer1.org2.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -peer0.org2.example.com | [23f 01-18 01:58:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [6cc0581b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -peer1.org1.example.com | [0c8 01-18 01:58:49.69 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [67e38f2a]Inside sendExecuteMessage. Message INIT -peer0.org2.example.com | [240 01-18 01:58:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [6cc0581b-a2f4-48f7-98ca-438191c1efa5]HandleMessage- COMPLETED. Notify -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -peer0.org1.example.com | [0cc 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [241 01-18 01:58:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:6cc0581b-a2f4-48f7-98ca-438191c1efa5 -peer1.org1.example.com | [0c9 01-18 01:58:49.69 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -peer1.org2.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org2.example.com | [242 01-18 01:58:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -peer1.org1.example.com | [0ca 01-18 01:58:49.69 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [67e38f2a]sendExecuteMsg trigger event INIT -peer0.org1.example.com | [0cd 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed -peer0.org2.example.com | [243 01-18 01:58:53.02 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed -orderer.example.com | xHTBvxfK6mAzmUitFmY= -peer1.org2.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMi5leGFtcGxlLmNvbTBZ -peer0.org2.example.com | [244 01-18 01:58:53.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [94d95d89-8ec6-4159-9f73-f1443acb0cdc] -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [0ce 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=escc,version=1.0.2,txid=ddc87722-6b8f-4ebf-9693-099a66d5e6b6,syscc=true,proposal=0x0,canname=escc:1.0.2 -peer1.org1.example.com | [0cb 01-18 01:58:49.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [67e38f2a]Move state message INIT -peer0.org2.example.com | [245 01-18 01:58:53.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | 2018-01-18 01:58:46.570 UTC [msp/identity] newIdentity -> DEBU 08f Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [0cc 01-18 01:58:49.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [67e38f2a]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org2.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABHIO8CckN5HgY1i/7g0IJdzk172E2x4D -peer0.org2.example.com | [246 01-18 01:58:53.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [993cd357-1f21-41ae-a7ee-c9a4a4ab8650] -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [0cf 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode escc:1.0.2 is being launched -peer0.org2.example.com | [247 01-18 01:58:53.02 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=b60a57ca-3bc0-4296-9137-14545ab06ee3,syscc=true,proposal=0x0,canname=lscc:1.0.2 -peer1.org2.example.com | lEymsPxBTC6SMx2H76gyAZbaUHLzDOc03WXuxNm/5CEb0PCug4gLmYqjTTBLMA4G -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org1.example.com | [0cd 01-18 01:58:49.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [248 01-18 01:58:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 -peer1.org2.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [0d0 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -peer1.org1.example.com | [0ce 01-18 01:58:49.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [67e38f2a]sending state message INIT -peer0.org2.example.com | [249 01-18 01:58:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org2.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQDuMCD1 -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -peer0.org1.example.com | [0d1 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -peer1.org2.example.com | cBz5946zQSaxCXuanblvvPmDo4EJj3fN1TTl4wIgK6OJNoi5UYFhv/CWtHvr86JU -peer1.org1.example.com | [0cf 01-18 01:58:49.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [67e38f2a]Received message INIT from shim -peer0.org2.example.com | [24a 01-18 01:58:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org1.example.com | [0d0 01-18 01:58:49.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [67e38f2a]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org2.example.com | Cp7fopYLAR0CUyw+Xyk= -peer0.org2.example.com | [24b 01-18 01:58:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [b60a57ca]Inside sendExecuteMessage. Message INIT -peer0.org1.example.com | [0d2 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: escc:1.0.2(networkid:dev,peerid:peer0.org1.example.com) -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer1.org1.example.com | [0d1 01-18 01:58:49.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org2.example.com | [24c 01-18 01:58:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | -----END CERTIFICATE----- -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -peer0.org1.example.com | [0d3 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -peer1.org1.example.com | [0d2 01-18 01:58:49.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [67e38f2a]Received INIT, initializing chaincode -peer0.org2.example.com | [24d 01-18 01:58:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [b60a57ca]sendExecuteMsg trigger event INIT -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -peer0.org1.example.com | [0d4 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: -peer1.org1.example.com | [0d3 01-18 01:58:49.70 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetPolicyChecker.GetPolicyChecker.NewPolicyChecker.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -peer0.org2.example.com | [24e 01-18 01:58:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b60a57ca]Move state message INIT -peer1.org2.example.com | [16f 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=qscc,version=1.0.2,txid=30716e87-fad5-4fa1-9fd7-f502dafe94f3,syscc=true,proposal=0x0,canname=qscc:1.0.2 -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -peer1.org1.example.com | [0d5 01-18 01:58:49.70 UTC] [github.com/hyperledger/fabric/msp] func1.Handshake.authenticateRemotePeer.Verify.func3.Verify.Verify.Verify -> DEBU Verify: digest = 00000000 41 1c 14 94 d0 cf 9c 72 36 4f 0c b6 d7 c7 e5 38 |A......r6O.....8| -peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=escc:1.0.2 -peer0.org2.example.com | [24f 01-18 01:58:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b60a57ca]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org1.example.com | 00000010 cf 18 3a dd 24 5d ec e9 23 06 a5 5d 02 97 3b 8a |..:.$]..#..]..;.| -peer1.org2.example.com | [170 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode qscc:1.0.2 is being launched -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org1.example.com | [0d4 01-18 01:58:49.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [67e38f2a]Init get response status: 200 -peer1.org2.example.com | [171 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -peer0.org2.example.com | [250 01-18 01:58:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [0d7 01-18 01:58:49.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [67e38f2a]Init succeeded. Sending COMPLETED -orderer.example.com | xHTBvxfK6mAzmUitFmY= -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer1.org2.example.com | [172 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer1.org2.example.com:7052] -peer0.org2.example.com | [251 01-18 01:58:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b60a57ca]sending state message INIT -peer1.org1.example.com | [0d8 01-18 01:58:49.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [67e38f2a]Move state message COMPLETED -orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [174 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: qscc:1.0.2(networkid:dev,peerid:peer1.org2.example.com) -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer0.org2.example.com | [252 01-18 01:58:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b60a57ca]Received message INIT from shim -orderer.example.com | 2018-01-18 01:58:46.571 UTC [msp] Validate -> DEBU 090 MSP Org1MSP validating identity -peer0.org2.example.com | [253 01-18 01:58:53.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b60a57ca]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org2.example.com | [175 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer1.org2.example.com:7052 -peer1.org1.example.com | [0d6 01-18 01:58:49.70 UTC] [github.com/hyperledger/fabric/msp] func1.Handshake.authenticateRemotePeer.Verify.func3.Verify.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 3a 5c 32 ba ba 19 b0 1f 3d 73 17 74 |0D. :\2.....=s.t| -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -orderer.example.com | 2018-01-18 01:58:46.572 UTC [common/config] validateMSP -> DEBU 091 Setting up MSP for org Org2MSP -peer1.org1.example.com | 00000010 d7 50 ee 02 ee 29 c2 87 5e a0 84 e6 fe 0f aa b0 |.P...)..^.......| -peer1.org2.example.com | [176 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: -peer0.org2.example.com | [254 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org1.example.com | [0d5 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(escc-1.0.2) lock -peer1.org1.example.com | 00000020 18 aa ca ec 02 20 02 3a 5d f1 7c 02 4a 31 f1 7c |..... .:].|.J1.|| -orderer.example.com | 2018-01-18 01:58:46.572 UTC [msp] NewBccspMsp -> DEBU 092 Creating BCCSP-based MSP instance -peer0.org2.example.com | [255 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [b60a57ca]Received INIT, initializing chaincode -peer1.org2.example.com | CORE_CHAINCODE_ID_NAME=qscc:1.0.2 -peer0.org1.example.com | [0d6 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (escc-1.0.2) lock -orderer.example.com | 2018-01-18 01:58:46.572 UTC [msp] Setup -> DEBU 093 Setting up MSP instance Org2MSP -peer1.org1.example.com | 00000030 36 cd c6 c0 8d ff 84 cd a4 77 f6 8b ba 91 0b 8a |6........w......| -peer0.org2.example.com | [256 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b60a57ca]Init get response status: 200 -peer0.org1.example.com | [0d7 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for escc-1.0.2 -peer1.org2.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org1.example.com | 00000040 4a f9 3d 19 bc 26 |J.=..&| -peer0.org1.example.com | [0d8 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(escc-1.0.2) -orderer.example.com | 2018-01-18 01:58:46.574 UTC [msp/identity] newIdentity -> DEBU 094 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer0.org2.example.com | [257 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b60a57ca]Init succeeded. Sending COMPLETED -peer0.org1.example.com | [0d9 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for escc-1.0.2 -peer1.org1.example.com | [0d9 01-18 01:58:49.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [67e38f2a]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer0.org2.example.com | [258 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b60a57ca]Move state message COMPLETED -peer0.org1.example.com | [0da 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer1.org1.example.com | [0da 01-18 01:58:49.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [67e38f2a]send state message COMPLETED -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [0dc 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for escc-1.0.2 -peer1.org1.example.com | [0db 01-18 01:58:49.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [67e38f2a]Received message COMPLETED from shim -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer0.org2.example.com | [259 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b60a57ca]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [0db 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer1.org1.example.com | [0dd 01-18 01:58:49.70 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Authenticated 172.18.0.4:7051 -peer1.org2.example.com | [177 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.0.2) lock -peer0.org1.example.com | [0dd 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa -peer1.org1.example.com | [0dc 01-18 01:58:49.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [67e38f2a]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [0de 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=escc:1.0.2 -peer0.org2.example.com | [25a 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b60a57ca]send state message COMPLETED -peer1.org2.example.com | [178 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.0.2) lock -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer0.org1.example.com | [0df 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer1.org1.example.com | [0de 01-18 01:58:49.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [67e38f2a-1a08-414e-a9bf-b6d4a86d7ebd]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [179 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for qscc-1.0.2 -peer0.org2.example.com | [25b 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b60a57ca]Received message COMPLETED from shim -peer0.org1.example.com | [0e0 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -peer1.org1.example.com | [0df 01-18 01:58:49.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:67e38f2a-1a08-414e-a9bf-b6d4a86d7ebd -peer0.org1.example.com | [0e1 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer1.org2.example.com | [17a 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.0.2) -peer0.org2.example.com | [25c 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b60a57ca]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [0e0 01-18 01:58:49.70 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -peer0.org1.example.com | [0e2 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer1.org1.example.com | [0e1 01-18 01:58:49.70 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed -peer1.org2.example.com | [17b 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.0.2 -peer0.org2.example.com | [25d 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b60a57ca-3bc0-4296-9137-14545ab06ee3]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [0e3 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode escc:1.0.2 -orderer.example.com | mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 -peer1.org2.example.com | [17c 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer0.org1.example.com | [0e4 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"escc:1.0.2" , sending back REGISTERED -peer0.org2.example.com | [25e 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:b60a57ca-3bc0-4296-9137-14545ab06ee3 -peer1.org1.example.com | [0e2 01-18 01:58:49.70 UTC] [github.com/hyperledger/fabric/msp/mgmt] func1.OrgByPeerIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -peer0.org1.example.com | [0e5 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer1.org2.example.com | [173 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: nonce:9286946780542278330 tag:EMPTY mem_req: > > , Envelope: 1066 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [25f 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [0e7 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer0.org1.example.com | [0e8 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer1.org1.example.com | [0e3 01-18 01:58:49.70 UTC] [github.com/hyperledger/fabric/msp] func1.OrgByPeerIdentity.DeserializeIdentity -> INFO Obtaining identity -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ -peer0.org2.example.com | [260 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed -peer1.org2.example.com | [17d 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [0e6 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer1.org1.example.com | [0e4 01-18 01:58:49.70 UTC] [github.com/hyperledger/fabric/msp] func1.OrgByPeerIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [261 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [993cd357-1f21-41ae-a7ee-c9a4a4ab8650] -peer1.org2.example.com | [17f 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.0.2 -orderer.example.com | xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv -peer0.org1.example.com | [0e9 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode escc:1.0.2 launch seq completed -peer1.org1.example.com | MIICGTCCAcCgAwIBAgIRALw0jT/FIanMxPg6w2uUMSowCgYIKoZIzj0EAwIwczEL -peer0.org2.example.com | [262 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org2.example.com | [180 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org2.example.com:7052] -peer0.org1.example.com | [0ea 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -orderer.example.com | WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk -peer0.org1.example.com | [0eb 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [263 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [76cead78-4118-4d5e-8c32-5ef8a21cf17a] -peer1.org1.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org2.example.com | [17e 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: nonce:9286946780542278330 tag:EMPTY mem_req: > > , Envelope: 1066 bytes, Signature: 0 bytes -peer0.org1.example.com | [0ec 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ddc87722]Move state message READY -orderer.example.com | SCjyRdD3aQ== -peer0.org2.example.com | [264 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=0a746ac9-9309-4367-ac14-bd6f1f2bfec3,syscc=true,proposal=0x0,canname=escc:1.0.2 -peer1.org1.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org2.example.com | [181 01-18 01:58:48.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.0.2 -peer0.org1.example.com | [0ed 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ddc87722]Fabric side Handling ChaincodeMessage of type: READY in state established -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [265 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 -peer1.org2.example.com | [182 01-18 01:58:48.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Entering peer0.org2.example.com:7051 [18 47 95 192 156 61 173 63 80 232 96 64 91 49 101 242 206 87 32 24 89 4 87 160 47 124 250 124 112 185 123 13] -peer0.org1.example.com | [0ee 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [ddc87722]Entered state ready -peer1.org1.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | 2018-01-18 01:58:46.574 UTC [msp/identity] newIdentity -> DEBU 095 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [0ef 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:ddc87722-6b8f-4ebf-9693-099a66d5e6b6 -peer0.org2.example.com | [266 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [183 01-18 01:58:48.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer0.org1.example.com | [0f0 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ddc87722]sending state message READY -peer1.org1.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org2.example.com | [267 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 -peer0.org1.example.com | [0f1 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ddc87722]Received message READY from shim -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -peer1.org2.example.com | [184 01-18 01:58:48.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer0.org1.example.com | [0f2 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ddc87722]Handling ChaincodeMessage of type: READY(state:established) -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org2.example.com | [268 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [0a746ac9]Inside sendExecuteMessage. Message INIT -peer1.org2.example.com | [185 01-18 01:58:48.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer1.org1.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMS5leGFtcGxlLmNvbTBZ -peer0.org2.example.com | [269 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [0f3 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org2.example.com | [26a 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [0a746ac9]sendExecuteMsg trigger event INIT -peer1.org2.example.com | [186 01-18 01:58:48.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer1.org1.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABKqfdWF/oY+2ymqjk+AlBN+RBThxPp/k -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -peer0.org1.example.com | [0f4 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -peer0.org2.example.com | [26b 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0a746ac9]Move state message INIT -peer1.org2.example.com | [187 01-18 01:58:48.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode qscc:1.0.2 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -peer0.org2.example.com | [26c 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0a746ac9]Fabric side Handling ChaincodeMessage of type: INIT in state ready -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -peer1.org1.example.com | lU+BhmGArpnlGNd7iT6pil/iSDtfA5xZ9we5NIfTehFqmZcI6g1N172jTTBLMA4G -peer1.org2.example.com | [188 01-18 01:58:48.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"qscc:1.0.2" , sending back REGISTERED -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -peer0.org2.example.com | [26d 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [189 01-18 01:58:48.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer1.org1.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -peer0.org1.example.com | [0f5 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [26e 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0a746ac9]sending state message INIT -peer1.org2.example.com | [18a 01-18 01:58:48.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -orderer.example.com | AXYxULZpXYDQXt1KaLI= -peer1.org2.example.com | [18b 01-18 01:58:48.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer0.org1.example.com | [0f6 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 -peer0.org1.example.com | [0f7 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [ddc87722]Inside sendExecuteMessage. Message INIT -peer1.org1.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIALSJqGc -peer0.org2.example.com | [26f 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0a746ac9]Received message INIT from shim -orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [18c 01-18 01:58:48.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer0.org1.example.com | [0f8 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [270 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0a746ac9]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org2.example.com | [18d 01-18 01:58:48.69 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode qscc:1.0.2 launch seq completed -peer0.org1.example.com | [0f9 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [ddc87722]sendExecuteMsg trigger event INIT -peer1.org2.example.com | [18e 01-18 01:58:48.69 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -orderer.example.com | 2018-01-18 01:58:46.574 UTC [msp/identity] newIdentity -> DEBU 096 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [271 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org2.example.com | [18f 01-18 01:58:48.69 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | vdZHCJ0RecVQ2Rdtkdnok57p68XFlRBy2l4xAiAJS6Z2yxyElBubPI0MBn//Xs9l -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [0fa 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ddc87722]Move state message INIT -peer1.org2.example.com | [190 01-18 01:58:48.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [30716e87]Move state message READY -peer0.org2.example.com | [272 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [0a746ac9]Received INIT, initializing chaincode -peer1.org2.example.com | [191 01-18 01:58:48.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [30716e87]Fabric side Handling ChaincodeMessage of type: READY in state established -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [0fb 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ddc87722]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org1.example.com | 05n0MbLw/Ug3egJ3JA== -peer0.org2.example.com | [273 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC -peer1.org2.example.com | [192 01-18 01:58:48.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [30716e87]Entered state ready -peer1.org1.example.com | -----END CERTIFICATE----- -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [0fc 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [193 01-18 01:58:48.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:30716e87-fad5-4fa1-9fd7-f502dafe94f3 -peer0.org2.example.com | [274 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0a746ac9]Init get response status: 200 -peer1.org2.example.com | [194 01-18 01:58:48.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [30716e87]sending state message READY -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -peer0.org1.example.com | [0fd 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ddc87722]sending state message INIT -peer1.org1.example.com | [0e6 01-18 01:58:49.70 UTC] [github.com/hyperledger/fabric/msp/mgmt] createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [195 01-18 01:58:48.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [30716e87]Received message READY from shim -peer0.org2.example.com | [275 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0a746ac9]Init succeeded. Sending COMPLETED -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org2.example.com | [196 01-18 01:58:48.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [30716e87]Handling ChaincodeMessage of type: READY(state:established) -peer0.org1.example.com | [0fe 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ddc87722]Received message INIT from shim -peer1.org1.example.com | [0e7 01-18 01:58:49.70 UTC] [github.com/hyperledger/fabric/msp] createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org2.example.com | [276 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0a746ac9]Move state message COMPLETED -peer1.org2.example.com | [197 01-18 01:58:48.69 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -peer1.org2.example.com | [198 01-18 01:58:48.69 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -peer0.org1.example.com | [0ff 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ddc87722]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org2.example.com | [199 01-18 01:58:48.69 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [0e8 01-18 01:58:49.70 UTC] [github.com/hyperledger/fabric/msp] createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 18012ADE060A3F0A1B70656572312E6F...0A2D2D2D2D2D454E44202D2D2D2D2D0A -peer0.org2.example.com | [277 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0a746ac9]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -peer1.org2.example.com | [19a 01-18 01:58:48.69 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.2 -peer1.org1.example.com | [0e9 01-18 01:58:49.70 UTC] [github.com/hyperledger/fabric/msp] createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: digest: 3D68253D0973B04ADC8186BB8FF06A50DA2F94325E22C61E12D037413297F2A0 -peer0.org2.example.com | [278 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0a746ac9]send state message COMPLETED -peer0.org1.example.com | [100 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -peer1.org2.example.com | [19b 01-18 01:58:48.69 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [30716e87]Inside sendExecuteMessage. Message INIT -peer0.org2.example.com | [279 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0a746ac9]Received message COMPLETED from shim -peer0.org1.example.com | [101 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [ddc87722]Received INIT, initializing chaincode -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -peer1.org2.example.com | [19c 01-18 01:58:48.69 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [27a 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0a746ac9]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [0ea 01-18 01:58:49.70 UTC] [github.com/hyperledger/fabric/msp/mgmt] createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [19d 01-18 01:58:48.69 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [30716e87]sendExecuteMsg trigger event INIT -peer0.org2.example.com | [27b 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0a746ac9-9309-4367-ac14-bd6f1f2bfec3]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [102 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -peer1.org2.example.com | [19e 01-18 01:58:48.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [30716e87]Move state message INIT -peer0.org2.example.com | [27c 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:0a746ac9-9309-4367-ac14-bd6f1f2bfec3 -peer1.org1.example.com | [0eb 01-18 01:58:49.70 UTC] [github.com/hyperledger/fabric/msp] createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer1.org2.example.com | [19f 01-18 01:58:48.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [30716e87]Fabric side Handling ChaincodeMessage of type: INIT in state ready -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -peer0.org2.example.com | [27d 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [1a0 01-18 01:58:48.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [103 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ddc87722]Init get response status: 200 -peer0.org2.example.com | [27e 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode escc/businesschannel(github.com/hyperledger/fabric/core/scc/escc) deployed -peer1.org1.example.com | [0ec 01-18 01:58:49.70 UTC] [github.com/hyperledger/fabric/msp] createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A1B70656572312E6F7267312E6578616D706C652E636F6D3A37303531 -peer1.org2.example.com | [1a1 01-18 01:58:48.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [30716e87]sending state message INIT -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -peer0.org1.example.com | [104 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ddc87722]Init succeeded. Sending COMPLETED -peer0.org2.example.com | [27f 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [76cead78-4118-4d5e-8c32-5ef8a21cf17a] -peer1.org2.example.com | [1a2 01-18 01:58:48.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [30716e87]Received message INIT from shim -peer1.org1.example.com | [0ed 01-18 01:58:49.70 UTC] [github.com/hyperledger/fabric/msp] createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: digest: 5E1207E32E2709D3C49FD6E4E42EA75E054BF7CAB0517372323BB60EB639719F -peer0.org1.example.com | [105 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ddc87722]Move state message COMPLETED -peer0.org2.example.com | [280 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | AXYxULZpXYDQXt1KaLI= -peer1.org2.example.com | [1a3 01-18 01:58:48.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [30716e87]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [281 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [82f253dc-504e-4194-a42e-e6ae2ff733d4] -peer0.org1.example.com | [106 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ddc87722]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [0ee 01-18 01:58:49.70 UTC] [github.com/hyperledger/fabric/msp/mgmt] SendToPeer.disclosurePolicy)-fm.disclosurePolicy.getOrgOfPeer.OrgByPeerIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [282 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=f4a63d18-57fc-43c5-9b89-f3e5b401a6d9,syscc=true,proposal=0x0,canname=vscc:1.0.2 -peer1.org2.example.com | [1a4 01-18 01:58:48.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [283 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 -peer0.org1.example.com | [107 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ddc87722]send state message COMPLETED -peer1.org2.example.com | [1a5 01-18 01:58:48.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [30716e87]Received INIT, initializing chaincode -peer1.org1.example.com | [0ef 01-18 01:58:49.70 UTC] [github.com/hyperledger/fabric/msp] SendToPeer.disclosurePolicy)-fm.disclosurePolicy.getOrgOfPeer.OrgByPeerIdentity.DeserializeIdentity -> INFO Obtaining identity -orderer.example.com | 2018-01-18 01:58:46.575 UTC [msp] Validate -> DEBU 097 MSP Org2MSP validating identity -peer0.org2.example.com | [284 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [1a6 01-18 01:58:48.69 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -peer0.org1.example.com | [108 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ddc87722]Received message COMPLETED from shim -peer1.org1.example.com | [0f0 01-18 01:58:49.70 UTC] [github.com/hyperledger/fabric/msp] SendToPeer.disclosurePolicy)-fm.disclosurePolicy.getOrgOfPeer.OrgByPeerIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [285 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 -orderer.example.com | 2018-01-18 01:58:46.576 UTC [msp] Setup -> DEBU 098 Setting up the MSP manager (3 msps) -peer1.org2.example.com | [1a7 01-18 01:58:48.69 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [286 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [f4a63d18]Inside sendExecuteMessage. Message INIT -peer0.org1.example.com | [109 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ddc87722]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | MIICGTCCAcCgAwIBAgIRALw0jT/FIanMxPg6w2uUMSowCgYIKoZIzj0EAwIwczEL -orderer.example.com | 2018-01-18 01:58:46.576 UTC [msp] Setup -> DEBU 099 MSP manager setup complete, setup 3 msps -peer1.org2.example.com | [1a8 01-18 01:58:48.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [30716e87]Init get response status: 200 -peer1.org1.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [10a 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ddc87722-6b8f-4ebf-9693-099a66d5e6b6]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [287 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org2.example.com | [1a9 01-18 01:58:48.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [30716e87]Init succeeded. Sending COMPLETED -orderer.example.com | 2018-01-18 01:58:46.576 UTC [policies] GetPolicy -> DEBU 09a Returning policy Readers for evaluation -peer0.org2.example.com | [288 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [f4a63d18]sendExecuteMsg trigger event INIT -peer0.org1.example.com | [10b 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:ddc87722-6b8f-4ebf-9693-099a66d5e6b6 -peer1.org2.example.com | [1aa 01-18 01:58:48.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [30716e87]Move state message COMPLETED -peer1.org1.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | 2018-01-18 01:58:46.576 UTC [policies] CommitProposals -> DEBU 09b In commit adding relative sub-policy OrdererOrg/Readers to Orderer -peer0.org2.example.com | [289 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f4a63d18]Move state message INIT -peer0.org1.example.com | [10c 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [1ab 01-18 01:58:48.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [30716e87]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org2.example.com | [28a 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f4a63d18]Fabric side Handling ChaincodeMessage of type: INIT in state ready -orderer.example.com | 2018-01-18 01:58:46.576 UTC [policies] GetPolicy -> DEBU 09c Returning policy Writers for evaluation -peer1.org2.example.com | [1ac 01-18 01:58:48.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [30716e87]send state message COMPLETED -peer0.org1.example.com | [10d 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode escc/(github.com/hyperledger/fabric/core/scc/escc) deployed -peer1.org1.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | 2018-01-18 01:58:46.576 UTC [policies] CommitProposals -> DEBU 09d In commit adding relative sub-policy OrdererOrg/Writers to Orderer -peer0.org2.example.com | [28b 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [1ad 01-18 01:58:48.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [30716e87]Received message COMPLETED from shim -peer0.org1.example.com | [10e 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=vscc,version=1.0.2,txid=b779b768-0068-4aca-8f72-c87db67d87f3,syscc=true,proposal=0x0,canname=vscc:1.0.2 -peer0.org2.example.com | [28c 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f4a63d18]sending state message INIT -peer1.org2.example.com | [1ae 01-18 01:58:48.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [30716e87]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | 2018-01-18 01:58:46.576 UTC [policies] GetPolicy -> DEBU 09e Returning policy Admins for evaluation -peer1.org1.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABKqfdWF/oY+2ymqjk+AlBN+RBThxPp/k -peer0.org1.example.com | [10f 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode vscc:1.0.2 is being launched -peer0.org2.example.com | [28d 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f4a63d18]Received message INIT from shim -peer1.org2.example.com | [1af 01-18 01:58:48.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [30716e87-fad5-4fa1-9fd7-f502dafe94f3]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | lU+BhmGArpnlGNd7iT6pil/iSDtfA5xZ9we5NIfTehFqmZcI6g1N172jTTBLMA4G -orderer.example.com | 2018-01-18 01:58:46.576 UTC [policies] CommitProposals -> DEBU 09f In commit adding relative sub-policy OrdererOrg/Admins to Orderer -peer0.org1.example.com | [110 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -peer0.org2.example.com | [28e 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f4a63d18]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org2.example.com | [1b0 01-18 01:58:48.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:30716e87-fad5-4fa1-9fd7-f502dafe94f3 -orderer.example.com | 2018-01-18 01:58:46.576 UTC [policies] GetPolicy -> DEBU 0a0 Returning policy Writers for evaluation -peer0.org2.example.com | [28f 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org1.example.com | [111 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -peer1.org1.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -peer1.org2.example.com | [1b1 01-18 01:58:48.69 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [290 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [f4a63d18]Received INIT, initializing chaincode -peer0.org1.example.com | [112 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: vscc:1.0.2(networkid:dev,peerid:peer0.org1.example.com) -orderer.example.com | 2018-01-18 01:58:46.576 UTC [policies] GetPolicy -> DEBU 0a1 Returning policy Admins for evaluation -peer0.org2.example.com | [291 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f4a63d18]Init get response status: 200 -peer1.org2.example.com | [1b2 01-18 01:58:48.69 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/chaincode/qscc) deployed -peer1.org1.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIALSJqGc -peer0.org1.example.com | [113 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -peer0.org2.example.com | [292 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f4a63d18]Init succeeded. Sending COMPLETED -orderer.example.com | 2018-01-18 01:58:46.576 UTC [policies] GetPolicy -> DEBU 0a2 Returning policy Writers for evaluation -peer1.org1.example.com | vdZHCJ0RecVQ2Rdtkdnok57p68XFlRBy2l4xAiAJS6Z2yxyElBubPI0MBn//Xs9l -peer0.org2.example.com | [293 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f4a63d18]Move state message COMPLETED -peer0.org1.example.com | [114 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: -orderer.example.com | 2018-01-18 01:58:46.576 UTC [policies] GetPolicy -> DEBU 0a3 Returning policy Readers for evaluation -peer1.org1.example.com | 05n0MbLw/Ug3egJ3JA== -peer1.org2.example.com | [1b3 01-18 01:58:48.69 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.initSysCCs -> INFO Deployed system chaincodess -peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=vscc:1.0.2 -peer1.org1.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:46.576 UTC [policies] GetPolicy -> DEBU 0a4 Returning policy Readers for evaluation -peer1.org2.example.com | [1b4 01-18 01:58:48.70 UTC] [github.com/hyperledger/fabric/msp/mgmt] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer.createConnectionMsg.Sign.func1.Sign.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [294 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f4a63d18]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer0.org2.example.com | [295 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f4a63d18]send state message COMPLETED -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer1.org1.example.com | [0f1 01-18 01:58:49.70 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: nonce:9029501778371496001 tag:EMPTY mem_req:\266\303P\035^'\317H\3744\313\206\331\343\254A\2530\244\3446\334\336%\212p\311\020" > > > , Envelope: 1066 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1b5 01-18 01:58:48.70 UTC] [github.com/hyperledger/fabric/msp] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer.createConnectionMsg.Sign.func1.Sign.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | 2018-01-18 01:58:46.576 UTC [policies] CommitProposals -> DEBU 0a5 In commit adding relative sub-policy Org1MSP/Readers to SampleConsortium -peer1.org1.example.com | [0f2 01-18 01:58:49.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: nonce:9029501778371496001 tag:EMPTY mem_req:\266\303P\035^'\317H\3744\313\206\331\343\254A\2530\244\3446\334\336%\212p\311\020" > > > , Envelope: 1066 bytes, Signature: 0 bytes -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer0.org2.example.com | [296 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f4a63d18]Received message COMPLETED from shim -peer1.org1.example.com | [0f3 01-18 01:58:49.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Entering peer0.org1.example.com:7051 [67 57 124 107 226 101 123 170 242 161 114 171 7 37 125 129 66 25 246 152 76 9 231 202 239 174 113 90 43 207 127 228] -peer1.org2.example.com | [1b6 01-18 01:58:48.70 UTC] [github.com/hyperledger/fabric/msp] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer.createConnectionMsg.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: plaintext: 180172D3060A20907730A198106F3787...293CAFE19A97D7026ECBDF4E276BE59C -peer1.org1.example.com | [0e5 01-18 01:58:49.70 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=escc,version=1.0.2,txid=e483cdf7-411c-4981-a0dc-a994ae4680c8,syscc=true,proposal=0x0,canname=escc:1.0.2 -orderer.example.com | 2018-01-18 01:58:46.576 UTC [policies] GetPolicy -> DEBU 0a6 Returning policy Writers for evaluation -peer0.org2.example.com | [297 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f4a63d18]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [0f4 01-18 01:58:49.70 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode escc:1.0.2 is being launched -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -orderer.example.com | 2018-01-18 01:58:46.576 UTC [policies] CommitProposals -> DEBU 0a7 In commit adding relative sub-policy Org1MSP/Writers to SampleConsortium -peer1.org2.example.com | [1b7 01-18 01:58:48.70 UTC] [github.com/hyperledger/fabric/msp] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer.createConnectionMsg.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: digest: D188AA5BAD0067B4227E19B0E31A38513921598F128235D7C4862008E504B4F6 -peer0.org2.example.com | [298 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f4a63d18-57fc-43c5-9b89-f3e5b401a6d9]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [0f5 01-18 01:58:49.70 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -orderer.example.com | 2018-01-18 01:58:46.576 UTC [policies] GetPolicy -> DEBU 0a8 Returning policy Admins for evaluation -peer0.org1.example.com | [115 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(vscc-1.0.2) lock -peer1.org2.example.com | [1b8 01-18 01:58:48.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 856 bytes, Signature: 71 bytes to 172.18.0.6:7051 -peer1.org1.example.com | [0f6 01-18 01:58:49.70 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer1.org1.example.com:7052] -peer0.org2.example.com | [299 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:f4a63d18-57fc-43c5-9b89-f3e5b401a6d9 -orderer.example.com | 2018-01-18 01:58:46.576 UTC [policies] CommitProposals -> DEBU 0a9 In commit adding relative sub-policy Org1MSP/Admins to SampleConsortium -peer1.org2.example.com | [1b9 01-18 01:58:48.70 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with ID=[name:"peer1.org2.example.com" ], network ID=[dev], address=[peer1.org2.example.com:7051] -peer1.org1.example.com | [0f7 01-18 01:58:49.70 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: escc:1.0.2(networkid:dev,peerid:peer1.org1.example.com) -peer0.org1.example.com | [116 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (vscc-1.0.2) lock -peer0.org2.example.com | [29a 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [0f8 01-18 01:58:49.70 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer1.org1.example.com:7052 -peer1.org2.example.com | [1ba 01-18 01:58:48.70 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Started peer with ID=[name:"peer1.org2.example.com" ], network ID=[dev], address=[peer1.org2.example.com:7051] -orderer.example.com | 2018-01-18 01:58:46.576 UTC [policies] GetPolicy -> DEBU 0aa Returning policy Writers for evaluation -peer0.org1.example.com | [117 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for vscc-1.0.2 -peer1.org1.example.com | [0f9 01-18 01:58:49.70 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: -peer0.org2.example.com | [29b 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/businesschannel(github.com/hyperledger/fabric/core/scc/vscc) deployed -orderer.example.com | 2018-01-18 01:58:46.576 UTC [policies] CommitProposals -> DEBU 0ab In commit adding relative sub-policy Org2MSP/Writers to SampleConsortium -peer1.org1.example.com | CORE_CHAINCODE_ID_NAME=escc:1.0.2 -peer0.org1.example.com | [119 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for vscc-1.0.2 -peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org2.example.com | [1bb 01-18 01:58:48.70 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'msp' logger enabled for log level 'WARNING' -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -orderer.example.com | 2018-01-18 01:58:46.576 UTC [policies] GetPolicy -> DEBU 0ac Returning policy Admins for evaluation -peer0.org2.example.com | [29c 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [82f253dc-504e-4194-a42e-e6ae2ff733d4] -peer0.org1.example.com | [11a 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -orderer.example.com | 2018-01-18 01:58:46.576 UTC [policies] CommitProposals -> DEBU 0ad In commit adding relative sub-policy Org2MSP/Admins to SampleConsortium -peer0.org2.example.com | [29d 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org2.example.com | [1bc 01-18 01:58:48.70 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'configvalues/msp' logger enabled for log level 'WARNING' -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer0.org1.example.com | [11b 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | 2018-01-18 01:58:46.576 UTC [policies] GetPolicy -> DEBU 0ae Returning policy Readers for evaluation -peer1.org2.example.com | [1bd 01-18 01:58:48.70 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'msp/identity' logger enabled for log level 'WARNING' -peer1.org1.example.com | [0fa 01-18 01:58:49.70 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(escc-1.0.2) lock -peer0.org1.example.com | [11c 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for vscc-1.0.2 -peer1.org1.example.com | [0fb 01-18 01:58:49.70 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (escc-1.0.2) lock -orderer.example.com | 2018-01-18 01:58:46.576 UTC [policies] CommitProposals -> DEBU 0af In commit adding relative sub-policy Org2MSP/Readers to SampleConsortium -peer0.org2.example.com | [29e 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [cb614b9b-a4ce-42b0-9493-50dca138e6ba] -peer1.org2.example.com | [1be 01-18 01:58:48.70 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/gossip' logger enabled for log level 'WARNING' -peer1.org1.example.com | [0fc 01-18 01:58:49.70 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for escc-1.0.2 -peer0.org1.example.com | [11d 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -orderer.example.com | 2018-01-18 01:58:46.576 UTC [policies] GetPolicy -> DEBU 0b0 Returning policy Org1MSP/Admins for evaluation -peer0.org2.example.com | [29f 01-18 01:58:53.03 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.0.2,txid=82ba68af-020c-4305-b24b-a6f3754b4f82,syscc=true,proposal=0x0,canname=qscc:1.0.2 -peer1.org1.example.com | [0fd 01-18 01:58:49.70 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(escc-1.0.2) -orderer.example.com | 2018-01-18 01:58:46.576 UTC [policies] CommitProposals -> DEBU 0b1 In commit adding relative sub-policy SampleConsortium/Org1MSP/Admins to Consortiums -peer1.org2.example.com | [1bf 01-18 01:58:48.70 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/election' logger enabled for log level 'WARNING' -peer0.org1.example.com | [11e 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=vscc:1.0.2 -peer1.org1.example.com | [0fe 01-18 01:58:49.70 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for escc-1.0.2 -peer0.org2.example.com | [2a0 01-18 01:58:53.04 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.0.2 -peer1.org2.example.com | [1c0 01-18 01:58:48.70 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'peer/gossip/mcs' logger enabled for log level 'WARNING' -peer1.org1.example.com | [100 01-18 01:58:49.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer0.org1.example.com | [11f 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -orderer.example.com | 2018-01-18 01:58:46.576 UTC [policies] GetPolicy -> DEBU 0b2 Returning policy Org2MSP/Writers for evaluation -peer1.org2.example.com | [1c1 01-18 01:58:48.70 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/state' logger enabled for log level 'WARNING' -peer1.org1.example.com | [101 01-18 01:58:49.70 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [2a1 01-18 01:58:53.04 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -orderer.example.com | 2018-01-18 01:58:46.576 UTC [policies] CommitProposals -> DEBU 0b3 In commit adding relative sub-policy SampleConsortium/Org2MSP/Writers to Consortiums -peer0.org1.example.com | [120 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer1.org2.example.com | [1c2 01-18 01:58:48.70 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/discovery' logger enabled for log level 'WARNING' -peer1.org1.example.com | [0ff 01-18 01:58:49.70 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for escc-1.0.2 -peer0.org2.example.com | [2a2 01-18 01:58:53.04 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.2 -peer0.org1.example.com | [121 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer1.org1.example.com | [102 01-18 01:58:49.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org1.example.com:7052] -peer1.org2.example.com | [1c3 01-18 01:58:48.70 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/pull' logger enabled for log level 'WARNING' -orderer.example.com | 2018-01-18 01:58:46.576 UTC [policies] GetPolicy -> DEBU 0b4 Returning policy Org2MSP/Admins for evaluation -peer0.org1.example.com | [122 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer0.org2.example.com | [2a3 01-18 01:58:53.04 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [82ba68af]Inside sendExecuteMessage. Message INIT -peer1.org1.example.com | [103 01-18 01:58:49.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=escc:1.0.2 -peer1.org2.example.com | [1c4 01-18 01:58:48.70 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/service' logger enabled for log level 'WARNING' -orderer.example.com | 2018-01-18 01:58:46.576 UTC [policies] CommitProposals -> DEBU 0b5 In commit adding relative sub-policy SampleConsortium/Org2MSP/Admins to Consortiums -peer0.org1.example.com | [123 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode vscc:1.0.2 -peer0.org2.example.com | [2a4 01-18 01:58:53.04 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [1c5 01-18 01:58:48.70 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'peer/gossip/sa' logger enabled for log level 'WARNING' -peer1.org1.example.com | [104 01-18 01:58:49.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -orderer.example.com | 2018-01-18 01:58:46.577 UTC [policies] GetPolicy -> DEBU 0b6 Returning policy Org2MSP/Readers for evaluation -peer0.org2.example.com | [2a5 01-18 01:58:53.04 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [82ba68af]sendExecuteMsg trigger event INIT -peer0.org1.example.com | [124 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"vscc:1.0.2" , sending back REGISTERED -orderer.example.com | 2018-01-18 01:58:46.577 UTC [policies] CommitProposals -> DEBU 0b7 In commit adding relative sub-policy SampleConsortium/Org2MSP/Readers to Consortiums -peer1.org2.example.com | [1c6 01-18 01:58:48.70 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/comm' logger enabled for log level 'WARNING' -peer0.org2.example.com | [2a6 01-18 01:58:53.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [82ba68af]Move state message INIT -peer1.org1.example.com | [105 01-18 01:58:49.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer0.org1.example.com | [125 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer1.org2.example.com | [1c7 01-18 01:58:48.70 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'ledgermgmt' logger enabled for log level 'INFO' -peer0.org2.example.com | [2a7 01-18 01:58:53.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [82ba68af]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org1.example.com | [106 01-18 01:58:49.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -orderer.example.com | 2018-01-18 01:58:46.577 UTC [policies] GetPolicy -> DEBU 0b8 Returning policy Org1MSP/Readers for evaluation -peer1.org2.example.com | [1c8 01-18 01:58:48.70 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'kvledger' logger enabled for log level 'INFO' -peer0.org2.example.com | [2a8 01-18 01:58:53.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [107 01-18 01:58:49.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer0.org1.example.com | [126 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -orderer.example.com | 2018-01-18 01:58:46.577 UTC [policies] CommitProposals -> DEBU 0b9 In commit adding relative sub-policy SampleConsortium/Org1MSP/Readers to Consortiums -peer1.org2.example.com | [1c9 01-18 01:58:48.70 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'kvledger.util' logger enabled for log level 'INFO' -peer0.org2.example.com | [2a9 01-18 01:58:53.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [82ba68af]sending state message INIT -orderer.example.com | 2018-01-18 01:58:46.577 UTC [policies] GetPolicy -> DEBU 0ba Returning policy Org1MSP/Writers for evaluation -peer1.org1.example.com | [108 01-18 01:58:49.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode escc:1.0.2 -peer0.org1.example.com | [127 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer1.org2.example.com | [1ca 01-18 01:58:48.70 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'cauthdsl' logger enabled for log level 'WARNING' -orderer.example.com | 2018-01-18 01:58:46.577 UTC [policies] CommitProposals -> DEBU 0bb In commit adding relative sub-policy SampleConsortium/Org1MSP/Writers to Consortiums -peer0.org1.example.com | [128 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer0.org2.example.com | [2aa 01-18 01:58:53.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [82ba68af]Received message INIT from shim -peer1.org1.example.com | [109 01-18 01:58:49.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"escc:1.0.2" , sending back REGISTERED -peer1.org2.example.com | [1cb 01-18 01:58:48.70 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'policies' logger enabled for log level 'WARNING' -orderer.example.com | 2018-01-18 01:58:46.577 UTC [policies] GetPolicy -> DEBU 0bc Returning policy OrdererOrg/Readers for evaluation -peer0.org2.example.com | [2ab 01-18 01:58:53.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [82ba68af]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org1.example.com | [10a 01-18 01:58:49.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer0.org1.example.com | [118 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(vscc-1.0.2) -peer1.org2.example.com | [1cc 01-18 01:58:48.70 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'grpc' logger enabled for log level 'ERROR' -orderer.example.com | 2018-01-18 01:58:46.577 UTC [policies] CommitProposals -> DEBU 0bd In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -peer0.org2.example.com | [2ac 01-18 01:58:53.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org1.example.com | [10b 01-18 01:58:49.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer0.org1.example.com | [129 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode vscc:1.0.2 launch seq completed -peer1.org2.example.com | [1cd 01-18 01:58:53.13 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -peer0.org2.example.com | [2ad 01-18 01:58:53.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [82ba68af]Received INIT, initializing chaincode -orderer.example.com | 2018-01-18 01:58:46.577 UTC [policies] GetPolicy -> DEBU 0be Returning policy OrdererOrg/Writers for evaluation -peer1.org1.example.com | [10c 01-18 01:58:49.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer1.org2.example.com | [1ce 01-18 01:58:53.13 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42162fec0 -peer0.org2.example.com | [2ae 01-18 01:58:53.04 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -peer0.org1.example.com | [12a 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -orderer.example.com | 2018-01-18 01:58:46.577 UTC [policies] CommitProposals -> DEBU 0bf In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -peer1.org1.example.com | [10d 01-18 01:58:49.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer0.org2.example.com | [2af 01-18 01:58:53.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [82ba68af]Init get response status: 200 -peer1.org2.example.com | [1cf 01-18 01:58:53.13 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer0.org1.example.com | [12b 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [10e 01-18 01:58:49.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode escc:1.0.2 launch seq completed -orderer.example.com | 2018-01-18 01:58:46.577 UTC [policies] GetPolicy -> DEBU 0c0 Returning policy OrdererOrg/Admins for evaluation -peer0.org2.example.com | [2b0 01-18 01:58:53.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [82ba68af]Init succeeded. Sending COMPLETED -peer1.org2.example.com | [1d0 01-18 01:58:53.13 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [12c 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b779b768]Move state message READY -peer1.org1.example.com | [10f 01-18 01:58:49.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -orderer.example.com | 2018-01-18 01:58:46.577 UTC [policies] CommitProposals -> DEBU 0c1 In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -peer1.org2.example.com | [1d1 01-18 01:58:53.13 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} -peer0.org2.example.com | [2b1 01-18 01:58:53.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [82ba68af]Move state message COMPLETED -peer0.org1.example.com | [12d 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b779b768]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org1.example.com | [110 01-18 01:58:49.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [1d2 01-18 01:58:53.13 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | 2018-01-18 01:58:46.577 UTC [policies] GetPolicy -> DEBU 0c2 Returning policy Writers for evaluation -peer0.org2.example.com | [2b2 01-18 01:58:53.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [82ba68af]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [111 01-18 01:58:49.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e483cdf7]Move state message READY -peer1.org2.example.com | [1d3 01-18 01:58:53.14 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org1.example.com | [12e 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [b779b768]Entered state ready -orderer.example.com | 2018-01-18 01:58:46.577 UTC [policies] CommitProposals -> DEBU 0c3 In commit adding relative sub-policy Orderer/Writers to Channel -peer0.org2.example.com | [2b3 01-18 01:58:53.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [82ba68af]send state message COMPLETED -peer0.org1.example.com | [12f 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:b779b768-0068-4aca-8f72-c87db67d87f3 -peer1.org1.example.com | [112 01-18 01:58:49.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e483cdf7]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org2.example.com | [1d4 01-18 01:58:53.14 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4216a4e60, header 0xc42162ff50 -peer0.org2.example.com | [2b4 01-18 01:58:53.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [82ba68af]Received message COMPLETED from shim -peer0.org1.example.com | [131 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -orderer.example.com | 2018-01-18 01:58:46.577 UTC [policies] GetPolicy -> DEBU 0c4 Returning policy Admins for evaluation -peer1.org2.example.com | [1d5 01-18 01:58:53.14 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"cscc" -peer1.org1.example.com | [113 01-18 01:58:49.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [e483cdf7]Entered state ready -peer0.org1.example.com | [132 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -peer0.org2.example.com | [2b5 01-18 01:58:53.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [82ba68af]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | 2018-01-18 01:58:46.577 UTC [policies] CommitProposals -> DEBU 0c5 In commit adding relative sub-policy Orderer/Admins to Channel -peer1.org1.example.com | [114 01-18 01:58:49.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:e483cdf7-411c-4981-a0dc-a994ae4680c8 -peer1.org2.example.com | [1d6 01-18 01:58:53.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 7aaa6edb3353d9d2a0346814a1b2a493b072f147b6a566a2ca8b6bd2dbf02e6e -peer0.org1.example.com | [133 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -orderer.example.com | 2018-01-18 01:58:46.577 UTC [policies] GetPolicy -> DEBU 0c6 Returning policy BlockValidation for evaluation -peer0.org2.example.com | [2b6 01-18 01:58:53.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [82ba68af-020c-4305-b24b-a6f3754b4f82]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [1d7 01-18 01:58:53.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 7aaa6edb3353d9d2a0346814a1b2a493b072f147b6a566a2ca8b6bd2dbf02e6e channel id: -peer0.org1.example.com | [134 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 -peer1.org1.example.com | [115 01-18 01:58:49.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e483cdf7]sending state message READY -orderer.example.com | 2018-01-18 01:58:46.577 UTC [policies] CommitProposals -> DEBU 0c7 In commit adding relative sub-policy Orderer/BlockValidation to Channel -peer1.org2.example.com | [1d8 01-18 01:58:53.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 7aaa6edb3353d9d2a0346814a1b2a493b072f147b6a566a2ca8b6bd2dbf02e6e channel id: version: 1.0.2 -peer0.org2.example.com | [2b7 01-18 01:58:53.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:82ba68af-020c-4305-b24b-a6f3754b4f82 -peer1.org1.example.com | [116 01-18 01:58:49.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e483cdf7]Received message READY from shim -orderer.example.com | 2018-01-18 01:58:46.577 UTC [policies] GetPolicy -> DEBU 0c8 Returning policy Readers for evaluation -peer0.org1.example.com | [135 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [b779b768]Inside sendExecuteMessage. Message INIT -peer1.org2.example.com | [1d9 01-18 01:58:53.14 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.0.2,txid=7aaa6edb3353d9d2a0346814a1b2a493b072f147b6a566a2ca8b6bd2dbf02e6e,syscc=true,proposal=0xc4216a4e60,canname=cscc:1.0.2 -peer0.org2.example.com | [2b8 01-18 01:58:53.04 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [136 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | 2018-01-18 01:58:46.577 UTC [policies] CommitProposals -> DEBU 0c9 In commit adding relative sub-policy Orderer/Readers to Channel -peer0.org2.example.com | [2b9 01-18 01:58:53.04 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/chaincode/qscc) deployed -peer1.org1.example.com | [117 01-18 01:58:49.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e483cdf7]Handling ChaincodeMessage of type: READY(state:established) -peer1.org2.example.com | [1da 01-18 01:58:53.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.0.2 -peer0.org1.example.com | [137 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [b779b768]sendExecuteMsg trigger event INIT -orderer.example.com | 2018-01-18 01:58:46.577 UTC [policies] GetPolicy -> DEBU 0ca Returning policy SampleConsortium/Org1MSP/Writers for evaluation -peer1.org1.example.com | [118 01-18 01:58:49.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -peer0.org2.example.com | [2ba 01-18 01:58:53.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [cb614b9b-a4ce-42b0-9493-50dca138e6ba] -peer0.org1.example.com | [130 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b779b768]sending state message READY -peer1.org2.example.com | [1db 01-18 01:58:53.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [119 01-18 01:58:49.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -orderer.example.com | 2018-01-18 01:58:46.577 UTC [policies] CommitProposals -> DEBU 0cb In commit adding relative sub-policy Consortiums/SampleConsortium/Org1MSP/Writers to Channel -peer0.org2.example.com | [2bb 01-18 01:58:53.04 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Entry -peer0.org1.example.com | [138 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b779b768]Received message READY from shim -peer1.org2.example.com | [1dc 01-18 01:58:53.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.2 -orderer.example.com | 2018-01-18 01:58:46.577 UTC [policies] GetPolicy -> DEBU 0cc Returning policy Admins for evaluation -peer0.org2.example.com | [2bc 01-18 01:58:53.04 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [0] -peer1.org2.example.com | [1dd 01-18 01:58:53.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7aaa6edb]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [139 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b779b768]Handling ChaincodeMessage of type: READY(state:established) -orderer.example.com | 2018-01-18 01:58:46.577 UTC [policies] CommitProposals -> DEBU 0cd In commit adding relative sub-policy Consortiums/Admins to Channel -peer1.org1.example.com | [11a 01-18 01:58:49.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [2bd 01-18 01:58:53.04 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Entry -peer1.org2.example.com | [1de 01-18 01:58:53.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | 2018-01-18 01:58:46.577 UTC [policies] GetPolicy -> DEBU 0ce Returning policy SampleConsortium/Org1MSP/Admins for evaluation -peer0.org1.example.com | [13a 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b779b768]Move state message INIT -peer0.org2.example.com | [2be 01-18 01:58:53.04 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -orderer.example.com | 2018-01-18 01:58:46.577 UTC [policies] CommitProposals -> DEBU 0cf In commit adding relative sub-policy Consortiums/SampleConsortium/Org1MSP/Admins to Channel -peer1.org1.example.com | [11b 01-18 01:58:49.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 -peer0.org1.example.com | [13b 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b779b768]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org1.example.com | [13c 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [1df 01-18 01:58:53.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org2.example.com | [2bf 01-18 01:58:53.04 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event sent successfully -orderer.example.com | 2018-01-18 01:58:46.577 UTC [policies] GetPolicy -> DEBU 0d0 Returning policy SampleConsortium/Org2MSP/Writers for evaluation -peer1.org1.example.com | [11c 01-18 01:58:49.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [e483cdf7]Inside sendExecuteMessage. Message INIT -peer0.org1.example.com | [13d 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b779b768]sending state message INIT -peer1.org1.example.com | [11d 01-18 01:58:49.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | 2018-01-18 01:58:46.577 UTC [policies] CommitProposals -> DEBU 0d1 In commit adding relative sub-policy Consortiums/SampleConsortium/Org2MSP/Writers to Channel -peer1.org2.example.com | [1e0 01-18 01:58:53.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7aaa6edb]sendExecuteMsg trigger event TRANSACTION -peer0.org2.example.com | [2c0 01-18 01:58:53.04 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Exit -peer1.org1.example.com | [11f 01-18 01:58:49.71 UTC] [github.com/hyperledger/fabric/msp/mgmt] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer.createConnectionMsg.Sign.func1.Sign.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [13e 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b779b768]Received message INIT from shim -orderer.example.com | 2018-01-18 01:58:46.577 UTC [policies] GetPolicy -> DEBU 0d2 Returning policy SampleConsortium/Org2MSP/Admins for evaluation -peer0.org2.example.com | [2c1 01-18 01:58:53.04 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Exit -peer1.org2.example.com | [1e1 01-18 01:58:53.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7aaa6edb]Move state message TRANSACTION -peer1.org1.example.com | [120 01-18 01:58:49.71 UTC] [github.com/hyperledger/fabric/msp] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer.createConnectionMsg.Sign.func1.Sign.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org1.example.com | [13f 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b779b768]Handling ChaincodeMessage of type: INIT(state:ready) -orderer.example.com | 2018-01-18 01:58:46.577 UTC [policies] CommitProposals -> DEBU 0d3 In commit adding relative sub-policy Consortiums/SampleConsortium/Org2MSP/Admins to Channel -peer1.org1.example.com | [121 01-18 01:58:49.71 UTC] [github.com/hyperledger/fabric/msp] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer.createConnectionMsg.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: plaintext: 180172D3060A2029D4719B6F3CFD9880...438BC453EB2951588BC6253E0DBCB3B8 -peer1.org2.example.com | [1e2 01-18 01:58:53.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7aaa6edb]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [140 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org2.example.com | [2c2 01-18 01:58:53.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [18434f13]Transaction completed. Sending COMPLETED -orderer.example.com | 2018-01-18 01:58:46.577 UTC [policies] GetPolicy -> DEBU 0d4 Returning policy SampleConsortium/Org2MSP/Readers for evaluation -peer1.org1.example.com | [122 01-18 01:58:49.71 UTC] [github.com/hyperledger/fabric/msp] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer.createConnectionMsg.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: digest: 117F31E621EC63A63222BAB09CD38E5BACEB0C484CDA0A2AFDEE7856AB236236 -peer1.org2.example.com | [1e3 01-18 01:58:53.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [2c3 01-18 01:58:53.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [18434f13]Move state message COMPLETED -peer0.org1.example.com | [141 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [b779b768]Received INIT, initializing chaincode -peer1.org1.example.com | [123 01-18 01:58:49.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\r\274\263\270" > , Envelope: 856 bytes, Signature: 70 bytes to 172.18.0.4:7051 -peer1.org2.example.com | [1e4 01-18 01:58:53.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7aaa6edb]sending state message TRANSACTION -orderer.example.com | 2018-01-18 01:58:46.577 UTC [policies] CommitProposals -> DEBU 0d5 In commit adding relative sub-policy Consortiums/SampleConsortium/Org2MSP/Readers to Channel -peer0.org2.example.com | [2c4 01-18 01:58:53.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [18434f13]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [11e 01-18 01:58:49.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [e483cdf7]sendExecuteMsg trigger event INIT -peer0.org1.example.com | [142 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b779b768]Init get response status: 200 -peer1.org2.example.com | [1e5 01-18 01:58:53.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7aaa6edb]Received message TRANSACTION from shim -orderer.example.com | 2018-01-18 01:58:46.577 UTC [policies] GetPolicy -> DEBU 0d6 Returning policy SampleConsortium/Org1MSP/Readers for evaluation -peer1.org1.example.com | [124 01-18 01:58:49.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e483cdf7]Move state message INIT -peer0.org1.example.com | [143 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b779b768]Init succeeded. Sending COMPLETED -peer0.org2.example.com | [2c5 01-18 01:58:53.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [18434f13]send state message COMPLETED -peer1.org2.example.com | [1e6 01-18 01:58:53.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7aaa6edb]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | 2018-01-18 01:58:46.577 UTC [policies] CommitProposals -> DEBU 0d7 In commit adding relative sub-policy Consortiums/SampleConsortium/Org1MSP/Readers to Channel -peer1.org1.example.com | [125 01-18 01:58:49.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e483cdf7]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org1.example.com | [144 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b779b768]Move state message COMPLETED -peer0.org2.example.com | [2c6 01-18 01:58:53.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [18434f13]Received message COMPLETED from shim -orderer.example.com | 2018-01-18 01:58:46.578 UTC [policies] GetPolicy -> DEBU 0d8 Returning policy Writers for evaluation -peer1.org1.example.com | [126 01-18 01:58:49.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [1e7 01-18 01:58:53.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [7aaa6edb]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org2.example.com | [2c7 01-18 01:58:53.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [18434f13]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [145 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b779b768]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | 2018-01-18 01:58:46.578 UTC [policies] GetPolicy -> DEBU 0d9 Returning dummy reject all policy because Writers could not be found in /Consortiums/Writers -peer1.org1.example.com | [127 01-18 01:58:49.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e483cdf7]sending state message INIT -peer1.org2.example.com | [1e8 01-18 01:58:53.14 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain -peer0.org2.example.com | [2c8 01-18 01:58:53.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [18434f13562652139c3f53039bcad1e9962ac4cd044e53aff51065a429d2c68c]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [146 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b779b768]send state message COMPLETED -orderer.example.com | 2018-01-18 01:58:46.578 UTC [policies] GetPolicy -> DEBU 0da Returning policy Admins for evaluation -peer0.org2.example.com | [2c9 01-18 01:58:53.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:18434f13562652139c3f53039bcad1e9962ac4cd044e53aff51065a429d2c68c -peer1.org2.example.com | [1e9 01-18 01:58:53.14 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block -peer1.org1.example.com | [128 01-18 01:58:49.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e483cdf7]Received message INIT from shim -peer0.org1.example.com | [147 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b779b768]Received message COMPLETED from shim -peer0.org2.example.com | [2ca 01-18 01:58:53.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [1ea 01-18 01:58:53.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel -orderer.example.com | 2018-01-18 01:58:46.578 UTC [policies] GetPolicy -> DEBU 0db Returning policy Admins for evaluation -peer0.org2.example.com | [2cb 01-18 01:58:53.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [148 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b779b768]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [129 01-18 01:58:49.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e483cdf7]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org2.example.com | [1eb 01-18 01:58:53.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncCPInfoFromFS -> DEBU Starting checkpoint=latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0] -orderer.example.com | 2018-01-18 01:58:46.578 UTC [policies] GetPolicy -> DEBU 0dc Returning policy Readers for evaluation -peer0.org1.example.com | [149 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b779b768-0068-4aca-8f72-c87db67d87f3]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [2cc 01-18 01:58:53.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -peer1.org1.example.com | [12a 01-18 01:58:49.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -orderer.example.com | 2018-01-18 01:58:46.578 UTC [policies] GetPolicy -> DEBU 0dd Returning dummy reject all policy because Readers could not be found in /Consortiums/Readers -peer1.org2.example.com | [1ec 01-18 01:58:53.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncCPInfoFromFS -> DEBU status of file [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/blockfile_000000]: exists=[false], size=[0] -peer0.org1.example.com | [14a 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:b779b768-0068-4aca-8f72-c87db67d87f3 -peer1.org1.example.com | [12b 01-18 01:58:49.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [e483cdf7]Received INIT, initializing chaincode -peer0.org2.example.com | [2cd 01-18 01:58:53.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -peer0.org1.example.com | [14b 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -orderer.example.com | 2018-01-18 01:58:46.578 UTC [policies] GetPolicy -> DEBU 0de Returning policy Readers for evaluation -peer1.org2.example.com | [1ed 01-18 01:58:53.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockHash BlockNum TxID BlockNumTranNum BlockTxID TxValidationCode]] -peer1.org1.example.com | [12c 01-18 01:58:49.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Received pki_id:"C9|k\342e{\252\362\241r\253\007%}\201B\031\366\230L\t\347\312\357\256qZ+\317\177\344" identity:"\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRALw0jT/FIanMxPg6w2uUMSowCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABKqfdWF/oY+2ymqjk+AlBN+RBThxPp/k\nlU+BhmGArpnlGNd7iT6pil/iSDtfA5xZ9we5NIfTehFqmZcI6g1N172jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIALSJqGc\nvdZHCJ0RecVQ2Rdtkdnok57p68XFlRBy2l4xAiAJS6Z2yxyElBubPI0MBn//Xs9l\n05n0MbLw/Ug3egJ3JA==\n-----END -----\n" tls_cert_hash:"\rR\257\230y\331\016B\036='k\353\377v2\347\032\301\327\024\270g\243\373\320\370F\226\341_a" from 172.18.0.4:7051 -peer0.org2.example.com | [2ce 01-18 01:58:59.02 UTC] [github.com/hyperledger/fabric/core/deliverservice] leaderElection.beLeader.func1.StartDeliverForChannel -> DEBU This peer will pass blocks from orderer service to other peers for channel businesschannel -peer0.org1.example.com | [14c 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/(github.com/hyperledger/fabric/core/scc/vscc) deployed -peer0.org2.example.com | [2cf 01-18 01:58:59.03 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Connected to orderer.example.com:7050 -orderer.example.com | 2018-01-18 01:58:46.578 UTC [policies] CommitProposals -> DEBU 0df As expected, current configuration has policy '/Channel/Readers' -peer0.org2.example.com | [2d0 01-18 01:58:59.03 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Establishing gRPC stream with orderer.example.com:7050 ... -peer1.org2.example.com | [1ee 01-18 01:58:53.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/ledgersData/chains/chains/businesschannel/blockfile_000000], startOffset=[0] -peer0.org1.example.com | [14d 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=qscc,version=1.0.2,txid=95b30129-1f02-4a31-b36e-3adf2dc2b571,syscc=true,proposal=0x0,canname=qscc:1.0.2 -peer1.org1.example.com | [12e 01-18 01:58:49.71 UTC] [github.com/hyperledger/fabric/msp/mgmt] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [12f 01-18 01:58:49.72 UTC] [github.com/hyperledger/fabric/msp] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity -peer0.org2.example.com | [2d1 01-18 01:58:59.04 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Entering -orderer.example.com | 2018-01-18 01:58:46.578 UTC [policies] GetPolicy -> DEBU 0e0 Returning policy Writers for evaluation -peer1.org2.example.com | [1ef 01-18 01:58:53.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Finished reading file number [0] -peer1.org1.example.com | [130 01-18 01:58:49.72 UTC] [github.com/hyperledger/fabric/msp] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [14e 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode qscc:1.0.2 is being launched -peer0.org2.example.com | [2d2 01-18 01:58:59.04 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect.func1.RequestBlocks -> DEBU Starting deliver with block [1] for channel businesschannel -orderer.example.com | 2018-01-18 01:58:46.578 UTC [policies] CommitProposals -> DEBU 0e1 As expected, current configuration has policy '/Channel/Writers' -peer0.org1.example.com | [14f 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -peer1.org1.example.com | MIICGTCCAcCgAwIBAgIRALw0jT/FIanMxPg6w2uUMSowCgYIKoZIzj0EAwIwczEL -peer1.org2.example.com | [1f0 01-18 01:58:53.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [0] read from file [0] -orderer.example.com | 2018-01-18 01:58:46.578 UTC [policies] GetPolicy -> DEBU 0e2 Returning policy Orderer/BlockValidation for evaluation -peer0.org2.example.com | [2d3 01-18 01:58:59.04 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Exiting -peer1.org2.example.com | [1f1 01-18 01:58:53.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org1.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org2.example.com | [1f2 01-18 01:58:53.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc4215cdc80), Data:(*common.BlockData)(0xc4217568a0), Metadata:(*common.BlockMetadata)(0xc4217568e0)}, doMVCCValidation=true -peer0.org2.example.com | [2d4 01-18 01:58:59.05 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [1], peers number [1] -peer1.org1.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org2.example.com | [1f3 01-18 01:58:53.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -peer0.org1.example.com | [150 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -orderer.example.com | 2018-01-18 01:58:46.579 UTC [policies] CommitProposals -> DEBU 0e3 As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -peer0.org2.example.com | [2d5 01-18 01:58:59.06 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [1], peers number [1] -peer1.org2.example.com | [1f4 01-18 01:58:53.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [0] Transaction index [0] because, the transaction type is [CONFIG] -peer1.org1.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | 2018-01-18 01:58:46.579 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 0e4 retrieveBlockByNumber() - blockNum = [0] -peer0.org2.example.com | [2d6 01-18 01:58:59.07 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [2], peers number [1] -peer0.org1.example.com | [151 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: qscc:1.0.2(networkid:dev,peerid:peer0.org1.example.com) -peer1.org2.example.com | [1f5 01-18 01:58:53.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0xe1, 0x44, 0x7d, 0x23, 0xdf, 0xa2, 0x20, 0x82, 0xd4, 0xe4, 0x74, 0x4d, 0x77, 0xfd, 0x41, 0x93, 0xb7, 0xdb, 0xc6, 0xb0, 0x34, 0x30, 0xc2, 0xa7, 0xc6, 0x50, 0xfb, 0x2b, 0x1c, 0x26, 0xcf, 0x43} txOffsets= -peer1.org1.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org2.example.com | [2d7 01-18 01:58:59.07 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [2], peers number [1] -orderer.example.com | 2018-01-18 01:58:46.579 UTC [fsblkstorage] newBlockfileStream -> DEBU 0e5 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] -peer0.org1.example.com | [152 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -peer0.org1.example.com | [153 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: -peer1.org2.example.com | txId= locPointer=offset=38, bytesLength=11891 -orderer.example.com | 2018-01-18 01:58:46.579 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 0e6 Remaining bytes=[9082], Going to peek [8] bytes -peer0.org2.example.com | [2d8 01-18 01:58:59.09 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -peer1.org1.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMS5leGFtcGxlLmNvbTBZ -peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=qscc:1.0.2 -peer1.org2.example.com | ] -orderer.example.com | 2018-01-18 01:58:46.579 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 0e7 Returning blockbytes - length=[9080], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -peer1.org1.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABKqfdWF/oY+2ymqjk+AlBN+RBThxPp/k -peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer0.org2.example.com | [2d9 01-18 01:58:59.09 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -orderer.example.com | 2018-01-18 01:58:46.579 UTC [orderer/multichain] newChainSupport -> DEBU 0e8 [channel: testchainid] Retrieved metadata for tip of chain (blockNumber=0, lastConfig=0, lastConfigSeq=0): -peer1.org2.example.com | [1f6 01-18 01:58:53.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=11891] for tx ID: [] to index -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer1.org1.example.com | lU+BhmGArpnlGNd7iT6pil/iSDtfA5xZ9we5NIfTehFqmZcI6g1N172jTTBLMA4G -orderer.example.com | 2018-01-18 01:58:46.580 UTC [orderer/multichain] NewManagerImpl -> INFO 0e9 Starting with system channel testchainid and orderer type solo -peer0.org2.example.com | [2da 01-18 01:58:59.09 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -peer1.org1.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -peer1.org2.example.com | [1f7 01-18 01:58:53.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=11891] for tx number:[0] ID: [] to blockNumTranNum index -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -orderer.example.com | 2018-01-18 01:58:46.580 UTC [orderer/main] main -> INFO 0ea Beginning to serve requests -peer1.org1.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIALSJqGc -peer1.org2.example.com | [1f8 01-18 01:58:53.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[11935], isChainEmpty=[false], lastBlockNumber=[0] -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer0.org2.example.com | [2db 01-18 01:58:59.09 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421612cc0 -peer1.org1.example.com | vdZHCJ0RecVQ2Rdtkdnok57p68XFlRBy2l4xAiAJS6Z2yxyElBubPI0MBn//Xs9l -peer0.org1.example.com | [154 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.0.2) lock -orderer.example.com | 2018-01-18 01:58:51.865 UTC [orderer/main] Deliver -> DEBU 0eb Starting new Deliver handler -peer1.org2.example.com | [1f9 01-18 01:58:53.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit -> INFO Channel [businesschannel]: Created block [0] with 1 transaction(s) -peer1.org1.example.com | 05n0MbLw/Ug3egJ3JA== -peer0.org2.example.com | [2dc 01-18 01:58:59.09 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\335\376\377\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030\262UG\022W~\350\r\312y3\226w\332\373\025\335\225\376z\200n&\340" -peer0.org1.example.com | [155 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.0.2) lock -orderer.example.com | 2018-01-18 01:58:51.865 UTC [orderer/common/deliver] Handle -> DEBU 0ec Starting new deliver loop -peer1.org2.example.com | [1fa 01-18 01:58:53.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Committing updates to state database -peer1.org1.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [2dd 01-18 01:58:59.09 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -orderer.example.com | 2018-01-18 01:58:51.866 UTC [orderer/common/deliver] Handle -> DEBU 0ed Attempting to read seek info message -peer1.org1.example.com | [131 01-18 01:58:49.72 UTC] [github.com/hyperledger/fabric/msp/mgmt] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [156 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for qscc-1.0.2 -peer1.org2.example.com | [1fb 01-18 01:58:53.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org2.example.com | [2de 01-18 01:58:59.09 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | 2018-01-18 01:58:51.873 UTC [orderer/main] Broadcast -> DEBU 0ee Starting new Broadcast handler -peer1.org1.example.com | [132 01-18 01:58:49.72 UTC] [github.com/hyperledger/fabric/msp] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity -peer1.org2.example.com | [1fc 01-18 01:58:53.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Updates committed to state database -peer0.org1.example.com | [157 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.0.2) -orderer.example.com | 2018-01-18 01:58:51.873 UTC [orderer/common/broadcast] Handle -> DEBU 0ef Starting new broadcast loop -peer0.org2.example.com | [2df 01-18 01:58:59.11 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 685c3e542c5c7e71cc8ac51ff9728a4a798d38a5cb22c31b73b7dddaa87ffa02} -peer1.org1.example.com | [12d 01-18 01:58:49.71 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC -peer1.org2.example.com | [1fd 01-18 01:58:53.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [0] with [1] transactions -orderer.example.com | 2018-01-18 01:58:51.873 UTC [orderer/common/broadcast] Handle -> DEBU 0f0 Preprocessing CONFIG_UPDATE -peer0.org2.example.com | [2e0 01-18 01:58:59.11 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org1.example.com | [134 01-18 01:58:49.72 UTC] [github.com/hyperledger/fabric/msp/mgmt] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer.Verify.func3.Verify.Verify.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [159 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.0.2 -orderer.example.com | 2018-01-18 01:58:51.873 UTC [orderer/configupdate] Process -> DEBU 0f1 Processing channel creation request for channel businesschannel -peer0.org2.example.com | [2e1 01-18 01:58:59.11 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org2.example.com | [1fe 01-18 01:58:53.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -peer0.org1.example.com | [15a 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -peer1.org1.example.com | [135 01-18 01:58:49.72 UTC] [github.com/hyperledger/fabric/msp] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer.Verify.func3.Verify.Verify.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity -peer0.org2.example.com | [2e2 01-18 01:58:59.11 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc4213d0000, header channel_header:"\010\001\032\006\010\335\376\377\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030\262UG\022W~\350\r\312y3\226w\332\373\025\335\225\376z\200n&\340" -peer1.org2.example.com | [1ff 01-18 01:58:53.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [0] -orderer.example.com | 2018-01-18 01:58:51.874 UTC [msp] GetLocalMSP -> DEBU 0f2 Returning existing local MSP -peer0.org2.example.com | [2e3 01-18 01:58:59.12 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -peer1.org1.example.com | [133 01-18 01:58:49.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e483cdf7]Init get response status: 200 -peer1.org2.example.com | [200 01-18 01:58:53.16 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block -peer0.org1.example.com | [15b 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.0.2 -peer0.org1.example.com | [15c 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer0.org1.example.com | [158 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.0.2 -peer1.org2.example.com | [201 01-18 01:58:53.16 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -peer1.org2.example.com | [202 01-18 01:58:53.16 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org1.example.com | [15d 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -orderer.example.com | 2018-01-18 01:58:51.874 UTC [msp] GetDefaultSigningIdentity -> DEBU 0f3 Obtaining default signing identity -peer0.org2.example.com | [2e4 01-18 01:58:59.12 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer1.org1.example.com | [137 01-18 01:58:49.72 UTC] [github.com/hyperledger/fabric/msp] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer.Verify.func3.Verify.Verify.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [203 01-18 01:58:53.16 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer0.org2.example.com | [2e5 01-18 01:58:59.12 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -peer0.org1.example.com | [15e 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | 2018-01-18 01:58:51.874 UTC [msp] GetLocalMSP -> DEBU 0f4 Returning existing local MSP -peer1.org1.example.com | MIICGTCCAcCgAwIBAgIRALw0jT/FIanMxPg6w2uUMSowCgYIKoZIzj0EAwIwczEL -peer1.org2.example.com | [204 01-18 01:58:53.16 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org2.example.com | [2e6 01-18 01:58:59.12 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -peer0.org1.example.com | [15f 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer1.org2.example.com | [205 01-18 01:58:53.16 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org2.example.com | [2e7 01-18 01:58:59.12 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -peer1.org1.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | 2018-01-18 01:58:51.875 UTC [msp] GetDefaultSigningIdentity -> DEBU 0f5 Obtaining default signing identity -peer0.org1.example.com | [160 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer1.org2.example.com | [206 01-18 01:58:53.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer0.org2.example.com | [2e8 01-18 01:58:59.12 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer1.org1.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org2.example.com | [207 01-18 01:58:53.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -peer0.org2.example.com | [2e9 01-18 01:58:59.12 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | 2018-01-18 01:58:51.875 UTC [msp/identity] Sign -> DEBU 0f6 Sign: plaintext: 0AB7060A1B08011A0608DBFEFFD20522...41646D696E7310021A0641646D696E73 -peer1.org1.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -peer0.org2.example.com | [2ea 01-18 01:58:59.13 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer1.org2.example.com | [208 01-18 01:58:53.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -peer0.org2.example.com | [2eb 01-18 01:58:59.13 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -orderer.example.com | 2018-01-18 01:58:51.875 UTC [msp/identity] Sign -> DEBU 0f7 Sign: digest: 11FDF80CC4B0FFC37D789DF58839E00571F231FCB702D276F1DBF7EC339BED09 -peer0.org1.example.com | [161 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer1.org1.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org2.example.com | [209 01-18 01:58:53.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -peer0.org2.example.com | [2ec 01-18 01:58:59.13 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -peer0.org1.example.com | [162 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode qscc:1.0.2 -orderer.example.com | 2018-01-18 01:58:51.875 UTC [common/config] NewStandardValues -> DEBU 0f8 Initializing protos for *config.ChannelProtos -peer1.org1.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMS5leGFtcGxlLmNvbTBZ -peer1.org2.example.com | [20a 01-18 01:58:53.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer0.org2.example.com | [2ed 01-18 01:58:59.13 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -peer0.org1.example.com | [163 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"qscc:1.0.2" , sending back REGISTERED -peer1.org1.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABKqfdWF/oY+2ymqjk+AlBN+RBThxPp/k -orderer.example.com | 2018-01-18 01:58:51.876 UTC [common/config] initializeProtosStruct -> DEBU 0f9 Processing field: HashingAlgorithm -peer0.org2.example.com | [2ee 01-18 01:58:59.13 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -peer1.org2.example.com | [20b 01-18 01:58:53.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer0.org1.example.com | [165 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer1.org1.example.com | lU+BhmGArpnlGNd7iT6pil/iSDtfA5xZ9we5NIfTehFqmZcI6g1N172jTTBLMA4G -orderer.example.com | 2018-01-18 01:58:51.876 UTC [common/config] initializeProtosStruct -> DEBU 0fa Processing field: BlockDataHashingStructure -peer0.org2.example.com | [2ef 01-18 01:58:59.13 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer1.org2.example.com | [20c 01-18 01:58:53.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer0.org1.example.com | [166 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer1.org1.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -peer0.org2.example.com | [2f0 01-18 01:58:59.15 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer1.org2.example.com | [20d 01-18 01:58:53.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -peer0.org1.example.com | [167 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -orderer.example.com | 2018-01-18 01:58:51.876 UTC [common/config] initializeProtosStruct -> DEBU 0fb Processing field: OrdererAddresses -peer1.org1.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIALSJqGc -peer0.org2.example.com | [2f1 01-18 01:58:59.15 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer1.org2.example.com | [20e 01-18 01:58:53.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -peer0.org1.example.com | [164 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer1.org1.example.com | vdZHCJ0RecVQ2Rdtkdnok57p68XFlRBy2l4xAiAJS6Z2yxyElBubPI0MBn//Xs9l -orderer.example.com | 2018-01-18 01:58:51.876 UTC [common/config] initializeProtosStruct -> DEBU 0fc Processing field: Consortium -peer0.org2.example.com | [2f2 01-18 01:58:59.15 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer1.org2.example.com | [20f 01-18 01:58:53.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -peer0.org1.example.com | [168 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode qscc:1.0.2 launch seq completed -peer0.org2.example.com | [2f3 01-18 01:58:59.15 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer1.org2.example.com | [210 01-18 01:58:53.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -orderer.example.com | 2018-01-18 01:58:51.877 UTC [common/configtx] addToMap -> DEBU 0fd Adding to config map: [Groups] /Channel -peer0.org1.example.com | [169 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -peer1.org1.example.com | 05n0MbLw/Ug3egJ3JA== -peer0.org2.example.com | [2f4 01-18 01:58:59.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -peer1.org2.example.com | [211 01-18 01:58:53.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer0.org1.example.com | [16a 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [2f5 01-18 01:58:59.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -orderer.example.com | 2018-01-18 01:58:51.877 UTC [common/configtx] addToMap -> DEBU 0fe Adding to config map: [Groups] /Channel/Application -peer1.org2.example.com | [212 01-18 01:58:53.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer0.org1.example.com | [16b 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [95b30129]Move state message READY -peer0.org2.example.com | [2f6 01-18 01:58:59.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -peer1.org1.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [213 01-18 01:58:53.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer0.org2.example.com | [2f7 01-18 01:58:59.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | 2018-01-18 01:58:51.877 UTC [common/configtx] addToMap -> DEBU 0ff Adding to config map: [Groups] /Channel/Application/Org2MSP -peer1.org1.example.com | [138 01-18 01:58:49.72 UTC] [github.com/hyperledger/fabric/msp/mgmt] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer.Verify.func3.Verify.Verify.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [16c 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [95b30129]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org2.example.com | [214 01-18 01:58:53.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer0.org2.example.com | [2f8 01-18 01:58:59.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org1.example.com | [16d 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [95b30129]Entered state ready -peer1.org2.example.com | [215 01-18 01:58:53.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -orderer.example.com | 2018-01-18 01:58:51.877 UTC [common/configtx] addToMap -> DEBU 100 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -peer0.org2.example.com | [2f9 01-18 01:58:59.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org1.example.com | [16e 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:95b30129-1f02-4a31-b36e-3adf2dc2b571 -peer1.org2.example.com | [216 01-18 01:58:53.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -peer0.org1.example.com | [16f 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [95b30129]sending state message READY -peer1.org1.example.com | [139 01-18 01:58:49.72 UTC] [github.com/hyperledger/fabric/msp] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer.Verify.func3.Verify.Verify.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity -peer0.org1.example.com | [170 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [95b30129]Received message READY from shim -orderer.example.com | 2018-01-18 01:58:51.878 UTC [common/configtx] addToMap -> DEBU 101 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org2.example.com | [2fa 01-18 01:58:59.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -peer1.org2.example.com | [217 01-18 01:58:53.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -peer1.org1.example.com | [136 01-18 01:58:49.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e483cdf7]Init succeeded. Sending COMPLETED -peer0.org1.example.com | [172 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -orderer.example.com | 2018-01-18 01:58:51.878 UTC [common/configtx] addToMap -> DEBU 102 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer0.org2.example.com | [2fb 01-18 01:58:59.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -peer0.org1.example.com | [173 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -peer1.org2.example.com | [218 01-18 01:58:53.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer1.org1.example.com | [13b 01-18 01:58:49.72 UTC] [github.com/hyperledger/fabric/msp] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer.Verify.func3.Verify.Verify.Verify -> DEBU Verify: digest = 00000000 41 1c 14 94 d0 cf 9c 72 36 4f 0c b6 d7 c7 e5 38 |A......r6O.....8| -peer0.org1.example.com | [174 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [2fc 01-18 01:58:59.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer1.org2.example.com | [219 01-18 01:58:53.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer1.org1.example.com | 00000010 cf 18 3a dd 24 5d ec e9 23 06 a5 5d 02 97 3b 8a |..:.$]..#..]..;.| -peer0.org1.example.com | [175 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.2 -orderer.example.com | 2018-01-18 01:58:51.878 UTC [common/configtx] addToMap -> DEBU 103 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org2.example.com | [2fd 01-18 01:58:59.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org1.example.com | [13c 01-18 01:58:49.72 UTC] [github.com/hyperledger/fabric/msp] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer.Verify.func3.Verify.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 c8 08 62 8b e5 fa b3 75 2a 0c 89 |0E.!...b....u*..| -peer0.org1.example.com | [176 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [95b30129]Inside sendExecuteMessage. Message INIT -peer1.org2.example.com | [21a 01-18 01:58:53.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org1.example.com | [177 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | 2018-01-18 01:58:51.878 UTC [common/configtx] addToMap -> DEBU 104 Adding to config map: [Groups] /Channel/Application/Org1MSP -peer1.org1.example.com | 00000010 81 0b 92 bf 85 9b 59 ae b9 2f 96 67 67 df bc ed |......Y../.gg...| -peer0.org2.example.com | [2fe 01-18 01:58:59.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org1.example.com | [178 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [95b30129]sendExecuteMsg trigger event INIT -orderer.example.com | 2018-01-18 01:58:51.879 UTC [common/configtx] addToMap -> DEBU 105 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -peer1.org2.example.com | [21b 01-18 01:58:53.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -peer1.org1.example.com | 00000020 a6 a0 44 30 31 02 20 23 33 d0 bd dd f3 fe b6 22 |..D01. #3......"| -peer0.org1.example.com | [179 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [95b30129]Move state message INIT -peer0.org2.example.com | [2ff 01-18 01:58:59.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer1.org2.example.com | [21c 01-18 01:58:53.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -peer0.org1.example.com | [17a 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [95b30129]Fabric side Handling ChaincodeMessage of type: INIT in state ready -orderer.example.com | 2018-01-18 01:58:51.879 UTC [common/configtx] addToMap -> DEBU 106 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer1.org1.example.com | 00000030 a1 55 33 16 74 92 17 19 ca 20 ec 24 68 fb 89 31 |.U3.t.... .$h..1| -peer0.org1.example.com | [17b 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [21d 01-18 01:58:53.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer0.org2.example.com | [300 01-18 01:58:59.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer0.org1.example.com | [17c 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [95b30129]sending state message INIT -orderer.example.com | 2018-01-18 01:58:51.880 UTC [common/configtx] addToMap -> DEBU 107 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer1.org1.example.com | 00000040 10 74 d4 3f 5e 4a 8a |.t.?^J.| -peer0.org1.example.com | [171 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [95b30129]Handling ChaincodeMessage of type: READY(state:established) -peer0.org2.example.com | [301 01-18 01:58:59.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer0.org1.example.com | [17d 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [95b30129]Received message INIT from shim -peer1.org2.example.com | [21e 01-18 01:58:53.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | 2018-01-18 01:58:51.880 UTC [common/configtx] addToMap -> DEBU 108 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer1.org1.example.com | [13d 01-18 01:58:49.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Authenticated 172.18.0.4:7051 -peer0.org1.example.com | [17e 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [95b30129]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [302 01-18 01:58:59.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -peer1.org2.example.com | [21f 01-18 01:58:53.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | 2018-01-18 01:58:51.880 UTC [common/configtx] addToMap -> DEBU 109 Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy -peer0.org2.example.com | [303 01-18 01:58:59.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -peer1.org1.example.com | [13a 01-18 01:58:49.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e483cdf7]Move state message COMPLETED -peer0.org1.example.com | [17f 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org2.example.com | [220 01-18 01:58:53.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer0.org2.example.com | [304 01-18 01:58:59.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -peer1.org1.example.com | [13e 01-18 01:58:49.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e483cdf7]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | 2018-01-18 01:58:51.880 UTC [common/configtx] addToMap -> DEBU 10a Adding to config map: [Groups] /Channel/Orderer -peer1.org2.example.com | [221 01-18 01:58:53.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer0.org1.example.com | [180 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [95b30129]Received INIT, initializing chaincode -peer0.org2.example.com | [305 01-18 01:58:59.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -peer1.org1.example.com | [13f 01-18 01:58:49.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e483cdf7]send state message COMPLETED -orderer.example.com | 2018-01-18 01:58:51.880 UTC [common/configtx] addToMap -> DEBU 10b Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -peer1.org2.example.com | [222 01-18 01:58:53.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer0.org2.example.com | [306 01-18 01:58:59.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer0.org1.example.com | [181 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -peer1.org1.example.com | [140 01-18 01:58:49.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e483cdf7]Received message COMPLETED from shim -orderer.example.com | 2018-01-18 01:58:51.880 UTC [common/configtx] addToMap -> DEBU 10c Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -peer1.org2.example.com | [223 01-18 01:58:53.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -peer0.org2.example.com | [307 01-18 01:58:59.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer1.org1.example.com | [141 01-18 01:58:49.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e483cdf7]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | 2018-01-18 01:58:51.880 UTC [common/configtx] addToMap -> DEBU 10d Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer1.org2.example.com | [224 01-18 01:58:53.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -peer0.org2.example.com | [308 01-18 01:58:59.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer0.org1.example.com | [182 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | 2018-01-18 01:58:51.880 UTC [common/configtx] addToMap -> DEBU 10e Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer1.org1.example.com | [142 01-18 01:58:49.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e483cdf7-411c-4981-a0dc-a994ae4680c8]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [225 01-18 01:58:53.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -peer0.org2.example.com | [309 01-18 01:58:59.25 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer1.org1.example.com | [144 01-18 01:58:49.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Exiting -orderer.example.com | 2018-01-18 01:58:51.880 UTC [common/configtx] addToMap -> DEBU 10f Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer0.org1.example.com | [183 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [95b30129]Init get response status: 200 -peer1.org1.example.com | [143 01-18 01:58:49.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:e483cdf7-411c-4981-a0dc-a994ae4680c8 -peer1.org2.example.com | [226 01-18 01:58:53.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -peer0.org2.example.com | [30a 01-18 01:58:59.25 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer0.org1.example.com | [184 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [95b30129]Init succeeded. Sending COMPLETED -orderer.example.com | 2018-01-18 01:58:51.880 UTC [common/configtx] addToMap -> DEBU 110 Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -peer1.org1.example.com | [145 01-18 01:58:49.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [30b 01-18 01:58:59.25 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -peer0.org1.example.com | [185 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [95b30129]Move state message COMPLETED -peer1.org2.example.com | [227 01-18 01:58:53.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer1.org1.example.com | [146 01-18 01:58:49.72 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode escc/(github.com/hyperledger/fabric/core/scc/escc) deployed -peer0.org2.example.com | [30c 01-18 01:58:59.25 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -orderer.example.com | 2018-01-18 01:58:51.880 UTC [common/configtx] addToMap -> DEBU 111 Adding to config map: [Values] /Channel/Orderer/ConsensusType -peer1.org2.example.com | [228 01-18 01:58:53.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer0.org1.example.com | [186 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [95b30129]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | 2018-01-18 01:58:51.880 UTC [common/configtx] addToMap -> DEBU 112 Adding to config map: [Values] /Channel/Orderer/BatchSize -peer1.org1.example.com | [147 01-18 01:58:49.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [30d 01-18 01:58:59.25 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org1.example.com | [187 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [95b30129]send state message COMPLETED -peer1.org2.example.com | [229 01-18 01:58:53.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer1.org1.example.com | [148 01-18 01:58:49.72 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=vscc,version=1.0.2,txid=5352e211-1f77-461a-ad76-3a64902abeff,syscc=true,proposal=0x0,canname=vscc:1.0.2 -orderer.example.com | 2018-01-18 01:58:51.880 UTC [common/configtx] addToMap -> DEBU 113 Adding to config map: [Values] /Channel/Orderer/BatchTimeout -peer0.org1.example.com | [188 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [95b30129]Received message COMPLETED from shim -peer0.org2.example.com | [30e 01-18 01:58:59.25 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer1.org2.example.com | [22a 01-18 01:58:53.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel -peer1.org1.example.com | [149 01-18 01:58:49.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode vscc:1.0.2 is being launched -peer0.org1.example.com | [189 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [95b30129]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | 2018-01-18 01:58:51.880 UTC [common/configtx] addToMap -> DEBU 114 Adding to config map: [Policy] /Channel/Orderer/Readers -peer1.org2.example.com | [22b 01-18 01:58:53.16 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -peer1.org1.example.com | [14a 01-18 01:58:49.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -peer0.org2.example.com | [30f 01-18 01:58:59.25 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | 2018-01-18 01:58:51.880 UTC [common/configtx] addToMap -> DEBU 115 Adding to config map: [Policy] /Channel/Orderer/Writers -peer1.org2.example.com | [22c 01-18 01:58:53.16 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org1.example.com | [18a 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [95b30129-1f02-4a31-b36e-3adf2dc2b571]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [14b 01-18 01:58:49.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer1.org1.example.com:7052] -orderer.example.com | 2018-01-18 01:58:51.880 UTC [common/configtx] addToMap -> DEBU 116 Adding to config map: [Policy] /Channel/Orderer/Admins -peer0.org2.example.com | [310 01-18 01:58:59.25 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer1.org2.example.com | [22d 01-18 01:58:53.16 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org1.example.com | [14c 01-18 01:58:49.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: vscc:1.0.2(networkid:dev,peerid:peer1.org1.example.com) -peer0.org1.example.com | [18b 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:95b30129-1f02-4a31-b36e-3adf2dc2b571 -orderer.example.com | 2018-01-18 01:58:51.880 UTC [common/configtx] addToMap -> DEBU 117 Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer1.org2.example.com | [22e 01-18 01:58:53.16 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org2.example.com | [311 01-18 01:58:59.25 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer0.org1.example.com | [18c 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [14d 01-18 01:58:49.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer1.org1.example.com:7052 -orderer.example.com | 2018-01-18 01:58:51.881 UTC [common/configtx] addToMap -> DEBU 118 Adding to config map: [Values] /Channel/BlockDataHashingStructure -peer0.org2.example.com | [312 01-18 01:58:59.25 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -peer0.org1.example.com | [18d 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/chaincode/qscc) deployed -peer1.org2.example.com | [22f 01-18 01:58:53.17 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | 2018-01-18 01:58:51.881 UTC [common/configtx] addToMap -> DEBU 119 Adding to config map: [Values] /Channel/Consortium -peer1.org1.example.com | [14e 01-18 01:58:49.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: -peer1.org2.example.com | [230 01-18 01:58:53.17 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -peer0.org2.example.com | [313 01-18 01:58:59.25 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -peer0.org1.example.com | [18e 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.initSysCCs -> INFO Deployed system chaincodess -peer1.org2.example.com | [231 01-18 01:58:53.17 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:51.881 UTC [common/configtx] addToMap -> DEBU 11a Adding to config map: [Values] /Channel/OrdererAddresses -peer1.org1.example.com | CORE_CHAINCODE_ID_NAME=vscc:1.0.2 -peer0.org2.example.com | [314 01-18 01:58:59.25 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -peer0.org1.example.com | [18f 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with ID=[name:"peer0.org1.example.com" ], network ID=[dev], address=[peer0.org1.example.com:7051] -peer1.org2.example.com | [232 01-18 01:58:53.17 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | 2018-01-18 01:58:51.881 UTC [common/configtx] addToMap -> DEBU 11b Adding to config map: [Values] /Channel/HashingAlgorithm -peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer0.org1.example.com | [190 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Started peer with ID=[name:"peer0.org1.example.com" ], network ID=[dev], address=[peer0.org1.example.com:7051] -orderer.example.com | 2018-01-18 01:58:51.881 UTC [common/configtx] addToMap -> DEBU 11c Adding to config map: [Policy] /Channel/Readers -peer0.org2.example.com | [315 01-18 01:58:59.25 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer1.org2.example.com | [233 01-18 01:58:53.17 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer0.org1.example.com | [191 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'msp/identity' logger enabled for log level 'WARNING' -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -orderer.example.com | 2018-01-18 01:58:51.881 UTC [common/configtx] addToMap -> DEBU 11d Adding to config map: [Policy] /Channel/Writers -peer1.org2.example.com | [234 01-18 01:58:53.17 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org2.example.com | [316 01-18 01:58:59.25 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org1.example.com | [192 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'msp' logger enabled for log level 'WARNING' -orderer.example.com | 2018-01-18 01:58:51.881 UTC [common/configtx] addToMap -> DEBU 11e Adding to config map: [Policy] /Channel/Admins -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer0.org2.example.com | [317 01-18 01:58:59.25 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer1.org2.example.com | [235 01-18 01:58:53.17 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:51.881 UTC [common/configtx] processConfig -> DEBU 11f Beginning new config for channel businesschannel -peer0.org2.example.com | [318 01-18 01:58:59.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -peer0.org1.example.com | [193 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'configvalues/msp' logger enabled for log level 'WARNING' -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer1.org2.example.com | [236 01-18 01:58:53.17 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | 2018-01-18 01:58:51.881 UTC [common/config] NewStandardValues -> DEBU 120 Initializing protos for *config.ChannelProtos -peer0.org2.example.com | [319 01-18 01:58:59.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -peer1.org1.example.com | [14f 01-18 01:58:49.72 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(vscc-1.0.2) lock -peer0.org1.example.com | [194 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/election' logger enabled for log level 'WARNING' -peer1.org2.example.com | [237 01-18 01:58:53.17 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org2.example.com | [31a 01-18 01:58:59.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -orderer.example.com | 2018-01-18 01:58:51.881 UTC [common/config] initializeProtosStruct -> DEBU 121 Processing field: HashingAlgorithm -peer1.org1.example.com | [150 01-18 01:58:49.72 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (vscc-1.0.2) lock -peer1.org2.example.com | [238 01-18 01:58:53.17 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [31b 01-18 01:58:59.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [195 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'peer/gossip/mcs' logger enabled for log level 'WARNING' -orderer.example.com | 2018-01-18 01:58:51.881 UTC [common/config] initializeProtosStruct -> DEBU 122 Processing field: BlockDataHashingStructure -peer1.org1.example.com | [151 01-18 01:58:49.72 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for vscc-1.0.2 -peer0.org1.example.com | [196 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'peer/gossip/sa' logger enabled for log level 'WARNING' -peer0.org2.example.com | [31c 01-18 01:58:59.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [239 01-18 01:58:53.17 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer0.org1.example.com | [197 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/state' logger enabled for log level 'WARNING' -orderer.example.com | 2018-01-18 01:58:51.881 UTC [common/config] initializeProtosStruct -> DEBU 123 Processing field: OrdererAddresses -peer1.org2.example.com | [23a 01-18 01:58:53.17 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org1.example.com | [152 01-18 01:58:49.72 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(vscc-1.0.2) -peer0.org2.example.com | [31d 01-18 01:58:59.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [198 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/service' logger enabled for log level 'WARNING' -peer1.org2.example.com | [23b 01-18 01:58:53.17 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:51.881 UTC [common/config] initializeProtosStruct -> DEBU 124 Processing field: Consortium -peer1.org1.example.com | [153 01-18 01:58:49.72 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for vscc-1.0.2 -peer0.org1.example.com | [199 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/discovery' logger enabled for log level 'WARNING' -orderer.example.com | 2018-01-18 01:58:51.881 UTC [policies] ProposePolicy -> DEBU 125 Proposed new policy Readers for Channel -peer1.org1.example.com | [154 01-18 01:58:49.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer1.org2.example.com | [23c 01-18 01:58:53.17 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [31e 01-18 01:58:59.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:51.881 UTC [policies] ProposePolicy -> DEBU 126 Proposed new policy Writers for Channel -peer1.org1.example.com | [155 01-18 01:58:49.72 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [31f 01-18 01:58:59.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [19a 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/gossip' logger enabled for log level 'WARNING' -peer1.org2.example.com | [23d 01-18 01:58:53.17 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -peer0.org2.example.com | [320 01-18 01:58:59.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [156 01-18 01:58:49.72 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for vscc-1.0.2 -peer0.org1.example.com | [19b 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/pull' logger enabled for log level 'WARNING' -orderer.example.com | 2018-01-18 01:58:51.881 UTC [policies] ProposePolicy -> DEBU 127 Proposed new policy Admins for Channel -peer1.org2.example.com | [23e 01-18 01:58:53.17 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer0.org2.example.com | [321 01-18 01:58:59.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [19c 01-18 01:58:46.74 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/comm' logger enabled for log level 'WARNING' -orderer.example.com | 2018-01-18 01:58:51.881 UTC [common/config] NewStandardValues -> DEBU 128 Initializing protos for *struct {} -peer1.org1.example.com | [157 01-18 01:58:49.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org1.example.com:7052] -peer0.org1.example.com | [19d 01-18 01:58:46.74 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'kvledger' logger enabled for log level 'INFO' -peer0.org2.example.com | [322 01-18 01:58:59.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:51.881 UTC [policies] ProposePolicy -> DEBU 129 Proposed new policy ChannelCreationPolicy for Application -peer1.org2.example.com | [23f 01-18 01:58:53.17 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer0.org1.example.com | [19e 01-18 01:58:46.74 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'kvledger.util' logger enabled for log level 'INFO' -orderer.example.com | 2018-01-18 01:58:51.881 UTC [common/config] NewStandardValues -> DEBU 12a Initializing protos for *config.OrganizationProtos -peer0.org2.example.com | [323 01-18 01:58:59.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [240 01-18 01:58:53.17 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer1.org1.example.com | [158 01-18 01:58:49.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=vscc:1.0.2 -peer0.org1.example.com | [19f 01-18 01:58:46.74 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'ledgermgmt' logger enabled for log level 'INFO' -peer1.org2.example.com | [241 01-18 01:58:53.17 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -orderer.example.com | 2018-01-18 01:58:51.881 UTC [common/config] initializeProtosStruct -> DEBU 12b Processing field: MSP -peer0.org2.example.com | [324 01-18 01:58:59.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -peer1.org2.example.com | [242 01-18 01:58:53.17 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer0.org1.example.com | [1a0 01-18 01:58:46.74 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'cauthdsl' logger enabled for log level 'WARNING' -peer0.org2.example.com | [325 01-18 01:58:59.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [159 01-18 01:58:49.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -orderer.example.com | 2018-01-18 01:58:51.881 UTC [common/config] NewStandardValues -> DEBU 12c Initializing protos for *config.ApplicationOrgProtos -peer0.org1.example.com | [1a1 01-18 01:58:46.74 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'policies' logger enabled for log level 'WARNING' -peer0.org2.example.com | [326 01-18 01:58:59.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [243 01-18 01:58:53.17 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:51.881 UTC [common/config] initializeProtosStruct -> DEBU 12d Processing field: AnchorPeers -peer1.org1.example.com | [15a 01-18 01:58:49.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer0.org1.example.com | [1a2 01-18 01:58:46.74 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'grpc' logger enabled for log level 'ERROR' -peer1.org2.example.com | [244 01-18 01:58:53.17 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [327 01-18 01:58:59.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:51.881 UTC [common/config] NewStandardValues -> DEBU 12e Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [1a3 01-18 01:58:52.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -peer1.org2.example.com | [245 01-18 01:58:53.17 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are -peer1.org1.example.com | [15b 01-18 01:58:49.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -orderer.example.com | 2018-01-18 01:58:51.881 UTC [common/config] initializeProtosStruct -> DEBU 12f Processing field: MSP -peer0.org2.example.com | [328 01-18 01:58:59.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [1a4 01-18 01:58:52.56 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421739770 -orderer.example.com | 2018-01-18 01:58:51.881 UTC [policies] ProposePolicy -> DEBU 130 Proposed new policy Admins for Org2MSP -peer1.org2.example.com | [246 01-18 01:58:53.17 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer1.org1.example.com | [15c 01-18 01:58:49.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer1.org2.example.com | [247 01-18 01:58:53.17 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -peer0.org2.example.com | [329 01-18 01:58:59.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:51.881 UTC [policies] ProposePolicy -> DEBU 131 Proposed new policy Readers for Org2MSP -peer0.org1.example.com | [1a5 01-18 01:58:52.56 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer1.org1.example.com | [15d 01-18 01:58:49.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode vscc:1.0.2 -peer1.org2.example.com | [248 01-18 01:58:53.17 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer0.org2.example.com | [32a 01-18 01:58:59.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:51.881 UTC [policies] ProposePolicy -> DEBU 132 Proposed new policy Writers for Org2MSP -peer0.org1.example.com | [1a6 01-18 01:58:52.56 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org2.example.com | [249 01-18 01:58:53.17 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer0.org2.example.com | [32b 01-18 01:58:59.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel -peer1.org1.example.com | [15e 01-18 01:58:49.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"vscc:1.0.2" , sending back REGISTERED -orderer.example.com | 2018-01-18 01:58:51.881 UTC [common/config] NewStandardValues -> DEBU 133 Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [1a7 01-18 01:58:52.56 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -peer1.org2.example.com | [24a 01-18 01:58:53.17 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -peer0.org2.example.com | [32c 01-18 01:58:59.27 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -peer1.org1.example.com | [15f 01-18 01:58:49.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer0.org1.example.com | [1a8 01-18 01:58:52.56 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org2.example.com | [24b 01-18 01:58:53.18 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer1.org1.example.com | [160 01-18 01:58:49.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer0.org2.example.com | [32d 01-18 01:58:59.27 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -orderer.example.com | 2018-01-18 01:58:51.881 UTC [common/config] initializeProtosStruct -> DEBU 134 Processing field: MSP -peer1.org1.example.com | [161 01-18 01:58:49.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer0.org1.example.com | [1a9 01-18 01:58:52.57 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org2.example.com | [24c 01-18 01:58:53.18 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -peer0.org2.example.com | [32e 01-18 01:58:59.27 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org1.example.com | [162 01-18 01:58:49.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -orderer.example.com | 2018-01-18 01:58:51.881 UTC [common/config] NewStandardValues -> DEBU 135 Initializing protos for *config.ApplicationOrgProtos -peer1.org2.example.com | [24d 01-18 01:58:53.18 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -peer0.org1.example.com | [1aa 01-18 01:58:52.57 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421741040, header 0xc421739800 -peer1.org1.example.com | [163 01-18 01:58:49.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode vscc:1.0.2 launch seq completed -peer0.org2.example.com | [32f 01-18 01:58:59.28 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -orderer.example.com | 2018-01-18 01:58:51.881 UTC [common/config] initializeProtosStruct -> DEBU 136 Processing field: AnchorPeers -peer1.org2.example.com | [24e 01-18 01:58:53.18 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -peer1.org1.example.com | [164 01-18 01:58:49.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -peer0.org2.example.com | [330 01-18 01:58:59.28 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org1.example.com | [1ab 01-18 01:58:52.57 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"cscc" -peer1.org1.example.com | [165 01-18 01:58:49.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [331 01-18 01:58:59.28 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -peer1.org1.example.com | [166 01-18 01:58:49.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5352e211]Move state message READY -peer0.org1.example.com | [1ac 01-18 01:58:52.57 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 9a812e3c2cfcc8f8b117f8b54e442fd0889aa7ba2d8f513bd13e29ea55fa0824 -orderer.example.com | 2018-01-18 01:58:51.881 UTC [common/config] NewStandardValues -> DEBU 137 Initializing protos for *config.OrganizationProtos -peer1.org2.example.com | [24f 01-18 01:58:53.18 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.InitChain -> DEBU Init chain businesschannel -peer1.org1.example.com | [167 01-18 01:58:49.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5352e211]Fabric side Handling ChaincodeMessage of type: READY in state established -orderer.example.com | 2018-01-18 01:58:51.882 UTC [common/config] initializeProtosStruct -> DEBU 138 Processing field: MSP -peer0.org2.example.com | [332 01-18 01:58:59.28 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:51.882 UTC [policies] ProposePolicy -> DEBU 139 Proposed new policy Readers for Org1MSP -peer1.org1.example.com | [168 01-18 01:58:49.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [5352e211]Entered state ready -orderer.example.com | 2018-01-18 01:58:51.882 UTC [policies] ProposePolicy -> DEBU 13a Proposed new policy Writers for Org1MSP -peer1.org1.example.com | [169 01-18 01:58:49.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:5352e211-1f77-461a-ad76-3a64902abeff -peer0.org1.example.com | [1ad 01-18 01:58:52.57 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 9a812e3c2cfcc8f8b117f8b54e442fd0889aa7ba2d8f513bd13e29ea55fa0824 channel id: -peer1.org2.example.com | [250 01-18 01:58:53.18 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.joinChain.InitChain.func2 -> DEBU Deploying system CC, for chain -orderer.example.com | 2018-01-18 01:58:51.882 UTC [policies] ProposePolicy -> DEBU 13b Proposed new policy Admins for Org1MSP -peer0.org2.example.com | [333 01-18 01:58:59.31 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [16a 01-18 01:58:49.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5352e211]sending state message READY -peer1.org2.example.com | [251 01-18 01:58:53.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | 2018-01-18 01:58:51.882 UTC [common/config] NewStandardValues -> DEBU 13c Initializing protos for *config.OrdererProtos -peer0.org1.example.com | [1ae 01-18 01:58:52.57 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 9a812e3c2cfcc8f8b117f8b54e442fd0889aa7ba2d8f513bd13e29ea55fa0824 channel id: version: 1.0.2 -peer1.org1.example.com | [16b 01-18 01:58:49.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5352e211]Received message READY from shim -orderer.example.com | 2018-01-18 01:58:51.882 UTC [common/config] initializeProtosStruct -> DEBU 13d Processing field: ConsensusType -peer1.org2.example.com | [252 01-18 01:58:53.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [33d22907-156a-4dd4-93fa-166898cd3859] -peer0.org2.example.com | [334 01-18 01:58:59.31 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer0.org1.example.com | [1af 01-18 01:58:52.57 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.0.2,txid=9a812e3c2cfcc8f8b117f8b54e442fd0889aa7ba2d8f513bd13e29ea55fa0824,syscc=true,proposal=0xc421741040,canname=cscc:1.0.2 -peer1.org1.example.com | [16c 01-18 01:58:49.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5352e211]Handling ChaincodeMessage of type: READY(state:established) -orderer.example.com | 2018-01-18 01:58:51.882 UTC [common/config] initializeProtosStruct -> DEBU 13e Processing field: BatchSize -peer0.org2.example.com | [335 01-18 01:58:59.31 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org2.example.com | [253 01-18 01:58:53.19 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=cscc,version=1.0.2,txid=24ca1988-0c8c-407b-87a6-34b70341ffc0,syscc=true,proposal=0x0,canname=cscc:1.0.2 -peer0.org1.example.com | [1b0 01-18 01:58:52.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.0.2 -peer1.org1.example.com | [16d 01-18 01:58:49.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -orderer.example.com | 2018-01-18 01:58:51.882 UTC [common/config] initializeProtosStruct -> DEBU 13f Processing field: BatchTimeout -peer0.org2.example.com | [336 01-18 01:58:59.31 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [1b1 01-18 01:58:52.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [254 01-18 01:58:53.19 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.0.2 -peer1.org1.example.com | [16e 01-18 01:58:49.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -orderer.example.com | 2018-01-18 01:58:51.882 UTC [common/config] initializeProtosStruct -> DEBU 140 Processing field: KafkaBrokers -peer1.org1.example.com | [16f 01-18 01:58:49.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [337 01-18 01:58:59.31 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [1b2 01-18 01:58:52.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.2 -peer1.org2.example.com | [255 01-18 01:58:53.19 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -orderer.example.com | 2018-01-18 01:58:51.882 UTC [common/config] initializeProtosStruct -> DEBU 141 Processing field: ChannelRestrictions -peer1.org1.example.com | [170 01-18 01:58:49.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 -orderer.example.com | 2018-01-18 01:58:51.882 UTC [policies] ProposePolicy -> DEBU 142 Proposed new policy Readers for Orderer -peer0.org2.example.com | [338 01-18 01:58:59.31 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org2.example.com | [256 01-18 01:58:53.19 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.2 -peer0.org1.example.com | [1b3 01-18 01:58:52.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9a812e3c]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [1b4 01-18 01:58:52.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [1b5 01-18 01:58:52.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org1.example.com | [1b6 01-18 01:58:52.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9a812e3c]sendExecuteMsg trigger event TRANSACTION -peer1.org1.example.com | [171 01-18 01:58:49.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [5352e211]Inside sendExecuteMessage. Message INIT -orderer.example.com | 2018-01-18 01:58:51.882 UTC [policies] ProposePolicy -> DEBU 143 Proposed new policy Writers for Orderer -peer0.org2.example.com | [339 01-18 01:58:59.31 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [1b7 01-18 01:58:52.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9a812e3c]Move state message TRANSACTION -peer1.org1.example.com | [172 01-18 01:58:49.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [257 01-18 01:58:53.19 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [24ca1988]Inside sendExecuteMessage. Message INIT -peer0.org2.example.com | [33a 01-18 01:58:59.31 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer1.org1.example.com | [173 01-18 01:58:49.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [5352e211]sendExecuteMsg trigger event INIT -orderer.example.com | 2018-01-18 01:58:51.882 UTC [policies] ProposePolicy -> DEBU 144 Proposed new policy Admins for Orderer -peer1.org2.example.com | [258 01-18 01:58:53.19 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [1b8 01-18 01:58:52.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9a812e3c]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org1.example.com | [174 01-18 01:58:49.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5352e211]Move state message INIT -orderer.example.com | 2018-01-18 01:58:51.882 UTC [policies] ProposePolicy -> DEBU 145 Proposed new policy BlockValidation for Orderer -peer0.org2.example.com | [33b 01-18 01:58:59.31 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org1.example.com | [175 01-18 01:58:49.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5352e211]Fabric side Handling ChaincodeMessage of type: INIT in state ready -orderer.example.com | 2018-01-18 01:58:51.882 UTC [common/config] NewStandardValues -> DEBU 146 Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [1b9 01-18 01:58:52.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [259 01-18 01:58:53.19 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [24ca1988]sendExecuteMsg trigger event INIT -peer1.org1.example.com | [176 01-18 01:58:49.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | 2018-01-18 01:58:51.882 UTC [common/config] initializeProtosStruct -> DEBU 147 Processing field: MSP -peer0.org1.example.com | [1ba 01-18 01:58:52.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9a812e3c]sending state message TRANSACTION -peer0.org2.example.com | [33c 01-18 01:58:59.31 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org2.example.com | [25a 01-18 01:58:53.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [24ca1988]Move state message INIT -peer1.org1.example.com | [177 01-18 01:58:49.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5352e211]sending state message INIT -orderer.example.com | 2018-01-18 01:58:51.882 UTC [policies] ProposePolicy -> DEBU 148 Proposed new policy Writers for OrdererOrg -peer0.org1.example.com | [1bb 01-18 01:58:52.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9a812e3c]Received message TRANSACTION from shim -peer0.org2.example.com | [33d 01-18 01:58:59.32 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [178 01-18 01:58:49.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5352e211]Received message INIT from shim -peer1.org2.example.com | [25b 01-18 01:58:53.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [24ca1988]Fabric side Handling ChaincodeMessage of type: INIT in state ready -orderer.example.com | 2018-01-18 01:58:51.882 UTC [policies] ProposePolicy -> DEBU 149 Proposed new policy Admins for OrdererOrg -peer0.org2.example.com | [33e 01-18 01:58:59.33 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -peer1.org1.example.com | [179 01-18 01:58:49.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5352e211]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org1.example.com | [1bc 01-18 01:58:52.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9a812e3c]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | 2018-01-18 01:58:51.882 UTC [policies] ProposePolicy -> DEBU 14a Proposed new policy Readers for OrdererOrg -peer1.org2.example.com | [25c 01-18 01:58:53.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [17a 01-18 01:58:49.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -orderer.example.com | 2018-01-18 01:58:51.882 UTC [common/config] Validate -> DEBU 14b Anchor peers for org Org2MSP are -peer0.org2.example.com | [33f 01-18 01:58:59.33 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer0.org1.example.com | [1bd 01-18 01:58:52.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [9a812e3c]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | 2018-01-18 01:58:51.882 UTC [common/config] validateMSP -> DEBU 14c Setting up MSP for org Org2MSP -peer1.org2.example.com | [25d 01-18 01:58:53.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [24ca1988]sending state message INIT -peer0.org2.example.com | [340 01-18 01:58:59.33 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer0.org1.example.com | [1be 01-18 01:58:52.57 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain -orderer.example.com | 2018-01-18 01:58:51.882 UTC [msp] NewBccspMsp -> DEBU 14d Creating BCCSP-based MSP instance -peer0.org2.example.com | [341 01-18 01:58:59.33 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer1.org2.example.com | [25e 01-18 01:58:53.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [24ca1988]Received message INIT from shim -peer1.org1.example.com | [17b 01-18 01:58:49.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [5352e211]Received INIT, initializing chaincode -orderer.example.com | 2018-01-18 01:58:51.882 UTC [msp] Setup -> DEBU 14e Setting up MSP instance Org2MSP -peer0.org2.example.com | [342 01-18 01:58:59.34 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer0.org1.example.com | [1bf 01-18 01:58:52.57 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block -orderer.example.com | 2018-01-18 01:58:51.883 UTC [msp/identity] newIdentity -> DEBU 14f Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [25f 01-18 01:58:53.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [24ca1988]Handling ChaincodeMessage of type: INIT(state:ready) -orderer.example.com | MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw -peer0.org1.example.com | [1c0 01-18 01:58:52.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel -peer1.org1.example.com | [17c 01-18 01:58:49.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5352e211]Init get response status: 200 -peer0.org2.example.com | [343 01-18 01:58:59.34 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org2.example.com | [260 01-18 01:58:53.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org1.example.com | [17d 01-18 01:58:49.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5352e211]Init succeeded. Sending COMPLETED -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer0.org1.example.com | [1c1 01-18 01:58:52.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncCPInfoFromFS -> DEBU Starting checkpoint=latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0] -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa -peer0.org2.example.com | [344 01-18 01:58:59.34 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org1.example.com | [17e 01-18 01:58:49.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5352e211]Move state message COMPLETED -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer0.org1.example.com | [1c2 01-18 01:58:52.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncCPInfoFromFS -> DEBU status of file [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/blockfile_000000]: exists=[false], size=[0] -peer1.org2.example.com | [261 01-18 01:58:53.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [24ca1988]Received INIT, initializing chaincode -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -peer0.org2.example.com | [345 01-18 01:58:59.34 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [17f 01-18 01:58:49.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5352e211]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [1c3 01-18 01:58:52.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockHash BlockNum TxID BlockNumTranNum BlockTxID TxValidationCode]] -peer1.org2.example.com | [262 01-18 01:58:53.20 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -peer1.org1.example.com | [180 01-18 01:58:49.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5352e211]send state message COMPLETED -peer0.org1.example.com | [1c4 01-18 01:58:52.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/ledgersData/chains/chains/businesschannel/blockfile_000000], startOffset=[0] -orderer.example.com | mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 -peer0.org2.example.com | [346 01-18 01:58:59.34 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -peer1.org2.example.com | [263 01-18 01:58:53.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [24ca1988]Init get response status: 200 -orderer.example.com | sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -peer0.org1.example.com | [1c5 01-18 01:58:52.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Finished reading file number [0] -peer0.org2.example.com | [347 01-18 01:58:59.34 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ -peer1.org1.example.com | [181 01-18 01:58:49.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5352e211]Received message COMPLETED from shim -orderer.example.com | xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv -peer0.org2.example.com | [348 01-18 01:58:59.34 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -peer1.org2.example.com | [264 01-18 01:58:53.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [24ca1988]Init succeeded. Sending COMPLETED -peer0.org1.example.com | [1c6 01-18 01:58:52.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [0] read from file [0] -orderer.example.com | WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk -peer1.org1.example.com | [182 01-18 01:58:49.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5352e211]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | SCjyRdD3aQ== -peer1.org2.example.com | [265 01-18 01:58:53.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [24ca1988]Move state message COMPLETED -peer0.org2.example.com | [349 01-18 01:58:59.35 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer0.org1.example.com | [1c7 01-18 01:58:52.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [183 01-18 01:58:49.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5352e211-1f77-461a-ad76-3a64902abeff]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [34a 01-18 01:58:59.35 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer0.org1.example.com | [1c8 01-18 01:58:52.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc42171cd40), Data:(*common.BlockData)(0xc4217b4580), Metadata:(*common.BlockMetadata)(0xc4217b45c0)}, doMVCCValidation=true -orderer.example.com | 2018-01-18 01:58:51.884 UTC [msp/identity] newIdentity -> DEBU 150 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [266 01-18 01:58:53.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [24ca1988]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [34b 01-18 01:58:59.39 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [1c9 01-18 01:58:52.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -peer1.org1.example.com | [184 01-18 01:58:49.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:5352e211-1f77-461a-ad76-3a64902abeff -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org2.example.com | [267 01-18 01:58:53.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [24ca1988]send state message COMPLETED -peer0.org2.example.com | [34c 01-18 01:58:59.41 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org1.example.com | [185 01-18 01:58:49.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [268 01-18 01:58:53.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [24ca1988]Received message COMPLETED from shim -peer0.org1.example.com | [1ca 01-18 01:58:52.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [0] Transaction index [0] because, the transaction type is [CONFIG] -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -peer0.org2.example.com | [34d 01-18 01:58:59.41 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -peer1.org2.example.com | [269 01-18 01:58:53.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [24ca1988]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org1.example.com | [187 01-18 01:58:49.73 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/(github.com/hyperledger/fabric/core/scc/vscc) deployed -peer0.org1.example.com | [1cb 01-18 01:58:52.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0xe1, 0x44, 0x7d, 0x23, 0xdf, 0xa2, 0x20, 0x82, 0xd4, 0xe4, 0x74, 0x4d, 0x77, 0xfd, 0x41, 0x93, 0xb7, 0xdb, 0xc6, 0xb0, 0x34, 0x30, 0xc2, 0xa7, 0xc6, 0x50, 0xfb, 0x2b, 0x1c, 0x26, 0xcf, 0x43} txOffsets= -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -peer1.org2.example.com | [26a 01-18 01:58:53.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [24ca1988-0c8c-407b-87a6-34b70341ffc0]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [34e 01-18 01:58:59.41 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -peer1.org1.example.com | [186 01-18 01:58:49.73 UTC] [github.com/hyperledger/fabric/gossip/comm] func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 9029501778371496001, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2117 bytes, Signature: 0 bytes -peer0.org1.example.com | txId= locPointer=offset=38, bytesLength=11891 -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -peer1.org2.example.com | [26b 01-18 01:58:53.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:24ca1988-0c8c-407b-87a6-34b70341ffc0 -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -peer1.org1.example.com | [188 01-18 01:58:49.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [67 57 124 107 226 101 123 170 242 161 114 171 7 37 125 129 66 25 246 152 76 9 231 202 239 174 113 90 43 207 127 228] sent us GossipMessage: Channel: , nonce: 9029501778371496001, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2117 bytes, Signature: 0 bytes -peer0.org1.example.com | ] -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -peer0.org2.example.com | [34f 01-18 01:58:59.41 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -peer1.org1.example.com | [189 01-18 01:58:49.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1cc 01-18 01:58:52.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=11891] for tx ID: [] to index -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -peer1.org2.example.com | [26c 01-18 01:58:53.20 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [350 01-18 01:58:59.41 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU config transaction received for chain businesschannel -orderer.example.com | AXYxULZpXYDQXt1KaLI= -peer0.org1.example.com | [1cd 01-18 01:58:52.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=11891] for tx number:[0] ID: [] to blockNumTranNum index -peer1.org1.example.com | [18a 01-18 01:58:49.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 9029501778371496001, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2117 bytes, Signature: 0 bytes -orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [26d 01-18 01:58:53.20 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed -peer0.org2.example.com | [351 01-18 01:58:59.41 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -peer1.org1.example.com | [18b 01-18 01:58:49.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAP//zqWKYzSHLW7GfxKsMZYwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABMkhzyzkBQMmDIFIj+Dmnud+j7/3h/LM\nsUwFjL4AqbRBEG6vNDX4lF1jwBBt39uJxvOBL2wKymZ0rY/LVNK4vumjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIB1/N1vq\nNZ8srg0DN/kZsRGGbGxZDd6SUmUSPGopEZ+BAiAFLGQc/nVZ7H9e3TOSPWkj9xXI\nzBwtXbaE2rpu1wCNZg==\n-----END -----\n" > , Envelope: 867 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -orderer.example.com | 2018-01-18 01:58:51.885 UTC [msp/identity] newIdentity -> DEBU 151 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [352 01-18 01:58:59.41 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Received configuration update, calling CSCC ConfigUpdate -peer1.org2.example.com | [26e 01-18 01:58:53.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [33d22907-156a-4dd4-93fa-166898cd3859] -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -peer1.org1.example.com | [18c 01-18 01:58:49.73 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [1ce 01-18 01:58:52.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[11935], isChainEmpty=[false], lastBlockNumber=[0] -peer0.org2.example.com | [353 01-18 01:58:59.41 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org2.example.com | [26f 01-18 01:58:53.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org1.example.com | [18d 01-18 01:58:49.73 UTC] [github.com/hyperledger/fabric/msp] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity -peer0.org1.example.com | [1cf 01-18 01:58:52.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit -> INFO Channel [businesschannel]: Created block [0] with 1 transaction(s) -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org2.example.com | [270 01-18 01:58:53.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [238f1dec-9cdb-4775-9cce-84f273940a6b] -peer0.org2.example.com | [354 01-18 01:58:59.41 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc42014c200), Data:(*common.BlockData)(0xc421c49420), Metadata:(*common.BlockMetadata)(0xc421c49460)}, doMVCCValidation=true -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -peer1.org1.example.com | [18e 01-18 01:58:49.73 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=qscc,version=1.0.2,txid=22a07e37-2ba1-4f12-a7cd-9653ed1eb707,syscc=true,proposal=0x0,canname=qscc:1.0.2 -peer0.org2.example.com | [355 01-18 01:58:59.41 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -peer0.org1.example.com | [1d0 01-18 01:58:52.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Committing updates to state database -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org2.example.com | [271 01-18 01:58:53.20 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=dcb2dc3e-f32e-4763-855b-f27b1c0d81e3,syscc=true,proposal=0x0,canname=lscc:1.0.2 -peer0.org2.example.com | [356 01-18 01:58:59.41 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [1] Transaction index [0] because, the transaction type is [CONFIG] -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -peer1.org1.example.com | [18f 01-18 01:58:49.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode qscc:1.0.2 is being launched -peer0.org1.example.com | [1d1 01-18 01:58:52.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org2.example.com | [357 01-18 01:58:59.42 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0xc3, 0xab, 0xaa, 0xb3, 0xa5, 0x22, 0xad, 0x43, 0xc, 0xa3, 0xc5, 0x33, 0x33, 0xd, 0x4f, 0xc2, 0xaa, 0x7, 0xee, 0xbc, 0xcd, 0x3b, 0xac, 0x1a, 0x3, 0xe2, 0x17, 0xb3, 0x1b, 0x87, 0x6d, 0x94} txOffsets= -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -peer1.org2.example.com | [272 01-18 01:58:53.20 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -peer0.org1.example.com | [1d2 01-18 01:58:52.59 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Updates committed to state database -peer0.org2.example.com | txId= locPointer=offset=70, bytesLength=11913 -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -peer1.org2.example.com | [273 01-18 01:58:53.20 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org2.example.com | ] -peer0.org1.example.com | [1d3 01-18 01:58:52.59 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [0] with [1] transactions -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -peer1.org1.example.com | [191 01-18 01:58:49.73 UTC] [github.com/hyperledger/fabric/msp] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [358 01-18 01:58:59.42 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12005, bytesLength=11913] for tx ID: [] to index -peer1.org2.example.com | [274 01-18 01:58:53.20 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -peer0.org1.example.com | [1d4 01-18 01:58:52.59 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -peer0.org2.example.com | [359 01-18 01:58:59.42 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12005, bytesLength=11913] for tx number:[0] ID: [] to blockNumTranNum index -peer1.org2.example.com | [275 01-18 01:58:53.20 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [dcb2dc3e]Inside sendExecuteMessage. Message INIT -peer1.org1.example.com | MIICGTCCAcCgAwIBAgIRAP//zqWKYzSHLW7GfxKsMZYwCgYIKoZIzj0EAwIwczEL -orderer.example.com | AXYxULZpXYDQXt1KaLI= -peer0.org2.example.com | [35a 01-18 01:58:59.42 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[25668], isChainEmpty=[false], lastBlockNumber=[1] -peer1.org2.example.com | [276 01-18 01:58:53.20 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [1d5 01-18 01:58:52.59 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [0] -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [35b 01-18 01:58:59.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [1] with 1 transaction(s) -peer1.org1.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | 2018-01-18 01:58:51.886 UTC [msp] Validate -> DEBU 152 MSP Org2MSP validating identity -peer0.org1.example.com | [1d6 01-18 01:58:52.59 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block -peer1.org2.example.com | [277 01-18 01:58:53.20 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [dcb2dc3e]sendExecuteMsg trigger event INIT -peer0.org2.example.com | [35c 01-18 01:58:59.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -orderer.example.com | 2018-01-18 01:58:51.887 UTC [common/config] Validate -> DEBU 153 Anchor peers for org Org1MSP are -peer0.org1.example.com | [1d7 01-18 01:58:52.59 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -peer1.org1.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org2.example.com | [35d 01-18 01:58:59.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -orderer.example.com | 2018-01-18 01:58:51.887 UTC [common/config] validateMSP -> DEBU 154 Setting up MSP for org Org1MSP -peer1.org2.example.com | [278 01-18 01:58:53.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dcb2dc3e]Move state message INIT -peer0.org1.example.com | [1d8 01-18 01:58:52.59 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org2.example.com | [35e 01-18 01:58:59.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -peer1.org2.example.com | [279 01-18 01:58:53.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [dcb2dc3e]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org1.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | 2018-01-18 01:58:51.887 UTC [msp] NewBccspMsp -> DEBU 155 Creating BCCSP-based MSP instance -peer0.org2.example.com | [35f 01-18 01:58:59.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [1] with [1] transactions -peer1.org2.example.com | [27a 01-18 01:58:53.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [1d9 01-18 01:58:52.59 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer0.org2.example.com | [360 01-18 01:58:59.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -peer1.org2.example.com | [27b 01-18 01:58:53.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dcb2dc3e]sending state message INIT -orderer.example.com | 2018-01-18 01:58:51.887 UTC [msp] Setup -> DEBU 156 Setting up MSP instance Org1MSP -peer0.org2.example.com | [361 01-18 01:58:59.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [1] -peer1.org2.example.com | [27c 01-18 01:58:53.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dcb2dc3e]Received message INIT from shim -peer1.org1.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [1da 01-18 01:58:52.59 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org2.example.com | [362 01-18 01:58:59.42 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -peer1.org2.example.com | [27d 01-18 01:58:53.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [dcb2dc3e]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org1.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | 2018-01-18 01:58:51.888 UTC [msp/identity] newIdentity -> DEBU 157 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [1db 01-18 01:58:52.59 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org2.example.com | [363 01-18 01:58:59.42 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [1] -peer1.org2.example.com | [27e 01-18 01:58:53.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org1.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMkhzyzkBQMmDIFIj+Dmnud+j7/3h/LM -peer0.org2.example.com | [364 01-18 01:58:59.42 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -peer1.org2.example.com | [27f 01-18 01:58:53.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [dcb2dc3e]Received INIT, initializing chaincode -peer0.org2.example.com | [365 01-18 01:58:59.42 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -orderer.example.com | MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [1dc 01-18 01:58:52.59 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer1.org2.example.com | [280 01-18 01:58:53.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dcb2dc3e]Init get response status: 200 -peer1.org1.example.com | sUwFjL4AqbRBEG6vNDX4lF1jwBBt39uJxvOBL2wKymZ0rY/LVNK4vumjTTBLMA4G -peer0.org2.example.com | [366 01-18 01:58:59.42 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org2.example.com | [281 01-18 01:58:53.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dcb2dc3e]Init succeeded. Sending COMPLETED -peer0.org2.example.com | [367 01-18 01:58:59.42 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -peer0.org1.example.com | [1dd 01-18 01:58:52.59 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org1.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -peer1.org2.example.com | [282 01-18 01:58:53.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dcb2dc3e]Move state message COMPLETED -peer0.org2.example.com | [368 01-18 01:58:59.42 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -peer0.org1.example.com | [1de 01-18 01:58:52.59 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -peer1.org2.example.com | [283 01-18 01:58:53.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [dcb2dc3e]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIB1/N1vq -peer0.org2.example.com | [369 01-18 01:58:59.42 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org2.example.com | [284 01-18 01:58:53.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dcb2dc3e]send state message COMPLETED -peer0.org2.example.com | [36a 01-18 01:58:59.42 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -peer1.org1.example.com | NZ8srg0DN/kZsRGGbGxZDd6SUmUSPGopEZ+BAiAFLGQc/nVZ7H9e3TOSPWkj9xXI -peer1.org2.example.com | [285 01-18 01:58:53.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dcb2dc3e]Received message COMPLETED from shim -peer0.org1.example.com | [1df 01-18 01:58:52.59 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -peer0.org2.example.com | [36b 01-18 01:58:59.42 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -peer1.org1.example.com | zBwtXbaE2rpu1wCNZg== -peer1.org2.example.com | [286 01-18 01:58:53.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [dcb2dc3e]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -peer0.org1.example.com | [1e0 01-18 01:58:52.59 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org2.example.com | [36c 01-18 01:58:59.42 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc42184e000 -peer1.org2.example.com | [287 01-18 01:58:53.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [dcb2dc3e-f32e-4763-855b-f27b1c0d81e3]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [1e1 01-18 01:58:52.59 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org2.example.com | [36d 01-18 01:58:59.42 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\337\376\377\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030a\n\340,\262`\335\020Q\311?\302\002%\0013\232C|\240\316T\363\221" -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -peer1.org2.example.com | [288 01-18 01:58:53.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:dcb2dc3e-f32e-4763-855b-f27b1c0d81e3 -peer1.org1.example.com | [192 01-18 01:58:49.73 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [289 01-18 01:58:53.20 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [1e2 01-18 01:58:52.59 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf -peer0.org2.example.com | [36e 01-18 01:58:59.42 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer1.org2.example.com | [28a 01-18 01:58:53.20 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed -peer0.org1.example.com | [1e3 01-18 01:58:52.59 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -peer1.org1.example.com | [193 01-18 01:58:49.73 UTC] [github.com/hyperledger/fabric/msp] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity -orderer.example.com | db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -peer1.org2.example.com | [28b 01-18 01:58:53.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [238f1dec-9cdb-4775-9cce-84f273940a6b] -peer0.org2.example.com | [36f 01-18 01:58:59.42 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [1e4 01-18 01:58:52.59 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -peer1.org2.example.com | [28c 01-18 01:58:53.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org2.example.com | [370 01-18 01:58:59.42 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 685c3e542c5c7e71cc8ac51ff9728a4a798d38a5cb22c31b73b7dddaa87ffa02} -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx -peer1.org1.example.com | [190 01-18 01:58:49.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -peer0.org1.example.com | [1e5 01-18 01:58:52.59 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org2.example.com | [28d 01-18 01:58:53.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [4e51c5dc-ef84-4281-8278-d38555de0a17] -peer0.org2.example.com | [371 01-18 01:58:59.42 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org1.example.com | [194 01-18 01:58:49.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer1.org1.example.com:7052] -peer0.org1.example.com | [1e6 01-18 01:58:52.59 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer1.org2.example.com | [28e 01-18 01:58:53.20 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=7167ba64-70f2-4523-b6de-9aa85b1957df,syscc=true,proposal=0x0,canname=escc:1.0.2 -orderer.example.com | JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi -peer0.org1.example.com | [1e7 01-18 01:58:52.59 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer1.org2.example.com | [28f 01-18 01:58:53.20 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 -peer0.org2.example.com | [372 01-18 01:58:59.42 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org1.example.com | [195 01-18 01:58:49.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: qscc:1.0.2(networkid:dev,peerid:peer1.org1.example.com) -orderer.example.com | /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ -peer0.org1.example.com | [1e8 01-18 01:58:52.59 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer1.org2.example.com | [290 01-18 01:58:53.20 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [373 01-18 01:58:59.43 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc421853000, header channel_header:"\010\001\032\006\010\337\376\377\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030a\n\340,\262`\335\020Q\311?\302\002%\0013\232C|\240\316T\363\221" -peer0.org1.example.com | [1e9 01-18 01:58:52.59 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer1.org2.example.com | [291 01-18 01:58:53.20 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 -orderer.example.com | H7n8z1pj5w== -peer0.org1.example.com | [1ea 01-18 01:58:52.59 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer1.org1.example.com | [196 01-18 01:58:49.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer1.org1.example.com:7052 -peer0.org2.example.com | [374 01-18 01:58:59.43 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -peer1.org2.example.com | [292 01-18 01:58:53.20 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [7167ba64]Inside sendExecuteMessage. Message INIT -peer0.org1.example.com | [1eb 01-18 01:58:52.59 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -peer1.org1.example.com | [197 01-18 01:58:49.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: -peer0.org2.example.com | [375 01-18 01:58:59.43 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer1.org2.example.com | [293 01-18 01:58:53.20 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [1ec 01-18 01:58:52.59 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -peer1.org1.example.com | CORE_CHAINCODE_ID_NAME=qscc:1.0.2 -peer0.org2.example.com | [376 01-18 01:58:59.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -peer1.org2.example.com | [294 01-18 01:58:53.20 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [7167ba64]sendExecuteMsg trigger event INIT -peer0.org1.example.com | [1ed 01-18 01:58:52.59 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -orderer.example.com | 2018-01-18 01:58:51.890 UTC [msp/identity] newIdentity -> DEBU 158 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [377 01-18 01:58:59.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -peer1.org2.example.com | [295 01-18 01:58:53.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7167ba64]Move state message INIT -peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer0.org1.example.com | [1ee 01-18 01:58:52.59 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer0.org2.example.com | [378 01-18 01:58:59.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer0.org1.example.com | [1ef 01-18 01:58:52.59 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer0.org2.example.com | [379 01-18 01:58:59.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer0.org1.example.com | [1f0 01-18 01:58:52.59 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer1.org2.example.com | [296 01-18 01:58:53.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7167ba64]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org2.example.com | [37a 01-18 01:58:59.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [1f1 01-18 01:58:52.59 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -peer0.org2.example.com | [37b 01-18 01:58:59.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer1.org1.example.com | [198 01-18 01:58:49.73 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.0.2) lock -peer1.org2.example.com | [297 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [1f2 01-18 01:58:52.59 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -peer1.org1.example.com | [199 01-18 01:58:49.73 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.0.2) lock -peer0.org1.example.com | [1f3 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -peer1.org2.example.com | [298 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7167ba64]sending state message INIT -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org2.example.com | [37c 01-18 01:58:59.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -peer1.org1.example.com | [19a 01-18 01:58:49.73 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for qscc-1.0.2 -peer0.org1.example.com | [1f4 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -peer1.org2.example.com | [299 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7167ba64]Received message INIT from shim -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer0.org1.example.com | [1f5 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer0.org2.example.com | [37d 01-18 01:58:59.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -peer1.org2.example.com | [29a 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7167ba64]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org1.example.com | [1f6 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer0.org2.example.com | [37e 01-18 01:58:59.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -peer1.org1.example.com | [19b 01-18 01:58:49.73 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.0.2) -peer0.org1.example.com | [1f7 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -peer1.org2.example.com | [29b 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org2.example.com | [37f 01-18 01:58:59.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -peer0.org1.example.com | [1f8 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer1.org1.example.com | [19c 01-18 01:58:49.73 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.0.2 -peer1.org2.example.com | [29c 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [7167ba64]Received INIT, initializing chaincode -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -peer1.org1.example.com | [19d 01-18 01:58:49.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer0.org1.example.com | [1f9 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -peer1.org2.example.com | [29d 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -peer0.org2.example.com | [380 01-18 01:58:59.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer0.org1.example.com | [1fa 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -peer1.org1.example.com | [19e 01-18 01:58:49.73 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -peer1.org2.example.com | [29e 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7167ba64]Init get response status: 200 -peer0.org2.example.com | [381 01-18 01:58:59.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer0.org1.example.com | [1fb 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -peer1.org1.example.com | [19f 01-18 01:58:49.73 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.0.2 -peer1.org2.example.com | [29f 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7167ba64]Init succeeded. Sending COMPLETED -peer0.org1.example.com | [1fc 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -peer1.org1.example.com | [1a0 01-18 01:58:49.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org1.example.com:7052] -peer0.org2.example.com | [382 01-18 01:58:59.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer1.org2.example.com | [2a0 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7167ba64]Move state message COMPLETED -orderer.example.com | xHTBvxfK6mAzmUitFmY= -peer0.org1.example.com | [1fd 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer0.org2.example.com | [383 01-18 01:58:59.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer1.org1.example.com | [1a1 01-18 01:58:49.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.0.2 -peer1.org2.example.com | [2a1 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7167ba64]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [384 01-18 01:58:59.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer0.org1.example.com | [1fe 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer1.org2.example.com | [2a2 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7167ba64]send state message COMPLETED -peer1.org1.example.com | [1a2 01-18 01:58:49.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer0.org2.example.com | [385 01-18 01:58:59.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | 2018-01-18 01:58:51.891 UTC [msp/identity] newIdentity -> DEBU 159 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [1ff 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer1.org1.example.com | [1a3 01-18 01:58:49.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer0.org2.example.com | [386 01-18 01:58:59.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -peer1.org2.example.com | [2a3 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7167ba64]Received message COMPLETED from shim -peer1.org1.example.com | [1a4 01-18 01:58:49.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [200 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel -peer0.org2.example.com | [387 01-18 01:58:59.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -peer1.org2.example.com | [2a4 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7167ba64]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [1a5 01-18 01:58:49.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer0.org1.example.com | [201 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -peer0.org2.example.com | [388 01-18 01:58:59.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org1.example.com | [1a6 01-18 01:58:49.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode qscc:1.0.2 -peer0.org1.example.com | [202 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org2.example.com | [389 01-18 01:58:59.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [203 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org2.example.com | [2a5 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7167ba64-70f2-4523-b6de-9aa85b1957df]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [38a 01-18 01:58:59.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -peer0.org1.example.com | [204 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org1.example.com | [1a7 01-18 01:58:49.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"qscc:1.0.2" , sending back REGISTERED -peer1.org2.example.com | [2a6 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:7167ba64-70f2-4523-b6de-9aa85b1957df -peer0.org2.example.com | [38b 01-18 01:58:59.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org1.example.com | [1a8 01-18 01:58:49.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer0.org1.example.com | [205 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org2.example.com | [38c 01-18 01:58:59.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer1.org2.example.com | [2a7 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [1a9 01-18 01:58:49.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer0.org1.example.com | [206 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -peer0.org2.example.com | [38d 01-18 01:58:59.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -peer1.org2.example.com | [2a8 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode escc/businesschannel(github.com/hyperledger/fabric/core/scc/escc) deployed -peer1.org1.example.com | [1aa 01-18 01:58:49.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer0.org1.example.com | [207 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -peer0.org2.example.com | [38e 01-18 01:58:59.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer0.org1.example.com | [208 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [2a9 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [4e51c5dc-ef84-4281-8278-d38555de0a17] -peer1.org1.example.com | [1ab 01-18 01:58:49.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -peer1.org2.example.com | [2aa 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org1.example.com | [209 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer0.org2.example.com | [38f 01-18 01:58:59.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer1.org1.example.com | [1ac 01-18 01:58:49.74 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode qscc:1.0.2 launch seq completed -peer0.org1.example.com | [20a 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org2.example.com | [2ab 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [966c4bd5-546a-4809-8181-2b360bf46f7d] -peer0.org2.example.com | [390 01-18 01:58:59.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -peer1.org1.example.com | [1ad 01-18 01:58:49.74 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -peer0.org1.example.com | [20b 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org2.example.com | [2ac 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=e5467d26-d802-4d6e-9cdf-56b00a02e0ae,syscc=true,proposal=0x0,canname=vscc:1.0.2 -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -peer0.org2.example.com | [391 01-18 01:58:59.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer0.org1.example.com | [20c 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [2ad 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 -peer1.org1.example.com | [1ae 01-18 01:58:49.74 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | xHTBvxfK6mAzmUitFmY= -peer0.org2.example.com | [392 01-18 01:58:59.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer1.org2.example.com | [2ae 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [20d 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [1af 01-18 01:58:49.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [22a07e37]Move state message READY -peer0.org2.example.com | [393 01-18 01:58:59.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer0.org1.example.com | [20e 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [2af 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 -orderer.example.com | 2018-01-18 01:58:51.892 UTC [msp] Validate -> DEBU 15a MSP Org1MSP validating identity -peer1.org1.example.com | [1b0 01-18 01:58:49.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [22a07e37]Fabric side Handling ChaincodeMessage of type: READY in state established -peer0.org1.example.com | [20f 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer0.org2.example.com | [394 01-18 01:58:59.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -peer1.org2.example.com | [2b0 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [e5467d26]Inside sendExecuteMessage. Message INIT -orderer.example.com | 2018-01-18 01:58:51.893 UTC [common/config] validateMSP -> DEBU 15b Setting up MSP for org OrdererOrg -peer0.org1.example.com | [210 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org2.example.com | [2b1 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [395 01-18 01:58:59.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -peer1.org1.example.com | [1b1 01-18 01:58:49.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [22a07e37]Entered state ready -orderer.example.com | 2018-01-18 01:58:51.893 UTC [msp] NewBccspMsp -> DEBU 15c Creating BCCSP-based MSP instance -peer1.org2.example.com | [2b2 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [e5467d26]sendExecuteMsg trigger event INIT -peer0.org2.example.com | [396 01-18 01:58:59.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -peer0.org1.example.com | [211 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org1.example.com | [1b2 01-18 01:58:49.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:22a07e37-2ba1-4f12-a7cd-9653ed1eb707 -peer1.org2.example.com | [2b3 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e5467d26]Move state message INIT -peer0.org2.example.com | [397 01-18 01:58:59.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -peer0.org1.example.com | [212 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [1b3 01-18 01:58:49.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [22a07e37]sending state message READY -orderer.example.com | 2018-01-18 01:58:51.893 UTC [msp] Setup -> DEBU 15d Setting up MSP instance OrdererMSP -peer0.org2.example.com | [398 01-18 01:58:59.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer0.org1.example.com | [213 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -peer1.org2.example.com | [2b4 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e5467d26]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org1.example.com | [1b4 01-18 01:58:49.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [22a07e37]Received message READY from shim -peer0.org2.example.com | [399 01-18 01:58:59.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer1.org2.example.com | [2b5 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | 2018-01-18 01:58:51.894 UTC [msp/identity] newIdentity -> DEBU 15e Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [1b5 01-18 01:58:49.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [22a07e37]Handling ChaincodeMessage of type: READY(state:established) -orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL -peer0.org1.example.com | [214 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer1.org2.example.com | [2b6 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e5467d26]sending state message INIT -peer0.org2.example.com | [39a 01-18 01:58:59.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer1.org1.example.com | [1b6 01-18 01:58:49.74 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org2.example.com | [39b 01-18 01:58:59.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer1.org2.example.com | [2b7 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e5467d26]Received message INIT from shim -peer0.org1.example.com | [215 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer1.org1.example.com | [1b7 01-18 01:58:49.74 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -peer0.org2.example.com | [39c 01-18 01:58:59.45 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer1.org2.example.com | [2b8 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e5467d26]Handling ChaincodeMessage of type: INIT(state:ready) -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -peer0.org1.example.com | [216 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer1.org1.example.com | [1b8 01-18 01:58:49.74 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [2b9 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org2.example.com | [39d 01-18 01:58:59.45 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV -peer1.org1.example.com | [1b9 01-18 01:58:49.74 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.2 -peer0.org1.example.com | [217 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer1.org2.example.com | [2ba 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [e5467d26]Received INIT, initializing chaincode -peer0.org2.example.com | [39e 01-18 01:58:59.45 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -peer1.org2.example.com | [2bb 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e5467d26]Init get response status: 200 -peer0.org1.example.com | [218 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer1.org1.example.com | [1ba 01-18 01:58:49.74 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [22a07e37]Inside sendExecuteMessage. Message INIT -peer0.org2.example.com | [39f 01-18 01:58:59.45 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -peer1.org2.example.com | [2bc 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e5467d26]Init succeeded. Sending COMPLETED -peer1.org1.example.com | [1bb 01-18 01:58:49.74 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [219 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org2.example.com | [3a0 01-18 01:58:59.45 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW -peer1.org1.example.com | [1bc 01-18 01:58:49.74 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [22a07e37]sendExecuteMsg trigger event INIT -peer0.org1.example.com | [21a 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [2bd 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e5467d26]Move state message COMPLETED -peer0.org2.example.com | [3a1 01-18 01:58:59.45 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w -peer1.org1.example.com | [1bd 01-18 01:58:49.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [22a07e37]Move state message INIT -peer1.org2.example.com | [2be 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e5467d26]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -peer0.org2.example.com | [3a2 01-18 01:58:59.45 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer0.org1.example.com | [21b 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are -peer1.org1.example.com | [1be 01-18 01:58:49.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [22a07e37]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org2.example.com | [2bf 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e5467d26]send state message COMPLETED -orderer.example.com | AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK -peer0.org2.example.com | [3a3 01-18 01:58:59.45 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer0.org1.example.com | [21c 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer1.org2.example.com | [2c0 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e5467d26]Received message COMPLETED from shim -peer1.org1.example.com | [1bf 01-18 01:58:49.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [3a4 01-18 01:58:59.45 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs -peer0.org1.example.com | [21d 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -peer1.org2.example.com | [2c1 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e5467d26]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [3a5 01-18 01:58:59.45 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers -peer1.org1.example.com | [1c0 01-18 01:58:49.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [22a07e37]sending state message INIT -orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= -peer0.org2.example.com | [3a6 01-18 01:58:59.45 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -peer0.org1.example.com | [21e 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer1.org2.example.com | [2c2 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e5467d26-d802-4d6e-9cdf-56b00a02e0ae]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [1c1 01-18 01:58:49.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [22a07e37]Received message INIT from shim -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [3a7 01-18 01:58:59.45 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org1.example.com | [21f 01-18 01:58:52.61 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer1.org2.example.com | [2c3 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:e5467d26-d802-4d6e-9cdf-56b00a02e0ae -peer1.org1.example.com | [1c2 01-18 01:58:49.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [22a07e37]Handling ChaincodeMessage of type: INIT(state:ready) -orderer.example.com | 2018-01-18 01:58:51.894 UTC [msp/identity] newIdentity -> DEBU 15f Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [3a8 01-18 01:58:59.45 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer0.org1.example.com | [220 01-18 01:58:52.61 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -peer1.org1.example.com | [1c3 01-18 01:58:49.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org2.example.com | [2c4 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [3a9 01-18 01:58:59.45 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -peer1.org2.example.com | [2c5 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/businesschannel(github.com/hyperledger/fabric/core/scc/vscc) deployed -peer0.org1.example.com | [221 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer1.org1.example.com | [1c4 01-18 01:58:49.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [22a07e37]Received INIT, initializing chaincode -peer0.org2.example.com | [3aa 01-18 01:58:59.45 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [2c6 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [966c4bd5-546a-4809-8181-2b360bf46f7d] -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [222 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -peer1.org1.example.com | [1c5 01-18 01:58:49.74 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -peer1.org2.example.com | [2c7 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer0.org2.example.com | [3ab 01-18 01:58:59.45 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [1c6 01-18 01:58:49.74 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [223 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -peer1.org2.example.com | [2c8 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [894e6313-200d-4eb9-87dd-5c6b598a7d79] -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -peer0.org2.example.com | [3ac 01-18 01:58:59.45 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org1.example.com | [1c7 01-18 01:58:49.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [22a07e37]Init get response status: 200 -peer0.org1.example.com | [224 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -peer1.org2.example.com | [2c9 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.0.2,txid=25747437-04b9-4b3e-a5d3-d9dc4431230b,syscc=true,proposal=0x0,canname=qscc:1.0.2 -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer0.org2.example.com | [3ad 01-18 01:58:59.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org2.example.com | [2ca 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.0.2 -peer0.org1.example.com | [225 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.InitChain -> DEBU Init chain businesschannel -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -peer1.org1.example.com | [1c8 01-18 01:58:49.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [22a07e37]Init succeeded. Sending COMPLETED -peer1.org2.example.com | [2cb 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [3ae 01-18 01:58:59.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [226 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.joinChain.InitChain.func2 -> DEBU Deploying system CC, for chain -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -peer1.org1.example.com | [1c9 01-18 01:58:49.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [22a07e37]Move state message COMPLETED -peer0.org2.example.com | [3af 01-18 01:58:59.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [2cc 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.2 -peer1.org1.example.com | [1ca 01-18 01:58:49.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [22a07e37]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [3b0 01-18 01:58:59.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -peer0.org1.example.com | [227 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -peer0.org2.example.com | [3b1 01-18 01:58:59.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [1cb 01-18 01:58:49.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [22a07e37]send state message COMPLETED -peer1.org2.example.com | [2cd 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [25747437]Inside sendExecuteMessage. Message INIT -peer0.org1.example.com | [228 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [61c6d196-c80c-40bd-8f37-de29b630278a] -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -peer1.org1.example.com | [1cc 01-18 01:58:49.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [22a07e37]Received message COMPLETED from shim -peer0.org2.example.com | [3b2 01-18 01:58:59.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [229 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=cscc,version=1.0.2,txid=8b8168bc-ebd3-46b8-a2e4-7dd16faa3728,syscc=true,proposal=0x0,canname=cscc:1.0.2 -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -peer0.org2.example.com | [3b3 01-18 01:58:59.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [22a 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.0.2 -peer1.org2.example.com | [2ce 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [1cd 01-18 01:58:49.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [22a07e37]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [3b4 01-18 01:58:59.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -peer0.org1.example.com | [22b 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [2cf 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [25747437]sendExecuteMsg trigger event INIT -peer1.org1.example.com | [1ce 01-18 01:58:49.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [22a07e37-2ba1-4f12-a7cd-9653ed1eb707]HandleMessage- COMPLETED. Notify -orderer.example.com | 2018-01-18 01:58:51.895 UTC [msp/identity] newIdentity -> DEBU 160 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [22c 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.2 -peer1.org2.example.com | [2d0 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [25747437]Move state message INIT -peer0.org2.example.com | [3b5 01-18 01:58:59.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -peer1.org1.example.com | [1cf 01-18 01:58:49.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:22a07e37-2ba1-4f12-a7cd-9653ed1eb707 -peer0.org2.example.com | [3b6 01-18 01:58:59.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -peer0.org1.example.com | [22d 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [8b8168bc]Inside sendExecuteMessage. Message INIT -peer1.org2.example.com | [2d1 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [25747437]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org1.example.com | [1d0 01-18 01:58:49.74 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [22e 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [22f 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [8b8168bc]sendExecuteMsg trigger event INIT -peer0.org2.example.com | [3b7 01-18 01:58:59.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [1d1 01-18 01:58:49.74 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/chaincode/qscc) deployed -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer1.org2.example.com | [2d2 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [230 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8b8168bc]Move state message INIT -peer1.org1.example.com | [1d2 01-18 01:58:49.74 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.initSysCCs -> INFO Deployed system chaincodess -peer0.org2.example.com | [3b8 01-18 01:58:59.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -peer1.org1.example.com | [1d3 01-18 01:58:49.74 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with ID=[name:"peer1.org1.example.com" ], network ID=[dev], address=[peer1.org1.example.com:7051] -peer1.org2.example.com | [2d3 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [25747437]sending state message INIT -peer0.org1.example.com | [231 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8b8168bc]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org2.example.com | [3b9 01-18 01:58:59.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [1d4 01-18 01:58:49.74 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg.validateAliveMsgSignature.Verify.func1.Verify.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer0.org2.example.com | [3ba 01-18 01:58:59.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [232 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [2d4 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [25747437]Received message INIT from shim -peer1.org1.example.com | [1d5 01-18 01:58:49.74 UTC] [github.com/hyperledger/fabric/msp] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg.validateAliveMsgSignature.Verify.func1.Verify.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -peer0.org1.example.com | [233 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8b8168bc]sending state message INIT -peer1.org1.example.com | [1d6 01-18 01:58:49.74 UTC] [github.com/hyperledger/fabric/msp] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg.validateAliveMsgSignature.Verify.func1.Verify.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [3bb 01-18 01:58:59.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org2.example.com | [2d5 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [25747437]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org1.example.com | MIICGTCCAcCgAwIBAgIRAP//zqWKYzSHLW7GfxKsMZYwCgYIKoZIzj0EAwIwczEL -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -peer0.org1.example.com | [234 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8b8168bc]Received message INIT from shim -peer0.org2.example.com | [3bc 01-18 01:58:59.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [2d6 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org1.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -peer0.org2.example.com | [3bd 01-18 01:58:59.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel -peer0.org1.example.com | [235 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8b8168bc]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org1.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -peer1.org2.example.com | [2d7 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [25747437]Received INIT, initializing chaincode -peer0.org2.example.com | [3be 01-18 01:58:59.46 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -peer0.org1.example.com | [236 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -peer1.org1.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -peer0.org2.example.com | [3bf 01-18 01:58:59.46 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer1.org2.example.com | [2d8 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -peer0.org1.example.com | [237 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [8b8168bc]Received INIT, initializing chaincode -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -peer1.org2.example.com | [2d9 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [25747437]Init get response status: 200 -peer1.org1.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org2.example.com | [3c0 01-18 01:58:59.46 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer0.org1.example.com | [238 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -peer1.org1.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ -peer0.org2.example.com | [3c1 01-18 01:58:59.46 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMkhzyzkBQMmDIFIj+Dmnud+j7/3h/LM -peer1.org2.example.com | [2da 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [25747437]Init succeeded. Sending COMPLETED -peer0.org1.example.com | [239 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8b8168bc]Init get response status: 200 -orderer.example.com | 2018-01-18 01:58:51.896 UTC [msp] Validate -> DEBU 161 MSP OrdererMSP validating identity -peer0.org2.example.com | [3c2 01-18 01:58:59.46 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org1.example.com | [23a 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8b8168bc]Init succeeded. Sending COMPLETED -peer1.org1.example.com | sUwFjL4AqbRBEG6vNDX4lF1jwBBt39uJxvOBL2wKymZ0rY/LVNK4vumjTTBLMA4G -peer1.org2.example.com | [2db 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [25747437]Move state message COMPLETED -peer0.org1.example.com | [23b 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8b8168bc]Move state message COMPLETED -orderer.example.com | 2018-01-18 01:58:51.896 UTC [msp] Setup -> DEBU 162 Setting up the MSP manager (3 msps) -peer1.org1.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -peer0.org2.example.com | [3c3 01-18 01:58:59.46 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -peer1.org2.example.com | [2dc 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [25747437]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | 2018-01-18 01:58:51.896 UTC [msp] Setup -> DEBU 163 MSP manager setup complete, setup 3 msps -peer0.org1.example.com | [23c 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8b8168bc]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [3c4 01-18 01:58:59.46 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org1.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIB1/N1vq -peer0.org1.example.com | [23d 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8b8168bc]send state message COMPLETED -peer1.org2.example.com | [2dd 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [25747437]send state message COMPLETED -peer0.org2.example.com | [3c5 01-18 01:58:59.46 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | 2018-01-18 01:58:51.896 UTC [policies] GetPolicy -> DEBU 164 Returning policy Writers for evaluation -peer0.org1.example.com | [23e 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8b8168bc]Received message COMPLETED from shim -peer1.org2.example.com | [2de 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [25747437]Received message COMPLETED from shim -peer0.org2.example.com | [3c6 01-18 01:58:59.46 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | 2018-01-18 01:58:51.896 UTC [policies] CommitProposals -> DEBU 165 In commit adding relative sub-policy Org2MSP/Writers to Application -peer1.org1.example.com | NZ8srg0DN/kZsRGGbGxZDd6SUmUSPGopEZ+BAiAFLGQc/nVZ7H9e3TOSPWkj9xXI -peer0.org2.example.com | [3c7 01-18 01:58:59.46 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | 2018-01-18 01:58:51.897 UTC [policies] GetPolicy -> DEBU 166 Returning policy Admins for evaluation -peer0.org1.example.com | [23f 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8b8168bc]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [3c8 01-18 01:58:59.46 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org1.example.com | zBwtXbaE2rpu1wCNZg== -peer1.org2.example.com | [2df 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [25747437]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [240 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8b8168bc-ebd3-46b8-a2e4-7dd16faa3728]HandleMessage- COMPLETED. Notify -orderer.example.com | 2018-01-18 01:58:51.897 UTC [policies] CommitProposals -> DEBU 167 In commit adding relative sub-policy Org2MSP/Admins to Application -peer0.org2.example.com | [3c9 01-18 01:58:59.46 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [241 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:8b8168bc-ebd3-46b8-a2e4-7dd16faa3728 -peer1.org1.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:51.897 UTC [policies] GetPolicy -> DEBU 168 Returning policy Readers for evaluation -peer1.org2.example.com | [2e0 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [25747437-04b9-4b3e-a5d3-d9dc4431230b]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [3ca 01-18 01:58:59.46 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:51.897 UTC [policies] CommitProposals -> DEBU 169 In commit adding relative sub-policy Org2MSP/Readers to Application -peer0.org1.example.com | [242 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [2e1 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:25747437-04b9-4b3e-a5d3-d9dc4431230b -orderer.example.com | 2018-01-18 01:58:51.897 UTC [policies] GetPolicy -> DEBU 16a Returning policy Writers for evaluation -peer1.org1.example.com | [1d7 01-18 01:58:49.74 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg.validateAliveMsgSignature.Verify.func1.Verify.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [3cb 01-18 01:58:59.49 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | 2018-01-18 01:58:51.897 UTC [policies] CommitProposals -> DEBU 16b In commit adding relative sub-policy Org1MSP/Writers to Application -peer0.org1.example.com | [243 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed -peer0.org2.example.com | [3cc 01-18 01:58:59.49 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | 2018-01-18 01:58:51.897 UTC [policies] GetPolicy -> DEBU 16c Returning policy Admins for evaluation -peer1.org2.example.com | [2e2 01-18 01:58:53.21 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [1d8 01-18 01:58:49.74 UTC] [github.com/hyperledger/fabric/msp] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg.validateAliveMsgSignature.Verify.func1.Verify.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity -peer0.org2.example.com | [3cd 01-18 01:58:59.49 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org1.example.com | [244 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [61c6d196-c80c-40bd-8f37-de29b630278a] -orderer.example.com | 2018-01-18 01:58:51.897 UTC [policies] CommitProposals -> DEBU 16d In commit adding relative sub-policy Org1MSP/Admins to Application -peer0.org2.example.com | [3ce 01-18 01:58:59.49 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org1.example.com | [1d9 01-18 01:58:49.74 UTC] [github.com/hyperledger/fabric/msp] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg.validateAliveMsgSignature.Verify.func1.Verify.Verify -> DEBU Verify: digest = 00000000 3d 68 25 3d 09 73 b0 4a dc 81 86 bb 8f f0 6a 50 |=h%=.s.J......jP| -peer1.org2.example.com | [2e3 01-18 01:58:53.22 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/chaincode/qscc) deployed -peer0.org1.example.com | [245 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | 2018-01-18 01:58:51.898 UTC [policies] GetPolicy -> DEBU 16e Returning policy Readers for evaluation -peer0.org2.example.com | [3cf 01-18 01:58:59.49 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | 00000010 da 2f 94 32 5e 22 c6 1e 12 d0 37 41 32 97 f2 a0 |./.2^"....7A2...| -peer1.org2.example.com | [2e4 01-18 01:58:53.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [894e6313-200d-4eb9-87dd-5c6b598a7d79] -orderer.example.com | 2018-01-18 01:58:51.898 UTC [policies] CommitProposals -> DEBU 16f In commit adding relative sub-policy Org1MSP/Readers to Application -peer0.org2.example.com | [3d0 01-18 01:58:59.49 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -peer1.org1.example.com | [1da 01-18 01:58:49.74 UTC] [github.com/hyperledger/fabric/msp] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg.validateAliveMsgSignature.Verify.func1.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 91 6d d8 4a b2 90 53 f5 74 3c 8e |0E.!..m.J..S.t<.| -peer0.org1.example.com | [246 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [6a126f0a-eca2-4f59-8039-364e40e40984] -orderer.example.com | 2018-01-18 01:58:51.898 UTC [policies] GetPolicy -> DEBU 170 Returning policy Admins for evaluation -peer0.org2.example.com | [3d1 01-18 01:58:59.49 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer1.org2.example.com | [2e5 01-18 01:58:53.22 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Entry -peer1.org1.example.com | 00000010 dd af b1 8f 0f 21 43 6b 61 d0 4e c8 22 2f c5 56 |.....!Cka.N."/.V| -orderer.example.com | 2018-01-18 01:58:51.898 UTC [policies] GetPolicy -> DEBU 171 Returning policy Admins for evaluation -peer0.org2.example.com | [3d2 01-18 01:58:59.49 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer0.org1.example.com | [247 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=722e691b-fdd9-4e1a-b7d1-86ccce182f8c,syscc=true,proposal=0x0,canname=lscc:1.0.2 -peer1.org1.example.com | 00000020 80 0f eb 24 79 02 20 40 e2 e3 68 34 04 51 24 6b |...$y. @..h4.Q$k| -orderer.example.com | 2018-01-18 01:58:51.898 UTC [policies] GetPolicy -> DEBU 172 Returning policy Writers for evaluation -peer0.org2.example.com | [3d3 01-18 01:58:59.49 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -orderer.example.com | 2018-01-18 01:58:51.898 UTC [policies] CommitProposals -> DEBU 173 In commit adding relative sub-policy OrdererOrg/Writers to Orderer -peer1.org2.example.com | [2e6 01-18 01:58:53.22 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [0] -peer1.org1.example.com | 00000030 79 ce 0a ef 6d f0 f4 db 5e 90 8f e3 13 39 93 90 |y...m...^....9..| -peer0.org1.example.com | [248 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 -peer0.org2.example.com | [3d4 01-18 01:58:59.49 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -orderer.example.com | 2018-01-18 01:58:51.898 UTC [policies] GetPolicy -> DEBU 174 Returning policy Admins for evaluation -peer0.org2.example.com | [3d5 01-18 01:58:59.49 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer1.org2.example.com | [2e7 01-18 01:58:53.22 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Entry -orderer.example.com | 2018-01-18 01:58:51.898 UTC [policies] CommitProposals -> DEBU 175 In commit adding relative sub-policy OrdererOrg/Admins to Orderer -peer0.org2.example.com | [3d6 01-18 01:58:59.49 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org1.example.com | 00000040 16 16 71 32 d9 77 38 |..q2.w8| -peer0.org1.example.com | [249 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [3d7 01-18 01:58:59.50 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [2e8 01-18 01:58:53.22 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -orderer.example.com | 2018-01-18 01:58:51.899 UTC [policies] GetPolicy -> DEBU 176 Returning policy Readers for evaluation -peer0.org1.example.com | [24a 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -peer1.org1.example.com | [1db 01-18 01:58:49.74 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg.validateAliveMsgSignature.Verify.func1.Verify.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [3d8 01-18 01:58:59.50 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -orderer.example.com | 2018-01-18 01:58:51.899 UTC [policies] CommitProposals -> DEBU 177 In commit adding relative sub-policy OrdererOrg/Readers to Orderer -peer0.org1.example.com | [24b 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [722e691b]Inside sendExecuteMessage. Message INIT -peer0.org2.example.com | [3d9 01-18 01:58:59.50 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer1.org2.example.com | [2e9 01-18 01:58:53.22 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event sent successfully -orderer.example.com | 2018-01-18 01:58:51.900 UTC [policies] GetPolicy -> DEBU 178 Returning policy Readers for evaluation -peer1.org1.example.com | [1dd 01-18 01:58:49.74 UTC] [github.com/hyperledger/fabric/msp] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg.validateAliveMsgSignature.Verify.func1.Verify.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity -peer0.org2.example.com | [3da 01-18 01:58:59.50 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -orderer.example.com | 2018-01-18 01:58:51.901 UTC [policies] GetPolicy -> DEBU 179 Returning policy Writers for evaluation -peer1.org2.example.com | [2ea 01-18 01:58:53.22 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Exit -peer0.org1.example.com | [24c 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [1dc 01-18 01:58:49.74 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Started peer with ID=[name:"peer1.org1.example.com" ], network ID=[dev], address=[peer1.org1.example.com:7051] -peer0.org2.example.com | [3db 01-18 01:58:59.50 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -orderer.example.com | 2018-01-18 01:58:51.901 UTC [policies] GetPolicy -> DEBU 17a Returning policy Admins for evaluation -peer1.org2.example.com | [2eb 01-18 01:58:53.22 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Exit -peer1.org1.example.com | [1de 01-18 01:58:49.74 UTC] [github.com/hyperledger/fabric/msp] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg.validateAliveMsgSignature.Verify.func1.Verify.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [3dc 01-18 01:58:59.50 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -orderer.example.com | 2018-01-18 01:58:51.901 UTC [policies] GetPolicy -> DEBU 17b Returning policy Writers for evaluation -peer1.org1.example.com | MIICGTCCAcCgAwIBAgIRAP//zqWKYzSHLW7GfxKsMZYwCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [24d 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [722e691b]sendExecuteMsg trigger event INIT -orderer.example.com | 2018-01-18 01:58:51.901 UTC [policies] GetPolicy -> DEBU 17c Returning policy Org1MSP/Readers for evaluation -peer1.org1.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org2.example.com | [3dd 01-18 01:58:59.51 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -peer1.org2.example.com | [2ec 01-18 01:58:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7aaa6edb]Transaction completed. Sending COMPLETED -orderer.example.com | 2018-01-18 01:58:51.901 UTC [policies] CommitProposals -> DEBU 17d In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -peer1.org1.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [24e 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [722e691b]Move state message INIT -peer1.org2.example.com | [2ed 01-18 01:58:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7aaa6edb]Move state message COMPLETED -orderer.example.com | 2018-01-18 01:58:51.902 UTC [policies] GetPolicy -> DEBU 17e Returning policy ChannelCreationPolicy for evaluation -peer1.org1.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -peer0.org2.example.com | [3de 01-18 01:58:59.55 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer0.org1.example.com | [24f 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [722e691b]Fabric side Handling ChaincodeMessage of type: INIT in state ready -orderer.example.com | 2018-01-18 01:58:51.902 UTC [policies] CommitProposals -> DEBU 17f In commit adding relative sub-policy Application/ChannelCreationPolicy to Channel -peer1.org1.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org2.example.com | [2ee 01-18 01:58:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7aaa6edb]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [3df 01-18 01:58:59.55 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -orderer.example.com | 2018-01-18 01:58:51.902 UTC [policies] GetPolicy -> DEBU 180 Returning policy Org2MSP/Writers for evaluation -peer1.org1.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ -peer0.org1.example.com | [250 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | 2018-01-18 01:58:51.902 UTC [policies] CommitProposals -> DEBU 181 In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -peer1.org2.example.com | [2ef 01-18 01:58:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7aaa6edb]send state message COMPLETED -peer1.org1.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMkhzyzkBQMmDIFIj+Dmnud+j7/3h/LM -orderer.example.com | 2018-01-18 01:58:51.902 UTC [policies] GetPolicy -> DEBU 182 Returning policy Org2MSP/Admins for evaluation -peer0.org2.example.com | [3e0 01-18 01:58:59.55 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -orderer.example.com | 2018-01-18 01:58:51.902 UTC [policies] CommitProposals -> DEBU 183 In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -peer0.org1.example.com | [251 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [722e691b]sending state message INIT -peer1.org2.example.com | [2f0 01-18 01:58:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7aaa6edb]Received message COMPLETED from shim -peer1.org1.example.com | sUwFjL4AqbRBEG6vNDX4lF1jwBBt39uJxvOBL2wKymZ0rY/LVNK4vumjTTBLMA4G -peer0.org2.example.com | [3e1 01-18 01:58:59.55 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -orderer.example.com | 2018-01-18 01:58:51.902 UTC [policies] GetPolicy -> DEBU 184 Returning policy Org2MSP/Readers for evaluation -orderer.example.com | 2018-01-18 01:58:51.903 UTC [policies] CommitProposals -> DEBU 185 In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -peer0.org1.example.com | [252 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [722e691b]Received message INIT from shim -peer1.org2.example.com | [2f1 01-18 01:58:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7aaa6edb]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -peer0.org2.example.com | [3e2 01-18 01:58:59.55 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU config transaction received for chain businesschannel -orderer.example.com | 2018-01-18 01:58:51.903 UTC [policies] GetPolicy -> DEBU 186 Returning policy Org1MSP/Writers for evaluation -peer1.org1.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIB1/N1vq -peer0.org1.example.com | [253 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [722e691b]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [3e3 01-18 01:58:59.55 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -orderer.example.com | 2018-01-18 01:58:51.903 UTC [policies] CommitProposals -> DEBU 187 In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -peer1.org1.example.com | NZ8srg0DN/kZsRGGbGxZDd6SUmUSPGopEZ+BAiAFLGQc/nVZ7H9e3TOSPWkj9xXI -peer1.org2.example.com | [2f2 01-18 01:58:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7aaa6edb3353d9d2a0346814a1b2a493b072f147b6a566a2ca8b6bd2dbf02e6e]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [3e4 01-18 01:58:59.55 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Received configuration update, calling CSCC ConfigUpdate -peer0.org1.example.com | [254 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -orderer.example.com | 2018-01-18 01:58:51.903 UTC [policies] GetPolicy -> DEBU 188 Returning policy Org1MSP/Admins for evaluation -peer1.org1.example.com | zBwtXbaE2rpu1wCNZg== -peer1.org2.example.com | [2f3 01-18 01:58:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:7aaa6edb3353d9d2a0346814a1b2a493b072f147b6a566a2ca8b6bd2dbf02e6e -peer0.org1.example.com | [255 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [722e691b]Received INIT, initializing chaincode -orderer.example.com | 2018-01-18 01:58:51.903 UTC [policies] CommitProposals -> DEBU 189 In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -peer1.org1.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [3e5 01-18 01:58:59.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org2.example.com | [2f4 01-18 01:58:53.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [256 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [722e691b]Init get response status: 200 -orderer.example.com | 2018-01-18 01:58:51.904 UTC [policies] GetPolicy -> DEBU 18a Returning policy Readers for evaluation -peer1.org1.example.com | [1df 01-18 01:58:49.74 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'msp/identity' logger enabled for log level 'WARNING' -peer0.org2.example.com | [3e6 01-18 01:58:59.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc42162db00), Data:(*common.BlockData)(0xc42192cdc0), Metadata:(*common.BlockMetadata)(0xc42192ce00)}, doMVCCValidation=true -peer1.org2.example.com | [2f5 01-18 01:58:53.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -orderer.example.com | 2018-01-18 01:58:51.904 UTC [policies] CommitProposals -> DEBU 18b In commit adding relative sub-policy Orderer/Readers to Channel -peer1.org1.example.com | [1e0 01-18 01:58:49.74 UTC] [github.com/hyperledger/fabric/msp/mgmt] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg.validateAliveMsgSignature.Verify.func1.Verify.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [257 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [722e691b]Init succeeded. Sending COMPLETED -orderer.example.com | 2018-01-18 01:58:51.904 UTC [policies] GetPolicy -> DEBU 18c Returning policy Writers for evaluation -peer1.org1.example.com | [1e1 01-18 01:58:49.74 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'msp' logger enabled for log level 'WARNING' -peer0.org2.example.com | [3e7 01-18 01:58:59.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -peer1.org2.example.com | [2f6 01-18 01:58:53.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -orderer.example.com | 2018-01-18 01:58:51.904 UTC [policies] CommitProposals -> DEBU 18d In commit adding relative sub-policy Orderer/Writers to Channel -peer1.org1.example.com | [1e2 01-18 01:58:49.74 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'configvalues/msp' logger enabled for log level 'WARNING' -peer0.org1.example.com | [258 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [722e691b]Move state message COMPLETED -peer1.org2.example.com | [2f7 01-18 01:58:53.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -orderer.example.com | 2018-01-18 01:58:51.904 UTC [policies] GetPolicy -> DEBU 18e Returning policy Admins for evaluation -peer1.org1.example.com | [1e3 01-18 01:58:49.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRAP//zqWKYzSHLW7GfxKsMZYwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABMkhzyzkBQMmDIFIj+Dmnud+j7/3h/LM\nsUwFjL4AqbRBEG6vNDX4lF1jwBBt39uJxvOBL2wKymZ0rY/LVNK4vumjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIB1/N1vq\nNZ8srg0DN/kZsRGGbGxZDd6SUmUSPGopEZ+BAiAFLGQc/nVZ7H9e3TOSPWkj9xXI\nzBwtXbaE2rpu1wCNZg==\n-----END -----\n" > , Envelope: 867 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org2.example.com | [3e8 01-18 01:58:59.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [2] Transaction index [0] because, the transaction type is [CONFIG] -peer1.org2.example.com | [2f8 01-18 01:58:59.15 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -orderer.example.com | 2018-01-18 01:58:51.904 UTC [policies] CommitProposals -> DEBU 18f In commit adding relative sub-policy Orderer/Admins to Channel -peer1.org1.example.com | [1e4 01-18 01:58:49.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [3e9 01-18 01:58:59.57 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0x5b, 0x7c, 0x4e, 0xf2, 0x74, 0xb6, 0x7f, 0xc2, 0x96, 0x1b, 0xb2, 0x5a, 0xd4, 0x86, 0x64, 0x1e, 0xc, 0x21, 0xb0, 0xdd, 0x91, 0xb8, 0xb5, 0x9d, 0x7f, 0x79, 0xeb, 0xbd, 0x3a, 0x97, 0xb8, 0xa1} txOffsets= -peer0.org1.example.com | [259 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [722e691b]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [2f9 01-18 01:58:59.15 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -orderer.example.com | 2018-01-18 01:58:51.904 UTC [policies] GetPolicy -> DEBU 190 Returning policy BlockValidation for evaluation -peer1.org1.example.com | [1e5 01-18 01:58:49.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGTCCAcCgAwIBAgIRALw0jT/FIanMxPg6w2uUMSowCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABKqfdWF/oY+2ymqjk+AlBN+RBThxPp/k\nlU+BhmGArpnlGNd7iT6pil/iSDtfA5xZ9we5NIfTehFqmZcI6g1N172jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIALSJqGc\nvdZHCJ0RecVQ2Rdtkdnok57p68XFlRBy2l4xAiAJS6Z2yxyElBubPI0MBn//Xs9l\n05n0MbLw/Ug3egJ3JA==\n-----END -----\n" > , Envelope: 867 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -orderer.example.com | 2018-01-18 01:58:51.904 UTC [policies] CommitProposals -> DEBU 191 In commit adding relative sub-policy Orderer/BlockValidation to Channel -peer0.org1.example.com | [25a 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [722e691b]send state message COMPLETED -peer1.org2.example.com | [2fa 01-18 01:58:59.15 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -peer0.org2.example.com | txId= locPointer=offset=70, bytesLength=11970 -peer1.org1.example.com | [1e6 01-18 01:58:49.75 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/service' logger enabled for log level 'WARNING' -orderer.example.com | 2018-01-18 01:58:51.904 UTC [policies] GetPolicy -> DEBU 192 Returning policy OrdererOrg/Writers for evaluation -orderer.example.com | 2018-01-18 01:58:51.905 UTC [policies] CommitProposals -> DEBU 193 In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -peer0.org2.example.com | ] -peer1.org1.example.com | [1e7 01-18 01:58:49.75 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/gossip' logger enabled for log level 'WARNING' -peer0.org1.example.com | [25b 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [722e691b]Received message COMPLETED from shim -peer1.org2.example.com | [2fb 01-18 01:58:59.15 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc42197c660 -orderer.example.com | 2018-01-18 01:58:51.905 UTC [policies] GetPolicy -> DEBU 194 Returning policy OrdererOrg/Admins for evaluation -peer1.org1.example.com | [1e8 01-18 01:58:49.75 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/comm' logger enabled for log level 'WARNING' -peer1.org2.example.com | [2fc 01-18 01:58:59.15 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\335\376\377\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030\262UG\022W~\350\r\312y3\226w\332\373\025\335\225\376z\200n&\340" -peer0.org2.example.com | [3ea 01-18 01:58:59.57 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=25738, bytesLength=11970] for tx ID: [] to index -orderer.example.com | 2018-01-18 01:58:51.905 UTC [policies] CommitProposals -> DEBU 195 In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -peer1.org1.example.com | [1e9 01-18 01:58:49.75 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/state' logger enabled for log level 'WARNING' -peer0.org1.example.com | [25c 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [722e691b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [2fd 01-18 01:58:59.15 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer1.org1.example.com | [1ea 01-18 01:58:49.75 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/election' logger enabled for log level 'WARNING' -orderer.example.com | 2018-01-18 01:58:51.905 UTC [policies] GetPolicy -> DEBU 196 Returning policy OrdererOrg/Readers for evaluation -peer0.org2.example.com | [3eb 01-18 01:58:59.57 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=25738, bytesLength=11970] for tx number:[0] ID: [] to blockNumTranNum index -peer1.org2.example.com | [2fe 01-18 01:58:59.15 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [25d 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [722e691b-fdd9-4e1a-b7d1-86ccce182f8c]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [1eb 01-18 01:58:49.75 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'peer/gossip/sa' logger enabled for log level 'WARNING' -peer0.org2.example.com | [3ec 01-18 01:58:59.57 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[39459], isChainEmpty=[false], lastBlockNumber=[2] -peer0.org2.example.com | [3ed 01-18 01:58:59.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [2] with 1 transaction(s) -peer1.org2.example.com | [2ff 01-18 01:58:59.15 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 685c3e542c5c7e71cc8ac51ff9728a4a798d38a5cb22c31b73b7dddaa87ffa02} -peer0.org2.example.com | [3ee 01-18 01:58:59.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -orderer.example.com | 2018-01-18 01:58:51.905 UTC [policies] CommitProposals -> DEBU 197 In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -peer1.org1.example.com | [1ec 01-18 01:58:49.75 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/pull' logger enabled for log level 'WARNING' -peer0.org1.example.com | [25e 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:722e691b-fdd9-4e1a-b7d1-86ccce182f8c -orderer.example.com | 2018-01-18 01:58:51.905 UTC [policies] GetPolicy -> DEBU 198 Returning dummy reject all policy because Readers could not be found in /Application/Readers -peer1.org2.example.com | [300 01-18 01:58:59.16 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org2.example.com | [3ef 01-18 01:58:59.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -peer1.org1.example.com | [1ed 01-18 01:58:49.75 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'peer/gossip/mcs' logger enabled for log level 'WARNING' -peer0.org1.example.com | [25f 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [301 01-18 01:58:59.16 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | 2018-01-18 01:58:51.905 UTC [policies] GetPolicy -> DEBU 199 Returning policy Readers for evaluation -peer0.org2.example.com | [3f0 01-18 01:58:59.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -peer1.org1.example.com | [1ee 01-18 01:58:49.75 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/discovery' logger enabled for log level 'WARNING' -peer0.org1.example.com | [260 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed -orderer.example.com | 2018-01-18 01:58:51.906 UTC [policies] GetPolicy -> DEBU 19a Returning dummy reject all policy because Writers could not be found in /Application/Writers -peer0.org1.example.com | [261 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [6a126f0a-eca2-4f59-8039-364e40e40984] -peer1.org2.example.com | [302 01-18 01:58:59.16 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc4215fc000, header channel_header:"\010\001\032\006\010\335\376\377\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030\262UG\022W~\350\r\312y3\226w\332\373\025\335\225\376z\200n&\340" -peer1.org1.example.com | [1ef 01-18 01:58:49.75 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'ledgermgmt' logger enabled for log level 'INFO' -peer0.org2.example.com | [3f1 01-18 01:58:59.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [2] with [1] transactions -orderer.example.com | 2018-01-18 01:58:51.906 UTC [policies] GetPolicy -> DEBU 19b Returning policy Writers for evaluation -peer0.org1.example.com | [262 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org2.example.com | [303 01-18 01:58:59.16 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -peer0.org2.example.com | [3f2 01-18 01:58:59.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -peer0.org1.example.com | [263 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [38520231-1dbe-4a5a-955d-f85c9426f01d] -peer1.org1.example.com | [1f0 01-18 01:58:49.75 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'kvledger' logger enabled for log level 'INFO' -peer1.org2.example.com | [304 01-18 01:58:59.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -orderer.example.com | 2018-01-18 01:58:51.906 UTC [policies] GetPolicy -> DEBU 19c Returning policy Admins for evaluation -peer0.org1.example.com | [264 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=1222de68-b8a8-42e1-a6a1-2f9173d7f65a,syscc=true,proposal=0x0,canname=escc:1.0.2 -peer0.org2.example.com | [3f3 01-18 01:58:59.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [2] -peer1.org1.example.com | [1f1 01-18 01:58:49.75 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'kvledger.util' logger enabled for log level 'INFO' -peer0.org1.example.com | [265 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 -peer0.org2.example.com | [3f4 01-18 01:58:59.57 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -orderer.example.com | 2018-01-18 01:58:51.906 UTC [policies] GetPolicy -> DEBU 19d Returning dummy reject all policy because Admins could not be found in /Application/Admins -peer1.org2.example.com | [305 01-18 01:58:59.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -peer0.org1.example.com | [266 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [3f5 01-18 01:58:59.57 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [2] -orderer.example.com | 2018-01-18 01:58:51.906 UTC [common/configtx] addToMap -> DEBU 19e Adding to config map: [Groups] /Channel -peer1.org1.example.com | [1f2 01-18 01:58:49.75 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'cauthdsl' logger enabled for log level 'WARNING' -peer0.org1.example.com | [267 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 -peer0.org2.example.com | [3f6 01-18 01:58:59.57 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -peer1.org2.example.com | [306 01-18 01:58:59.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -peer1.org2.example.com | [307 01-18 01:58:59.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -orderer.example.com | 2018-01-18 01:58:51.906 UTC [common/configtx] addToMap -> DEBU 19f Adding to config map: [Groups] /Channel/Application -orderer.example.com | 2018-01-18 01:58:51.906 UTC [common/configtx] addToMap -> DEBU 1a0 Adding to config map: [Groups] /Channel/Application/Org2MSP -peer1.org1.example.com | [1f3 01-18 01:58:49.75 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'policies' logger enabled for log level 'WARNING' -peer0.org1.example.com | [268 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [1222de68]Inside sendExecuteMessage. Message INIT -peer1.org2.example.com | [308 01-18 01:58:59.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer0.org2.example.com | [3f7 01-18 01:58:59.57 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -orderer.example.com | 2018-01-18 01:58:51.907 UTC [common/configtx] addToMap -> DEBU 1a1 Adding to config map: [Groups] /Channel/Application/Org1MSP -peer1.org1.example.com | [1f4 01-18 01:58:49.75 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'grpc' logger enabled for log level 'ERROR' -peer0.org1.example.com | [269 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [309 01-18 01:58:59.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer0.org2.example.com | [3f8 01-18 01:58:59.57 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer0.org1.example.com | [26a 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [1222de68]sendExecuteMsg trigger event INIT -peer1.org1.example.com | [1f5 01-18 01:58:52.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -orderer.example.com | 2018-01-18 01:58:51.907 UTC [common/configtx] addToMap -> DEBU 1a2 Adding to config map: [Values] /Channel/Consortium -peer1.org2.example.com | [30a 01-18 01:58:59.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer0.org1.example.com | [26b 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1222de68]Move state message INIT -peer0.org2.example.com | [3f9 01-18 01:58:59.57 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -peer1.org2.example.com | [30b 01-18 01:58:59.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -peer0.org1.example.com | [26c 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1222de68]Fabric side Handling ChaincodeMessage of type: INIT in state ready -orderer.example.com | 2018-01-18 01:58:51.907 UTC [common/configtx] addToMap -> DEBU 1a3 Adding to config map: [Groups] /Channel -peer1.org2.example.com | [30c 01-18 01:58:59.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -peer1.org1.example.com | [1f6 01-18 01:58:52.76 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421739410 -peer0.org1.example.com | [26d 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [3fa 01-18 01:58:59.57 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -peer1.org2.example.com | [30d 01-18 01:58:59.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -peer1.org2.example.com | [30e 01-18 01:58:59.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -peer0.org2.example.com | [3fb 01-18 01:59:00.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -peer0.org1.example.com | [26e 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1222de68]sending state message INIT -peer1.org2.example.com | [30f 01-18 01:58:59.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer1.org1.example.com | [1f7 01-18 01:58:52.76 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer0.org1.example.com | [26f 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1222de68]Received message INIT from shim -peer0.org2.example.com | [3fc 01-18 01:59:00.28 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421988480 -peer1.org2.example.com | [310 01-18 01:58:59.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer1.org2.example.com | [311 01-18 01:58:59.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer1.org2.example.com | [312 01-18 01:58:59.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer1.org2.example.com | [313 01-18 01:58:59.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer1.org2.example.com | [314 01-18 01:58:59.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -peer1.org2.example.com | [315 01-18 01:58:59.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -peer1.org2.example.com | [316 01-18 01:58:59.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -peer1.org2.example.com | [317 01-18 01:58:59.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer1.org2.example.com | [318 01-18 01:58:59.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer1.org2.example.com | [319 01-18 01:58:59.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer1.org2.example.com | [31a 01-18 01:58:59.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -peer1.org2.example.com | [31b 01-18 01:58:59.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -peer1.org2.example.com | [31c 01-18 01:58:59.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer1.org1.example.com | [1f8 01-18 01:58:52.76 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org1.example.com | [1f9 01-18 01:58:52.76 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -peer1.org2.example.com | [31d 01-18 01:58:59.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | 2018-01-18 01:58:51.907 UTC [common/configtx] addToMap -> DEBU 1a4 Adding to config map: [Groups] /Channel/Application -peer0.org2.example.com | [3fd 01-18 01:59:00.28 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org1.example.com | [270 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1222de68]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org1.example.com | [1fa 01-18 01:58:52.76 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org2.example.com | [31e 01-18 01:58:59.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org1.example.com | [271 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org2.example.com | [3fe 01-18 01:59:00.28 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [272 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [1222de68]Received INIT, initializing chaincode -peer1.org1.example.com | [1fb 01-18 01:58:52.76 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org2.example.com | [3ff 01-18 01:59:00.28 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} -peer0.org1.example.com | [273 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC -orderer.example.com | 2018-01-18 01:58:51.907 UTC [common/configtx] addToMap -> DEBU 1a5 Adding to config map: [Groups] /Channel/Application/Org1MSP -peer1.org2.example.com | [31f 01-18 01:58:59.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer0.org1.example.com | [274 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1222de68]Init get response status: 200 -peer1.org1.example.com | [1fc 01-18 01:58:52.76 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421725590, header 0xc4217394a0 -peer0.org2.example.com | [400 01-18 01:59:00.29 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [275 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1222de68]Init succeeded. Sending COMPLETED -peer1.org1.example.com | [1fd 01-18 01:58:52.76 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"cscc" -peer1.org2.example.com | [320 01-18 01:58:59.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer0.org1.example.com | [276 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1222de68]Move state message COMPLETED -peer0.org1.example.com | [277 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1222de68]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [278 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1222de68]send state message COMPLETED -peer0.org2.example.com | [401 01-18 01:59:00.29 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org2.example.com | [402 01-18 01:59:00.29 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4216a2460, header 0xc4219885a0 -orderer.example.com | 2018-01-18 01:58:51.908 UTC [common/configtx] addToMap -> DEBU 1a6 Adding to config map: [Groups] /Channel/Application/Org2MSP -peer0.org1.example.com | [279 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1222de68]Received message COMPLETED from shim -peer1.org1.example.com | [1fe 01-18 01:58:52.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: f465824ae5b724e1992c1beba2f0e94e2c6daad4e2840f16cb57fa01806b06f4 -peer1.org2.example.com | [321 01-18 01:58:59.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer0.org2.example.com | [403 01-18 01:59:00.29 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -orderer.example.com | 2018-01-18 01:58:51.908 UTC [common/configtx] addToMap -> DEBU 1a7 Adding to config map: [Policy] /Channel/Application/Admins -peer1.org1.example.com | [1ff 01-18 01:58:52.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: f465824ae5b724e1992c1beba2f0e94e2c6daad4e2840f16cb57fa01806b06f4 channel id: -peer0.org1.example.com | [27a 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1222de68]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [322 01-18 01:58:59.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -peer0.org2.example.com | [404 01-18 01:59:00.29 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: bf52c51dbba5521b4e294c9b191790efd00718b64bea4da592439edae2eb169f -peer1.org1.example.com | [200 01-18 01:58:52.76 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: f465824ae5b724e1992c1beba2f0e94e2c6daad4e2840f16cb57fa01806b06f4 channel id: version: 1.0.2 -orderer.example.com | 2018-01-18 01:58:51.908 UTC [common/configtx] addToMap -> DEBU 1a8 Adding to config map: [Policy] /Channel/Application/Writers -peer0.org1.example.com | [27b 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1222de68-b8a8-42e1-a6a1-2f9173d7f65a]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [323 01-18 01:58:59.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -peer0.org2.example.com | [405 01-18 01:59:00.29 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: bf52c51dbba5521b4e294c9b191790efd00718b64bea4da592439edae2eb169f channel id: -orderer.example.com | 2018-01-18 01:58:51.908 UTC [common/configtx] addToMap -> DEBU 1a9 Adding to config map: [Policy] /Channel/Application/Readers -peer1.org1.example.com | [201 01-18 01:58:52.76 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.0.2,txid=f465824ae5b724e1992c1beba2f0e94e2c6daad4e2840f16cb57fa01806b06f4,syscc=true,proposal=0xc421725590,canname=cscc:1.0.2 -peer0.org1.example.com | [27c 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:1222de68-b8a8-42e1-a6a1-2f9173d7f65a -peer1.org2.example.com | [324 01-18 01:58:59.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -peer0.org2.example.com | [406 01-18 01:59:00.29 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: bf52c51dbba5521b4e294c9b191790efd00718b64bea4da592439edae2eb169f channel id: version: 1.0.2 -orderer.example.com | 2018-01-18 01:58:51.908 UTC [common/configtx] addToMap -> DEBU 1aa Adding to config map: [Values] /Channel/Consortium -peer0.org1.example.com | [27d 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [202 01-18 01:58:52.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.0.2 -peer1.org2.example.com | [325 01-18 01:58:59.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -peer0.org2.example.com | [407 01-18 01:59:00.29 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.0.2,txid=bf52c51dbba5521b4e294c9b191790efd00718b64bea4da592439edae2eb169f,syscc=true,proposal=0xc4216a2460,canname=lscc:1.0.2 -orderer.example.com | 2018-01-18 01:58:51.908 UTC [policies] GetPolicy -> DEBU 1ab Returning policy ChannelCreationPolicy for evaluation -peer0.org1.example.com | [27e 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode escc/businesschannel(github.com/hyperledger/fabric/core/scc/escc) deployed -peer1.org2.example.com | [326 01-18 01:58:59.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer0.org2.example.com | [408 01-18 01:59:00.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 -peer1.org2.example.com | [327 01-18 01:58:59.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer0.org1.example.com | [27f 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [38520231-1dbe-4a5a-955d-f85c9426f01d] -peer1.org1.example.com | [203 01-18 01:58:52.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | 2018-01-18 01:58:51.908 UTC [cauthdsl] func1 -> DEBU 1ac 0xc42014a9a8 gate 1516240731908840727 evaluation starts -peer0.org2.example.com | [409 01-18 01:59:00.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [328 01-18 01:58:59.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer0.org1.example.com | [280 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | 2018-01-18 01:58:51.908 UTC [cauthdsl] func2 -> DEBU 1ad 0xc42014a9a8 signed by 0 principal evaluation starts (used [false]) -peer1.org1.example.com | [204 01-18 01:58:52.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.2 -peer0.org2.example.com | [40a 01-18 01:59:00.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -peer1.org2.example.com | [329 01-18 01:58:59.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer1.org1.example.com | [205 01-18 01:58:52.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f465824a]Inside sendExecuteMessage. Message TRANSACTION -peer0.org2.example.com | [40b 01-18 01:59:00.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [bf52c51d]Inside sendExecuteMessage. Message TRANSACTION -peer1.org2.example.com | [32a 01-18 01:58:59.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -orderer.example.com | 2018-01-18 01:58:51.909 UTC [cauthdsl] func2 -> DEBU 1ae 0xc42014a9a8 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a -peer0.org1.example.com | [281 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [1b7167ca-3b4e-4df0-8c4d-bbefcb25f31c] -peer1.org2.example.com | [32b 01-18 01:58:59.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -peer0.org2.example.com | [40c 01-18 01:59:00.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [206 01-18 01:58:52.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | 2018-01-18 01:58:51.909 UTC [msp/identity] newIdentity -> DEBU 1af Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [282 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=0692cc16-7dc0-4d66-8e77-393d6290c2d0,syscc=true,proposal=0x0,canname=vscc:1.0.2 -peer1.org2.example.com | [32c 01-18 01:58:59.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -peer1.org1.example.com | [207 01-18 01:58:52.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org2.example.com | [40d 01-18 01:59:00.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -peer1.org2.example.com | [32d 01-18 01:58:59.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org1.example.com | [283 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 -peer1.org1.example.com | [208 01-18 01:58:52.76 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f465824a]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org2.example.com | [40e 01-18 01:59:00.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [bf52c51d]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [32e 01-18 01:58:59.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org1.example.com | [284 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [40f 01-18 01:59:00.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bf52c51d]Move state message TRANSACTION -peer1.org1.example.com | [209 01-18 01:58:52.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f465824a]Move state message TRANSACTION -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [285 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 -peer1.org2.example.com | [32f 01-18 01:58:59.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org2.example.com | [410 01-18 01:59:00.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bf52c51d]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org1.example.com | [20a 01-18 01:58:52.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f465824a]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -peer1.org2.example.com | [330 01-18 01:58:59.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer0.org1.example.com | [286 01-18 01:58:52.64 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [0692cc16]Inside sendExecuteMessage. Message INIT -peer0.org2.example.com | [411 01-18 01:59:00.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org2.example.com | [331 01-18 01:58:59.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer0.org1.example.com | [287 01-18 01:58:52.64 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [20b 01-18 01:58:52.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer0.org2.example.com | [412 01-18 01:59:00.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bf52c51d]sending state message TRANSACTION -peer1.org2.example.com | [332 01-18 01:58:59.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -peer0.org1.example.com | [288 01-18 01:58:52.64 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [0692cc16]sendExecuteMsg trigger event INIT -peer1.org1.example.com | [20c 01-18 01:58:52.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f465824a]sending state message TRANSACTION -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -peer0.org2.example.com | [413 01-18 01:59:00.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bf52c51d]Received message TRANSACTION from shim -peer1.org2.example.com | [333 01-18 01:58:59.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -peer0.org1.example.com | [289 01-18 01:58:52.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0692cc16]Move state message INIT -peer1.org1.example.com | [20d 01-18 01:58:52.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f465824a]Received message TRANSACTION from shim -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -peer0.org2.example.com | [414 01-18 01:59:00.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bf52c51d]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org1.example.com | [20e 01-18 01:58:52.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f465824a]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org2.example.com | [334 01-18 01:58:59.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -peer0.org2.example.com | [415 01-18 01:59:00.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [bf52c51d]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -peer0.org1.example.com | [28a 01-18 01:58:52.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0692cc16]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org1.example.com | [20f 01-18 01:58:52.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [f465824a]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org2.example.com | [416 01-18 01:59:00.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bf52c51d]Transaction completed. Sending COMPLETED -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -peer1.org2.example.com | [335 01-18 01:58:59.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer1.org1.example.com | [210 01-18 01:58:52.76 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain -peer0.org1.example.com | [28b 01-18 01:58:52.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [417 01-18 01:59:00.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bf52c51d]Move state message COMPLETED -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -peer1.org1.example.com | [211 01-18 01:58:52.76 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block -peer1.org2.example.com | [336 01-18 01:58:59.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org2.example.com | [418 01-18 01:59:00.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bf52c51d]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [28c 01-18 01:58:52.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0692cc16]sending state message INIT -peer1.org1.example.com | [212 01-18 01:58:52.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel -orderer.example.com | xHTBvxfK6mAzmUitFmY= -peer1.org2.example.com | [337 01-18 01:58:59.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org2.example.com | [419 01-18 01:59:00.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bf52c51d]send state message COMPLETED -peer0.org1.example.com | [28d 01-18 01:58:52.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0692cc16]Received message INIT from shim -orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [213 01-18 01:58:52.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncCPInfoFromFS -> DEBU Starting checkpoint=latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0] -peer0.org2.example.com | [41a 01-18 01:59:00.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bf52c51d]Received message COMPLETED from shim -peer1.org2.example.com | [338 01-18 01:58:59.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -peer0.org1.example.com | [28e 01-18 01:58:52.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0692cc16]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org1.example.com | [214 01-18 01:58:52.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncCPInfoFromFS -> DEBU status of file [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/blockfile_000000]: exists=[false], size=[0] -orderer.example.com | 2018-01-18 01:58:51.910 UTC [cauthdsl] func2 -> DEBU 1b0 0xc42014a9a8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -peer0.org1.example.com | [28f 01-18 01:58:52.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org2.example.com | [339 01-18 01:58:59.20 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -peer0.org2.example.com | [41b 01-18 01:59:00.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bf52c51d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [215 01-18 01:58:52.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockHash BlockNum TxID BlockNumTranNum BlockTxID TxValidationCode]] -orderer.example.com | 2018-01-18 01:58:51.910 UTC [cauthdsl] func2 -> DEBU 1b1 0xc42014a9a8 principal evaluation fails -peer1.org2.example.com | [33a 01-18 01:58:59.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -peer0.org1.example.com | [290 01-18 01:58:52.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [0692cc16]Received INIT, initializing chaincode -peer0.org2.example.com | [41c 01-18 01:59:00.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bf52c51dbba5521b4e294c9b191790efd00718b64bea4da592439edae2eb169f]HandleMessage- COMPLETED. Notify -orderer.example.com | 2018-01-18 01:58:51.910 UTC [cauthdsl] func1 -> DEBU 1b2 0xc42014a9a8 gate 1516240731908840727 evaluation fails -peer1.org1.example.com | [216 01-18 01:58:52.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/ledgersData/chains/chains/businesschannel/blockfile_000000], startOffset=[0] -peer0.org1.example.com | [291 01-18 01:58:52.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0692cc16]Init get response status: 200 -peer1.org2.example.com | [33b 01-18 01:58:59.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [41d 01-18 01:59:00.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:bf52c51dbba5521b4e294c9b191790efd00718b64bea4da592439edae2eb169f -peer1.org1.example.com | [217 01-18 01:58:52.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Finished reading file number [0] -orderer.example.com | 2018-01-18 01:58:51.910 UTC [cauthdsl] func1 -> DEBU 1b3 0xc42014a9b8 gate 1516240731910963265 evaluation starts -peer0.org1.example.com | [292 01-18 01:58:52.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0692cc16]Init succeeded. Sending COMPLETED -peer1.org2.example.com | [33c 01-18 01:58:59.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [218 01-18 01:58:52.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [0] read from file [0] -peer0.org2.example.com | [41e 01-18 01:59:00.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [293 01-18 01:58:52.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0692cc16]Move state message COMPLETED -orderer.example.com | 2018-01-18 01:58:51.911 UTC [cauthdsl] func2 -> DEBU 1b4 0xc42014a9b8 signed by 0 principal evaluation starts (used [false]) -peer0.org2.example.com | [41f 01-18 01:59:00.29 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer1.org2.example.com | [33d 01-18 01:58:59.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [219 01-18 01:58:52.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer0.org2.example.com | [420 01-18 01:59:00.29 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -peer1.org2.example.com | [33e 01-18 01:58:59.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [294 01-18 01:58:52.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0692cc16]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [421 01-18 01:59:00.29 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -orderer.example.com | 2018-01-18 01:58:51.911 UTC [cauthdsl] func2 -> DEBU 1b5 0xc42014a9b8 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a -peer1.org1.example.com | [21a 01-18 01:58:52.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc4217e6380), Data:(*common.BlockData)(0xc4217fc760), Metadata:(*common.BlockMetadata)(0xc4217fc7a0)}, doMVCCValidation=true -peer1.org1.example.com | [21b 01-18 01:58:52.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -peer1.org2.example.com | [33f 01-18 01:58:59.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:51.911 UTC [msp/identity] newIdentity -> DEBU 1b6 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [295 01-18 01:58:52.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0692cc16]send state message COMPLETED -peer0.org2.example.com | [422 01-18 01:59:25.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -peer1.org1.example.com | [21c 01-18 01:58:52.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [0] Transaction index [0] because, the transaction type is [CONFIG] -peer1.org2.example.com | [340 01-18 01:58:59.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [423 01-18 01:59:25.91 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421e73740 -peer0.org1.example.com | [296 01-18 01:58:52.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0692cc16]Received message COMPLETED from shim -peer0.org2.example.com | [424 01-18 01:59:25.91 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org1.example.com | [21d 01-18 01:58:52.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0xe1, 0x44, 0x7d, 0x23, 0xdf, 0xa2, 0x20, 0x82, 0xd4, 0xe4, 0x74, 0x4d, 0x77, 0xfd, 0x41, 0x93, 0xb7, 0xdb, 0xc6, 0xb0, 0x34, 0x30, 0xc2, 0xa7, 0xc6, 0x50, 0xfb, 0x2b, 0x1c, 0x26, 0xcf, 0x43} txOffsets= -peer0.org2.example.com | [425 01-18 01:59:25.91 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org2.example.com | [341 01-18 01:58:59.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [297 01-18 01:58:52.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0692cc16]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [426 01-18 01:59:25.91 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} -peer1.org1.example.com | txId= locPointer=offset=38, bytesLength=11891 -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org2.example.com | [427 01-18 01:59:25.91 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org2.example.com | [342 01-18 01:58:59.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [298 01-18 01:58:52.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0692cc16-7dc0-4d66-8e77-393d6290c2d0]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [428 01-18 01:59:25.91 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org2.example.com | [343 01-18 01:58:59.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org1.example.com | ] -peer0.org2.example.com | [429 01-18 01:59:25.91 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4215025a0, header 0xc421e73770 -peer0.org1.example.com | [299 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:0692cc16-7dc0-4d66-8e77-393d6290c2d0 -peer1.org2.example.com | [344 01-18 01:58:59.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -peer0.org2.example.com | [42a 01-18 01:59:25.91 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -peer1.org1.example.com | [21e 01-18 01:58:52.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=11891] for tx ID: [] to index -peer0.org2.example.com | [42b 01-18 01:59:25.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 544f379dda618ff2c82301cddc728a5ab3076d114052fb463df7e9d6c1ede6fd -peer0.org1.example.com | [29a 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [345 01-18 01:58:59.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [21f 01-18 01:58:52.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=11891] for tx number:[0] ID: [] to blockNumTranNum index -peer0.org2.example.com | [42c 01-18 01:59:25.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [544f379dda618ff2c82301cddc728a5ab3076d114052fb463df7e9d6c1ede6fd] -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org2.example.com | [346 01-18 01:58:59.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [29b 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/businesschannel(github.com/hyperledger/fabric/core/scc/vscc) deployed -peer0.org2.example.com | [42d 01-18 01:59:25.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org1.example.com | [220 01-18 01:58:52.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[11935], isChainEmpty=[false], lastBlockNumber=[0] -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer0.org1.example.com | [29c 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [1b7167ca-3b4e-4df0-8c4d-bbefcb25f31c] -peer0.org2.example.com | [42e 01-18 01:59:25.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [0de935a9-6363-4ec1-881e-3d54374844ac] -peer1.org2.example.com | [347 01-18 01:58:59.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [221 01-18 01:58:52.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit -> INFO Channel [businesschannel]: Created block [0] with 1 transaction(s) -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -peer0.org2.example.com | [42f 01-18 01:59:25.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 544f379dda618ff2c82301cddc728a5ab3076d114052fb463df7e9d6c1ede6fd channel id: businesschannel -peer0.org2.example.com | [430 01-18 01:59:25.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 544f379dda618ff2c82301cddc728a5ab3076d114052fb463df7e9d6c1ede6fd channel id: businesschannel version: 1.0.2 -peer0.org2.example.com | [431 01-18 01:59:25.92 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=544f379dda618ff2c82301cddc728a5ab3076d114052fb463df7e9d6c1ede6fd,syscc=true,proposal=0xc4215025a0,canname=lscc:1.0.2 -peer0.org2.example.com | [432 01-18 01:59:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 -peer0.org1.example.com | [29d 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org1.example.com | [222 01-18 01:58:52.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Committing updates to state database -peer1.org2.example.com | [348 01-18 01:58:59.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [433 01-18 01:59:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -peer1.org1.example.com | [223 01-18 01:58:52.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org1.example.com | [29e 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [375c6fdd-9af8-4cf0-9b96-7fd92a04e3c0] -peer1.org2.example.com | [349 01-18 01:58:59.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [434 01-18 01:59:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -peer0.org1.example.com | [29f 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.0.2,txid=7111ed7e-fa87-4d4b-afe5-4b875d04b98a,syscc=true,proposal=0x0,canname=qscc:1.0.2 -peer1.org1.example.com | [224 01-18 01:58:52.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Updates committed to state database -peer0.org2.example.com | [435 01-18 01:59:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [544f379d]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -peer1.org2.example.com | [34a 01-18 01:58:59.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [225 01-18 01:58:52.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [0] with [1] transactions -peer0.org1.example.com | [2a0 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.0.2 -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -peer0.org2.example.com | [436 01-18 01:59:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [226 01-18 01:58:52.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -peer1.org2.example.com | [34b 01-18 01:58:59.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel -orderer.example.com | xHTBvxfK6mAzmUitFmY= -peer0.org1.example.com | [2a1 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [437 01-18 01:59:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org1.example.com | [227 01-18 01:58:52.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [0] -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [2a2 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.2 -peer1.org2.example.com | [34c 01-18 01:58:59.23 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -peer0.org1.example.com | [2a3 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [7111ed7e]Inside sendExecuteMessage. Message INIT -peer1.org1.example.com | [228 01-18 01:58:52.78 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block -orderer.example.com | 2018-01-18 01:58:51.912 UTC [msp] SatisfiesPrincipal -> DEBU 1b7 Checking if identity satisfies ADMIN role for Org1MSP -peer0.org2.example.com | [438 01-18 01:59:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [544f379d]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [34d 01-18 01:58:59.23 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org1.example.com | [2a4 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | 2018-01-18 01:58:51.912 UTC [cauthdsl] func2 -> DEBU 1b8 0xc42014a9b8 principal matched by identity 0 -peer1.org1.example.com | [229 01-18 01:58:52.78 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -peer1.org2.example.com | [34e 01-18 01:58:59.23 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer0.org1.example.com | [2a5 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [7111ed7e]sendExecuteMsg trigger event INIT -peer0.org2.example.com | [439 01-18 01:59:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [544f379d]Move state message TRANSACTION -peer0.org2.example.com | [43a 01-18 01:59:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [544f379d]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org2.example.com | [43b 01-18 01:59:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | 2018-01-18 01:58:51.912 UTC [msp/identity] Verify -> DEBU 1b9 Verify: digest = 00000000 0a a0 5d 09 26 8b 7a 10 a3 b6 c2 9d af ba c9 56 |..].&.z........V| -peer1.org1.example.com | [22a 01-18 01:58:52.78 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org1.example.com | [2a6 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7111ed7e]Move state message INIT -peer0.org2.example.com | [43c 01-18 01:59:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [544f379d]sending state message TRANSACTION -peer0.org1.example.com | [2a7 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7111ed7e]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org2.example.com | [34f 01-18 01:58:59.23 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org1.example.com | [22b 01-18 01:58:52.78 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer0.org1.example.com | [2a8 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | 00000010 5f cb 22 5a 66 84 57 14 0b e8 1a 28 36 06 e9 3e |_."Zf.W....(6..>| -peer0.org2.example.com | [43d 01-18 01:59:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [544f379d]Received message TRANSACTION from shim -peer1.org1.example.com | [22c 01-18 01:58:52.78 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org2.example.com | [350 01-18 01:58:59.23 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org1.example.com | [2a9 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7111ed7e]sending state message INIT -orderer.example.com | 2018-01-18 01:58:51.912 UTC [msp/identity] Verify -> DEBU 1ba Verify: sig = 00000000 30 44 02 20 29 07 f5 3b 75 87 a0 a4 66 fd f4 8c |0D. )..;u...f...| -peer1.org1.example.com | [22d 01-18 01:58:52.78 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org2.example.com | [43e 01-18 01:59:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [544f379d]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [2aa 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7111ed7e]Received message INIT from shim -orderer.example.com | 00000010 9d 33 36 f4 39 b7 2e 82 fb 27 b6 27 f8 27 57 50 |.36.9....'.'.'WP| -peer1.org2.example.com | [351 01-18 01:58:59.23 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -peer0.org2.example.com | [43f 01-18 01:59:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [544f379d]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org1.example.com | [22e 01-18 01:58:52.78 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer0.org1.example.com | [2ab 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7111ed7e]Handling ChaincodeMessage of type: INIT(state:ready) -orderer.example.com | 00000020 a2 9f 0c a4 02 20 3e 03 90 56 ce da 45 23 b2 2d |..... >..V..E#.-| -peer0.org2.example.com | [440 01-18 01:59:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [544f379d]Sending GET_STATE -peer1.org1.example.com | [22f 01-18 01:58:52.78 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer1.org2.example.com | [352 01-18 01:58:59.23 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [2ac 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org2.example.com | [441 01-18 01:59:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [544f379d]Received message GET_STATE from shim -peer1.org1.example.com | [230 01-18 01:58:52.78 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | 00000030 85 0f 22 ec 4c 0d 0e f8 31 f9 4d ed fb a4 0e 7e |..".L...1.M....~| -peer0.org2.example.com | [442 01-18 01:59:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [544f379d]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer0.org1.example.com | [2ad 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [7111ed7e]Received INIT, initializing chaincode -peer1.org2.example.com | [353 01-18 01:58:59.23 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [231 01-18 01:58:52.78 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -orderer.example.com | 00000040 2e 30 01 0f 91 31 |.0...1| -peer0.org2.example.com | [443 01-18 01:59:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [544f379d]Received GET_STATE, invoking get state from ledger -peer1.org2.example.com | [354 01-18 01:58:59.23 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer1.org2.example.com | [355 01-18 01:58:59.23 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org1.example.com | [232 01-18 01:58:52.78 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org2.example.com | [444 01-18 01:59:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [2ae 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -orderer.example.com | 2018-01-18 01:58:51.912 UTC [cauthdsl] func2 -> DEBU 1bb 0xc42014a9b8 principal evaluation succeeds for identity 0 -peer1.org1.example.com | [233 01-18 01:58:52.78 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer1.org2.example.com | [356 01-18 01:58:59.23 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org2.example.com | [445 01-18 01:59:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [544f379d] getting state for chaincode lscc, key exp02, channel businesschannel -orderer.example.com | 2018-01-18 01:58:51.912 UTC [cauthdsl] func1 -> DEBU 1bc 0xc42014a9b8 gate 1516240731910963265 evaluation succeeds -peer1.org1.example.com | [234 01-18 01:58:52.78 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org1.example.com | [2af 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7111ed7e]Init get response status: 200 -peer0.org2.example.com | [446 01-18 01:59:25.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -orderer.example.com | 2018-01-18 01:58:51.913 UTC [common/configtx] recurseConfigMap -> DEBU 1bd Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [235 01-18 01:58:52.78 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -peer1.org2.example.com | [357 01-18 01:58:59.23 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [2b0 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7111ed7e]Init succeeded. Sending COMPLETED -peer0.org2.example.com | [447 01-18 01:59:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [544f379d]No state associated with key: exp02. Sending RESPONSE with an empty payload -peer1.org1.example.com | [236 01-18 01:58:52.78 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -orderer.example.com | 2018-01-18 01:58:51.913 UTC [common/configtx] recurseConfigMap -> DEBU 1be Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [358 01-18 01:58:59.23 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org1.example.com | [237 01-18 01:58:52.78 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer0.org1.example.com | [2b1 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7111ed7e]Move state message COMPLETED -peer0.org2.example.com | [448 01-18 01:59:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [544f379d]handleGetState serial send RESPONSE -peer1.org2.example.com | [359 01-18 01:58:59.23 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | 2018-01-18 01:58:51.913 UTC [common/configtx] recurseConfigMap -> DEBU 1bf Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [2b2 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7111ed7e]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [449 01-18 01:59:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [544f379d]Received message RESPONSE from shim -peer1.org1.example.com | [238 01-18 01:58:52.78 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | 2018-01-18 01:58:51.913 UTC [common/configtx] recurseConfigMap -> DEBU 1c0 Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [35a 01-18 01:58:59.23 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer0.org1.example.com | [2b3 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7111ed7e]send state message COMPLETED -peer0.org2.example.com | [44a 01-18 01:59:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [544f379d]Handling ChaincodeMessage of type: RESPONSE(state:ready) -orderer.example.com | 2018-01-18 01:58:51.913 UTC [common/configtx] recurseConfigMap -> DEBU 1c1 Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org2.example.com | [35b 01-18 01:58:59.23 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org1.example.com | [239 01-18 01:58:52.78 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org1.example.com | [2b4 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7111ed7e]Received message COMPLETED from shim -orderer.example.com | 2018-01-18 01:58:51.913 UTC [common/configtx] recurseConfigMap -> DEBU 1c2 Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [44b 01-18 01:59:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [544f379d]before send -peer1.org1.example.com | [23a 01-18 01:58:52.78 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer1.org2.example.com | [35c 01-18 01:58:59.23 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [2b5 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7111ed7e]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | 2018-01-18 01:58:51.914 UTC [common/configtx] recurseConfigMap -> DEBU 1c3 Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [23b 01-18 01:58:52.78 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer1.org2.example.com | [35d 01-18 01:58:59.23 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | 2018-01-18 01:58:51.914 UTC [common/configtx] recurseConfigMap -> DEBU 1c4 Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [44c 01-18 01:59:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [544f379d]after send -peer0.org1.example.com | [2b6 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7111ed7e-fa87-4d4b-afe5-4b875d04b98a]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [23c 01-18 01:58:52.78 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer1.org2.example.com | [35e 01-18 01:58:59.24 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -orderer.example.com | 2018-01-18 01:58:51.914 UTC [common/configtx] recurseConfigMap -> DEBU 1c5 Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [44d 01-18 01:59:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [544f379d]Received RESPONSE, communicated (state:ready) -peer0.org1.example.com | [2b7 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:7111ed7e-fa87-4d4b-afe5-4b875d04b98a -peer1.org1.example.com | [23d 01-18 01:58:52.78 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -peer1.org2.example.com | [35f 01-18 01:58:59.24 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -orderer.example.com | 2018-01-18 01:58:51.914 UTC [common/configtx] recurseConfigMap -> DEBU 1c6 Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [23e 01-18 01:58:52.78 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -peer0.org2.example.com | [44e 01-18 01:59:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [544f379d]GetState received payload RESPONSE -peer0.org1.example.com | [2b8 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -orderer.example.com | 2018-01-18 01:58:51.914 UTC [common/configtx] recurseConfigMap -> DEBU 1c7 Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org2.example.com | [360 01-18 01:58:59.24 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer0.org1.example.com | [2b9 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/chaincode/qscc) deployed -peer1.org1.example.com | [23f 01-18 01:58:52.78 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -peer0.org2.example.com | [44f 01-18 01:59:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.createChaincode.putChaincodeData.PutState.handlePutState -> DEBU [544f379d]Inside putstate -peer1.org2.example.com | [361 01-18 01:58:59.24 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer0.org1.example.com | [2ba 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [375c6fdd-9af8-4cf0-9b96-7fd92a04e3c0] -orderer.example.com | 2018-01-18 01:58:51.914 UTC [common/configtx] recurseConfigMap -> DEBU 1c8 Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org1.example.com | [240 01-18 01:58:52.78 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer1.org2.example.com | [362 01-18 01:58:59.24 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer0.org2.example.com | [450 01-18 01:59:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.createChaincode.putChaincodeData.PutState.handlePutState -> DEBU [544f379d]Sending PUT_STATE -peer0.org1.example.com | [2bb 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Entry -orderer.example.com | 2018-01-18 01:58:51.915 UTC [common/configtx] recurseConfigMap -> DEBU 1c9 Setting policy for key BlockValidation to policy: mod_policy:"Admins" -peer1.org1.example.com | [241 01-18 01:58:52.78 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer1.org2.example.com | [363 01-18 01:58:59.24 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer0.org1.example.com | [2bc 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [0] -peer0.org2.example.com | [451 01-18 01:59:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [544f379d]Received message PUT_STATE from shim -orderer.example.com | 2018-01-18 01:58:51.915 UTC [common/configtx] recurseConfigMap -> DEBU 1ca Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [242 01-18 01:58:52.78 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer1.org1.example.com | [243 01-18 01:58:52.78 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -peer1.org2.example.com | [364 01-18 01:58:59.24 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [2bd 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Entry -peer0.org2.example.com | [452 01-18 01:59:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [544f379d]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -orderer.example.com | 2018-01-18 01:58:51.915 UTC [common/configtx] recurseConfigMap -> DEBU 1cb Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org1.example.com | [244 01-18 01:58:52.78 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -peer1.org2.example.com | [365 01-18 01:58:59.24 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [453 01-18 01:59:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [366 01-18 01:58:59.24 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -peer0.org1.example.com | [2be 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer1.org1.example.com | [245 01-18 01:58:52.78 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -orderer.example.com | 2018-01-18 01:58:51.915 UTC [common/configtx] recurseConfigMap -> DEBU 1cc Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [367 01-18 01:58:59.24 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer1.org1.example.com | [246 01-18 01:58:52.78 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -peer0.org2.example.com | [454 01-18 01:59:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [544f379d]state is ready -peer0.org1.example.com | [2bf 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer1.org2.example.com | [368 01-18 01:58:59.24 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -orderer.example.com | 2018-01-18 01:58:51.915 UTC [common/configtx] recurseConfigMap -> DEBU 1cd Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org2.example.com | [369 01-18 01:58:59.24 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer0.org2.example.com | [455 01-18 01:59:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [544f379d]Completed PUT_STATE. Sending RESPONSE -peer0.org1.example.com | [2c0 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Exit -peer1.org1.example.com | [247 01-18 01:58:52.78 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer1.org2.example.com | [36a 01-18 01:58:59.25 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer0.org1.example.com | [2c1 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Exit -peer0.org2.example.com | [456 01-18 01:59:25.92 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [544f379d]enterBusyState trigger event RESPONSE -orderer.example.com | 2018-01-18 01:58:51.915 UTC [common/configtx] recurseConfigMap -> DEBU 1ce Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org1.example.com | [248 01-18 01:58:52.78 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer1.org2.example.com | [36b 01-18 01:58:59.27 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -peer0.org2.example.com | [457 01-18 01:59:25.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [544f379d]Move state message RESPONSE -peer0.org1.example.com | [2c2 01-18 01:58:52.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9a812e3c]Transaction completed. Sending COMPLETED -peer1.org1.example.com | [249 01-18 01:58:52.78 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer1.org2.example.com | [36c 01-18 01:58:59.29 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer1.org1.example.com | [24a 01-18 01:58:52.78 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer1.org2.example.com | [36d 01-18 01:58:59.29 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -orderer.example.com | 2018-01-18 01:58:51.915 UTC [common/configtx] recurseConfigMap -> DEBU 1cf Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [2c3 01-18 01:58:52.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9a812e3c]Move state message COMPLETED -peer0.org2.example.com | [458 01-18 01:59:25.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [544f379d]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -peer1.org1.example.com | [24b 01-18 01:58:52.78 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -peer1.org2.example.com | [36e 01-18 01:58:59.29 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -orderer.example.com | 2018-01-18 01:58:51.916 UTC [common/configtx] processConfig -> DEBU 1d0 Beginning new config for channel businesschannel -peer0.org1.example.com | [2c4 01-18 01:58:52.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9a812e3c]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [24c 01-18 01:58:52.78 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -peer1.org2.example.com | [36f 01-18 01:58:59.29 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -peer0.org2.example.com | [459 01-18 01:59:25.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [2c5 01-18 01:58:52.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9a812e3c]send state message COMPLETED -orderer.example.com | 2018-01-18 01:58:51.916 UTC [common/config] NewStandardValues -> DEBU 1d1 Initializing protos for *config.ChannelProtos -peer1.org1.example.com | [24d 01-18 01:58:52.78 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -peer0.org2.example.com | [45a 01-18 01:59:25.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [544f379d]sending state message RESPONSE -peer1.org2.example.com | [370 01-18 01:58:59.29 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU config transaction received for chain businesschannel -peer0.org1.example.com | [2c6 01-18 01:58:52.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9a812e3c]Received message COMPLETED from shim -peer1.org1.example.com | [24e 01-18 01:58:52.79 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -peer0.org2.example.com | [45b 01-18 01:59:25.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [544f379d]Received message RESPONSE from shim -orderer.example.com | 2018-01-18 01:58:51.916 UTC [common/config] initializeProtosStruct -> DEBU 1d2 Processing field: HashingAlgorithm -peer1.org2.example.com | [371 01-18 01:58:59.29 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -peer1.org1.example.com | [24f 01-18 01:58:52.79 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer0.org1.example.com | [2c7 01-18 01:58:52.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9a812e3c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [45c 01-18 01:59:25.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [544f379d]Handling ChaincodeMessage of type: RESPONSE(state:ready) -orderer.example.com | 2018-01-18 01:58:51.916 UTC [common/config] initializeProtosStruct -> DEBU 1d3 Processing field: BlockDataHashingStructure -peer1.org2.example.com | [372 01-18 01:58:59.29 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Received configuration update, calling CSCC ConfigUpdate -peer1.org1.example.com | [250 01-18 01:58:52.79 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer0.org1.example.com | [2c8 01-18 01:58:52.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9a812e3c2cfcc8f8b117f8b54e442fd0889aa7ba2d8f513bd13e29ea55fa0824]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [373 01-18 01:58:59.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org1.example.com | [251 01-18 01:58:52.79 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -orderer.example.com | 2018-01-18 01:58:51.916 UTC [common/config] initializeProtosStruct -> DEBU 1d4 Processing field: OrdererAddresses -peer0.org2.example.com | [45d 01-18 01:59:25.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [544f379d]before send -peer1.org2.example.com | [374 01-18 01:58:59.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc4215d58c0), Data:(*common.BlockData)(0xc421668240), Metadata:(*common.BlockMetadata)(0xc421668280)}, doMVCCValidation=true -peer1.org1.example.com | [252 01-18 01:58:52.79 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel -peer0.org1.example.com | [2c9 01-18 01:58:52.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:9a812e3c2cfcc8f8b117f8b54e442fd0889aa7ba2d8f513bd13e29ea55fa0824 -peer0.org2.example.com | [45e 01-18 01:59:25.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [544f379d]after send -peer1.org2.example.com | [375 01-18 01:58:59.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -peer1.org1.example.com | [253 01-18 01:58:52.79 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -peer0.org1.example.com | [2ca 01-18 01:58:52.66 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | 2018-01-18 01:58:51.916 UTC [common/config] initializeProtosStruct -> DEBU 1d5 Processing field: Consortium -peer1.org1.example.com | [254 01-18 01:58:52.79 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer1.org2.example.com | [376 01-18 01:58:59.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [1] Transaction index [0] because, the transaction type is [CONFIG] -peer0.org2.example.com | [45f 01-18 01:59:25.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [544f379d]Received RESPONSE, communicated (state:ready) -peer1.org1.example.com | [255 01-18 01:58:52.79 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org2.example.com | [377 01-18 01:58:59.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0xc3, 0xab, 0xaa, 0xb3, 0xa5, 0x22, 0xad, 0x43, 0xc, 0xa3, 0xc5, 0x33, 0x33, 0xd, 0x4f, 0xc2, 0xaa, 0x7, 0xee, 0xbc, 0xcd, 0x3b, 0xac, 0x1a, 0x3, 0xe2, 0x17, 0xb3, 0x1b, 0x87, 0x6d, 0x94} txOffsets= -peer0.org2.example.com | [460 01-18 01:59:25.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.createChaincode.putChaincodeData.PutState.handlePutState -> DEBU [544f379d]Received RESPONSE. Successfully updated state -peer0.org1.example.com | [2cb 01-18 01:58:52.66 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer1.org1.example.com | [256 01-18 01:58:52.79 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org2.example.com | txId= locPointer=offset=70, bytesLength=11913 -orderer.example.com | 2018-01-18 01:58:51.916 UTC [policies] ProposePolicy -> DEBU 1d6 Proposed new policy Readers for Channel -peer0.org2.example.com | [461 01-18 01:59:25.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [544f379d]Transaction completed. Sending COMPLETED -peer1.org1.example.com | [257 01-18 01:58:52.79 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer1.org2.example.com | ] -peer0.org1.example.com | [2cc 01-18 01:58:52.66 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -peer0.org2.example.com | [462 01-18 01:59:25.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [544f379d]Move state message COMPLETED -orderer.example.com | 2018-01-18 01:58:51.916 UTC [policies] ProposePolicy -> DEBU 1d7 Proposed new policy Writers for Channel -peer1.org1.example.com | [258 01-18 01:58:52.79 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -peer1.org2.example.com | [378 01-18 01:58:59.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12005, bytesLength=11913] for tx ID: [] to index -peer0.org1.example.com | [2cd 01-18 01:58:52.66 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -peer1.org1.example.com | [259 01-18 01:58:52.79 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:51.917 UTC [policies] ProposePolicy -> DEBU 1d8 Proposed new policy Admins for Channel -peer1.org2.example.com | [379 01-18 01:58:59.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12005, bytesLength=11913] for tx number:[0] ID: [] to blockNumTranNum index -peer0.org2.example.com | [463 01-18 01:59:25.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [544f379d]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [25a 01-18 01:58:52.79 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | 2018-01-18 01:58:51.917 UTC [common/config] NewStandardValues -> DEBU 1d9 Initializing protos for *struct {} -peer1.org1.example.com | [25b 01-18 01:58:52.79 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer1.org2.example.com | [37a 01-18 01:58:59.30 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[25668], isChainEmpty=[false], lastBlockNumber=[1] -peer0.org2.example.com | [464 01-18 01:59:25.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [544f379d]send state message COMPLETED -peer0.org1.example.com | [2ce 01-18 01:58:58.51 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -orderer.example.com | 2018-01-18 01:58:51.917 UTC [policies] ProposePolicy -> DEBU 1da Proposed new policy Readers for Application -peer1.org1.example.com | [25c 01-18 01:58:52.79 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org2.example.com | [465 01-18 01:59:25.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [544f379d]Received message COMPLETED from shim -peer1.org2.example.com | [37b 01-18 01:58:59.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [1] with 1 transaction(s) -orderer.example.com | 2018-01-18 01:58:51.917 UTC [policies] ProposePolicy -> DEBU 1db Proposed new policy Admins for Application -peer0.org1.example.com | [2cf 01-18 01:58:58.51 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc420378330 -peer1.org1.example.com | [25d 01-18 01:58:52.79 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org2.example.com | [37c 01-18 01:58:59.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -peer0.org2.example.com | [466 01-18 01:59:25.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [544f379d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [2d0 01-18 01:58:58.51 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -orderer.example.com | 2018-01-18 01:58:51.917 UTC [policies] ProposePolicy -> DEBU 1dc Proposed new policy Writers for Application -peer1.org1.example.com | [25e 01-18 01:58:52.79 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [37d 01-18 01:58:59.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -peer1.org1.example.com | [25f 01-18 01:58:52.79 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [2d1 01-18 01:58:58.51 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | 2018-01-18 01:58:51.917 UTC [common/config] NewStandardValues -> DEBU 1dd Initializing protos for *config.OrganizationProtos -peer0.org2.example.com | [467 01-18 01:59:25.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [544f379dda618ff2c82301cddc728a5ab3076d114052fb463df7e9d6c1ede6fd]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [37e 01-18 01:58:59.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -peer1.org1.example.com | [260 01-18 01:58:52.79 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | 2018-01-18 01:58:51.917 UTC [common/config] initializeProtosStruct -> DEBU 1de Processing field: MSP -peer0.org2.example.com | [468 01-18 01:59:25.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:544f379dda618ff2c82301cddc728a5ab3076d114052fb463df7e9d6c1ede6fd -peer1.org1.example.com | [261 01-18 01:58:52.79 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer1.org2.example.com | [37f 01-18 01:58:59.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [1] with [1] transactions -peer0.org1.example.com | [2d2 01-18 01:58:58.51 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -peer0.org2.example.com | [469 01-18 01:59:25.93 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [262 01-18 01:58:52.79 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org1.example.com | [2d3 01-18 01:58:58.51 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org2.example.com | [380 01-18 01:58:59.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -orderer.example.com | 2018-01-18 01:58:51.918 UTC [common/config] NewStandardValues -> DEBU 1df Initializing protos for *config.ApplicationOrgProtos -peer0.org2.example.com | [46a 01-18 01:59:25.93 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=exp02,version=1.0,txid=544f379dda618ff2c82301cddc728a5ab3076d114052fb463df7e9d6c1ede6fd,syscc=false,proposal=0xc4215025a0,canname=exp02:1.0 -peer1.org1.example.com | [263 01-18 01:58:52.79 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [2d4 01-18 01:58:58.51 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | 2018-01-18 01:58:51.918 UTC [common/config] initializeProtosStruct -> DEBU 1e0 Processing field: AnchorPeers -peer1.org1.example.com | [264 01-18 01:58:52.79 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [46b 01-18 01:59:25.93 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch -> DEBU launchAndWaitForRegister fetched 2248 bytes from file system -peer0.org1.example.com | [2d5 01-18 01:58:58.51 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42015d450, header 0xc420378360 -peer1.org2.example.com | [381 01-18 01:58:59.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [1] -peer1.org1.example.com | [265 01-18 01:58:52.79 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -orderer.example.com | 2018-01-18 01:58:51.918 UTC [common/config] NewStandardValues -> DEBU 1e1 Initializing protos for *config.OrganizationProtos -peer0.org2.example.com | [46c 01-18 01:59:25.93 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode exp02:1.0 is being launched -peer0.org1.example.com | [2d6 01-18 01:58:58.51 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -peer1.org2.example.com | [382 01-18 01:58:59.30 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -peer1.org1.example.com | [266 01-18 01:58:52.79 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -orderer.example.com | 2018-01-18 01:58:51.918 UTC [common/config] initializeProtosStruct -> DEBU 1e2 Processing field: MSP -peer0.org1.example.com | [2d7 01-18 01:58:58.51 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 10aa154b1bd6fca35e259248bedb95c36f3d8b764c6791a7356f2f87a6b1f629 -peer1.org2.example.com | [383 01-18 01:58:59.30 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [1] -peer1.org1.example.com | [267 01-18 01:58:52.79 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer0.org2.example.com | [46d 01-18 01:59:25.93 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -orderer.example.com | 2018-01-18 01:58:51.918 UTC [policies] ProposePolicy -> DEBU 1e3 Proposed new policy Admins for Org1MSP -peer1.org1.example.com | [268 01-18 01:58:52.79 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer0.org1.example.com | [2d8 01-18 01:58:58.51 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 10aa154b1bd6fca35e259248bedb95c36f3d8b764c6791a7356f2f87a6b1f629 channel id: -peer1.org2.example.com | [384 01-18 01:58:59.30 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -peer0.org2.example.com | [46e 01-18 01:59:25.93 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org2.example.com:7052] -orderer.example.com | 2018-01-18 01:58:51.918 UTC [policies] ProposePolicy -> DEBU 1e4 Proposed new policy Readers for Org1MSP -peer0.org1.example.com | [2d9 01-18 01:58:58.51 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 10aa154b1bd6fca35e259248bedb95c36f3d8b764c6791a7356f2f87a6b1f629 channel id: version: 1.0.2 -peer1.org1.example.com | [269 01-18 01:58:52.79 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer1.org2.example.com | [385 01-18 01:58:59.30 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -orderer.example.com | 2018-01-18 01:58:51.918 UTC [policies] ProposePolicy -> DEBU 1e5 Proposed new policy Writers for Org1MSP -peer0.org2.example.com | [46f 01-18 01:59:25.93 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container: exp02:1.0(networkid:dev,peerid:peer0.org2.example.com) -peer0.org1.example.com | [2da 01-18 01:58:58.52 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.0.2,txid=10aa154b1bd6fca35e259248bedb95c36f3d8b764c6791a7356f2f87a6b1f629,syscc=true,proposal=0xc42015d450,canname=lscc:1.0.2 -peer1.org1.example.com | [26a 01-18 01:58:52.79 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer0.org2.example.com | [470 01-18 01:59:25.93 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org2.example.com:7052 -peer1.org2.example.com | [386 01-18 01:58:59.30 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -orderer.example.com | 2018-01-18 01:58:51.918 UTC [common/config] NewStandardValues -> DEBU 1e6 Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [2db 01-18 01:58:58.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 -peer1.org1.example.com | [26b 01-18 01:58:52.79 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org2.example.com | [471 01-18 01:59:25.93 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: -peer1.org2.example.com | [387 01-18 01:58:59.30 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -orderer.example.com | 2018-01-18 01:58:51.919 UTC [common/config] initializeProtosStruct -> DEBU 1e7 Processing field: MSP -peer0.org1.example.com | [2dc 01-18 01:58:58.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [26c 01-18 01:58:52.79 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | CORE_CHAINCODE_ID_NAME=exp02:1.0 -orderer.example.com | 2018-01-18 01:58:51.919 UTC [common/config] NewStandardValues -> DEBU 1e8 Initializing protos for *config.ApplicationOrgProtos -peer1.org2.example.com | [388 01-18 01:58:59.30 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -peer0.org1.example.com | [2dd 01-18 01:58:58.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -peer0.org2.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org1.example.com | [26d 01-18 01:58:52.79 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are -orderer.example.com | 2018-01-18 01:58:51.919 UTC [common/config] initializeProtosStruct -> DEBU 1e9 Processing field: AnchorPeers -peer1.org2.example.com | [389 01-18 01:58:59.31 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -peer0.org1.example.com | [2de 01-18 01:58:58.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [10aa154b]Inside sendExecuteMessage. Message TRANSACTION -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer1.org1.example.com | [26e 01-18 01:58:52.79 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer1.org2.example.com | [38a 01-18 01:58:59.31 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -peer0.org1.example.com | [2df 01-18 01:58:58.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | 2018-01-18 01:58:51.919 UTC [common/config] NewStandardValues -> DEBU 1ea Initializing protos for *config.OrganizationProtos -peer1.org1.example.com | [26f 01-18 01:58:52.79 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer1.org1.example.com | [270 01-18 01:58:52.79 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer1.org2.example.com | [38b 01-18 01:58:59.31 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -orderer.example.com | 2018-01-18 01:58:51.919 UTC [common/config] initializeProtosStruct -> DEBU 1eb Processing field: MSP -peer0.org1.example.com | [2e0 01-18 01:58:58.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org1.example.com | [271 01-18 01:58:52.79 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -orderer.example.com | 2018-01-18 01:58:51.919 UTC [policies] ProposePolicy -> DEBU 1ec Proposed new policy Writers for Org2MSP -peer0.org2.example.com | [472 01-18 01:59:25.93 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(dev-peer0.org2.example.com-exp02-1.0) lock -peer1.org2.example.com | [38c 01-18 01:58:59.31 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421cd2c60 -peer0.org1.example.com | [2e1 01-18 01:58:58.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [10aa154b]sendExecuteMsg trigger event TRANSACTION -peer1.org1.example.com | [272 01-18 01:58:52.80 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -peer0.org2.example.com | [473 01-18 01:59:25.93 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (dev-peer0.org2.example.com-exp02-1.0) lock -peer0.org2.example.com | [474 01-18 01:59:25.93 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Cleanup container dev-peer0.org2.example.com-exp02-1.0 -orderer.example.com | 2018-01-18 01:58:51.919 UTC [policies] ProposePolicy -> DEBU 1ed Proposed new policy Admins for Org2MSP -peer1.org2.example.com | [38d 01-18 01:58:59.31 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\337\376\377\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030a\n\340,\262`\335\020Q\311?\302\002%\0013\232C|\240\316T\363\221" -peer1.org1.example.com | [273 01-18 01:58:52.80 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer1.org1.example.com | [274 01-18 01:58:52.80 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -peer1.org1.example.com | [275 01-18 01:58:52.80 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -peer1.org1.example.com | [276 01-18 01:58:52.80 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -peer1.org1.example.com | [277 01-18 01:58:52.81 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.InitChain -> DEBU Init chain businesschannel -peer1.org1.example.com | [278 01-18 01:58:52.81 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.joinChain.InitChain.func2 -> DEBU Deploying system CC, for chain -peer1.org1.example.com | [279 01-18 01:58:52.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org1.example.com | [27a 01-18 01:58:52.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [f17fdad0-3b56-4b75-a469-5add81dc650e] -peer1.org1.example.com | [27b 01-18 01:58:52.81 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=cscc,version=1.0.2,txid=efb81dd4-1828-484c-aec3-33ab2ef86d91,syscc=true,proposal=0x0,canname=cscc:1.0.2 -peer0.org2.example.com | [475 01-18 01:59:25.93 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Stop container dev-peer0.org2.example.com-exp02-1.0(No such container: dev-peer0.org2.example.com-exp02-1.0) -peer0.org1.example.com | [2e2 01-18 01:58:58.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [10aa154b]Move state message TRANSACTION -peer1.org2.example.com | [38e 01-18 01:58:59.31 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -orderer.example.com | 2018-01-18 01:58:51.919 UTC [policies] ProposePolicy -> DEBU 1ee Proposed new policy Readers for Org2MSP -peer1.org1.example.com | [27c 01-18 01:58:52.81 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.0.2 -peer0.org1.example.com | [2e3 01-18 01:58:58.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [10aa154b]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [38f 01-18 01:58:59.31 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org2.example.com | [476 01-18 01:59:25.93 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Kill container dev-peer0.org2.example.com-exp02-1.0 (No such container: dev-peer0.org2.example.com-exp02-1.0) -peer1.org1.example.com | [27d 01-18 01:58:52.81 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [390 01-18 01:58:59.31 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 685c3e542c5c7e71cc8ac51ff9728a4a798d38a5cb22c31b73b7dddaa87ffa02} -orderer.example.com | 2018-01-18 01:58:51.920 UTC [common/config] NewStandardValues -> DEBU 1ef Initializing protos for *config.OrdererProtos -peer0.org1.example.com | [2e4 01-18 01:58:58.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [27e 01-18 01:58:52.81 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.2 -peer1.org1.example.com | [27f 01-18 01:58:52.81 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [efb81dd4]Inside sendExecuteMessage. Message INIT -peer1.org1.example.com | [280 01-18 01:58:52.81 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [281 01-18 01:58:52.81 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [efb81dd4]sendExecuteMsg trigger event INIT -peer1.org1.example.com | [282 01-18 01:58:52.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [efb81dd4]Move state message INIT -peer1.org1.example.com | [283 01-18 01:58:52.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [efb81dd4]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org1.example.com | [284 01-18 01:58:52.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [391 01-18 01:58:59.31 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org2.example.com | [477 01-18 01:59:25.93 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Remove container dev-peer0.org2.example.com-exp02-1.0 (No such container: dev-peer0.org2.example.com-exp02-1.0) -peer0.org1.example.com | [2e5 01-18 01:58:58.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [10aa154b]sending state message TRANSACTION -orderer.example.com | 2018-01-18 01:58:51.920 UTC [common/config] initializeProtosStruct -> DEBU 1f0 Processing field: ConsensusType -peer1.org1.example.com | [285 01-18 01:58:52.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [efb81dd4]sending state message INIT -peer1.org2.example.com | [392 01-18 01:58:59.31 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org1.example.com | [2e6 01-18 01:58:58.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [10aa154b]Received message TRANSACTION from shim -peer0.org2.example.com | [478 01-18 01:59:25.93 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Start container dev-peer0.org2.example.com-exp02-1.0 -orderer.example.com | 2018-01-18 01:58:51.920 UTC [common/config] initializeProtosStruct -> DEBU 1f1 Processing field: BatchSize -peer0.org1.example.com | [2e7 01-18 01:58:58.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [10aa154b]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org1.example.com | [286 01-18 01:58:52.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [efb81dd4]Received message INIT from shim -peer1.org2.example.com | [393 01-18 01:58:59.31 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc421d6d000, header channel_header:"\010\001\032\006\010\337\376\377\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030a\n\340,\262`\335\020Q\311?\302\002%\0013\232C|\240\316T\363\221" -peer0.org2.example.com | [479 01-18 01:59:25.93 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: v102_default -orderer.example.com | 2018-01-18 01:58:51.920 UTC [common/config] initializeProtosStruct -> DEBU 1f2 Processing field: BatchTimeout -orderer.example.com | 2018-01-18 01:58:51.920 UTC [common/config] initializeProtosStruct -> DEBU 1f3 Processing field: KafkaBrokers -peer0.org2.example.com | [47a 01-18 01:59:25.94 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer0.org2.example.com-exp02-1.0 -peer0.org1.example.com | [2e8 01-18 01:58:58.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [10aa154b]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org1.example.com | [287 01-18 01:58:52.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [efb81dd4]Handling ChaincodeMessage of type: INIT(state:ready) -orderer.example.com | 2018-01-18 01:58:51.921 UTC [common/config] initializeProtosStruct -> DEBU 1f4 Processing field: ChannelRestrictions -peer0.org1.example.com | [2e9 01-18 01:58:58.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [10aa154b]Transaction completed. Sending COMPLETED -peer0.org2.example.com | [47b 01-18 01:59:25.94 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-could not find image (container id ), because of ...attempt to recreate image -peer0.org1.example.com | [2ea 01-18 01:58:58.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [10aa154b]Move state message COMPLETED -peer0.org1.example.com | [2eb 01-18 01:58:58.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [10aa154b]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [288 01-18 01:58:52.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -orderer.example.com | 2018-01-18 01:58:51.921 UTC [policies] ProposePolicy -> DEBU 1f5 Proposed new policy BlockValidation for Orderer -peer1.org2.example.com | [394 01-18 01:58:59.31 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -peer0.org2.example.com | [47c 01-18 01:59:25.94 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms] do.do.Start.func1.GenerateDockerBuild.generateDockerfile -> DEBU -peer0.org1.example.com | [2ec 01-18 01:58:58.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [10aa154b]send state message COMPLETED -peer1.org1.example.com | [289 01-18 01:58:52.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [efb81dd4]Received INIT, initializing chaincode -orderer.example.com | 2018-01-18 01:58:51.921 UTC [policies] ProposePolicy -> DEBU 1f6 Proposed new policy Readers for Orderer -peer1.org2.example.com | [395 01-18 01:58:59.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer0.org2.example.com | FROM hyperledger/fabric-baseos:x86_64-0.3.2 -orderer.example.com | 2018-01-18 01:58:51.921 UTC [policies] ProposePolicy -> DEBU 1f7 Proposed new policy Writers for Orderer -peer0.org1.example.com | [2ed 01-18 01:58:58.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [10aa154b]Received message COMPLETED from shim -peer0.org1.example.com | [2ee 01-18 01:58:58.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [10aa154b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [2ef 01-18 01:58:58.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [10aa154b1bd6fca35e259248bedb95c36f3d8b764c6791a7356f2f87a6b1f629]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [2f0 01-18 01:58:58.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:10aa154b1bd6fca35e259248bedb95c36f3d8b764c6791a7356f2f87a6b1f629 -orderer.example.com | 2018-01-18 01:58:51.921 UTC [policies] ProposePolicy -> DEBU 1f8 Proposed new policy Admins for Orderer -peer1.org2.example.com | [396 01-18 01:58:59.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -peer0.org1.example.com | [2f1 01-18 01:58:58.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [2f2 01-18 01:58:58.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer0.org2.example.com | ADD binpackage.tar /usr/local/bin -orderer.example.com | 2018-01-18 01:58:51.921 UTC [common/config] NewStandardValues -> DEBU 1f9 Initializing protos for *config.OrganizationProtos -peer1.org1.example.com | [28a 01-18 01:58:52.81 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -peer0.org1.example.com | [2f3 01-18 01:58:58.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -peer0.org2.example.com | LABEL org.hyperledger.fabric.chaincode.id.name="exp02" \ -peer1.org2.example.com | [397 01-18 01:58:59.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -peer0.org1.example.com | [2f4 01-18 01:58:58.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -orderer.example.com | 2018-01-18 01:58:51.921 UTC [common/config] initializeProtosStruct -> DEBU 1fa Processing field: MSP -peer1.org1.example.com | [28b 01-18 01:58:52.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [efb81dd4]Init get response status: 200 -peer1.org2.example.com | [398 01-18 01:58:59.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -peer0.org1.example.com | [2f5 01-18 01:58:58.62 UTC] [github.com/hyperledger/fabric/core/deliverservice] leaderElection.beLeader.func1.StartDeliverForChannel -> DEBU This peer will pass blocks from orderer service to other peers for channel businesschannel -peer0.org2.example.com | org.hyperledger.fabric.chaincode.id.version="1.0" \ -orderer.example.com | 2018-01-18 01:58:51.922 UTC [policies] ProposePolicy -> DEBU 1fb Proposed new policy Admins for OrdererOrg -peer1.org1.example.com | [28c 01-18 01:58:52.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [efb81dd4]Init succeeded. Sending COMPLETED -peer0.org2.example.com | org.hyperledger.fabric.chaincode.type="GOLANG" \ -peer0.org1.example.com | [2f6 01-18 01:58:58.63 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Connected to orderer.example.com:7050 -peer1.org2.example.com | [399 01-18 01:58:59.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -orderer.example.com | 2018-01-18 01:58:51.922 UTC [policies] ProposePolicy -> DEBU 1fc Proposed new policy Readers for OrdererOrg -peer1.org1.example.com | [28d 01-18 01:58:52.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [efb81dd4]Move state message COMPLETED -peer0.org1.example.com | [2f7 01-18 01:58:58.63 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Establishing gRPC stream with orderer.example.com:7050 ... -peer0.org2.example.com | org.hyperledger.fabric.version="1.0.2" \ -peer1.org1.example.com | [28e 01-18 01:58:52.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [efb81dd4]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [39a 01-18 01:58:59.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | 2018-01-18 01:58:51.922 UTC [policies] ProposePolicy -> DEBU 1fd Proposed new policy Writers for OrdererOrg -peer0.org1.example.com | [2f8 01-18 01:58:58.63 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Entering -peer0.org2.example.com | org.hyperledger.fabric.base.version="0.3.2" -peer0.org1.example.com | [2f9 01-18 01:58:58.63 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect.func1.RequestBlocks -> DEBU Starting deliver with block [1] for channel businesschannel -peer1.org2.example.com | [39b 01-18 01:58:59.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer1.org1.example.com | [28f 01-18 01:58:52.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [efb81dd4]send state message COMPLETED -peer0.org1.example.com | [2fa 01-18 01:58:58.63 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Exiting -orderer.example.com | 2018-01-18 01:58:51.922 UTC [common/config] Validate -> DEBU 1fe Anchor peers for org Org1MSP are -peer1.org2.example.com | [39c 01-18 01:58:59.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -peer0.org2.example.com | ENV CORE_CHAINCODE_BUILDLEVEL=1.0.2 -peer1.org1.example.com | [290 01-18 01:58:52.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [efb81dd4]Received message COMPLETED from shim -peer0.org1.example.com | [2fb 01-18 01:58:58.65 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [1], peers number [1] -orderer.example.com | 2018-01-18 01:58:51.922 UTC [common/config] validateMSP -> DEBU 1ff Setting up MSP for org Org1MSP -peer0.org2.example.com | ENV CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -peer1.org2.example.com | [39d 01-18 01:58:59.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -peer1.org1.example.com | [291 01-18 01:58:52.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [efb81dd4]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [2fd 01-18 01:58:58.66 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -orderer.example.com | 2018-01-18 01:58:51.922 UTC [msp] NewBccspMsp -> DEBU 200 Creating BCCSP-based MSP instance -peer1.org2.example.com | [39e 01-18 01:58:59.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -peer0.org1.example.com | [2fe 01-18 01:58:58.66 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -peer1.org1.example.com | [292 01-18 01:58:52.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [efb81dd4-1828-484c-aec3-33ab2ef86d91]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | COPY peer.crt /etc/hyperledger/fabric/peer.crt -peer0.org1.example.com | [2ff 01-18 01:58:58.66 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -peer1.org2.example.com | [39f 01-18 01:58:59.33 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -orderer.example.com | 2018-01-18 01:58:51.922 UTC [msp] Setup -> DEBU 201 Setting up MSP instance Org1MSP -peer0.org2.example.com | [47d 01-18 01:59:25.95 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/util] generateDockerBuild.GenerateDockerBuild.DockerBuild -> DEBU Attempting build with image hyperledger/fabric-ccenv:x86_64-1.0.2 -peer1.org1.example.com | [293 01-18 01:58:52.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:efb81dd4-1828-484c-aec3-33ab2ef86d91 -peer0.org1.example.com | [300 01-18 01:58:58.66 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421488990 -orderer.example.com | 2018-01-18 01:58:51.923 UTC [msp/identity] newIdentity -> DEBU 202 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [3a0 01-18 01:58:59.33 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer0.org2.example.com | [47e 01-18 01:59:27.67 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [3], peers number [3] -peer0.org1.example.com | [301 01-18 01:58:58.66 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\335\376\377\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030\262UG\022W~\350\r\312y3\226w\332\373\025\335\225\376z\200n&\340" -peer1.org1.example.com | [294 01-18 01:58:52.81 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [3a1 01-18 01:58:59.33 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer0.org1.example.com | [302 01-18 01:58:58.66 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -orderer.example.com | MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [303 01-18 01:58:58.66 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org2.example.com | [47f 01-18 01:59:27.67 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [3], peers number [3] -peer1.org1.example.com | [295 01-18 01:58:52.81 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed -peer0.org1.example.com | [304 01-18 01:58:58.66 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 685c3e542c5c7e71cc8ac51ff9728a4a798d38a5cb22c31b73b7dddaa87ffa02} -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org2.example.com | [3a2 01-18 01:58:59.33 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer0.org1.example.com | [305 01-18 01:58:58.67 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org1.example.com | [296 01-18 01:58:52.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [f17fdad0-3b56-4b75-a469-5add81dc650e] -peer0.org2.example.com | [480 01-18 01:59:27.67 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -peer0.org1.example.com | [306 01-18 01:58:58.67 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org1.example.com | [297 01-18 01:58:52.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org2.example.com | [481 01-18 01:59:27.67 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -peer1.org2.example.com | [3a3 01-18 01:58:59.33 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [307 01-18 01:58:58.67 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc42147c000, header channel_header:"\010\001\032\006\010\335\376\377\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030\262UG\022W~\350\r\312y3\226w\332\373\025\335\225\376z\200n&\340" -peer1.org1.example.com | [298 01-18 01:58:52.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [8ae4bcd8-d6ec-4063-ae37-b01a4b1d8889] -peer0.org2.example.com | [482 01-18 01:59:27.67 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -peer1.org2.example.com | [3a4 01-18 01:58:59.33 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer0.org2.example.com | [483 01-18 01:59:27.67 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc422374120 -peer0.org2.example.com | [484 01-18 01:59:27.67 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\345\376\377\322\005\020\211\346\356\222\001\"\017businesschannel*@ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030\301\237\303\"+C\367\344\024\317<\323\262\343\371\027\307\t\002\340b0*\253" -peer0.org1.example.com | [308 01-18 01:58:58.67 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -peer0.org1.example.com | [309 01-18 01:58:58.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer0.org1.example.com | [30a 01-18 01:58:58.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -peer0.org1.example.com | [30b 01-18 01:58:58.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -peer1.org1.example.com | [299 01-18 01:58:52.81 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=f753dd0b-c447-4966-bf14-032a554d5f0b,syscc=true,proposal=0x0,canname=lscc:1.0.2 -peer1.org1.example.com | [29a 01-18 01:58:52.81 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 -peer1.org2.example.com | [3a5 01-18 01:58:59.33 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -peer0.org2.example.com | [485 01-18 01:59:27.67 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org1.example.com | [30c 01-18 01:58:58.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org1.example.com | [29b 01-18 01:58:52.81 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [3a6 01-18 01:58:59.33 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -peer0.org2.example.com | [486 01-18 01:59:27.67 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -peer0.org1.example.com | [30d 01-18 01:58:58.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer1.org2.example.com | [3a7 01-18 01:58:59.33 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -peer0.org2.example.com | [487 01-18 01:59:27.67 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -peer1.org2.example.com | [3a8 01-18 01:58:59.33 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer1.org1.example.com | [29c 01-18 01:58:52.81 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -peer0.org1.example.com | [30e 01-18 01:58:58.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer0.org2.example.com | [488 01-18 01:59:27.67 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf -peer1.org1.example.com | [29d 01-18 01:58:52.81 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [f753dd0b]Inside sendExecuteMessage. Message INIT -peer0.org1.example.com | [30f 01-18 01:58:58.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -peer0.org2.example.com | [489 01-18 01:59:27.67 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org2.example.com | [3a9 01-18 01:58:59.33 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer1.org1.example.com | [29e 01-18 01:58:52.81 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [310 01-18 01:58:58.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -peer1.org2.example.com | [3aa 01-18 01:58:59.33 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer1.org2.example.com | [3ab 01-18 01:58:59.33 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -peer1.org2.example.com | [3ac 01-18 01:58:59.33 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -peer1.org2.example.com | [3ad 01-18 01:58:59.33 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers -peer0.org2.example.com | [48a 01-18 01:59:27.68 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421fa0a80, header channel_header:"\010\003\032\014\010\345\376\377\322\005\020\211\346\356\222\001\"\017businesschannel*@ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030\301\237\303\"+C\367\344\024\317<\323\262\343\371\027\307\t\002\340b0*\253" -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx -peer0.org1.example.com | [311 01-18 01:58:58.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -peer0.org1.example.com | [312 01-18 01:58:58.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -peer0.org1.example.com | [313 01-18 01:58:58.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -peer0.org1.example.com | [314 01-18 01:58:58.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer0.org1.example.com | [315 01-18 01:58:58.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer0.org1.example.com | [316 01-18 01:58:58.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer1.org1.example.com | [29f 01-18 01:58:52.81 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [f753dd0b]sendExecuteMsg trigger event INIT -peer1.org2.example.com | [3ae 01-18 01:58:59.35 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org1.example.com | [317 01-18 01:58:58.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer0.org2.example.com | [48b 01-18 01:59:27.68 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -orderer.example.com | JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi -peer1.org1.example.com | [2a0 01-18 01:58:52.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f753dd0b]Move state message INIT -peer1.org2.example.com | [3af 01-18 01:58:59.36 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer0.org1.example.com | [318 01-18 01:58:58.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -orderer.example.com | /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ -peer0.org2.example.com | [48c 01-18 01:59:27.68 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer1.org1.example.com | [2a1 01-18 01:58:52.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f753dd0b]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org1.example.com | [319 01-18 01:58:58.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | H7n8z1pj5w== -peer1.org2.example.com | [3b0 01-18 01:58:59.36 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer1.org1.example.com | [2a2 01-18 01:58:52.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [48d 01-18 01:59:27.68 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer0.org1.example.com | [31a 01-18 01:58:58.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -peer1.org1.example.com | [2a3 01-18 01:58:52.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f753dd0b]sending state message INIT -peer1.org2.example.com | [3b1 01-18 01:58:59.36 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer0.org1.example.com | [31b 01-18 01:58:58.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -peer1.org1.example.com | [2a4 01-18 01:58:52.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f753dd0b]Received message INIT from shim -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [48e 01-18 01:59:27.68 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -peer1.org2.example.com | [3b2 01-18 01:58:59.36 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer0.org1.example.com | [31c 01-18 01:58:58.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer1.org1.example.com | [2a5 01-18 01:58:52.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f753dd0b]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [48f 01-18 01:59:27.68 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824] -peer1.org2.example.com | [3b3 01-18 01:58:59.37 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -orderer.example.com | 2018-01-18 01:58:51.923 UTC [msp/identity] newIdentity -> DEBU 203 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [31d 01-18 01:58:58.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer1.org1.example.com | [2a6 01-18 01:58:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org2.example.com | [490 01-18 01:59:27.68 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -peer1.org1.example.com | [2a7 01-18 01:58:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [f753dd0b]Received INIT, initializing chaincode -peer0.org1.example.com | [31e 01-18 01:58:58.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org2.example.com | [491 01-18 01:59:27.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org2.example.com | [3b4 01-18 01:58:59.37 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [31f 01-18 01:58:58.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -peer1.org1.example.com | [2a8 01-18 01:58:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f753dd0b]Init get response status: 200 -peer0.org2.example.com | [492 01-18 01:59:27.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [feeac68b-ddf5-486d-b21f-69543e2e9793] -peer1.org2.example.com | [3b5 01-18 01:58:59.37 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org1.example.com | [2a9 01-18 01:58:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f753dd0b]Init succeeded. Sending COMPLETED -peer0.org1.example.com | [320 01-18 01:58:58.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -peer1.org1.example.com | [2aa 01-18 01:58:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f753dd0b]Move state message COMPLETED -peer0.org2.example.com | [493 01-18 01:59:27.69 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=b1494c7f-bd68-4385-9272-25444953a5de,syscc=true,proposal=0x0,canname=vscc:1.0.2 -peer1.org2.example.com | [3b6 01-18 01:58:59.37 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -peer0.org1.example.com | [321 01-18 01:58:58.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org1.example.com | [2ab 01-18 01:58:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f753dd0b]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org2.example.com | [494 01-18 01:59:27.69 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824 chaindID businesschannel -peer0.org1.example.com | [322 01-18 01:58:58.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org2.example.com | [495 01-18 01:59:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 -peer1.org2.example.com | [3b7 01-18 01:58:59.37 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -peer1.org1.example.com | [2ac 01-18 01:58:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f753dd0b]send state message COMPLETED -peer0.org2.example.com | [496 01-18 01:59:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [3b8 01-18 01:58:59.37 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer1.org1.example.com | [2ad 01-18 01:58:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f753dd0b]Received message COMPLETED from shim -peer0.org1.example.com | [323 01-18 01:58:58.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org2.example.com | [497 01-18 01:59:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -peer1.org2.example.com | [3b9 01-18 01:58:59.37 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer0.org1.example.com | [324 01-18 01:58:58.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer1.org1.example.com | [2ae 01-18 01:58:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f753dd0b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [498 01-18 01:59:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b1494c7f]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -peer0.org1.example.com | [325 01-18 01:58:58.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer1.org2.example.com | [3ba 01-18 01:58:59.37 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer1.org1.example.com | [2af 01-18 01:58:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f753dd0b-c447-4966-bf14-032a554d5f0b]HandleMessage- COMPLETED. Notify -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -peer0.org2.example.com | [499 01-18 01:59:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [3bb 01-18 01:58:59.37 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer0.org1.example.com | [326 01-18 01:58:58.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer0.org2.example.com | [49a 01-18 01:59:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b1494c7f]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -peer1.org1.example.com | [2b0 01-18 01:58:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:f753dd0b-c447-4966-bf14-032a554d5f0b -peer1.org2.example.com | [3bc 01-18 01:58:59.37 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer0.org1.example.com | [327 01-18 01:58:58.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -peer0.org2.example.com | [49b 01-18 01:59:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b1494c7f]Move state message TRANSACTION -peer0.org2.example.com | [49c 01-18 01:59:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b1494c7f]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org1.example.com | [2b1 01-18 01:58:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [328 01-18 01:58:58.68 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -peer1.org2.example.com | [3bd 01-18 01:58:59.37 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -peer0.org2.example.com | [49d 01-18 01:59:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | xHTBvxfK6mAzmUitFmY= -peer0.org1.example.com | [329 01-18 01:58:58.68 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -peer1.org1.example.com | [2b2 01-18 01:58:52.82 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed -peer0.org2.example.com | [49e 01-18 01:59:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b1494c7f]sending state message TRANSACTION -peer1.org2.example.com | [3be 01-18 01:58:59.38 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [49f 01-18 01:59:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b1494c7f]Received message TRANSACTION from shim -peer1.org1.example.com | [2b3 01-18 01:58:52.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [8ae4bcd8-d6ec-4063-ae37-b01a4b1d8889] -peer1.org2.example.com | [3bf 01-18 01:58:59.38 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer0.org1.example.com | [32a 01-18 01:58:58.68 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -peer0.org2.example.com | [4a0 01-18 01:59:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b1494c7f]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org2.example.com | [3c0 01-18 01:58:59.38 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer1.org2.example.com | [3c1 01-18 01:58:59.38 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer1.org1.example.com | [2b4 01-18 01:58:52.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org1.example.com | [32b 01-18 01:58:58.68 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer0.org2.example.com | [4a1 01-18 01:59:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [b1494c7f]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | 2018-01-18 01:58:51.924 UTC [msp/identity] newIdentity -> DEBU 204 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [3c2 01-18 01:58:59.38 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer1.org1.example.com | [2b5 01-18 01:58:52.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [976e8a93-655c-49a1-a47e-7d6ab748ee21] -peer0.org2.example.com | [4a2 01-18 01:59:27.70 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer1.org2.example.com | [3c3 01-18 01:58:59.38 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer0.org2.example.com | [4a3 01-18 01:59:27.70 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -peer0.org1.example.com | [32c 01-18 01:58:58.68 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer1.org2.example.com | [3c4 01-18 01:58:59.38 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -peer0.org2.example.com | [4a4 01-18 01:59:27.70 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC -peer1.org2.example.com | [3c5 01-18 01:58:59.38 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers -peer1.org1.example.com | [2b6 01-18 01:58:52.82 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=083ff2e4-7f9c-46ae-a492-9ad89a651661,syscc=true,proposal=0x0,canname=escc:1.0.2 -peer0.org1.example.com | [32d 01-18 01:58:58.68 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer0.org2.example.com | [4a5 01-18 01:59:27.70 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} -peer1.org2.example.com | [3c6 01-18 01:58:59.38 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [2fc 01-18 01:58:58.66 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [1], peers number [1] -peer1.org1.example.com | [2b7 01-18 01:58:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 -peer0.org2.example.com | [4a6 01-18 01:59:27.70 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} -peer1.org2.example.com | [3c7 01-18 01:58:59.38 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org1.example.com | [2b8 01-18 01:58:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [4a7 01-18 01:59:27.70 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace exp02 -peer0.org1.example.com | [32e 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [2], peers number [1] -peer1.org2.example.com | [3c8 01-18 01:58:59.38 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer0.org2.example.com | [4a8 01-18 01:59:27.70 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -peer1.org1.example.com | [2b9 01-18 01:58:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 -peer1.org2.example.com | [3c9 01-18 01:58:59.38 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org2.example.com | [4a9 01-18 01:59:27.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [07b11ff1-c2a7-4c5f-a11f-59d8b5561b69] -peer0.org1.example.com | [32f 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [2], peers number [1] -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org2.example.com | [3ca 01-18 01:58:59.38 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org2.example.com | [4aa 01-18 01:59:27.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer1.org1.example.com | [2ba 01-18 01:58:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [083ff2e4]Inside sendExecuteMessage. Message INIT -peer1.org2.example.com | [3cb 01-18 01:58:59.38 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [4ab 01-18 01:59:27.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [07b11ff1-c2a7-4c5f-a11f-59d8b5561b69] -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer0.org2.example.com | [4ac 01-18 01:59:27.70 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 -peer1.org1.example.com | [2bb 01-18 01:58:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [3cc 01-18 01:58:59.38 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [330 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer0.org2.example.com | [4ad 01-18 01:59:27.70 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x953df0)} -peer1.org2.example.com | [3cd 01-18 01:58:59.38 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [2bc 01-18 01:58:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [083ff2e4]sendExecuteMsg trigger event INIT -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -peer0.org1.example.com | [331 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer0.org2.example.com | [4ae 01-18 01:59:27.70 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -peer1.org2.example.com | [3ce 01-18 01:58:59.38 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -peer1.org1.example.com | [2bd 01-18 01:58:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [083ff2e4]Move state message INIT -peer0.org2.example.com | [4af 01-18 01:59:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b1494c7f]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [3cf 01-18 01:58:59.38 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [332 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -peer0.org2.example.com | [4b0 01-18 01:59:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b1494c7f]Move state message COMPLETED -peer1.org2.example.com | [3d0 01-18 01:58:59.38 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -peer1.org1.example.com | [2be 01-18 01:58:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [083ff2e4]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org1.example.com | [333 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -peer0.org2.example.com | [4b1 01-18 01:59:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b1494c7f]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [3d1 01-18 01:58:59.38 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -peer1.org2.example.com | [3d2 01-18 01:58:59.38 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [4b2 01-18 01:59:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b1494c7f]send state message COMPLETED -peer0.org1.example.com | [334 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer1.org1.example.com | [2bf 01-18 01:58:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [3d3 01-18 01:58:59.38 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -peer0.org2.example.com | [4b3 01-18 01:59:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b1494c7f]Received message COMPLETED from shim -peer0.org1.example.com | [335 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer1.org2.example.com | [3d4 01-18 01:58:59.40 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -peer1.org1.example.com | [2c0 01-18 01:58:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [083ff2e4]sending state message INIT -peer0.org2.example.com | [4b4 01-18 01:59:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b1494c7f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [336 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer1.org1.example.com | [2c1 01-18 01:58:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [083ff2e4]Received message INIT from shim -orderer.example.com | xHTBvxfK6mAzmUitFmY= -peer1.org2.example.com | [3d5 01-18 01:58:59.40 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -peer1.org1.example.com | [2c2 01-18 01:58:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [083ff2e4]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org1.example.com | [337 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer0.org2.example.com | [4b5 01-18 01:59:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b1494c7f-bd68-4385-9272-25444953a5de]HandleMessage- COMPLETED. Notify -orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [2c3 01-18 01:58:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org1.example.com | [2c4 01-18 01:58:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [083ff2e4]Received INIT, initializing chaincode -peer0.org1.example.com | [338 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer0.org2.example.com | [4b6 01-18 01:59:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:b1494c7f-bd68-4385-9272-25444953a5de -orderer.example.com | 2018-01-18 01:58:51.925 UTC [msp] Validate -> DEBU 205 MSP Org1MSP validating identity -peer1.org2.example.com | [3d6 01-18 01:58:59.40 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -peer1.org1.example.com | [2c5 01-18 01:58:52.82 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC -peer0.org2.example.com | [4b7 01-18 01:59:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [339 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | 2018-01-18 01:58:51.925 UTC [common/config] Validate -> DEBU 206 Anchor peers for org Org2MSP are -peer0.org2.example.com | [4b8 01-18 01:59:27.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [feeac68b-ddf5-486d-b21f-69543e2e9793] -peer1.org1.example.com | [2c6 01-18 01:58:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [083ff2e4]Init get response status: 200 -peer0.org1.example.com | [33a 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -peer1.org2.example.com | [3d7 01-18 01:58:59.40 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:51.925 UTC [common/config] validateMSP -> DEBU 207 Setting up MSP for org Org2MSP -peer0.org1.example.com | [33b 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -peer1.org2.example.com | [3d8 01-18 01:58:59.40 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [4b9 01-18 01:59:27.73 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -peer1.org1.example.com | [2c7 01-18 01:58:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [083ff2e4]Init succeeded. Sending COMPLETED -orderer.example.com | 2018-01-18 01:58:51.925 UTC [msp] NewBccspMsp -> DEBU 208 Creating BCCSP-based MSP instance -peer1.org2.example.com | [3d9 01-18 01:58:59.40 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [2c8 01-18 01:58:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [083ff2e4]Move state message COMPLETED -peer0.org1.example.com | [33c 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org2.example.com | [4ba 01-18 01:59:27.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org1.example.com | [2c9 01-18 01:58:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [083ff2e4]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [3da 01-18 01:58:59.41 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:51.925 UTC [msp] Setup -> DEBU 209 Setting up MSP instance Org2MSP -peer0.org2.example.com | [4bb 01-18 01:59:27.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc421dce680), Data:(*common.BlockData)(0xc421e5d1c0), Metadata:(*common.BlockMetadata)(0xc421e5d200)}, doMVCCValidation=true -peer1.org1.example.com | [2ca 01-18 01:58:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [083ff2e4]send state message COMPLETED -peer0.org1.example.com | [33d 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer1.org2.example.com | [3db 01-18 01:58:59.41 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [2cb 01-18 01:58:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [083ff2e4]Received message COMPLETED from shim -peer0.org2.example.com | [4bc 01-18 01:59:27.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -orderer.example.com | 2018-01-18 01:58:51.926 UTC [msp/identity] newIdentity -> DEBU 20a Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [2cc 01-18 01:58:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [083ff2e4]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [33e 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org2.example.com | [4bd 01-18 01:59:27.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer1.org2.example.com | [3dc 01-18 01:58:59.41 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw -peer1.org1.example.com | [2cd 01-18 01:58:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [083ff2e4-7f9c-46ae-a492-9ad89a651661]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [4be 01-18 01:59:27.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [3] Transaction index [0] TxId [ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824] marked as valid by state validator -peer0.org1.example.com | [33f 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -peer1.org2.example.com | [3dd 01-18 01:58:59.41 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel -peer1.org1.example.com | [2ce 01-18 01:58:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:083ff2e4-7f9c-46ae-a492-9ad89a651661 -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org1.example.com | [2cf 01-18 01:58:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [4bf 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0x97, 0xe, 0xbe, 0xd9, 0x27, 0xde, 0xad, 0x13, 0x22, 0x1c, 0xcb, 0xdd, 0x26, 0x3a, 0xf8, 0x99, 0xca, 0x2c, 0x54, 0x92, 0x33, 0x30, 0x7d, 0x62, 0xca, 0x6a, 0xf9, 0x20, 0xf, 0xe3, 0x82, 0xcd} txOffsets= -peer0.org2.example.com | txId=ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824 locPointer=offset=70, bytesLength=3395 -peer0.org1.example.com | [340 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -peer1.org2.example.com | [3de 01-18 01:58:59.41 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer1.org1.example.com | [2d0 01-18 01:58:52.82 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode escc/businesschannel(github.com/hyperledger/fabric/core/scc/escc) deployed -peer0.org2.example.com | ] -peer1.org2.example.com | [3df 01-18 01:58:59.41 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org1.example.com | [341 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa -peer1.org1.example.com | [2d1 01-18 01:58:52.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [976e8a93-655c-49a1-a47e-7d6ab748ee21] -peer0.org1.example.com | [342 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [4c0 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=39529, bytesLength=3395] for tx ID: [ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824] to index -peer1.org2.example.com | [3e0 01-18 01:58:59.41 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org1.example.com | [2d2 01-18 01:58:52.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer0.org1.example.com | [343 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [3e1 01-18 01:58:59.41 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org1.example.com | [2d3 01-18 01:58:52.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [9efe9967-c62d-4355-8b86-4d91da0e6701] -peer0.org2.example.com | [4c1 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=39529, bytesLength=3395] for tx number:[0] ID: [ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824] to blockNumTranNum index -peer1.org1.example.com | [2d4 01-18 01:58:52.82 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=5fb2272b-180d-42a2-ae5a-0350a93721f3,syscc=true,proposal=0x0,canname=vscc:1.0.2 -peer0.org1.example.com | [344 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -peer0.org2.example.com | [4c2 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[44675], isChainEmpty=[false], lastBlockNumber=[3] -peer1.org1.example.com | [2d5 01-18 01:58:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 -peer1.org2.example.com | [3e2 01-18 01:58:59.41 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -peer1.org1.example.com | [2d6 01-18 01:58:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [345 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [4c3 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [3] with 1 transaction(s) -orderer.example.com | mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 -peer1.org2.example.com | [3e3 01-18 01:58:59.41 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -peer1.org1.example.com | [2d7 01-18 01:58:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 -peer0.org1.example.com | [346 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [4c4 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -orderer.example.com | sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -peer1.org1.example.com | [2d8 01-18 01:58:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [5fb2272b]Inside sendExecuteMessage. Message INIT -peer0.org1.example.com | [347 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org2.example.com | [4c5 01-18 01:59:45.54 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.deployImage -> DEBU Created image: dev-peer0.org2.example.com-exp02-1.0-a1c0bed0de208402b290701943af8662423c1e8c10dbff920b90a3d16eb3fb80 -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ -peer1.org1.example.com | [2d9 01-18 01:58:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [3e4 01-18 01:58:59.41 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer0.org1.example.com | [348 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org1.example.com | [2da 01-18 01:58:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [5fb2272b]sendExecuteMsg trigger event INIT -peer0.org2.example.com | [4c6 01-18 01:59:45.54 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-recreated image successfully -peer1.org2.example.com | [3e5 01-18 01:58:59.41 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer1.org1.example.com | [2db 01-18 01:58:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5fb2272b]Move state message INIT -peer0.org1.example.com | [349 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv -peer1.org1.example.com | [2dc 01-18 01:58:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5fb2272b]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org2.example.com | [4c7 01-18 01:59:45.54 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer0.org2.example.com-exp02-1.0 -peer1.org2.example.com | [3e6 01-18 01:58:59.41 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer0.org1.example.com | [34a 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [2dd 01-18 01:58:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [2de 01-18 01:58:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5fb2272b]sending state message INIT -peer0.org2.example.com | [4c8 01-18 01:59:45.64 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Created container: dev-peer0.org2.example.com-exp02-1.0-a1c0bed0de208402b290701943af8662423c1e8c10dbff920b90a3d16eb3fb80 -peer1.org2.example.com | [3e7 01-18 01:58:59.41 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -orderer.example.com | WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk -peer0.org1.example.com | [34b 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -peer1.org1.example.com | [2df 01-18 01:58:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5fb2272b]Received message INIT from shim -peer0.org2.example.com | [4c9 01-18 01:59:46.09 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Started container dev-peer0.org2.example.com-exp02-1.0 -peer1.org2.example.com | [3e8 01-18 01:58:59.41 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer1.org1.example.com | [2e0 01-18 01:58:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5fb2272b]Handling ChaincodeMessage of type: INIT(state:ready) -orderer.example.com | SCjyRdD3aQ== -peer0.org1.example.com | [34c 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [2e1 01-18 01:58:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org2.example.com | [3e9 01-18 01:58:59.41 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [4ca 01-18 01:59:46.09 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(dev-peer0.org2.example.com-exp02-1.0) -peer0.org1.example.com | [34d 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org1.example.com | [2e2 01-18 01:58:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [5fb2272b]Received INIT, initializing chaincode -orderer.example.com | 2018-01-18 01:58:51.926 UTC [msp/identity] newIdentity -> DEBU 20b Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [3ea 01-18 01:58:59.41 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [4cb 01-18 01:59:46.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer0.org2.example.com | [4cc 01-18 01:59:46.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer1.org1.example.com | [2e3 01-18 01:58:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5fb2272b]Init get response status: 200 -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -peer1.org2.example.com | [3eb 01-18 01:58:59.41 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -peer0.org1.example.com | [34e 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org2.example.com | [4cd 01-18 01:59:46.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer1.org1.example.com | [2e4 01-18 01:58:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5fb2272b]Init succeeded. Sending COMPLETED -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org2.example.com | [3ec 01-18 01:58:59.41 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org1.example.com | [2e5 01-18 01:58:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5fb2272b]Move state message COMPLETED -peer0.org2.example.com | [4ce 01-18 01:59:46.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer0.org1.example.com | [34f 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org2.example.com | [3ed 01-18 01:58:59.41 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [2e6 01-18 01:58:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5fb2272b]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [350 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [3ee 01-18 01:58:59.41 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer0.org2.example.com | [4cf 01-18 01:59:46.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode exp02:1.0 -peer1.org1.example.com | [2e7 01-18 01:58:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5fb2272b]send state message COMPLETED -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -peer1.org2.example.com | [3ef 01-18 01:58:59.41 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org1.example.com | [351 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [2e8 01-18 01:58:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5fb2272b]Received message COMPLETED from shim -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [352 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel -peer0.org2.example.com | [4d0 01-18 01:59:46.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"exp02:1.0" , sending back REGISTERED -peer1.org2.example.com | [3f0 01-18 01:58:59.41 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -peer0.org1.example.com | [353 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -peer0.org2.example.com | [4d1 01-18 01:59:46.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -peer1.org1.example.com | [2e9 01-18 01:58:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5fb2272b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [3f1 01-18 01:58:59.41 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -peer0.org2.example.com | [4d2 01-18 01:59:46.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode exp02:1.0 launch seq completed -peer0.org1.example.com | [354 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -peer1.org1.example.com | [2ea 01-18 01:58:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5fb2272b-180d-42a2-ae5a-0350a93721f3]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [3f2 01-18 01:58:59.41 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -peer0.org1.example.com | [355 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer0.org2.example.com | [4d3 01-18 01:59:46.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.sendReady.ready -> DEBU sending READY -peer1.org1.example.com | [2eb 01-18 01:58:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:5fb2272b-180d-42a2-ae5a-0350a93721f3 -peer1.org2.example.com | [3f3 01-18 01:58:59.41 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -peer1.org1.example.com | [2ec 01-18 01:58:52.82 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [4d4 01-18 01:59:46.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | AXYxULZpXYDQXt1KaLI= -peer1.org1.example.com | [2ed 01-18 01:58:52.82 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/businesschannel(github.com/hyperledger/fabric/core/scc/vscc) deployed -peer1.org2.example.com | [3f4 01-18 01:58:59.41 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [356 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org2.example.com | [4d5 01-18 01:59:46.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | 2018-01-18 01:58:51.927 UTC [msp/identity] newIdentity -> DEBU 20c Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [3f5 01-18 01:58:59.41 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org1.example.com | [2ee 01-18 01:58:52.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [9efe9967-c62d-4355-8b86-4d91da0e6701] -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [357 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org2.example.com | [4d6 01-18 01:59:46.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [544f379d]Move state message READY -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org2.example.com | [3f6 01-18 01:58:59.41 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org1.example.com | [2ef 01-18 01:58:52.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org2.example.com | [4d7 01-18 01:59:46.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [544f379d]Fabric side Handling ChaincodeMessage of type: READY in state established -peer0.org1.example.com | [358 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -peer1.org2.example.com | [3f7 01-18 01:58:59.41 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -peer1.org1.example.com | [2f0 01-18 01:58:52.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [82db1989-64ea-4c38-a750-c67fa0bf163c] -peer0.org2.example.com | [4d8 01-18 01:59:46.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [544f379d]Entered state ready -peer0.org1.example.com | [359 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org2.example.com | [3f8 01-18 01:58:59.41 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer1.org1.example.com | [2f1 01-18 01:58:52.83 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.0.2,txid=682aa126-cdab-42a9-a0d9-63b1d56b1c65,syscc=true,proposal=0x0,canname=qscc:1.0.2 -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -peer1.org2.example.com | [3f9 01-18 01:58:59.42 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -peer0.org1.example.com | [35a 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer0.org2.example.com | [4d9 01-18 01:59:46.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:544f379dda618ff2c82301cddc728a5ab3076d114052fb463df7e9d6c1ede6fd -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -peer1.org1.example.com | [2f2 01-18 01:58:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.0.2 -peer0.org1.example.com | [35b 01-18 01:58:58.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -peer1.org2.example.com | [3fa 01-18 01:58:59.42 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer0.org2.example.com | [4da 01-18 01:59:46.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [544f379d]sending state message READY -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -peer1.org1.example.com | [2f3 01-18 01:58:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [4db 01-18 01:59:46.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch -> DEBU sending init completed -peer1.org2.example.com | [3fb 01-18 01:58:59.43 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -peer0.org1.example.com | [35c 01-18 01:58:58.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -peer0.org2.example.com | [4dc 01-18 01:59:46.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch -> DEBU LaunchChaincode complete -peer1.org1.example.com | [2f4 01-18 01:58:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.2 -peer1.org2.example.com | [3fc 01-18 01:58:59.44 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -peer0.org1.example.com | [35d 01-18 01:58:58.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -orderer.example.com | AXYxULZpXYDQXt1KaLI= -peer1.org2.example.com | [3fd 01-18 01:58:59.46 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -peer0.org2.example.com | [4dd 01-18 01:59:46.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [2f5 01-18 01:58:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [682aa126]Inside sendExecuteMessage. Message INIT -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [35e 01-18 01:58:58.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org2.example.com | [3fe 01-18 01:58:59.47 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer1.org1.example.com | [2f6 01-18 01:58:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | 2018-01-18 01:58:51.928 UTC [msp] Validate -> DEBU 20d MSP Org2MSP validating identity -peer0.org2.example.com | [4de 01-18 01:59:46.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute -> DEBU chaincode canonical name: exp02:1.0 -orderer.example.com | 2018-01-18 01:58:51.928 UTC [common/config] validateMSP -> DEBU 20e Setting up MSP for org OrdererOrg -peer1.org1.example.com | [2f7 01-18 01:58:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [682aa126]sendExecuteMsg trigger event INIT -peer1.org2.example.com | [3ff 01-18 01:58:59.47 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -orderer.example.com | 2018-01-18 01:58:51.928 UTC [msp] NewBccspMsp -> DEBU 20f Creating BCCSP-based MSP instance -peer0.org2.example.com | [4df 01-18 01:59:46.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage -> DEBU [544f379d]Inside sendExecuteMessage. Message INIT -peer0.org1.example.com | [35f 01-18 01:58:58.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | 2018-01-18 01:58:51.928 UTC [msp] Setup -> DEBU 210 Setting up MSP instance OrdererMSP -peer1.org1.example.com | [2f8 01-18 01:58:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [682aa126]Move state message INIT -peer0.org2.example.com | [4e0 01-18 01:59:46.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [400 01-18 01:58:59.47 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -orderer.example.com | 2018-01-18 01:58:51.929 UTC [msp/identity] newIdentity -> DEBU 211 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [2f9 01-18 01:58:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [682aa126]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org1.example.com | [360 01-18 01:58:58.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -peer0.org2.example.com | [4e1 01-18 01:59:46.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL -peer1.org1.example.com | [2fa 01-18 01:58:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [401 01-18 01:58:59.47 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org2.example.com | [4e2 01-18 01:59:46.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage -> DEBU [544f379d]sendExecuteMsg trigger event INIT -peer1.org1.example.com | [2fb 01-18 01:58:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [682aa126]sending state message INIT -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -peer0.org1.example.com | [361 01-18 01:58:58.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org2.example.com | [402 01-18 01:58:59.47 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU config transaction received for chain businesschannel -peer1.org2.example.com | [403 01-18 01:58:59.47 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -peer0.org2.example.com | [4e3 01-18 01:59:46.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [544f379d]Move state message INIT -peer1.org1.example.com | [2fc 01-18 01:58:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [682aa126]Received message INIT from shim -orderer.example.com | cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV -peer0.org1.example.com | [362 01-18 01:58:58.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -peer0.org2.example.com | [4e4 01-18 01:59:46.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [544f379d]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org2.example.com | [404 01-18 01:58:59.47 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Received configuration update, calling CSCC ConfigUpdate -peer0.org1.example.com | [363 01-18 01:58:58.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -peer1.org1.example.com | [2fd 01-18 01:58:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [682aa126]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org1.example.com | [364 01-18 01:58:58.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org2.example.com | [4e5 01-18 01:59:46.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [405 01-18 01:58:59.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW -peer0.org1.example.com | [365 01-18 01:58:58.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w -peer0.org1.example.com | [366 01-18 01:58:58.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [406 01-18 01:58:59.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc421c5e880), Data:(*common.BlockData)(0xc421cda960), Metadata:(*common.BlockMetadata)(0xc421cda9a0)}, doMVCCValidation=true -peer1.org1.example.com | [2fe 01-18 01:58:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org1.example.com | [367 01-18 01:58:58.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org2.example.com | [4e6 01-18 01:59:46.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [544f379d]sending state message INIT -orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -peer0.org1.example.com | [368 01-18 01:58:58.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [407 01-18 01:58:59.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -peer1.org1.example.com | [2ff 01-18 01:58:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [682aa126]Received INIT, initializing chaincode -peer0.org2.example.com | [4e7 01-18 01:59:46.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [544f379d]Received message PUT_STATE from shim -orderer.example.com | AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK -peer0.org1.example.com | [369 01-18 01:58:58.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer1.org2.example.com | [408 01-18 01:58:59.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [2] Transaction index [0] because, the transaction type is [CONFIG] -peer1.org2.example.com | [409 01-18 01:58:59.47 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0x5b, 0x7c, 0x4e, 0xf2, 0x74, 0xb6, 0x7f, 0xc2, 0x96, 0x1b, 0xb2, 0x5a, 0xd4, 0x86, 0x64, 0x1e, 0xc, 0x21, 0xb0, 0xdd, 0x91, 0xb8, 0xb5, 0x9d, 0x7f, 0x79, 0xeb, 0xbd, 0x3a, 0x97, 0xb8, 0xa1} txOffsets= -peer1.org2.example.com | txId= locPointer=offset=70, bytesLength=11970 -peer1.org2.example.com | ] -peer1.org2.example.com | [40a 01-18 01:58:59.47 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=25738, bytesLength=11970] for tx ID: [] to index -peer1.org2.example.com | [40b 01-18 01:58:59.47 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=25738, bytesLength=11970] for tx number:[0] ID: [] to blockNumTranNum index -peer1.org2.example.com | [40c 01-18 01:58:59.47 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[39459], isChainEmpty=[false], lastBlockNumber=[2] -peer1.org2.example.com | [40d 01-18 01:58:59.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [2] with 1 transaction(s) -peer1.org2.example.com | [40e 01-18 01:58:59.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -peer1.org2.example.com | [40f 01-18 01:58:59.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs -orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [4e8 01-18 01:59:46.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [544f379d]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -peer1.org1.example.com | [300 01-18 01:58:52.83 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -peer1.org2.example.com | [410 01-18 01:58:59.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -peer0.org1.example.com | [36a 01-18 01:58:58.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | 2018-01-18 01:58:51.929 UTC [msp/identity] newIdentity -> DEBU 212 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [411 01-18 01:58:59.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [2] with [1] transactions -peer0.org2.example.com | [4e9 01-18 01:59:46.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [36b 01-18 01:58:58.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -peer1.org1.example.com | [301 01-18 01:58:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [682aa126]Init get response status: 200 -peer0.org1.example.com | [36c 01-18 01:58:58.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org2.example.com | [412 01-18 01:58:59.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -peer0.org1.example.com | [36d 01-18 01:58:58.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer0.org2.example.com | [4ea 01-18 01:59:46.15 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [544f379d]state is ready -peer1.org2.example.com | [413 01-18 01:58:59.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [2] -peer0.org1.example.com | [36e 01-18 01:58:58.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -peer1.org1.example.com | [302 01-18 01:58:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [682aa126]Init succeeded. Sending COMPLETED -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -peer0.org1.example.com | [36f 01-18 01:58:58.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer0.org2.example.com | [4eb 01-18 01:59:46.15 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [544f379d]Completed PUT_STATE. Sending RESPONSE -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -peer0.org1.example.com | [370 01-18 01:58:58.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -peer1.org2.example.com | [414 01-18 01:58:59.47 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -peer0.org1.example.com | [371 01-18 01:58:58.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -peer0.org2.example.com | [4ec 01-18 01:59:46.15 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [544f379d]enterBusyState trigger event RESPONSE -peer1.org1.example.com | [303 01-18 01:58:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [682aa126]Move state message COMPLETED -peer0.org1.example.com | [372 01-18 01:58:58.74 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -peer1.org2.example.com | [415 01-18 01:58:59.47 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [2] -peer1.org1.example.com | [304 01-18 01:58:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [682aa126]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [4ed 01-18 01:59:46.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [544f379d]Move state message RESPONSE -peer0.org2.example.com | [4ee 01-18 01:59:46.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [544f379d]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -peer0.org2.example.com | [4ef 01-18 01:59:46.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [373 01-18 01:58:58.90 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -peer1.org1.example.com | [305 01-18 01:58:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [682aa126]send state message COMPLETED -peer0.org2.example.com | [4f0 01-18 01:59:46.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [544f379d]sending state message RESPONSE -peer0.org1.example.com | [374 01-18 01:58:58.90 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -peer1.org2.example.com | [416 01-18 01:58:59.47 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [375 01-18 01:58:58.90 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -peer1.org1.example.com | [306 01-18 01:58:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [682aa126]Received message COMPLETED from shim -peer0.org2.example.com | [4f1 01-18 01:59:46.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [544f379d]Received message PUT_STATE from shim -orderer.example.com | 2018-01-18 01:58:51.930 UTC [msp/identity] newIdentity -> DEBU 213 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [417 01-18 01:58:59.47 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer0.org1.example.com | [376 01-18 01:58:58.90 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -peer0.org2.example.com | [4f2 01-18 01:59:46.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [544f379d]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -peer1.org1.example.com | [307 01-18 01:58:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [682aa126]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [377 01-18 01:58:58.90 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU config transaction received for chain businesschannel -peer1.org2.example.com | [418 01-18 01:58:59.47 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org2.example.com | [4f3 01-18 01:59:46.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer1.org1.example.com | [308 01-18 01:58:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [682aa126-cdab-42a9-a0d9-63b1d56b1c65]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [378 01-18 01:58:58.90 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -peer1.org2.example.com | [419 01-18 01:58:59.47 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -peer0.org2.example.com | [4f4 01-18 01:59:46.15 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [544f379d]state is ready -peer0.org1.example.com | [379 01-18 01:58:58.90 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Received configuration update, calling CSCC ConfigUpdate -peer1.org1.example.com | [309 01-18 01:58:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:682aa126-cdab-42a9-a0d9-63b1d56b1c65 -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -peer1.org2.example.com | [41a 01-18 01:58:59.47 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -peer1.org1.example.com | [30a 01-18 01:58:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [37a 01-18 01:58:58.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -peer1.org2.example.com | [41b 01-18 01:59:00.89 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -peer0.org2.example.com | [4f5 01-18 01:59:46.15 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [544f379d]Completed PUT_STATE. Sending RESPONSE -peer0.org2.example.com | [4f6 01-18 01:59:46.16 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [544f379d]enterBusyState trigger event RESPONSE -peer0.org1.example.com | [37b 01-18 01:58:58.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc42014bf00), Data:(*common.BlockData)(0xc4215ef2a0), Metadata:(*common.BlockMetadata)(0xc4215ef2e0)}, doMVCCValidation=true -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -peer1.org1.example.com | [30b 01-18 01:58:52.83 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/chaincode/qscc) deployed -peer1.org2.example.com | [41c 01-18 01:59:00.89 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421be58c0 -peer0.org2.example.com | [4f7 01-18 01:59:46.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [544f379d]Move state message RESPONSE -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -peer0.org1.example.com | [37c 01-18 01:58:58.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -peer1.org1.example.com | [30c 01-18 01:58:52.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [82db1989-64ea-4c38-a750-c67fa0bf163c] -peer0.org2.example.com | [4f8 01-18 01:59:46.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [544f379d]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -peer1.org2.example.com | [41d 01-18 01:59:00.89 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:51.930 UTC [msp] Validate -> DEBU 214 MSP OrdererMSP validating identity -orderer.example.com | 2018-01-18 01:58:51.930 UTC [msp] Setup -> DEBU 215 Setting up the MSP manager (3 msps) -orderer.example.com | 2018-01-18 01:58:51.931 UTC [msp] Setup -> DEBU 216 MSP manager setup complete, setup 3 msps -peer0.org1.example.com | [37d 01-18 01:58:58.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [1] Transaction index [0] because, the transaction type is [CONFIG] -peer0.org1.example.com | [37e 01-18 01:58:58.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0xc3, 0xab, 0xaa, 0xb3, 0xa5, 0x22, 0xad, 0x43, 0xc, 0xa3, 0xc5, 0x33, 0x33, 0xd, 0x4f, 0xc2, 0xaa, 0x7, 0xee, 0xbc, 0xcd, 0x3b, 0xac, 0x1a, 0x3, 0xe2, 0x17, 0xb3, 0x1b, 0x87, 0x6d, 0x94} txOffsets= -peer0.org1.example.com | txId= locPointer=offset=70, bytesLength=11913 -peer0.org1.example.com | ] -peer0.org1.example.com | [37f 01-18 01:58:58.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12005, bytesLength=11913] for tx ID: [] to index -peer0.org1.example.com | [380 01-18 01:58:58.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12005, bytesLength=11913] for tx number:[0] ID: [] to blockNumTranNum index -peer0.org1.example.com | [381 01-18 01:58:58.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[25668], isChainEmpty=[false], lastBlockNumber=[1] -peer0.org1.example.com | [382 01-18 01:58:58.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [1] with 1 transaction(s) -peer0.org1.example.com | [383 01-18 01:58:58.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -peer0.org1.example.com | [384 01-18 01:58:58.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org1.example.com | [385 01-18 01:58:58.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -peer0.org1.example.com | [386 01-18 01:58:58.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [1] with [1] transactions -peer0.org1.example.com | [387 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -peer0.org1.example.com | [388 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [1] -peer0.org1.example.com | [389 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -peer0.org1.example.com | [38a 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [1] -peer0.org1.example.com | [38b 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -peer0.org1.example.com | [38c 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer0.org1.example.com | [38d 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer1.org1.example.com | [30d 01-18 01:58:52.83 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Entry -peer0.org2.example.com | [4f9 01-18 01:59:46.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [41e 01-18 01:59:00.89 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | 2018-01-18 01:58:51.931 UTC [msp] GetLocalMSP -> DEBU 217 Returning existing local MSP -peer0.org1.example.com | [38e 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -peer1.org1.example.com | [30e 01-18 01:58:52.83 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [0] -peer0.org2.example.com | [4fa 01-18 01:59:46.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [544f379d]sending state message RESPONSE -peer1.org2.example.com | [41f 01-18 01:59:00.89 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} -orderer.example.com | 2018-01-18 01:58:51.931 UTC [msp] GetDefaultSigningIdentity -> DEBU 218 Obtaining default signing identity -peer0.org2.example.com | [4fb 01-18 01:59:46.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [544f379d]Received message COMPLETED from shim -orderer.example.com | 2018-01-18 01:58:51.931 UTC [msp] GetLocalMSP -> DEBU 219 Returning existing local MSP -peer0.org1.example.com | [38f 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -peer1.org2.example.com | [420 01-18 01:59:00.89 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org2.example.com | [4fc 01-18 01:59:46.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [544f379d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [30f 01-18 01:58:52.83 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Entry -orderer.example.com | 2018-01-18 01:58:51.931 UTC [msp] GetDefaultSigningIdentity -> DEBU 21a Obtaining default signing identity -peer0.org1.example.com | [390 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -orderer.example.com | 2018-01-18 01:58:51.932 UTC [msp/identity] Sign -> DEBU 21b Sign: plaintext: 0AB7060A1B08011A0608DBFEFFD20522...6B6A44916787A9985648B6DDEBF495DE -peer1.org2.example.com | [421 01-18 01:59:00.89 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org2.example.com | [4fd 01-18 01:59:46.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [544f379dda618ff2c82301cddc728a5ab3076d114052fb463df7e9d6c1ede6fd]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [310 01-18 01:58:52.83 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer0.org1.example.com | [391 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -orderer.example.com | 2018-01-18 01:58:51.932 UTC [msp/identity] Sign -> DEBU 21c Sign: digest: AB59F312C5A19AA567004BA931C26E20AB7CC3F53C2A2BD6762B6DA633B1726A -peer0.org2.example.com | [4fe 01-18 01:59:46.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:544f379dda618ff2c82301cddc728a5ab3076d114052fb463df7e9d6c1ede6fd -peer0.org1.example.com | [392 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -peer1.org2.example.com | [422 01-18 01:59:00.89 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421ccabe0, header 0xc421be58f0 -peer1.org2.example.com | [423 01-18 01:59:00.89 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -orderer.example.com | 2018-01-18 01:58:51.932 UTC [msp] GetLocalMSP -> DEBU 21d Returning existing local MSP -peer0.org1.example.com | [393 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4217394a0 -peer1.org1.example.com | [311 01-18 01:58:52.83 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer1.org2.example.com | [424 01-18 01:59:00.89 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: b49b216b9e43de026565b8df3861ff13ef28e23fb0b1c258936929786a037d0b -orderer.example.com | 2018-01-18 01:58:51.932 UTC [msp] GetDefaultSigningIdentity -> DEBU 21e Obtaining default signing identity -peer0.org1.example.com | [394 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\337\376\377\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030a\n\340,\262`\335\020Q\311?\302\002%\0013\232C|\240\316T\363\221" -peer0.org2.example.com | [4ff 01-18 01:59:46.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [312 01-18 01:58:52.83 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Exit -peer1.org2.example.com | [425 01-18 01:59:00.89 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: b49b216b9e43de026565b8df3861ff13ef28e23fb0b1c258936929786a037d0b channel id: -orderer.example.com | 2018-01-18 01:58:51.932 UTC [msp] GetLocalMSP -> DEBU 21f Returning existing local MSP -orderer.example.com | 2018-01-18 01:58:51.932 UTC [msp] GetDefaultSigningIdentity -> DEBU 220 Obtaining default signing identity -orderer.example.com | 2018-01-18 01:58:51.933 UTC [msp/identity] Sign -> DEBU 221 Sign: plaintext: 0AB3060A1708041A0608DBFEFFD20522...00026BF88BC13D7AC6785A6107570B18 -orderer.example.com | 2018-01-18 01:58:51.933 UTC [msp/identity] Sign -> DEBU 222 Sign: digest: 0EF11389AB5912BF66D91D41E64742E3DBCEC872E0B8D119A3499E68DE11DE32 -peer0.org2.example.com | [500 01-18 01:59:46.16 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer1.org2.example.com | [426 01-18 01:59:00.89 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: b49b216b9e43de026565b8df3861ff13ef28e23fb0b1c258936929786a037d0b channel id: version: 1.0.2 -peer0.org1.example.com | [395 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer1.org1.example.com | [313 01-18 01:58:52.83 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Exit -orderer.example.com | 2018-01-18 01:58:51.933 UTC [orderer/common/broadcast] Handle -> DEBU 223 [channel: testchainid] Broadcast is filtering message of type ORDERER_TRANSACTION -peer1.org2.example.com | [427 01-18 01:59:00.89 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.0.2,txid=b49b216b9e43de026565b8df3861ff13ef28e23fb0b1c258936929786a037d0b,syscc=true,proposal=0xc421ccabe0,canname=lscc:1.0.2 -peer0.org1.example.com | [396 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [397 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 685c3e542c5c7e71cc8ac51ff9728a4a798d38a5cb22c31b73b7dddaa87ffa02} -peer0.org2.example.com | [501 01-18 01:59:46.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -orderer.example.com | 2018-01-18 01:58:51.933 UTC [policies] GetPolicy -> DEBU 224 Returning policy Writers for evaluation -peer1.org1.example.com | [314 01-18 01:58:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f465824a]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [428 01-18 01:59:00.89 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 -peer0.org1.example.com | [398 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org2.example.com | [502 01-18 01:59:46.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [0de935a9-6363-4ec1-881e-3d54374844ac] -orderer.example.com | 2018-01-18 01:58:51.933 UTC [cauthdsl] func1 -> DEBU 225 0xc42014ad78 gate 1516240731933587747 evaluation starts -peer0.org1.example.com | [399 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org2.example.com | [503 01-18 01:59:46.16 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -peer0.org1.example.com | [39a 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc421c43000, header channel_header:"\010\001\032\006\010\337\376\377\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030a\n\340,\262`\335\020Q\311?\302\002%\0013\232C|\240\316T\363\221" -orderer.example.com | 2018-01-18 01:58:51.933 UTC [cauthdsl] func2 -> DEBU 226 0xc42014ad78 signed by 0 principal evaluation starts (used [false]) -peer1.org1.example.com | [315 01-18 01:58:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f465824a]Move state message COMPLETED -peer1.org2.example.com | [429 01-18 01:59:00.89 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [504 01-18 01:59:46.16 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 544f379dda618ff2c82301cddc728a5ab3076d114052fb463df7e9d6c1ede6fd channel id: businesschannel chaincode id: name:"lscc" -peer0.org1.example.com | [39b 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -orderer.example.com | 2018-01-18 01:58:51.933 UTC [cauthdsl] func2 -> DEBU 227 0xc42014ad78 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a -peer1.org2.example.com | [42a 01-18 01:59:00.89 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -peer1.org1.example.com | [316 01-18 01:58:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f465824a]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | 2018-01-18 01:58:51.934 UTC [msp/identity] newIdentity -> DEBU 228 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [317 01-18 01:58:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f465824a]send state message COMPLETED -peer0.org1.example.com | [39c 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer0.org2.example.com | [505 01-18 01:59:46.16 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc -orderer.example.com | MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw -peer1.org2.example.com | [42b 01-18 01:59:00.89 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b49b216b]Inside sendExecuteMessage. Message TRANSACTION -peer1.org1.example.com | [318 01-18 01:58:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f465824a]Received message COMPLETED from shim -peer0.org2.example.com | [506 01-18 01:59:46.16 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 544f379dda618ff2c82301cddc728a5ab3076d114052fb463df7e9d6c1ede6fd channel id: businesschannel version: 1.0.2 -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [39d 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -peer1.org1.example.com | [319 01-18 01:58:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f465824a]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [42c 01-18 01:59:00.89 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [507 01-18 01:59:46.16 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=544f379dda618ff2c82301cddc728a5ab3076d114052fb463df7e9d6c1ede6fd,syscc=true,proposal=0xc4215025a0,canname=escc:1.0.2 -peer0.org1.example.com | [39e 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer1.org1.example.com | [31a 01-18 01:58:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f465824ae5b724e1992c1beba2f0e94e2c6daad4e2840f16cb57fa01806b06f4]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [39f 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -peer1.org2.example.com | [42d 01-18 01:59:00.89 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org2.example.com | [508 01-18 01:59:46.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE -peer1.org1.example.com | [31b 01-18 01:58:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:f465824ae5b724e1992c1beba2f0e94e2c6daad4e2840f16cb57fa01806b06f4 -peer1.org2.example.com | [42e 01-18 01:59:00.89 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b49b216b]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer0.org2.example.com | [509 01-18 01:59:46.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [3a0 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq -peer1.org1.example.com | [31c 01-18 01:58:52.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [42f 01-18 01:59:00.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b49b216b]Move state message TRANSACTION -peer0.org1.example.com | [3a1 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer0.org2.example.com | [50a 01-18 01:59:46.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 -orderer.example.com | hkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz -peer1.org2.example.com | [430 01-18 01:59:00.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b49b216b]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org1.example.com | [31d 01-18 01:58:52.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer0.org2.example.com | [50b 01-18 01:59:46.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [544f379d]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [3a2 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | MKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw -peer1.org1.example.com | [31e 01-18 01:58:52.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -peer0.org1.example.com | [3a3 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN -peer1.org2.example.com | [431 01-18 01:59:00.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [3a4 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -peer1.org1.example.com | [31f 01-18 01:58:52.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -peer1.org2.example.com | [432 01-18 01:59:00.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b49b216b]sending state message TRANSACTION -peer0.org2.example.com | [50c 01-18 01:59:46.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [3a5 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -orderer.example.com | RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH -peer1.org2.example.com | [433 01-18 01:59:00.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b49b216b]Received message TRANSACTION from shim -peer1.org2.example.com | [434 01-18 01:59:00.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b49b216b]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org2.example.com | [435 01-18 01:59:00.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [b49b216b]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [3a6 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -peer0.org2.example.com | [50d 01-18 01:59:46.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org1.example.com | [320 01-18 01:58:58.73 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -peer1.org2.example.com | [436 01-18 01:59:00.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b49b216b]Transaction completed. Sending COMPLETED -orderer.example.com | /4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl -peer0.org1.example.com | [3a7 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer1.org2.example.com | [437 01-18 01:59:00.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b49b216b]Move state message COMPLETED -peer0.org2.example.com | [50e 01-18 01:59:46.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [544f379d]sendExecuteMsg trigger event TRANSACTION -peer1.org1.example.com | [321 01-18 01:58:58.76 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -peer1.org2.example.com | [438 01-18 01:59:00.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b49b216b]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [50f 01-18 01:59:46.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [544f379d]Move state message TRANSACTION -peer0.org1.example.com | [3a8 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [439 01-18 01:59:00.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b49b216b]send state message COMPLETED -peer1.org1.example.com | [322 01-18 01:58:58.76 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -peer1.org2.example.com | [43a 01-18 01:59:00.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b49b216b]Received message COMPLETED from shim -peer0.org1.example.com | [3a9 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -orderer.example.com | 2018-01-18 01:58:51.934 UTC [msp] SatisfiesPrincipal -> DEBU 229 Checking if identity satisfies MEMBER role for OrdererMSP -peer1.org2.example.com | [43b 01-18 01:59:00.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b49b216b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [3aa 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer1.org1.example.com | [323 01-18 01:58:58.77 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4213ea900 -peer0.org2.example.com | [510 01-18 01:59:46.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [544f379d]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [43c 01-18 01:59:00.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b49b216b9e43de026565b8df3861ff13ef28e23fb0b1c258936929786a037d0b]HandleMessage- COMPLETED. Notify -orderer.example.com | 2018-01-18 01:58:51.934 UTC [msp] Validate -> DEBU 22a MSP OrdererMSP validating identity -peer0.org2.example.com | [511 01-18 01:59:46.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [324 01-18 01:58:58.78 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\335\376\377\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030\262UG\022W~\350\r\312y3\226w\332\373\025\335\225\376z\200n&\340" -peer1.org2.example.com | [43d 01-18 01:59:00.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:b49b216b9e43de026565b8df3861ff13ef28e23fb0b1c258936929786a037d0b -peer0.org1.example.com | [3ab 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer0.org2.example.com | [512 01-18 01:59:46.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [544f379d]sending state message TRANSACTION -peer1.org2.example.com | [43e 01-18 01:59:00.90 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | 2018-01-18 01:58:51.935 UTC [cauthdsl] func2 -> DEBU 22b 0xc42014ad78 principal matched by identity 0 -peer1.org1.example.com | [325 01-18 01:58:58.78 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer0.org1.example.com | [3ac 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -peer0.org2.example.com | [513 01-18 01:59:46.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -peer1.org2.example.com | [43f 01-18 01:59:00.90 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer1.org2.example.com | [440 01-18 01:59:00.90 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -peer1.org2.example.com | [441 01-18 01:59:00.90 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -peer1.org2.example.com | [442 01-18 01:59:27.75 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -peer1.org2.example.com | [443 01-18 01:59:27.75 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -orderer.example.com | 2018-01-18 01:58:51.935 UTC [msp/identity] Verify -> DEBU 22c Verify: digest = 00000000 0e f1 13 89 ab 59 12 bf 66 d9 1d 41 e6 47 42 e3 |.....Y..f..A.GB.| -peer0.org2.example.com | [514 01-18 01:59:46.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] -peer1.org1.example.com | [326 01-18 01:58:58.78 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [3ad 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -peer1.org2.example.com | [444 01-18 01:59:27.75 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -peer0.org2.example.com | [515 01-18 01:59:46.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] -orderer.example.com | 00000010 db ce c8 72 e0 b8 d1 19 a3 49 9e 68 de 11 de 32 |...r.....I.h...2| -peer1.org1.example.com | [327 01-18 01:58:58.78 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 685c3e542c5c7e71cc8ac51ff9728a4a798d38a5cb22c31b73b7dddaa87ffa02} -peer1.org2.example.com | [445 01-18 01:59:27.75 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421c49ad0 -peer0.org1.example.com | [3ae 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -peer0.org2.example.com | [516 01-18 01:59:46.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6c, 0x73, 0x63, 0x63, 0x0, 0x65, 0x78, 0x70, 0x30, 0x32}] -peer1.org2.example.com | [446 01-18 01:59:27.75 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\345\376\377\322\005\020\211\346\356\222\001\"\017businesschannel*@ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030\301\237\303\"+C\367\344\024\317<\323\262\343\371\027\307\t\002\340b0*\253" -peer1.org1.example.com | [328 01-18 01:58:58.80 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | 2018-01-18 01:58:51.935 UTC [msp/identity] Verify -> DEBU 22d Verify: sig = 00000000 30 45 02 21 00 87 2f 92 95 54 fb 85 e0 ff ce 19 |0E.!../..T......| -peer0.org1.example.com | [3af 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org2.example.com | [517 01-18 01:59:46.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -peer1.org2.example.com | [447 01-18 01:59:27.75 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org1.example.com | [3b0 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org2.example.com | [518 01-18 01:59:46.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [3] with [1] transactions -peer1.org2.example.com | [448 01-18 01:59:27.75 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | 00000010 8d dc 61 d1 ea fa 81 9b fa 83 0b 66 ee c6 8f 3e |..a........f...>| -peer1.org1.example.com | [329 01-18 01:58:58.80 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org2.example.com | [519 01-18 01:59:46.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [3] -peer0.org1.example.com | [3b1 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | 00000020 64 0d 71 9b 09 02 20 4d 7e d7 b1 be eb 57 8f 9a |d.q... M~....W..| -peer1.org2.example.com | [449 01-18 01:59:27.75 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -peer0.org2.example.com | [51a 01-18 01:59:46.16 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -peer1.org1.example.com | [32a 01-18 01:58:58.80 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc420051000, header channel_header:"\010\001\032\006\010\335\376\377\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030\262UG\022W~\350\r\312y3\226w\332\373\025\335\225\376z\200n&\340" -peer0.org1.example.com | [3b2 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -peer1.org2.example.com | [44a 01-18 01:59:27.75 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | 00000030 17 5f 57 5b d4 ad f3 f1 20 b2 bc a5 05 58 b3 2c |._W[.... ....X.,| -peer0.org2.example.com | [51b 01-18 01:59:46.16 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824 -peer0.org1.example.com | [3b3 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers -peer1.org1.example.com | [32b 01-18 01:58:58.81 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -peer1.org2.example.com | [44b 01-18 01:59:27.75 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org2.example.com | [51c 01-18 01:59:46.16 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [3] -orderer.example.com | 00000040 9f 3b e7 3c 89 72 68 |.;.<.rh| -peer1.org2.example.com | [44c 01-18 01:59:27.75 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc422042000, header channel_header:"\010\003\032\014\010\345\376\377\322\005\020\211\346\356\222\001\"\017businesschannel*@ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030\301\237\303\"+C\367\344\024\317<\323\262\343\371\027\307\t\002\340b0*\253" -peer0.org2.example.com | [51d 01-18 01:59:46.16 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -peer1.org1.example.com | [32c 01-18 01:58:58.81 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer0.org1.example.com | [3b4 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -orderer.example.com | 2018-01-18 01:58:51.935 UTC [cauthdsl] func2 -> DEBU 22e 0xc42014ad78 principal evaluation succeeds for identity 0 -peer1.org2.example.com | [44d 01-18 01:59:27.75 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer0.org2.example.com | [51e 01-18 01:59:46.16 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer0.org1.example.com | [3b5 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer1.org1.example.com | [32d 01-18 01:58:58.81 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -orderer.example.com | 2018-01-18 01:58:51.936 UTC [cauthdsl] func1 -> DEBU 22f 0xc42014ad78 gate 1516240731933587747 evaluation succeeds -peer0.org2.example.com | [51f 01-18 01:59:46.16 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer1.org2.example.com | [44e 01-18 01:59:27.75 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer1.org1.example.com | [32e 01-18 01:58:58.82 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -peer0.org2.example.com | [520 01-18 01:59:46.16 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -peer0.org1.example.com | [3b6 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org2.example.com | [44f 01-18 01:59:27.75 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -orderer.example.com | 2018-01-18 01:58:51.936 UTC [orderer/common/sigfilter] Apply -> DEBU 230 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420381280 1 [0xc42014a5d8]}) Writers]} -peer0.org2.example.com | [521 01-18 01:59:46.16 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -peer0.org1.example.com | [3b7 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer1.org1.example.com | [32f 01-18 01:58:58.82 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -peer1.org2.example.com | [450 01-18 01:59:27.75 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -orderer.example.com | 2018-01-18 01:58:51.936 UTC [msp] GetLocalMSP -> DEBU 231 Returning existing local MSP -peer0.org2.example.com | [522 01-18 01:59:46.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [544f379d]Received message TRANSACTION from shim -peer1.org1.example.com | [330 01-18 01:58:58.82 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer1.org2.example.com | [451 01-18 01:59:27.75 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824] -peer0.org1.example.com | [3b8 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer0.org2.example.com | [523 01-18 01:59:46.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [544f379d]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | 2018-01-18 01:58:51.936 UTC [msp] GetDefaultSigningIdentity -> DEBU 232 Obtaining default signing identity -peer1.org1.example.com | [331 01-18 01:58:58.82 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer0.org1.example.com | [3b9 01-18 01:58:58.95 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer1.org2.example.com | [452 01-18 01:59:27.75 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -peer0.org2.example.com | [524 01-18 01:59:46.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [544f379d]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | 2018-01-18 01:58:51.936 UTC [msp] GetLocalMSP -> DEBU 233 Returning existing local MSP -peer0.org1.example.com | [3ba 01-18 01:58:58.95 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer0.org2.example.com | [525 01-18 01:59:46.16 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -peer1.org2.example.com | [453 01-18 01:59:27.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org1.example.com | [332 01-18 01:58:58.82 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer0.org2.example.com | [526 01-18 01:59:46.16 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -orderer.example.com | 2018-01-18 01:58:51.937 UTC [msp] GetDefaultSigningIdentity -> DEBU 234 Obtaining default signing identity -peer0.org1.example.com | [3bb 01-18 01:58:58.95 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -peer1.org2.example.com | [454 01-18 01:59:27.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [d6170c61-d5f4-4d0f-bd8d-467a931c1264] -peer1.org1.example.com | [333 01-18 01:58:58.82 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -peer0.org2.example.com | [527 01-18 01:59:46.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [544f379d]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [3bc 01-18 01:58:58.95 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -orderer.example.com | 2018-01-18 01:58:51.937 UTC [msp/identity] Sign -> DEBU 235 Sign: plaintext: 0AB7060A1B08011A0608DBFEFFD20522...07526561646572731A0641646D696E73 -peer0.org2.example.com | [528 01-18 01:59:46.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [544f379d]Move state message COMPLETED -peer1.org1.example.com | [334 01-18 01:58:58.82 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -peer1.org2.example.com | [455 01-18 01:59:27.75 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=158bdced-21fc-4b84-b3d0-ab39947e7bc5,syscc=true,proposal=0x0,canname=vscc:1.0.2 -peer0.org2.example.com | [529 01-18 01:59:46.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [544f379d]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [3bd 01-18 01:58:58.95 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -peer1.org1.example.com | [335 01-18 01:58:58.82 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -peer0.org2.example.com | [52a 01-18 01:59:46.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [544f379d]send state message COMPLETED -peer1.org2.example.com | [456 01-18 01:59:27.75 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824 chaindID businesschannel -orderer.example.com | 2018-01-18 01:58:51.937 UTC [msp/identity] Sign -> DEBU 236 Sign: digest: 2CBC9EA5AF8A9600920C3DD02CA31855ED16D22F9475FBE7DBFEA35495A83037 -peer0.org2.example.com | [52b 01-18 01:59:46.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [544f379d]Received message COMPLETED from shim -peer1.org1.example.com | [336 01-18 01:58:58.82 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -peer0.org1.example.com | [3be 01-18 01:58:58.95 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -peer0.org2.example.com | [52c 01-18 01:59:46.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [544f379d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [52d 01-18 01:59:46.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [544f379dda618ff2c82301cddc728a5ab3076d114052fb463df7e9d6c1ede6fd]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [457 01-18 01:59:27.75 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 -peer1.org1.example.com | [337 01-18 01:58:58.82 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -orderer.example.com | 2018-01-18 01:58:51.937 UTC [common/config] NewStandardValues -> DEBU 237 Initializing protos for *config.ChannelProtos -peer0.org1.example.com | [3bf 01-18 01:58:58.95 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer0.org2.example.com | [52e 01-18 01:59:46.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:544f379dda618ff2c82301cddc728a5ab3076d114052fb463df7e9d6c1ede6fd -peer1.org2.example.com | [458 01-18 01:59:27.75 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [338 01-18 01:58:58.87 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -orderer.example.com | 2018-01-18 01:58:51.937 UTC [common/config] initializeProtosStruct -> DEBU 238 Processing field: HashingAlgorithm -peer0.org1.example.com | [3c0 01-18 01:58:58.95 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer1.org2.example.com | [459 01-18 01:59:27.75 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 -peer0.org2.example.com | [52f 01-18 01:59:46.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [339 01-18 01:58:58.87 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -orderer.example.com | 2018-01-18 01:58:51.937 UTC [common/config] initializeProtosStruct -> DEBU 239 Processing field: BlockDataHashingStructure -peer1.org2.example.com | [45a 01-18 01:59:27.75 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [158bdced]Inside sendExecuteMessage. Message TRANSACTION -peer1.org1.example.com | [33a 01-18 01:58:58.87 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer1.org2.example.com | [45b 01-18 01:59:27.75 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [3c1 01-18 01:58:58.95 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer0.org2.example.com | [530 01-18 01:59:46.17 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -orderer.example.com | 2018-01-18 01:58:51.938 UTC [common/config] initializeProtosStruct -> DEBU 23a Processing field: OrdererAddresses -peer1.org2.example.com | [45c 01-18 01:59:27.75 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [158bdced]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [3c2 01-18 01:58:58.95 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer1.org1.example.com | [33b 01-18 01:58:58.87 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -orderer.example.com | 2018-01-18 01:58:51.938 UTC [common/config] initializeProtosStruct -> DEBU 23b Processing field: Consortium -peer1.org2.example.com | [45d 01-18 01:59:27.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [158bdced]Move state message TRANSACTION -peer0.org1.example.com | [3c3 01-18 01:58:58.95 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer0.org2.example.com | [531 01-18 01:59:46.17 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -orderer.example.com | 2018-01-18 01:58:51.938 UTC [common/configtx] addToMap -> DEBU 23c Adding to config map: [Groups] /Channel -peer1.org1.example.com | [33c 01-18 01:58:58.87 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -peer1.org2.example.com | [45e 01-18 01:59:27.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [158bdced]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [3c4 01-18 01:58:58.95 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -peer0.org2.example.com | [532 01-18 01:59:46.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [0de935a9-6363-4ec1-881e-3d54374844ac] -orderer.example.com | 2018-01-18 01:58:51.938 UTC [common/configtx] addToMap -> DEBU 23d Adding to config map: [Groups] /Channel/Orderer -peer1.org2.example.com | [45f 01-18 01:59:27.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [33d 01-18 01:58:58.87 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -peer0.org1.example.com | [3c5 01-18 01:58:58.95 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -peer0.org2.example.com | [533 01-18 01:59:46.17 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -orderer.example.com | 2018-01-18 01:58:51.938 UTC [common/configtx] addToMap -> DEBU 23e Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -peer1.org1.example.com | [33e 01-18 01:58:58.87 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -peer0.org2.example.com | [534 01-18 01:59:48.19 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [4], peers number [3] -peer0.org1.example.com | [3c6 01-18 01:58:58.95 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer1.org2.example.com | [460 01-18 01:59:27.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [158bdced]sending state message TRANSACTION -peer0.org2.example.com | [535 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [4], peers number [3] -peer1.org1.example.com | [33f 01-18 01:58:58.87 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | 2018-01-18 01:58:51.939 UTC [common/configtx] addToMap -> DEBU 23f Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -peer1.org2.example.com | [461 01-18 01:59:27.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [158bdced]Received message TRANSACTION from shim -peer0.org1.example.com | [3c7 01-18 01:58:58.95 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer0.org2.example.com | [536 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -peer1.org2.example.com | [462 01-18 01:59:27.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [158bdced]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org1.example.com | [340 01-18 01:58:58.87 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org2.example.com | [537 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -orderer.example.com | 2018-01-18 01:58:51.939 UTC [common/configtx] addToMap -> DEBU 240 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer0.org1.example.com | [3c8 01-18 01:58:58.95 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer1.org1.example.com | [341 01-18 01:58:58.88 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer1.org2.example.com | [463 01-18 01:59:27.75 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [158bdced]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | 2018-01-18 01:58:51.939 UTC [common/configtx] addToMap -> DEBU 241 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer0.org2.example.com | [538 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -peer1.org1.example.com | [342 01-18 01:58:58.88 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -peer1.org2.example.com | [464 01-18 01:59:27.75 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -orderer.example.com | 2018-01-18 01:58:51.939 UTC [common/configtx] addToMap -> DEBU 242 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer0.org1.example.com | [3c9 01-18 01:58:58.95 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer1.org2.example.com | [465 01-18 01:59:27.75 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -peer1.org1.example.com | [343 01-18 01:58:58.88 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -peer0.org2.example.com | [539 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc42222e2a0 -orderer.example.com | 2018-01-18 01:58:51.939 UTC [common/configtx] addToMap -> DEBU 243 Adding to config map: [Values] /Channel/Orderer/BatchTimeout -peer1.org2.example.com | [466 01-18 01:59:27.76 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC -peer1.org1.example.com | [344 01-18 01:58:58.88 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org2.example.com | [467 01-18 01:59:27.76 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} -orderer.example.com | 2018-01-18 01:58:51.939 UTC [common/configtx] addToMap -> DEBU 244 Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -peer0.org2.example.com | [53a 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\375\376\377\322\005\020\220\204\253\262\003\"\017businesschannel*@544f379dda618ff2c82301cddc728a5ab3076d114052fb463df7e9d6c1ede6fd:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\030.\346n\376\017\374\362\314\316\370\257\277\034\314\3600Y\212Kj\313\"\227\377" -peer0.org1.example.com | [3ca 01-18 01:58:58.95 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer1.org2.example.com | [468 01-18 01:59:27.76 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} -peer1.org1.example.com | [345 01-18 01:58:58.88 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | 2018-01-18 01:58:51.939 UTC [common/configtx] addToMap -> DEBU 245 Adding to config map: [Values] /Channel/Orderer/ConsensusType -peer0.org1.example.com | [3cb 01-18 01:58:58.95 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -peer1.org2.example.com | [469 01-18 01:59:27.76 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace exp02 -peer1.org1.example.com | [346 01-18 01:58:58.88 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org2.example.com | [53b 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -orderer.example.com | 2018-01-18 01:58:51.940 UTC [common/configtx] addToMap -> DEBU 246 Adding to config map: [Values] /Channel/Orderer/BatchSize -peer1.org2.example.com | [46a 01-18 01:59:27.76 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc -peer1.org1.example.com | [347 01-18 01:58:58.88 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer1.org2.example.com | [46b 01-18 01:59:27.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [70d421c8-3617-4d0c-98c5-ce2b76960a9c] -peer0.org2.example.com | [53c 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [3cc 01-18 01:58:58.95 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers -orderer.example.com | 2018-01-18 01:58:51.940 UTC [common/configtx] addToMap -> DEBU 247 Adding to config map: [Policy] /Channel/Orderer/Writers -peer1.org2.example.com | [46c 01-18 01:59:27.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer1.org1.example.com | [348 01-18 01:58:58.88 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer0.org1.example.com | [3cd 01-18 01:58:58.95 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -orderer.example.com | 2018-01-18 01:58:51.940 UTC [common/configtx] addToMap -> DEBU 248 Adding to config map: [Policy] /Channel/Orderer/Admins -peer1.org2.example.com | [46d 01-18 01:59:27.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [70d421c8-3617-4d0c-98c5-ce2b76960a9c] -orderer.example.com | 2018-01-18 01:58:51.940 UTC [common/configtx] addToMap -> DEBU 249 Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer1.org2.example.com | [46e 01-18 01:59:27.76 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 -peer0.org2.example.com | [53d 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} -peer1.org1.example.com | [349 01-18 01:58:58.89 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer0.org1.example.com | [3ce 01-18 01:58:58.95 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org2.example.com | [46f 01-18 01:59:27.76 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x953df0)} -orderer.example.com | 2018-01-18 01:58:51.940 UTC [common/configtx] addToMap -> DEBU 24a Adding to config map: [Policy] /Channel/Orderer/Readers -peer0.org2.example.com | [53e 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org2.example.com | [470 01-18 01:59:27.76 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -peer0.org1.example.com | [3cf 01-18 01:58:58.95 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer1.org1.example.com | [34a 01-18 01:58:58.89 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -orderer.example.com | 2018-01-18 01:58:51.940 UTC [common/configtx] addToMap -> DEBU 24b Adding to config map: [Groups] /Channel/Application -peer0.org2.example.com | [53f 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org2.example.com | [471 01-18 01:59:27.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [158bdced]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [3d0 01-18 01:58:58.95 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | 2018-01-18 01:58:51.941 UTC [common/configtx] addToMap -> DEBU 24c Adding to config map: [Groups] /Channel/Application/Org1MSP -peer1.org1.example.com | [34b 01-18 01:58:58.89 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -peer1.org2.example.com | [472 01-18 01:59:27.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [158bdced]Move state message COMPLETED -peer0.org2.example.com | [540 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421b66000, header channel_header:"\010\003\032\014\010\375\376\377\322\005\020\220\204\253\262\003\"\017businesschannel*@544f379dda618ff2c82301cddc728a5ab3076d114052fb463df7e9d6c1ede6fd:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\030.\346n\376\017\374\362\314\316\370\257\277\034\314\3600Y\212Kj\313\"\227\377" -peer0.org1.example.com | [3d1 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [473 01-18 01:59:27.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [158bdced]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [34c 01-18 01:58:58.89 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -peer0.org2.example.com | [541 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -orderer.example.com | 2018-01-18 01:58:51.941 UTC [common/configtx] addToMap -> DEBU 24d Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -peer1.org2.example.com | [474 01-18 01:59:27.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [158bdced]send state message COMPLETED -peer0.org1.example.com | [3d2 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [542 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer1.org2.example.com | [475 01-18 01:59:27.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [158bdced]Received message COMPLETED from shim -orderer.example.com | 2018-01-18 01:58:51.941 UTC [common/configtx] addToMap -> DEBU 24e Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer1.org1.example.com | [34d 01-18 01:58:58.89 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -peer0.org1.example.com | [3d3 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [476 01-18 01:59:27.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [158bdced]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [543 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer1.org1.example.com | [34e 01-18 01:58:58.89 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -orderer.example.com | 2018-01-18 01:58:51.941 UTC [common/configtx] addToMap -> DEBU 24f Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org1.example.com | [3d4 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org2.example.com | [477 01-18 01:59:27.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [158bdced-21fc-4b84-b3d0-ab39947e7bc5]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [3d5 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [478 01-18 01:59:27.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:158bdced-21fc-4b84-b3d0-ab39947e7bc5 -peer0.org2.example.com | [544 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -peer1.org1.example.com | [34f 01-18 01:58:58.89 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -orderer.example.com | 2018-01-18 01:58:51.941 UTC [common/configtx] addToMap -> DEBU 250 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org1.example.com | [3d6 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [479 01-18 01:59:27.76 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [545 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [544f379dda618ff2c82301cddc728a5ab3076d114052fb463df7e9d6c1ede6fd] -orderer.example.com | 2018-01-18 01:58:51.941 UTC [common/configtx] addToMap -> DEBU 251 Adding to config map: [Groups] /Channel/Application/Org2MSP -peer1.org2.example.com | [47a 01-18 01:59:27.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [d6170c61-d5f4-4d0f-bd8d-467a931c1264] -peer1.org1.example.com | [350 01-18 01:58:58.89 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer0.org1.example.com | [3d7 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -peer1.org2.example.com | [47b 01-18 01:59:27.76 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -peer1.org1.example.com | [351 01-18 01:58:58.89 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer1.org2.example.com | [47c 01-18 01:59:27.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -orderer.example.com | 2018-01-18 01:58:51.942 UTC [common/configtx] addToMap -> DEBU 252 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -peer1.org1.example.com | [352 01-18 01:58:58.89 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer0.org1.example.com | [3d8 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org2.example.com | [546 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -peer1.org2.example.com | [47d 01-18 01:59:27.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc421a1e340), Data:(*common.BlockData)(0xc421806c80), Metadata:(*common.BlockMetadata)(0xc421806cc0)}, doMVCCValidation=true -peer1.org2.example.com | [47e 01-18 01:59:27.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -peer1.org2.example.com | [47f 01-18 01:59:27.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=exp02 -orderer.example.com | 2018-01-18 01:58:51.942 UTC [common/configtx] addToMap -> DEBU 253 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | 2018-01-18 01:58:51.942 UTC [common/configtx] addToMap -> DEBU 254 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer1.org2.example.com | [480 01-18 01:59:27.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [3] Transaction index [0] TxId [ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824] marked as valid by state validator -peer1.org1.example.com | [353 01-18 01:58:58.89 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -peer1.org2.example.com | [481 01-18 01:59:27.78 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0x97, 0xe, 0xbe, 0xd9, 0x27, 0xde, 0xad, 0x13, 0x22, 0x1c, 0xcb, 0xdd, 0x26, 0x3a, 0xf8, 0x99, 0xca, 0x2c, 0x54, 0x92, 0x33, 0x30, 0x7d, 0x62, 0xca, 0x6a, 0xf9, 0x20, 0xf, 0xe3, 0x82, 0xcd} txOffsets= -peer0.org1.example.com | [3d9 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [547 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | 2018-01-18 01:58:51.942 UTC [common/configtx] addToMap -> DEBU 255 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer1.org1.example.com | [354 01-18 01:58:58.89 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -peer0.org1.example.com | [3da 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | txId=ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824 locPointer=offset=70, bytesLength=3395 -peer1.org1.example.com | [355 01-18 01:58:58.89 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | 2018-01-18 01:58:51.942 UTC [common/configtx] addToMap -> DEBU 256 Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy -peer0.org2.example.com | [548 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [004eea89-b8a1-4082-a5cf-9bf26cb65b47] -peer0.org1.example.com | [3db 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -peer1.org2.example.com | ] -peer1.org1.example.com | [356 01-18 01:58:58.89 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org1.example.com | [3dc 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -peer0.org2.example.com | [549 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=c0d8b3bf-8ee1-4fa0-bfae-7b2cef43a76b,syscc=true,proposal=0x0,canname=vscc:1.0.2 -peer1.org2.example.com | [482 01-18 01:59:27.78 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=39529, bytesLength=3395] for tx ID: [ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824] to index -peer1.org1.example.com | [357 01-18 01:58:58.89 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | 2018-01-18 01:58:51.942 UTC [common/configtx] addToMap -> DEBU 257 Adding to config map: [Values] /Channel/BlockDataHashingStructure -peer0.org1.example.com | [3dd 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -peer1.org1.example.com | [358 01-18 01:58:58.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer1.org2.example.com | [483 01-18 01:59:27.78 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=39529, bytesLength=3395] for tx number:[0] ID: [ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824] to blockNumTranNum index -orderer.example.com | 2018-01-18 01:58:51.942 UTC [common/configtx] addToMap -> DEBU 258 Adding to config map: [Values] /Channel/Consortium -peer1.org1.example.com | [359 01-18 01:58:58.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer0.org1.example.com | [3de 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org2.example.com | [54a 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 544f379dda618ff2c82301cddc728a5ab3076d114052fb463df7e9d6c1ede6fd chaindID businesschannel -peer1.org1.example.com | [35a 01-18 01:58:58.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | 2018-01-18 01:58:51.943 UTC [common/configtx] addToMap -> DEBU 259 Adding to config map: [Values] /Channel/OrdererAddresses -peer1.org2.example.com | [484 01-18 01:59:27.78 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[44675], isChainEmpty=[false], lastBlockNumber=[3] -peer0.org1.example.com | [3df 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [54b 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 -peer1.org1.example.com | [35b 01-18 01:58:58.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -peer0.org1.example.com | [3e0 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:51.943 UTC [common/configtx] addToMap -> DEBU 25a Adding to config map: [Values] /Channel/HashingAlgorithm -peer1.org1.example.com | [35c 01-18 01:58:58.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -peer0.org2.example.com | [54c 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [3e1 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [485 01-18 01:59:27.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [3] with 1 transaction(s) -peer1.org1.example.com | [35d 01-18 01:58:58.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org1.example.com | [3e2 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:51.943 UTC [common/configtx] addToMap -> DEBU 25b Adding to config map: [Policy] /Channel/Readers -peer1.org1.example.com | [35e 01-18 01:58:58.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer1.org2.example.com | [486 01-18 01:59:27.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -peer0.org2.example.com | [54d 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 -peer0.org1.example.com | [3e3 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org1.example.com | [35f 01-18 01:58:58.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | 2018-01-18 01:58:51.943 UTC [common/configtx] addToMap -> DEBU 25c Adding to config map: [Policy] /Channel/Writers -peer0.org1.example.com | [3e4 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel -peer0.org2.example.com | [54e 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c0d8b3bf]Inside sendExecuteMessage. Message TRANSACTION -peer1.org1.example.com | [360 01-18 01:58:58.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [487 01-18 01:59:27.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -orderer.example.com | 2018-01-18 01:58:51.944 UTC [common/configtx] addToMap -> DEBU 25d Adding to config map: [Policy] /Channel/Admins -peer0.org1.example.com | [3e5 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -peer1.org1.example.com | [361 01-18 01:58:58.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org2.example.com | [54f 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | 2018-01-18 01:58:51.944 UTC [common/configtx] processConfig -> DEBU 25e Beginning new config for channel businesschannel -peer0.org1.example.com | [3e6 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer1.org2.example.com | [488 01-18 01:59:27.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] -peer1.org1.example.com | [362 01-18 01:58:58.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [3e7 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org1.example.com | [363 01-18 01:58:58.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -peer0.org2.example.com | [550 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c0d8b3bf]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | 2018-01-18 01:58:51.944 UTC [common/config] NewStandardValues -> DEBU 25f Initializing protos for *config.ChannelProtos -peer0.org1.example.com | [3e8 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org1.example.com | [364 01-18 01:58:58.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -peer1.org2.example.com | [489 01-18 01:59:27.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] -peer0.org2.example.com | [551 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c0d8b3bf]Move state message TRANSACTION -peer0.org1.example.com | [3e9 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer1.org1.example.com | [365 01-18 01:58:58.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -peer1.org2.example.com | [48a 01-18 01:59:27.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6c, 0x73, 0x63, 0x63, 0x0, 0x65, 0x78, 0x70, 0x30, 0x32}] -peer1.org1.example.com | [366 01-18 01:58:58.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [3ea 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -peer0.org1.example.com | [3eb 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer0.org2.example.com | [552 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c0d8b3bf]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [48b 01-18 01:59:27.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -orderer.example.com | 2018-01-18 01:58:51.944 UTC [common/config] initializeProtosStruct -> DEBU 260 Processing field: HashingAlgorithm -peer0.org1.example.com | [3ec 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer1.org1.example.com | [367 01-18 01:58:58.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [48c 01-18 01:59:27.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [3] with [1] transactions -peer0.org2.example.com | [553 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [3ed 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -orderer.example.com | 2018-01-18 01:58:51.944 UTC [common/config] initializeProtosStruct -> DEBU 261 Processing field: BlockDataHashingStructure -peer1.org2.example.com | [48d 01-18 01:59:27.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [3] -peer0.org2.example.com | [554 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c0d8b3bf]sending state message TRANSACTION -peer0.org1.example.com | [3ee 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer1.org1.example.com | [368 01-18 01:58:58.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [555 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c0d8b3bf]Received message TRANSACTION from shim -orderer.example.com | 2018-01-18 01:58:51.944 UTC [common/config] initializeProtosStruct -> DEBU 262 Processing field: OrdererAddresses -peer1.org1.example.com | [369 01-18 01:58:58.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [3ef 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer1.org2.example.com | [48e 01-18 01:59:27.81 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -peer0.org2.example.com | [556 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c0d8b3bf]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org1.example.com | [36a 01-18 01:58:58.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:51.945 UTC [common/config] initializeProtosStruct -> DEBU 263 Processing field: Consortium -peer1.org2.example.com | [48f 01-18 01:59:27.83 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824 -peer0.org1.example.com | [3f0 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org2.example.com | [557 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [c0d8b3bf]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | 2018-01-18 01:58:51.945 UTC [policies] ProposePolicy -> DEBU 264 Proposed new policy Readers for Channel -peer1.org2.example.com | [490 01-18 01:59:27.83 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [3] -peer0.org2.example.com | [558 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer0.org1.example.com | [3f1 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [36b 01-18 01:58:58.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [491 01-18 01:59:27.83 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -peer0.org1.example.com | [3f2 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -peer1.org2.example.com | [492 01-18 01:59:27.83 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -orderer.example.com | 2018-01-18 01:58:51.945 UTC [policies] ProposePolicy -> DEBU 265 Proposed new policy Writers for Channel -peer0.org2.example.com | [559 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -peer1.org1.example.com | [36c 01-18 01:58:58.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -peer1.org2.example.com | [493 01-18 01:59:27.83 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -orderer.example.com | 2018-01-18 01:58:51.945 UTC [policies] ProposePolicy -> DEBU 266 Proposed new policy Admins for Channel -peer0.org2.example.com | [55a 01-18 01:59:48.21 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC -peer1.org2.example.com | [494 01-18 01:59:27.83 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -peer1.org1.example.com | [36d 01-18 01:58:58.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:51.945 UTC [common/config] NewStandardValues -> DEBU 267 Initializing protos for *config.OrdererProtos -peer1.org2.example.com | [495 01-18 01:59:27.83 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -peer0.org1.example.com | [3f3 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org2.example.com | [55b 01-18 01:59:48.21 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} -peer1.org1.example.com | [36e 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [496 01-18 01:59:46.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -orderer.example.com | 2018-01-18 01:58:51.945 UTC [common/config] initializeProtosStruct -> DEBU 268 Processing field: ConsensusType -peer0.org1.example.com | [3f4 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [55c 01-18 01:59:48.21 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} -peer1.org2.example.com | [497 01-18 01:59:46.47 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421aaea20 -peer1.org1.example.com | [36f 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [3f5 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | 2018-01-18 01:58:51.945 UTC [common/config] initializeProtosStruct -> DEBU 269 Processing field: BatchSize -peer1.org2.example.com | [498 01-18 01:59:46.47 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org2.example.com | [55d 01-18 01:59:48.21 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace exp02 -peer1.org1.example.com | [370 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:51.946 UTC [common/config] initializeProtosStruct -> DEBU 26a Processing field: BatchTimeout -peer0.org1.example.com | [3f6 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org2.example.com | [499 01-18 01:59:46.47 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | 2018-01-18 01:58:51.946 UTC [common/config] initializeProtosStruct -> DEBU 26b Processing field: KafkaBrokers -peer0.org2.example.com | [55e 01-18 01:59:48.21 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc -peer1.org1.example.com | [371 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [49a 01-18 01:59:46.47 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} -orderer.example.com | 2018-01-18 01:58:51.946 UTC [common/config] initializeProtosStruct -> DEBU 26c Processing field: ChannelRestrictions -peer0.org1.example.com | [3f7 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org2.example.com | [55f 01-18 01:59:48.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [70e65a49-6344-4c14-98dc-6432db6f59fe] -peer1.org2.example.com | [49b 01-18 01:59:46.47 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org1.example.com | [372 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [3f8 01-18 01:58:58.97 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [560 01-18 01:59:48.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer1.org2.example.com | [49c 01-18 01:59:46.47 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | 2018-01-18 01:58:51.946 UTC [policies] ProposePolicy -> DEBU 26d Proposed new policy Readers for Orderer -peer0.org1.example.com | [3f9 01-18 01:58:58.97 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org1.example.com | [373 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel -peer1.org2.example.com | [49d 01-18 01:59:46.47 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421eda190, header 0xc421aaea50 -peer0.org2.example.com | [561 01-18 01:59:48.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [70e65a49-6344-4c14-98dc-6432db6f59fe] -orderer.example.com | 2018-01-18 01:58:51.947 UTC [policies] ProposePolicy -> DEBU 26e Proposed new policy Writers for Orderer -peer0.org1.example.com | [3fa 01-18 01:58:58.97 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [49e 01-18 01:59:46.47 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"exp02" -peer1.org2.example.com | [49f 01-18 01:59:46.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: afd2203955a8845122074437e7365cc652cdbd95f0cf91047123a63a45ca9267 -peer1.org2.example.com | [4a0 01-18 01:59:46.47 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [afd2203955a8845122074437e7365cc652cdbd95f0cf91047123a63a45ca9267] -peer1.org1.example.com | [374 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -peer1.org1.example.com | [375 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org2.example.com | [562 01-18 01:59:48.21 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 -peer1.org2.example.com | [4a1 01-18 01:59:46.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | 2018-01-18 01:58:51.947 UTC [policies] ProposePolicy -> DEBU 26f Proposed new policy Admins for Orderer -peer0.org1.example.com | [3fb 01-18 01:58:58.97 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer1.org2.example.com | [4a2 01-18 01:59:46.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [d0e7cbd3-6142-4757-be96-893ec5e2b251] -peer1.org2.example.com | [4a3 01-18 01:59:46.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: afd2203955a8845122074437e7365cc652cdbd95f0cf91047123a63a45ca9267 channel id: businesschannel -peer0.org2.example.com | [563 01-18 01:59:48.21 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x953df0)} -orderer.example.com | 2018-01-18 01:58:51.947 UTC [policies] ProposePolicy -> DEBU 270 Proposed new policy BlockValidation for Orderer -peer1.org1.example.com | [376 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org2.example.com | [4a4 01-18 01:59:46.47 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=afd2203955a8845122074437e7365cc652cdbd95f0cf91047123a63a45ca9267,syscc=true,proposal=0xc421eda190,canname=lscc:1.0.2 -peer0.org1.example.com | [3fc 01-18 01:58:58.97 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | 2018-01-18 01:58:51.948 UTC [common/config] NewStandardValues -> DEBU 271 Initializing protos for *config.OrganizationProtos -peer0.org2.example.com | [564 01-18 01:59:48.22 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode exp02 is already instantiated -peer1.org2.example.com | [4a5 01-18 01:59:46.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 -peer1.org1.example.com | [377 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -orderer.example.com | 2018-01-18 01:58:51.948 UTC [common/config] initializeProtosStruct -> DEBU 272 Processing field: MSP -peer0.org1.example.com | [3fd 01-18 01:58:58.97 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org2.example.com | [565 01-18 01:59:48.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c0d8b3bf]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [4a6 01-18 01:59:46.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [378 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | 2018-01-18 01:58:51.948 UTC [policies] ProposePolicy -> DEBU 273 Proposed new policy Writers for OrdererOrg -peer0.org1.example.com | [3fe 01-18 01:58:58.97 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [4a7 01-18 01:59:46.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -peer0.org2.example.com | [566 01-18 01:59:48.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c0d8b3bf]Move state message COMPLETED -peer1.org1.example.com | [379 01-18 01:58:58.95 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -orderer.example.com | 2018-01-18 01:58:51.948 UTC [policies] ProposePolicy -> DEBU 274 Proposed new policy Admins for OrdererOrg -peer1.org2.example.com | [4a8 01-18 01:59:46.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [afd22039]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [3ff 01-18 01:58:58.97 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer0.org2.example.com | [567 01-18 01:59:48.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c0d8b3bf]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | 2018-01-18 01:58:51.949 UTC [policies] ProposePolicy -> DEBU 275 Proposed new policy Readers for OrdererOrg -peer1.org1.example.com | [37a 01-18 01:58:58.95 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org2.example.com | [4a9 01-18 01:59:46.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [400 01-18 01:58:58.97 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -orderer.example.com | 2018-01-18 01:58:51.949 UTC [common/config] NewStandardValues -> DEBU 276 Initializing protos for *struct {} -peer0.org2.example.com | [568 01-18 01:59:48.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c0d8b3bf]send state message COMPLETED -peer1.org1.example.com | [37b 01-18 01:58:58.95 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [4aa 01-18 01:59:46.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | 2018-01-18 01:58:51.949 UTC [policies] ProposePolicy -> DEBU 277 Proposed new policy ChannelCreationPolicy for Application -peer0.org2.example.com | [569 01-18 01:59:48.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c0d8b3bf]Received message COMPLETED from shim -peer1.org2.example.com | [4ab 01-18 01:59:46.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [afd22039]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [401 01-18 01:58:58.97 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer1.org1.example.com | [37c 01-18 01:58:58.95 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer1.org2.example.com | [4ac 01-18 01:59:46.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [afd22039]Move state message TRANSACTION -peer0.org2.example.com | [56a 01-18 01:59:48.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c0d8b3bf]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | 2018-01-18 01:58:51.949 UTC [common/config] NewStandardValues -> DEBU 278 Initializing protos for *config.OrganizationProtos -peer1.org2.example.com | [4ad 01-18 01:59:46.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [afd22039]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org1.example.com | [37d 01-18 01:58:58.95 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org1.example.com | [402 01-18 01:58:58.97 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -peer0.org2.example.com | [56b 01-18 01:59:48.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c0d8b3bf-8ee1-4fa0-bfae-7b2cef43a76b]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [4ae 01-18 01:59:46.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | 2018-01-18 01:58:51.949 UTC [common/config] initializeProtosStruct -> DEBU 279 Processing field: MSP -peer1.org1.example.com | [37e 01-18 01:58:58.95 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org2.example.com | [4af 01-18 01:59:46.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [afd22039]sending state message TRANSACTION -peer0.org2.example.com | [56c 01-18 01:59:48.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:c0d8b3bf-8ee1-4fa0-bfae-7b2cef43a76b -peer0.org1.example.com | [403 01-18 01:58:58.97 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer1.org1.example.com | [37f 01-18 01:58:58.95 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [4b0 01-18 01:59:46.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [afd22039]Received message TRANSACTION from shim -orderer.example.com | 2018-01-18 01:58:51.949 UTC [common/config] NewStandardValues -> DEBU 27a Initializing protos for *config.ApplicationOrgProtos -peer0.org1.example.com | [404 01-18 01:58:58.98 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -peer0.org2.example.com | [56d 01-18 01:59:48.22 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [4b1 01-18 01:59:46.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [afd22039]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org2.example.com | [4b2 01-18 01:59:46.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [afd22039]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [405 01-18 01:58:59.03 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer1.org1.example.com | [380 01-18 01:58:58.95 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org2.example.com | [56e 01-18 01:59:48.22 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> ERRO VSCC check failed for transaction txid=544f379dda618ff2c82301cddc728a5ab3076d114052fb463df7e9d6c1ede6fd, error Chaincode exp02 is already instantiated -peer0.org2.example.com | [56f 01-18 01:59:48.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [004eea89-b8a1-4082-a5cf-9bf26cb65b47] -peer1.org2.example.com | [4b3 01-18 01:59:46.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [afd22039]Sending GET_STATE -peer1.org1.example.com | [381 01-18 01:58:58.95 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [4b4 01-18 01:59:46.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [afd22039]Received message GET_STATE from shim -orderer.example.com | 2018-01-18 01:58:51.949 UTC [common/config] initializeProtosStruct -> DEBU 27b Processing field: AnchorPeers -peer0.org1.example.com | [406 01-18 01:58:59.03 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -peer1.org1.example.com | [382 01-18 01:58:58.95 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer0.org2.example.com | [570 01-18 01:59:48.22 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> ERRO VSCCValidateTx for transaction txId = 544f379dda618ff2c82301cddc728a5ab3076d114052fb463df7e9d6c1ede6fd returned error Chaincode exp02 is already instantiated -peer1.org2.example.com | [4b5 01-18 01:59:46.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [afd22039]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer0.org1.example.com | [407 01-18 01:58:59.03 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -orderer.example.com | 2018-01-18 01:58:51.950 UTC [common/config] NewStandardValues -> DEBU 27c Initializing protos for *config.OrganizationProtos -peer1.org2.example.com | [4b6 01-18 01:59:46.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [afd22039]Received GET_STATE, invoking get state from ledger -peer0.org2.example.com | [571 01-18 01:59:48.22 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -peer1.org1.example.com | [383 01-18 01:58:58.95 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | 2018-01-18 01:58:51.950 UTC [common/config] initializeProtosStruct -> DEBU 27d Processing field: MSP -peer0.org1.example.com | [408 01-18 01:58:59.03 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -peer1.org2.example.com | [4b7 01-18 01:59:46.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [572 01-18 01:59:48.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -orderer.example.com | 2018-01-18 01:58:51.950 UTC [policies] ProposePolicy -> DEBU 27e Proposed new policy Writers for Org1MSP -peer1.org2.example.com | [4b8 01-18 01:59:46.48 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [afd22039] getting state for chaincode lscc, key exp02, channel businesschannel -peer1.org1.example.com | [384 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org2.example.com | [573 01-18 01:59:48.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc421ade240), Data:(*common.BlockData)(0xc421830860), Metadata:(*common.BlockMetadata)(0xc4218308a0)}, doMVCCValidation=true -peer1.org2.example.com | [4b9 01-18 01:59:46.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer0.org1.example.com | [409 01-18 01:58:59.04 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU config transaction received for chain businesschannel -orderer.example.com | 2018-01-18 01:58:51.950 UTC [policies] ProposePolicy -> DEBU 27f Proposed new policy Admins for Org1MSP -peer1.org1.example.com | [385 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [4ba 01-18 01:59:46.48 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [afd22039]Got state. Sending RESPONSE -peer0.org2.example.com | [574 01-18 01:59:48.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -peer1.org2.example.com | [4bb 01-18 01:59:46.48 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [afd22039]handleGetState serial send RESPONSE -peer1.org1.example.com | [386 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -orderer.example.com | 2018-01-18 01:58:51.950 UTC [policies] ProposePolicy -> DEBU 280 Proposed new policy Readers for Org1MSP -peer0.org1.example.com | [40a 01-18 01:58:59.04 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -peer0.org2.example.com | [575 01-18 01:59:48.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> WARN Block [4] Transaction index [0] marked as invalid by committer. Reason code [10] -peer1.org2.example.com | [4bc 01-18 01:59:46.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [afd22039]Received message RESPONSE from shim -orderer.example.com | 2018-01-18 01:58:51.950 UTC [common/config] NewStandardValues -> DEBU 281 Initializing protos for *config.OrganizationProtos -peer1.org1.example.com | [387 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer1.org2.example.com | [4bd 01-18 01:59:46.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [afd22039]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer0.org1.example.com | [40b 01-18 01:58:59.04 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Received configuration update, calling CSCC ConfigUpdate -orderer.example.com | 2018-01-18 01:58:51.950 UTC [common/config] initializeProtosStruct -> DEBU 282 Processing field: MSP -peer1.org2.example.com | [4be 01-18 01:59:46.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [afd22039]before send -peer1.org1.example.com | [388 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer0.org2.example.com | [576 01-18 01:59:48.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0xa9, 0xa2, 0x5c, 0x6d, 0x32, 0x6, 0xa0, 0x2d, 0x65, 0xc3, 0x6e, 0x5b, 0xf7, 0xb7, 0x4f, 0x48, 0x2d, 0xb5, 0x26, 0x88, 0xf4, 0x50, 0x7e, 0x26, 0xb8, 0xd0, 0xfe, 0x2f, 0x87, 0xde, 0x87, 0x83} txOffsets= -peer1.org2.example.com | [4bf 01-18 01:59:46.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [afd22039]after send -peer0.org1.example.com | [40c 01-18 01:58:59.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org1.example.com | [389 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer0.org2.example.com | txId=544f379dda618ff2c82301cddc728a5ab3076d114052fb463df7e9d6c1ede6fd locPointer=offset=70, bytesLength=3394 -peer1.org2.example.com | [4c0 01-18 01:59:46.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [afd22039]Received RESPONSE, communicated (state:ready) -orderer.example.com | 2018-01-18 01:58:51.950 UTC [common/config] NewStandardValues -> DEBU 283 Initializing protos for *config.ApplicationOrgProtos -peer1.org1.example.com | [38a 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer0.org1.example.com | [40d 01-18 01:58:59.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc4202c7a00), Data:(*common.BlockData)(0xc421c85fa0), Metadata:(*common.BlockMetadata)(0xc421c85fe0)}, doMVCCValidation=true -peer1.org2.example.com | [4c1 01-18 01:59:46.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [afd22039]GetState received payload RESPONSE -peer0.org2.example.com | ] -orderer.example.com | 2018-01-18 01:58:51.951 UTC [common/config] initializeProtosStruct -> DEBU 284 Processing field: AnchorPeers -peer0.org1.example.com | [40e 01-18 01:58:59.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -peer1.org1.example.com | [38b 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer1.org2.example.com | [4c2 01-18 01:59:46.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [afd22039]Transaction completed. Sending COMPLETED -orderer.example.com | 2018-01-18 01:58:51.951 UTC [common/config] NewStandardValues -> DEBU 285 Initializing protos for *config.OrganizationProtos -peer0.org2.example.com | [577 01-18 01:59:48.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=44745, bytesLength=3394] for tx ID: [544f379dda618ff2c82301cddc728a5ab3076d114052fb463df7e9d6c1ede6fd] to index -peer0.org1.example.com | [40f 01-18 01:58:59.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [2] Transaction index [0] because, the transaction type is [CONFIG] -peer1.org2.example.com | [4c3 01-18 01:59:46.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [afd22039]Move state message COMPLETED -peer1.org1.example.com | [38c 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:51.951 UTC [common/config] initializeProtosStruct -> DEBU 286 Processing field: MSP -peer1.org2.example.com | [4c4 01-18 01:59:46.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [afd22039]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [38d 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [410 01-18 01:58:59.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0x5b, 0x7c, 0x4e, 0xf2, 0x74, 0xb6, 0x7f, 0xc2, 0x96, 0x1b, 0xb2, 0x5a, 0xd4, 0x86, 0x64, 0x1e, 0xc, 0x21, 0xb0, 0xdd, 0x91, 0xb8, 0xb5, 0x9d, 0x7f, 0x79, 0xeb, 0xbd, 0x3a, 0x97, 0xb8, 0xa1} txOffsets= -peer0.org2.example.com | [578 01-18 01:59:48.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=44745, bytesLength=3394] for tx number:[0] ID: [544f379dda618ff2c82301cddc728a5ab3076d114052fb463df7e9d6c1ede6fd] to blockNumTranNum index -peer1.org2.example.com | [4c5 01-18 01:59:46.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [afd22039]send state message COMPLETED -orderer.example.com | 2018-01-18 01:58:51.951 UTC [policies] ProposePolicy -> DEBU 287 Proposed new policy Admins for Org2MSP -peer0.org1.example.com | txId= locPointer=offset=70, bytesLength=11970 -peer1.org2.example.com | [4c6 01-18 01:59:46.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [afd22039]Received message COMPLETED from shim -peer1.org1.example.com | [38e 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -peer0.org2.example.com | [579 01-18 01:59:48.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[49891], isChainEmpty=[false], lastBlockNumber=[4] -peer0.org1.example.com | ] -orderer.example.com | 2018-01-18 01:58:51.951 UTC [policies] ProposePolicy -> DEBU 288 Proposed new policy Readers for Org2MSP -peer1.org2.example.com | [4c7 01-18 01:59:46.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [afd22039]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [38f 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer0.org2.example.com | [57a 01-18 01:59:48.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [4] with 1 transaction(s) -peer0.org1.example.com | [411 01-18 01:58:59.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=25738, bytesLength=11970] for tx ID: [] to index -orderer.example.com | 2018-01-18 01:58:51.951 UTC [policies] ProposePolicy -> DEBU 289 Proposed new policy Writers for Org2MSP -peer1.org1.example.com | [390 01-18 01:58:58.97 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -peer1.org2.example.com | [4c8 01-18 01:59:46.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [afd2203955a8845122074437e7365cc652cdbd95f0cf91047123a63a45ca9267]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [412 01-18 01:58:59.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=25738, bytesLength=11970] for tx number:[0] ID: [] to blockNumTranNum index -orderer.example.com | 2018-01-18 01:58:51.952 UTC [common/config] validateMSP -> DEBU 28a Setting up MSP for org OrdererOrg -peer1.org1.example.com | [391 01-18 01:58:58.97 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer0.org2.example.com | [57b 01-18 01:59:48.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -peer1.org2.example.com | [4c9 01-18 01:59:46.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:afd2203955a8845122074437e7365cc652cdbd95f0cf91047123a63a45ca9267 -peer0.org1.example.com | [413 01-18 01:58:59.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[39459], isChainEmpty=[false], lastBlockNumber=[2] -peer1.org1.example.com | [392 01-18 01:58:58.97 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer0.org2.example.com | [57c 01-18 01:59:48.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -peer1.org2.example.com | [4ca 01-18 01:59:46.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | 2018-01-18 01:58:51.952 UTC [msp] NewBccspMsp -> DEBU 28b Creating BCCSP-based MSP instance -peer1.org1.example.com | [393 01-18 01:58:58.98 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -peer1.org2.example.com | [4cb 01-18 01:59:46.48 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache -peer1.org1.example.com | [394 01-18 01:58:58.99 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer0.org1.example.com | [414 01-18 01:58:59.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [2] with 1 transaction(s) -peer0.org2.example.com | [57d 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -peer1.org2.example.com | [4cc 01-18 01:59:46.48 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: afd2203955a8845122074437e7365cc652cdbd95f0cf91047123a63a45ca9267 channel id: businesschannel version: 1.0 -peer0.org1.example.com | [415 01-18 01:58:59.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -peer1.org1.example.com | [395 01-18 01:58:58.99 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -orderer.example.com | 2018-01-18 01:58:51.952 UTC [msp] Setup -> DEBU 28c Setting up MSP instance OrdererMSP -peer0.org2.example.com | [57e 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [4] with [1] transactions -peer1.org2.example.com | [4cd 01-18 01:59:46.48 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=exp02,version=1.0,txid=afd2203955a8845122074437e7365cc652cdbd95f0cf91047123a63a45ca9267,syscc=false,proposal=0xc421eda190,canname=exp02:1.0 -peer1.org1.example.com | [396 01-18 01:58:58.99 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -orderer.example.com | 2018-01-18 01:58:51.952 UTC [msp/identity] newIdentity -> DEBU 28d Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [416 01-18 01:58:59.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -peer1.org1.example.com | [397 01-18 01:58:58.99 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -peer0.org2.example.com | [57f 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Skipping history write for invalid transaction number 0 -orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL -peer1.org2.example.com | [4ce 01-18 01:59:46.48 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=afd2203955a8845122074437e7365cc652cdbd95f0cf91047123a63a45ca9267,syscc=true,proposal=0xc421eda190,canname=lscc:1.0.2 -peer0.org2.example.com | [580 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [4] -peer1.org1.example.com | [398 01-18 01:58:58.99 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU config transaction received for chain businesschannel -peer1.org2.example.com | [4cf 01-18 01:59:46.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [417 01-18 01:58:59.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -peer0.org2.example.com | [581 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -peer1.org2.example.com | [4d0 01-18 01:59:46.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [399 01-18 01:58:58.99 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -peer0.org2.example.com | [582 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: 544f379dda618ff2c82301cddc728a5ab3076d114052fb463df7e9d6c1ede6fd -peer0.org1.example.com | [418 01-18 01:58:59.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [2] with [1] transactions -peer1.org1.example.com | [39a 01-18 01:58:58.99 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Received configuration update, calling CSCC ConfigUpdate -orderer.example.com | cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV -peer0.org2.example.com | [583 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [4] -peer0.org1.example.com | [419 01-18 01:58:59.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -peer1.org2.example.com | [4d1 01-18 01:59:46.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -peer1.org1.example.com | [39b 01-18 01:58:58.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org2.example.com | [4d2 01-18 01:59:46.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [afd22039]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [41a 01-18 01:58:59.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [2] -peer0.org2.example.com | [584 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -peer1.org1.example.com | [39c 01-18 01:58:58.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc42143a600), Data:(*common.BlockData)(0xc4214d2780), Metadata:(*common.BlockMetadata)(0xc4214d27c0)}, doMVCCValidation=true -peer1.org2.example.com | [4d3 01-18 01:59:46.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [41b 01-18 01:58:59.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -peer0.org2.example.com | [585 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [4d4 01-18 01:59:46.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org1.example.com | [39d 01-18 01:58:58.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW -peer1.org1.example.com | [39e 01-18 01:58:58.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [1] Transaction index [0] because, the transaction type is [CONFIG] -peer0.org2.example.com | [586 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer1.org2.example.com | [4d5 01-18 01:59:46.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [afd22039]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [41c 01-18 01:58:59.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [2] -orderer.example.com | gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w -peer0.org2.example.com | [587 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -peer1.org2.example.com | [4d6 01-18 01:59:46.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [afd22039]Move state message TRANSACTION -peer0.org1.example.com | [41d 01-18 01:58:59.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -peer1.org1.example.com | [39f 01-18 01:58:59.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0xc3, 0xab, 0xaa, 0xb3, 0xa5, 0x22, 0xad, 0x43, 0xc, 0xa3, 0xc5, 0x33, 0x33, 0xd, 0x4f, 0xc2, 0xaa, 0x7, 0xee, 0xbc, 0xcd, 0x3b, 0xac, 0x1a, 0x3, 0xe2, 0x17, 0xb3, 0x1b, 0x87, 0x6d, 0x94} txOffsets= -orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -peer0.org2.example.com | [588 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -peer0.org1.example.com | [41e 01-18 01:58:59.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [4d7 01-18 01:59:46.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [afd22039]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK -peer0.org1.example.com | [41f 01-18 01:58:59.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer1.org1.example.com | txId= locPointer=offset=70, bytesLength=11913 -peer1.org2.example.com | [4d8 01-18 01:59:46.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [589 01-18 02:00:11.32 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [5], peers number [3] -peer0.org1.example.com | [420 01-18 01:58:59.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs -peer1.org1.example.com | ] -peer1.org2.example.com | [4d9 01-18 01:59:46.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [afd22039]sending state message TRANSACTION -peer0.org2.example.com | [58a 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [5], peers number [3] -orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= -peer1.org1.example.com | [3a0 01-18 01:58:59.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12005, bytesLength=11913] for tx ID: [] to index -peer1.org2.example.com | [4da 01-18 01:59:46.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [afd22039]Received message TRANSACTION from shim -peer0.org1.example.com | [421 01-18 01:58:59.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -peer1.org2.example.com | [4db 01-18 01:59:46.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [afd22039]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [58b 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -peer1.org1.example.com | [3a1 01-18 01:58:59.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12005, bytesLength=11913] for tx number:[0] ID: [] to blockNumTranNum index -peer0.org1.example.com | [422 01-18 01:59:01.30 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -peer1.org2.example.com | [4dc 01-18 01:59:46.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [afd22039]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org2.example.com | [58c 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -peer1.org2.example.com | [4dd 01-18 01:59:46.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [afd22039]Sending GET_STATE -orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [3a2 01-18 01:58:59.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[25668], isChainEmpty=[false], lastBlockNumber=[1] -peer1.org2.example.com | [4de 01-18 01:59:46.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [afd22039]Received message GET_STATE from shim -peer0.org1.example.com | [423 01-18 01:59:01.30 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422040540 -peer0.org2.example.com | [58d 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -orderer.example.com | 2018-01-18 01:58:51.954 UTC [msp/identity] newIdentity -> DEBU 28e Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [3a3 01-18 01:58:59.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [1] with 1 transaction(s) -peer1.org2.example.com | [4df 01-18 01:59:46.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [afd22039]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer0.org2.example.com | [58e 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc42247f110 -peer0.org1.example.com | [424 01-18 01:59:01.30 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -peer1.org1.example.com | [3a4 01-18 01:58:59.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -peer1.org2.example.com | [4e0 01-18 01:59:46.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [afd22039]Received GET_STATE, invoking get state from ledger -peer0.org2.example.com | [58f 01-18 02:00:11.34 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\251\377\377\322\005\020\301\210\311\204\001\"\017businesschannel*@82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f:\t\022\007\022\005exp02" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030\215L\3418\2617/0\026\310\033\"v\267\267\031\315i\305\260\215\352\256\351" -peer0.org1.example.com | [425 01-18 01:59:01.30 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org1.example.com | [3a5 01-18 01:58:59.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org2.example.com | [590 01-18 02:00:11.34 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [426 01-18 01:59:01.30 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -peer1.org2.example.com | [4e1 01-18 01:59:46.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [3a6 01-18 01:58:59.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -peer0.org2.example.com | [591 01-18 02:00:11.34 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer1.org2.example.com | [4e2 01-18 01:59:46.48 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [afd22039] getting state for chaincode lscc, key exp02, channel businesschannel -peer0.org1.example.com | [427 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org2.example.com | [592 01-18 02:00:11.34 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -peer1.org1.example.com | [3a7 01-18 01:58:59.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [1] with [1] transactions -peer0.org1.example.com | [428 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -peer1.org2.example.com | [4e3 01-18 01:59:46.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer0.org2.example.com | [593 01-18 02:00:11.34 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [429 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421c4d9a0, header 0xc422040570 -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer0.org2.example.com | [594 01-18 02:00:11.34 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org2.example.com | [4e4 01-18 01:59:46.48 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [afd22039]Got state. Sending RESPONSE -peer1.org1.example.com | [3a8 01-18 01:58:59.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -peer0.org2.example.com | [595 01-18 02:00:11.34 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc42186b000, header channel_header:"\010\003\032\014\010\251\377\377\322\005\020\301\210\311\204\001\"\017businesschannel*@82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f:\t\022\007\022\005exp02" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030\215L\3418\2617/0\026\310\033\"v\267\267\031\315i\305\260\215\352\256\351" -peer0.org2.example.com | [596 01-18 02:00:11.34 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer0.org2.example.com | [597 01-18 02:00:11.34 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer0.org2.example.com | [598 01-18 02:00:11.34 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -peer1.org2.example.com | [4e5 01-18 01:59:46.48 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [afd22039]handleGetState serial send RESPONSE -peer0.org2.example.com | [599 01-18 02:00:11.34 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -peer0.org1.example.com | [42a 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -peer1.org1.example.com | [3a9 01-18 01:58:59.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [1] -peer1.org2.example.com | [4e6 01-18 01:59:46.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [afd22039]Received message RESPONSE from shim -peer0.org2.example.com | [59a 01-18 02:00:11.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f] -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -peer1.org1.example.com | [3aa 01-18 01:58:59.01 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -peer0.org2.example.com | [59b 01-18 02:00:11.34 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -peer1.org2.example.com | [4e7 01-18 01:59:46.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [afd22039]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer0.org1.example.com | [42b 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824 -peer0.org2.example.com | [59c 01-18 02:00:11.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [78fbe1ba-e01c-45a0-90a6-a6fc3b2de50b] -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -peer1.org2.example.com | [4e8 01-18 01:59:46.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [afd22039]before send -peer0.org2.example.com | [59d 01-18 02:00:11.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer1.org1.example.com | [3ab 01-18 01:58:59.02 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [1] -peer0.org2.example.com | [59e 01-18 02:00:11.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [78fbe1ba-e01c-45a0-90a6-a6fc3b2de50b] -peer0.org1.example.com | [42c 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824] -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -peer0.org2.example.com | [59f 01-18 02:00:11.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org1.example.com | [3ac 01-18 01:58:59.02 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -peer1.org2.example.com | [4e9 01-18 01:59:46.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [afd22039]after send -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -peer0.org2.example.com | [5a0 01-18 02:00:11.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [c76be9ec-c919-4269-9cd9-9072bb49e23c] -peer0.org1.example.com | [42d 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org1.example.com | [3ad 01-18 01:58:59.02 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -peer1.org2.example.com | [4ea 01-18 01:59:46.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [afd22039]Received RESPONSE, communicated (state:ready) -peer0.org2.example.com | [5a1 01-18 02:00:11.34 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=b578854e-4113-4960-b6a9-5512ddd3ebe6,syscc=true,proposal=0x0,canname=vscc:1.0.2 -peer0.org1.example.com | [42e 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [b2886e93-0dcf-4cd2-aef9-ab99e897e7b2] -peer1.org1.example.com | [3ae 01-18 01:58:59.02 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer1.org2.example.com | [4eb 01-18 01:59:46.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [afd22039]GetState received payload RESPONSE -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [5a2 01-18 02:00:11.34 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f chaindID businesschannel -peer0.org1.example.com | [42f 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824 channel id: businesschannel -peer1.org1.example.com | [3af 01-18 01:58:59.02 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -peer0.org1.example.com | [430 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824 channel id: businesschannel version: 1.0.2 -peer1.org1.example.com | [3b0 01-18 01:58:59.02 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -orderer.example.com | 2018-01-18 01:58:51.955 UTC [msp/identity] newIdentity -> DEBU 28f Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [4ec 01-18 01:59:46.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [afd22039]Transaction completed. Sending COMPLETED -peer1.org1.example.com | [3b1 01-18 01:58:59.02 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -peer0.org2.example.com | [5a3 01-18 02:00:11.34 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -peer1.org2.example.com | [4ed 01-18 01:59:46.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [afd22039]Move state message COMPLETED -peer0.org1.example.com | [431 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824,syscc=true,proposal=0xc421c4d9a0,canname=lscc:1.0.2 -peer0.org2.example.com | [5a4 01-18 02:00:11.34 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [3b2 01-18 01:58:59.02 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org2.example.com | [4ee 01-18 01:59:46.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [afd22039]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [5a5 01-18 02:00:11.34 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 -peer1.org1.example.com | [3b3 01-18 01:58:59.02 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -peer0.org1.example.com | [432 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer0.org2.example.com | [5a6 01-18 02:00:11.34 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b578854e]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -peer1.org1.example.com | [3b4 01-18 01:58:59.03 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc42183dcb0 -peer1.org2.example.com | [4ef 01-18 01:59:46.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [afd22039]send state message COMPLETED -peer0.org1.example.com | [433 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer1.org1.example.com | [3b5 01-18 01:58:59.03 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\337\376\377\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030a\n\340,\262`\335\020Q\311?\302\002%\0013\232C|\240\316T\363\221" -peer0.org2.example.com | [5a7 01-18 02:00:11.34 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [4f0 01-18 01:59:46.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [afd22039]Received message COMPLETED from shim -peer0.org1.example.com | [434 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -peer1.org1.example.com | [3b6 01-18 01:58:59.04 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer0.org2.example.com | [5a8 01-18 02:00:11.34 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b578854e]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [4f1 01-18 01:59:46.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [afd22039]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [435 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ebabbeb4]Inside sendExecuteMessage. Message TRANSACTION -peer1.org1.example.com | [3b7 01-18 01:58:59.04 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -peer1.org2.example.com | [4f2 01-18 01:59:46.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [afd2203955a8845122074437e7365cc652cdbd95f0cf91047123a63a45ca9267]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [436 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [3b8 01-18 01:58:59.04 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 685c3e542c5c7e71cc8ac51ff9728a4a798d38a5cb22c31b73b7dddaa87ffa02} -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -peer1.org2.example.com | [4f3 01-18 01:59:46.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:afd2203955a8845122074437e7365cc652cdbd95f0cf91047123a63a45ca9267 -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -peer0.org2.example.com | [5a9 01-18 02:00:11.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b578854e]Move state message TRANSACTION -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -peer1.org1.example.com | [3b9 01-18 01:58:59.04 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org2.example.com | [4f4 01-18 01:59:46.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [5aa 01-18 02:00:11.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b578854e]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -peer0.org1.example.com | [437 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org2.example.com | [4f5 01-18 01:59:46.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode exp02:1.0 is being launched -orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [3ba 01-18 01:58:59.04 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org1.example.com | [438 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ebabbeb4]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [4f6 01-18 01:59:46.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -orderer.example.com | 2018-01-18 01:58:51.955 UTC [msp] Validate -> DEBU 290 MSP OrdererMSP validating identity -peer0.org1.example.com | [439 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ebabbeb4]Move state message TRANSACTION -peer0.org2.example.com | [5ab 01-18 02:00:11.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | 2018-01-18 01:58:51.955 UTC [common/config] Validate -> DEBU 291 Anchor peers for org Org1MSP are -peer1.org2.example.com | [4f7 01-18 01:59:46.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer1.org2.example.com:7052] -peer0.org2.example.com | [5ac 01-18 02:00:11.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b578854e]sending state message TRANSACTION -peer1.org1.example.com | [3bb 01-18 01:58:59.04 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc421b66000, header channel_header:"\010\001\032\006\010\337\376\377\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030a\n\340,\262`\335\020Q\311?\302\002%\0013\232C|\240\316T\363\221" -peer1.org2.example.com | [4f8 01-18 01:59:46.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container: exp02:1.0(networkid:dev,peerid:peer1.org2.example.com) -peer0.org1.example.com | [43a 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ebabbeb4]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | 2018-01-18 01:58:51.955 UTC [common/config] validateMSP -> DEBU 292 Setting up MSP for org Org1MSP -peer0.org2.example.com | [5ad 01-18 02:00:11.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b578854e]Received message TRANSACTION from shim -peer1.org2.example.com | [4f9 01-18 01:59:46.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer1.org2.example.com:7052 -peer0.org1.example.com | [43b 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [3bc 01-18 01:58:59.05 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -peer0.org2.example.com | [5ae 01-18 02:00:11.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b578854e]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | 2018-01-18 01:58:51.955 UTC [msp] NewBccspMsp -> DEBU 293 Creating BCCSP-based MSP instance -peer1.org2.example.com | [4fa 01-18 01:59:46.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: -peer0.org1.example.com | [43c 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ebabbeb4]sending state message TRANSACTION -peer1.org1.example.com | [3bd 01-18 01:58:59.05 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer0.org2.example.com | [5af 01-18 02:00:11.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [b578854e]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | 2018-01-18 01:58:51.955 UTC [msp] Setup -> DEBU 294 Setting up MSP instance Org1MSP -peer0.org1.example.com | [43d 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ebabbeb4]Received message TRANSACTION from shim -peer1.org2.example.com | CORE_CHAINCODE_ID_NAME=exp02:1.0 -peer0.org2.example.com | [5b0 01-18 02:00:11.34 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -orderer.example.com | 2018-01-18 01:58:51.956 UTC [msp/identity] newIdentity -> DEBU 295 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [3be 01-18 01:58:59.05 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -peer0.org1.example.com | [43e 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ebabbeb4]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org2.example.com | CORE_PEER_TLS_ENABLED=true -orderer.example.com | MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL -peer0.org2.example.com | [5b1 01-18 02:00:11.34 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -peer1.org1.example.com | [3bf 01-18 01:58:59.05 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer0.org1.example.com | [43f 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [ebabbeb4]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org2.example.com | [5b2 01-18 02:00:11.34 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org1.example.com | [3c0 01-18 01:58:59.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer0.org1.example.com | [440 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [ebabbeb4]Sending GET_STATE -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer0.org2.example.com | [5b3 01-18 02:00:11.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b578854e]Transaction completed. Sending COMPLETED -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org1.example.com | [3c1 01-18 01:58:59.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer1.org2.example.com | [4fb 01-18 01:59:46.49 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(dev-peer1.org2.example.com-exp02-1.0) lock -peer0.org2.example.com | [5b4 01-18 02:00:11.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b578854e]Move state message COMPLETED -peer0.org1.example.com | [441 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ebabbeb4]Received message GET_STATE from shim -peer1.org1.example.com | [3c2 01-18 01:58:59.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -peer1.org1.example.com | [3c3 01-18 01:58:59.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer0.org1.example.com | [442 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ebabbeb4]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org2.example.com | [4fc 01-18 01:59:46.49 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (dev-peer1.org2.example.com-exp02-1.0) lock -peer1.org1.example.com | [3c4 01-18 01:58:59.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -peer0.org2.example.com | [5b5 01-18 02:00:11.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b578854e]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [3c5 01-18 01:58:59.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -peer1.org2.example.com | [4fd 01-18 01:59:46.49 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Cleanup container dev-peer1.org2.example.com-exp02-1.0 -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org2.example.com | [5b6 01-18 02:00:11.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b578854e]send state message COMPLETED -peer0.org1.example.com | [443 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [ebabbeb4]Received GET_STATE, invoking get state from ledger -peer1.org1.example.com | [3c6 01-18 01:58:59.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -peer0.org2.example.com | [5b7 01-18 02:00:11.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b578854e]Received message COMPLETED from shim -peer1.org2.example.com | [4fe 01-18 01:59:46.49 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Stop container dev-peer1.org2.example.com-exp02-1.0(No such container: dev-peer1.org2.example.com-exp02-1.0) -peer0.org1.example.com | [444 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [3c7 01-18 01:58:59.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -peer1.org2.example.com | [4ff 01-18 01:59:46.49 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Kill container dev-peer1.org2.example.com-exp02-1.0 (No such container: dev-peer1.org2.example.com-exp02-1.0) -peer0.org2.example.com | [5b8 01-18 02:00:11.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b578854e]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [3c8 01-18 01:58:59.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer0.org1.example.com | [445 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [ebabbeb4] getting state for chaincode lscc, key exp02, channel businesschannel -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -peer0.org2.example.com | [5b9 01-18 02:00:11.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b578854e-4113-4960-b6a9-5512ddd3ebe6]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [3c9 01-18 01:58:59.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer1.org2.example.com | [500 01-18 01:59:46.49 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Remove container dev-peer1.org2.example.com-exp02-1.0 (No such container: dev-peer1.org2.example.com-exp02-1.0) -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -peer1.org1.example.com | [3ca 01-18 01:58:59.06 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer0.org1.example.com | [446 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer1.org2.example.com | [501 01-18 01:59:46.49 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Start container dev-peer1.org2.example.com-exp02-1.0 -peer1.org1.example.com | [3cb 01-18 01:58:59.07 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer0.org2.example.com | [5ba 01-18 02:00:11.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:b578854e-4113-4960-b6a9-5512ddd3ebe6 -peer0.org1.example.com | [447 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [ebabbeb4]No state associated with key: exp02. Sending RESPONSE with an empty payload -peer1.org2.example.com | [502 01-18 01:59:46.49 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: v102_default -orderer.example.com | BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf -peer0.org1.example.com | [448 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [ebabbeb4]handleGetState serial send RESPONSE -peer0.org2.example.com | [5bb 01-18 02:00:11.35 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [3cc 01-18 01:58:59.08 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -orderer.example.com | db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -peer1.org2.example.com | [503 01-18 01:59:46.49 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer1.org2.example.com-exp02-1.0 -peer0.org2.example.com | [5bc 01-18 02:00:11.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [c76be9ec-c919-4269-9cd9-9072bb49e23c] -peer1.org1.example.com | [3cd 01-18 01:58:59.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -peer0.org1.example.com | [449 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ebabbeb4]Received message RESPONSE from shim -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx -peer1.org1.example.com | [3ce 01-18 01:58:59.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -peer1.org1.example.com | [3cf 01-18 01:58:59.10 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -peer0.org2.example.com | [5bd 01-18 02:00:11.35 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -peer1.org1.example.com | [3d0 01-18 01:58:59.10 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi -peer1.org2.example.com | [504 01-18 01:59:46.50 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-could not find image (container id ), because of ...attempt to recreate image -peer1.org1.example.com | [3d1 01-18 01:58:59.10 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org1.example.com | [44a 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ebabbeb4]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer0.org2.example.com | [5be 01-18 02:00:11.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -orderer.example.com | /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ -peer1.org1.example.com | [3d2 01-18 01:58:59.10 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer1.org2.example.com | [505 01-18 01:59:46.50 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms] do.do.Start.func1.GenerateDockerBuild.generateDockerfile -> DEBU -peer0.org2.example.com | [5bf 01-18 02:00:11.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc4217ca000), Data:(*common.BlockData)(0xc42264bbc0), Metadata:(*common.BlockMetadata)(0xc42264bc00)}, doMVCCValidation=true -peer1.org1.example.com | [3d3 01-18 01:58:59.10 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | H7n8z1pj5w== -peer0.org1.example.com | [44b 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [ebabbeb4]before send -peer1.org2.example.com | FROM hyperledger/fabric-baseos:x86_64-0.3.2 -peer0.org2.example.com | [5c0 01-18 02:00:11.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -peer1.org1.example.com | [3d4 01-18 01:58:59.10 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [44c 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [ebabbeb4]after send -peer0.org2.example.com | [5c1 01-18 02:00:11.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=exp02, key=a -peer1.org1.example.com | [3d5 01-18 01:58:59.10 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -peer1.org2.example.com | ADD binpackage.tar /usr/local/bin -orderer.example.com | 2018-01-18 01:58:51.956 UTC [msp/identity] newIdentity -> DEBU 296 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [5c2 01-18 02:00:11.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=exp02, key=b -peer1.org1.example.com | [3d6 01-18 01:58:59.10 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org1.example.com | [44d 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [ebabbeb4]Received RESPONSE, communicated (state:ready) -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -peer1.org1.example.com | [3d7 01-18 01:58:59.10 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org2.example.com | LABEL org.hyperledger.fabric.chaincode.id.name="exp02" \ -peer0.org2.example.com | [5c3 01-18 02:00:11.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer1.org1.example.com | [3d8 01-18 01:58:59.10 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org1.example.com | [44e 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [ebabbeb4]GetState received payload RESPONSE -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org2.example.com | org.hyperledger.fabric.chaincode.id.version="1.0" \ -peer0.org2.example.com | [5c4 01-18 02:00:11.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [5] Transaction index [0] TxId [82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f] marked as valid by state validator -peer1.org1.example.com | [3d9 01-18 01:58:59.10 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer1.org2.example.com | org.hyperledger.fabric.chaincode.type="GOLANG" \ -peer1.org1.example.com | [3da 01-18 01:58:59.10 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer0.org1.example.com | [44f 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.createChaincode.putChaincodeData.PutState.handlePutState -> DEBU [ebabbeb4]Inside putstate -peer1.org2.example.com | org.hyperledger.fabric.version="1.0.2" \ -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org2.example.com | [5c5 01-18 02:00:11.35 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=5, blockHash=[]byte{0x6c, 0xf7, 0xab, 0xa5, 0x1f, 0xca, 0x2a, 0x58, 0xcb, 0xd4, 0xd1, 0xb3, 0x1d, 0x76, 0xc1, 0x27, 0x8a, 0x2f, 0xe, 0x8d, 0x19, 0x84, 0xf0, 0xbf, 0x33, 0x10, 0xfe, 0x43, 0xbc, 0xb4, 0x60, 0x53} txOffsets= -peer1.org1.example.com | [3db 01-18 01:58:59.10 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer1.org2.example.com | org.hyperledger.fabric.base.version="0.3.2" -peer0.org1.example.com | [450 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.createChaincode.putChaincodeData.PutState.handlePutState -> DEBU [ebabbeb4]Sending PUT_STATE -peer1.org1.example.com | [3dc 01-18 01:58:59.11 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -peer1.org2.example.com | ENV CORE_CHAINCODE_BUILDLEVEL=1.0.2 -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -peer0.org2.example.com | txId=82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f locPointer=offset=70, bytesLength=2855 -peer0.org2.example.com | ] -peer0.org1.example.com | [451 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ebabbeb4]Received message PUT_STATE from shim -peer1.org1.example.com | [3dd 01-18 01:58:59.11 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -peer1.org2.example.com | ENV CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -peer0.org2.example.com | [5c6 01-18 02:00:11.36 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=49961, bytesLength=2855] for tx ID: [82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f] to index -peer1.org1.example.com | [3de 01-18 01:58:59.11 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -peer1.org2.example.com | COPY peer.crt /etc/hyperledger/fabric/peer.crt -peer0.org1.example.com | [452 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ebabbeb4]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -peer1.org2.example.com | [506 01-18 01:59:46.50 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/util] generateDockerBuild.GenerateDockerBuild.DockerBuild -> DEBU Attempting build with image hyperledger/fabric-ccenv:x86_64-1.0.2 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org1.example.com | [3df 01-18 01:58:59.11 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -peer0.org2.example.com | [5c7 01-18 02:00:11.36 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=49961, bytesLength=2855] for tx number:[0] ID: [82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f] to blockNumTranNum index -peer0.org1.example.com | [453 01-18 01:59:01.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [507 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -peer1.org1.example.com | [3e0 01-18 01:58:59.11 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer0.org1.example.com | [454 01-18 01:59:01.32 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [ebabbeb4]state is ready -peer1.org2.example.com | [508 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -peer0.org1.example.com | [455 01-18 01:59:01.32 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [ebabbeb4]Completed PUT_STATE. Sending RESPONSE -peer1.org2.example.com | [509 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer0.org1.example.com | [456 01-18 01:59:01.32 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [ebabbeb4]enterBusyState trigger event RESPONSE -peer1.org2.example.com | [50a 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421403020 -peer1.org1.example.com | [3e1 01-18 01:58:59.11 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer0.org2.example.com | [5c8 01-18 02:00:11.36 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[54566], isChainEmpty=[false], lastBlockNumber=[5] -peer0.org1.example.com | [457 01-18 01:59:01.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ebabbeb4]Move state message RESPONSE -peer1.org2.example.com | [50b 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\375\376\377\322\005\020\220\204\253\262\003\"\017businesschannel*@544f379dda618ff2c82301cddc728a5ab3076d114052fb463df7e9d6c1ede6fd:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\030.\346n\376\017\374\362\314\316\370\257\277\034\314\3600Y\212Kj\313\"\227\377" -peer0.org1.example.com | [458 01-18 01:59:01.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ebabbeb4]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -peer1.org2.example.com | [50c 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -peer0.org1.example.com | [459 01-18 01:59:01.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [50d 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org1.example.com | [3e2 01-18 01:58:59.11 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer1.org2.example.com | [50e 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} -peer0.org1.example.com | [45a 01-18 01:59:01.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ebabbeb4]sending state message RESPONSE -peer0.org2.example.com | [5c9 01-18 02:00:11.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [5] with 1 transaction(s) -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -peer1.org1.example.com | [3e3 01-18 01:58:59.11 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer1.org2.example.com | [50f 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [45b 01-18 01:59:01.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ebabbeb4]Received message RESPONSE from shim -peer1.org2.example.com | [510 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org1.example.com | [3e4 01-18 01:58:59.11 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer0.org1.example.com | [45c 01-18 01:59:01.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ebabbeb4]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer1.org2.example.com | [511 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc4217b6000, header channel_header:"\010\003\032\014\010\375\376\377\322\005\020\220\204\253\262\003\"\017businesschannel*@544f379dda618ff2c82301cddc728a5ab3076d114052fb463df7e9d6c1ede6fd:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\030.\346n\376\017\374\362\314\316\370\257\277\034\314\3600Y\212Kj\313\"\227\377" -peer0.org2.example.com | [5ca 01-18 02:00:11.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -peer0.org1.example.com | [45d 01-18 01:59:01.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [ebabbeb4]before send -peer1.org1.example.com | [3e5 01-18 01:58:59.11 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -peer0.org1.example.com | [45e 01-18 01:59:01.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [ebabbeb4]after send -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -peer1.org2.example.com | [512 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer1.org1.example.com | [3e6 01-18 01:58:59.11 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -peer0.org1.example.com | [460 01-18 01:59:01.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [ebabbeb4]Received RESPONSE, communicated (state:ready) -peer0.org2.example.com | [5cb 01-18 02:00:11.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -peer1.org2.example.com | [513 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -peer0.org1.example.com | [45f 01-18 01:59:01.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.createChaincode.putChaincodeData.PutState.handlePutState -> DEBU [ebabbeb4]Received RESPONSE. Successfully updated state -peer1.org2.example.com | [514 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer0.org2.example.com | [5cc 01-18 02:00:11.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] -peer1.org1.example.com | [3e7 01-18 01:58:59.11 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org1.example.com | [461 01-18 01:59:01.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ebabbeb4]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [515 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -peer0.org1.example.com | [462 01-18 01:59:01.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ebabbeb4]Move state message COMPLETED -peer1.org1.example.com | [3e8 01-18 01:58:59.12 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | xHTBvxfK6mAzmUitFmY= -peer0.org2.example.com | [5cd 01-18 02:00:11.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] -peer1.org2.example.com | [516 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [544f379dda618ff2c82301cddc728a5ab3076d114052fb463df7e9d6c1ede6fd] -peer0.org1.example.com | [463 01-18 01:59:01.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ebabbeb4]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [3e9 01-18 01:58:59.12 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org2.example.com | [5ce 01-18 02:00:11.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -peer0.org1.example.com | [464 01-18 01:59:01.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ebabbeb4]send state message COMPLETED -peer1.org2.example.com | [517 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -peer0.org1.example.com | [465 01-18 01:59:01.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ebabbeb4]Received message COMPLETED from shim -peer0.org1.example.com | [466 01-18 01:59:01.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ebabbeb4]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [467 01-18 01:59:01.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [3ea 01-18 01:58:59.12 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -orderer.example.com | 2018-01-18 01:58:51.957 UTC [msp/identity] newIdentity -> DEBU 297 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [468 01-18 01:59:01.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824 -peer0.org2.example.com | [5cf 01-18 02:00:11.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [5] with [1] transactions -peer1.org2.example.com | [518 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org1.example.com | [3eb 01-18 01:58:59.12 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer0.org1.example.com | [469 01-18 01:59:01.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -peer1.org2.example.com | [519 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [cadb1520-2ce2-405b-a336-097772fd24a8] -peer1.org1.example.com | [3ec 01-18 01:58:59.12 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -peer0.org1.example.com | [46a 01-18 01:59:01.32 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=exp02,version=1.0,txid=ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824,syscc=false,proposal=0xc421c4d9a0,canname=exp02:1.0 -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [46b 01-18 01:59:01.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch -> DEBU launchAndWaitForRegister fetched 2248 bytes from file system -peer0.org2.example.com | [5d0 01-18 02:00:11.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [5] -peer1.org1.example.com | [3ed 01-18 01:58:59.12 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -peer0.org1.example.com | [46c 01-18 01:59:01.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode exp02:1.0 is being launched -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org2.example.com | [5d1 01-18 02:00:11.36 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -peer1.org2.example.com | [51a 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=e968a497-e5be-4251-9519-eaba7363499a,syscc=true,proposal=0x0,canname=vscc:1.0.2 -peer1.org1.example.com | [3ee 01-18 01:58:59.14 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers -peer0.org1.example.com | [46d 01-18 01:59:01.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -peer1.org2.example.com | [51b 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 544f379dda618ff2c82301cddc728a5ab3076d114052fb463df7e9d6c1ede6fd chaindID businesschannel -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -peer0.org1.example.com | [46e 01-18 01:59:01.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -peer0.org2.example.com | [5d2 01-18 02:00:11.36 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [5] contains transaction id: 82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f -peer1.org1.example.com | [3ef 01-18 01:58:59.14 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org1.example.com | [46f 01-18 01:59:01.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container: exp02:1.0(networkid:dev,peerid:peer0.org1.example.com) -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org1.example.com | [3f0 01-18 01:58:59.14 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer0.org2.example.com | [5d3 01-18 02:00:11.36 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [5] -peer1.org2.example.com | [51c 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 -peer0.org1.example.com | [470 01-18 01:59:01.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer1.org1.example.com | [3f1 01-18 01:58:59.15 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org2.example.com | [5d4 01-18 02:00:11.36 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -peer1.org2.example.com | [51d 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -peer1.org1.example.com | [3f2 01-18 01:58:59.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [471 01-18 01:59:01.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: -peer1.org2.example.com | [51e 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 -peer0.org2.example.com | [5d5 01-18 02:00:11.36 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -peer1.org1.example.com | [3f3 01-18 01:58:59.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org2.example.com | [51f 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [e968a497]Inside sendExecuteMessage. Message TRANSACTION -peer0.org2.example.com | [5d6 01-18 02:00:11.36 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=exp02:1.0 -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -peer1.org1.example.com | [3f4 01-18 01:58:59.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [520 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org2.example.com | [521 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [e968a497]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -peer0.org2.example.com | [5d7 01-18 02:00:11.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -peer1.org1.example.com | [3f5 01-18 01:58:59.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer1.org2.example.com | [522 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e968a497]Move state message TRANSACTION -peer0.org2.example.com | [5d8 01-18 02:00:11.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -peer1.org1.example.com | [3f6 01-18 01:58:59.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -peer0.org2.example.com | [5d9 01-18 02:00:26.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer1.org2.example.com | [523 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e968a497]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | xHTBvxfK6mAzmUitFmY= -peer1.org1.example.com | [3f7 01-18 01:58:59.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org2.example.com | [5da 01-18 02:00:26.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42226c390 -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer0.org2.example.com | [5db 01-18 02:00:26.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org2.example.com | [524 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [3f8 01-18 01:58:59.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [472 01-18 01:59:01.32 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(dev-peer0.org1.example.com-exp02-1.0) lock -peer1.org2.example.com | [525 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e968a497]sending state message TRANSACTION -peer0.org2.example.com | [5dc 01-18 02:00:26.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org1.example.com | [3f9 01-18 01:58:59.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:51.958 UTC [msp] Validate -> DEBU 298 MSP Org1MSP validating identity -peer0.org1.example.com | [473 01-18 01:59:01.32 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (dev-peer0.org1.example.com-exp02-1.0) lock -peer1.org1.example.com | [3fa 01-18 01:58:59.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [526 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e968a497]Received message TRANSACTION from shim -peer0.org2.example.com | [5dd 01-18 02:00:26.62 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} -orderer.example.com | 2018-01-18 01:58:51.958 UTC [common/config] Validate -> DEBU 299 Anchor peers for org Org2MSP are -peer0.org1.example.com | [474 01-18 01:59:01.32 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Cleanup container dev-peer0.org1.example.com-exp02-1.0 -peer1.org1.example.com | [3fb 01-18 01:58:59.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org2.example.com | [527 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e968a497]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [5de 01-18 02:00:26.62 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | 2018-01-18 01:58:51.958 UTC [common/config] validateMSP -> DEBU 29a Setting up MSP for org Org2MSP -peer0.org1.example.com | [475 01-18 01:59:01.33 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Stop container dev-peer0.org1.example.com-exp02-1.0(No such container: dev-peer0.org1.example.com-exp02-1.0) -peer1.org1.example.com | [3fc 01-18 01:58:59.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -peer1.org2.example.com | [528 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [e968a497]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org2.example.com | [5df 01-18 02:00:26.62 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | 2018-01-18 01:58:51.959 UTC [msp] NewBccspMsp -> DEBU 29b Creating BCCSP-based MSP instance -peer0.org1.example.com | [476 01-18 01:59:01.33 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Kill container dev-peer0.org1.example.com-exp02-1.0 (No such container: dev-peer0.org1.example.com-exp02-1.0) -peer1.org1.example.com | [3fd 01-18 01:58:59.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -peer1.org2.example.com | [529 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer0.org1.example.com | [477 01-18 01:59:01.33 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Remove container dev-peer0.org1.example.com-exp02-1.0 (No such container: dev-peer0.org1.example.com-exp02-1.0) -peer1.org1.example.com | [3fe 01-18 01:58:59.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -peer1.org2.example.com | [52a 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -orderer.example.com | 2018-01-18 01:58:51.959 UTC [msp] Setup -> DEBU 29c Setting up MSP instance Org2MSP -peer0.org2.example.com | [5e0 01-18 02:00:26.62 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4219b65f0, header 0xc42226c3c0 -peer1.org1.example.com | [3ff 01-18 01:58:59.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [478 01-18 01:59:01.33 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Start container dev-peer0.org1.example.com-exp02-1.0 -peer0.org2.example.com | [5e1 01-18 02:00:26.62 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"exp02" -orderer.example.com | 2018-01-18 01:58:51.959 UTC [msp/identity] newIdentity -> DEBU 29d Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [52b 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC -peer1.org1.example.com | [400 01-18 01:58:59.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [479 01-18 01:59:01.33 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: v102_default -orderer.example.com | MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw -peer1.org1.example.com | [401 01-18 01:58:59.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org2.example.com | [52c 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} -peer0.org1.example.com | [47a 01-18 01:59:01.33 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer0.org1.example.com-exp02-1.0 -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org2.example.com | [5e2 01-18 02:00:26.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 983fc1dba680ebbdd503ae9f7fc13c048037af4e1c16979509b93634594fea34 -peer1.org2.example.com | [52d 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} -peer0.org1.example.com | [47b 01-18 01:59:01.34 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-could not find image (container id ), because of ...attempt to recreate image -peer1.org1.example.com | [402 01-18 01:58:59.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer1.org2.example.com | [52e 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace exp02 -peer0.org2.example.com | [5e3 01-18 02:00:26.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [983fc1dba680ebbdd503ae9f7fc13c048037af4e1c16979509b93634594fea34] -peer1.org1.example.com | [403 01-18 01:58:59.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [47c 01-18 01:59:01.34 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms] do.do.Start.func1.GenerateDockerBuild.generateDockerfile -> DEBU -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa -peer1.org1.example.com | [404 01-18 01:58:59.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [5e4 01-18 02:00:26.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org2.example.com | [52f 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc -peer1.org1.example.com | [405 01-18 01:58:59.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel -peer0.org1.example.com | FROM hyperledger/fabric-baseos:x86_64-0.3.2 -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer1.org1.example.com | [406 01-18 01:58:59.17 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -peer1.org2.example.com | [530 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [a7992bee-19d7-4679-8403-90060c75fb12] -peer0.org2.example.com | [5e5 01-18 02:00:26.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [c4a1bfbd-7528-4ea6-bce2-0b2425d2c58e] -peer1.org1.example.com | [407 01-18 01:58:59.17 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org1.example.com | ADD binpackage.tar /usr/local/bin -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -peer1.org2.example.com | [531 01-18 01:59:48.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer0.org2.example.com | [5e6 01-18 02:00:26.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 983fc1dba680ebbdd503ae9f7fc13c048037af4e1c16979509b93634594fea34 channel id: businesschannel -peer1.org1.example.com | [408 01-18 01:58:59.17 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer0.org1.example.com | LABEL org.hyperledger.fabric.chaincode.id.name="exp02" \ -orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -peer1.org2.example.com | [532 01-18 01:59:48.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [a7992bee-19d7-4679-8403-90060c75fb12] -peer1.org1.example.com | [409 01-18 01:58:59.17 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org2.example.com | [5e7 01-18 02:00:26.62 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=983fc1dba680ebbdd503ae9f7fc13c048037af4e1c16979509b93634594fea34,syscc=true,proposal=0xc4219b65f0,canname=lscc:1.0.2 -orderer.example.com | mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 -peer1.org1.example.com | [40a 01-18 01:58:59.17 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer1.org2.example.com | [533 01-18 01:59:48.25 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 -peer0.org1.example.com | org.hyperledger.fabric.chaincode.id.version="1.0" \ -peer1.org1.example.com | [40b 01-18 01:58:59.17 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -peer0.org1.example.com | org.hyperledger.fabric.chaincode.type="GOLANG" \ -peer0.org2.example.com | [5e8 01-18 02:00:26.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 -orderer.example.com | sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -peer1.org1.example.com | [40c 01-18 01:58:59.17 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer1.org2.example.com | [534 01-18 01:59:48.25 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x953df0)} -peer1.org1.example.com | [40d 01-18 01:58:59.17 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer0.org1.example.com | org.hyperledger.fabric.version="1.0.2" \ -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ -peer0.org2.example.com | [5e9 01-18 02:00:26.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [40e 01-18 01:58:59.17 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer0.org1.example.com | org.hyperledger.fabric.base.version="0.3.2" -peer0.org2.example.com | [5ea 01-18 02:00:26.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -orderer.example.com | xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv -peer1.org1.example.com | [40f 01-18 01:58:59.17 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer1.org2.example.com | [535 01-18 01:59:48.25 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode exp02 is already instantiated -peer0.org1.example.com | ENV CORE_CHAINCODE_BUILDLEVEL=1.0.2 -peer1.org1.example.com | [410 01-18 01:58:59.17 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer0.org2.example.com | [5eb 01-18 02:00:26.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [983fc1db]Inside sendExecuteMessage. Message TRANSACTION -peer1.org1.example.com | [411 01-18 01:58:59.17 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk -peer0.org1.example.com | ENV CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -peer1.org2.example.com | [536 01-18 01:59:48.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e968a497]Transaction completed. Sending COMPLETED -peer1.org1.example.com | [412 01-18 01:58:59.17 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [5ec 01-18 02:00:26.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | COPY peer.crt /etc/hyperledger/fabric/peer.crt -peer1.org2.example.com | [537 01-18 01:59:48.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e968a497]Move state message COMPLETED -orderer.example.com | SCjyRdD3aQ== -peer0.org2.example.com | [5ed 01-18 02:00:26.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org1.example.com | [413 01-18 01:58:59.18 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -peer1.org1.example.com | [414 01-18 01:58:59.18 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org1.example.com | [415 01-18 01:58:59.18 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [47d 01-18 01:59:01.34 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/util] generateDockerBuild.GenerateDockerBuild.DockerBuild -> DEBU Attempting build with image hyperledger/fabric-ccenv:x86_64-1.0.2 -peer1.org2.example.com | [538 01-18 01:59:48.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e968a497]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [5ee 01-18 02:00:26.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [983fc1db]sendExecuteMsg trigger event TRANSACTION -peer1.org1.example.com | [416 01-18 01:58:59.18 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer1.org2.example.com | [539 01-18 01:59:48.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e968a497]send state message COMPLETED -peer0.org1.example.com | [47e 01-18 01:59:24.68 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.deployImage -> DEBU Created image: dev-peer0.org1.example.com-exp02-1.0-207541cceae707183f8108fcfc8ad03b450411570fb69827d3d40dc2ffdddbb4 -orderer.example.com | 2018-01-18 01:58:51.960 UTC [msp/identity] newIdentity -> DEBU 29e Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [417 01-18 01:58:59.18 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org1.example.com | [47f 01-18 01:59:24.68 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-recreated image successfully -peer1.org2.example.com | [53a 01-18 01:59:48.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e968a497]Received message COMPLETED from shim -peer0.org2.example.com | [5ef 01-18 02:00:26.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [983fc1db]Move state message TRANSACTION -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [480 01-18 01:59:24.68 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer0.org1.example.com-exp02-1.0 -peer1.org2.example.com | [53b 01-18 01:59:48.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e968a497]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [418 01-18 01:58:59.18 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org2.example.com | [5f0 01-18 02:00:26.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [983fc1db]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org2.example.com | [53c 01-18 01:59:48.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e968a497-e5be-4251-9519-eaba7363499a]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [481 01-18 01:59:24.89 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Created container: dev-peer0.org1.example.com-exp02-1.0-207541cceae707183f8108fcfc8ad03b450411570fb69827d3d40dc2ffdddbb4 -peer0.org2.example.com | [5f1 01-18 02:00:26.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org1.example.com | [419 01-18 01:58:59.18 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [482 01-18 01:59:25.55 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Started container dev-peer0.org1.example.com-exp02-1.0 -peer0.org2.example.com | [5f2 01-18 02:00:26.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [983fc1db]sending state message TRANSACTION -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -peer1.org2.example.com | [53d 01-18 01:59:48.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:e968a497-e5be-4251-9519-eaba7363499a -peer1.org1.example.com | [41a 01-18 01:58:59.18 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org2.example.com | [5f3 01-18 02:00:26.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [983fc1db]Received message TRANSACTION from shim -peer1.org2.example.com | [53e 01-18 01:59:48.25 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org1.example.com | [41b 01-18 01:58:59.18 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [5f4 01-18 02:00:26.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [983fc1db]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org2.example.com | [53f 01-18 01:59:48.25 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> ERRO VSCC check failed for transaction txid=544f379dda618ff2c82301cddc728a5ab3076d114052fb463df7e9d6c1ede6fd, error Chaincode exp02 is already instantiated -peer0.org1.example.com | [483 01-18 01:59:25.55 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(dev-peer0.org1.example.com-exp02-1.0) -peer1.org1.example.com | [41c 01-18 01:58:59.18 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -peer1.org2.example.com | [540 01-18 01:59:48.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [cadb1520-2ce2-405b-a336-097772fd24a8] -peer0.org2.example.com | [5f5 01-18 02:00:26.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [983fc1db]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [484 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer1.org2.example.com | [541 01-18 01:59:48.25 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> ERRO VSCCValidateTx for transaction txId = 544f379dda618ff2c82301cddc728a5ab3076d114052fb463df7e9d6c1ede6fd returned error Chaincode exp02 is already instantiated -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -peer1.org1.example.com | [41d 01-18 01:58:59.18 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org2.example.com | [5f6 01-18 02:00:26.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [983fc1db]Sending GET_STATE -peer0.org1.example.com | [485 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer1.org2.example.com | [542 01-18 01:59:48.25 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -peer0.org2.example.com | [5f7 01-18 02:00:26.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [983fc1db]Received message GET_STATE from shim -peer1.org1.example.com | [41e 01-18 01:58:59.18 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [486 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer1.org2.example.com | [543 01-18 01:59:48.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer0.org2.example.com | [5f8 01-18 02:00:26.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [983fc1db]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -peer0.org1.example.com | [487 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer1.org1.example.com | [41f 01-18 01:58:59.18 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [5f9 01-18 02:00:26.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [983fc1db]Received GET_STATE, invoking get state from ledger -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -peer1.org2.example.com | [544 01-18 01:59:48.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc422401cc0), Data:(*common.BlockData)(0xc42179b680), Metadata:(*common.BlockMetadata)(0xc42179b6c0)}, doMVCCValidation=true -peer1.org1.example.com | [420 01-18 01:58:59.18 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer0.org2.example.com | [5fa 01-18 02:00:26.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [488 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode exp02:1.0 -peer1.org2.example.com | [545 01-18 01:59:48.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -peer1.org1.example.com | [421 01-18 01:58:59.18 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -peer0.org2.example.com | [5fb 01-18 02:00:26.62 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [983fc1db] getting state for chaincode lscc, key exp02, channel businesschannel -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -peer0.org1.example.com | [489 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"exp02:1.0" , sending back REGISTERED -peer1.org1.example.com | [422 01-18 01:58:59.18 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer1.org2.example.com | [546 01-18 01:59:48.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> WARN Block [4] Transaction index [0] marked as invalid by committer. Reason code [10] -orderer.example.com | AXYxULZpXYDQXt1KaLI= -peer0.org2.example.com | [5fc 01-18 02:00:26.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer0.org1.example.com | [48a 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [547 01-18 01:59:48.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0xa9, 0xa2, 0x5c, 0x6d, 0x32, 0x6, 0xa0, 0x2d, 0x65, 0xc3, 0x6e, 0x5b, 0xf7, 0xb7, 0x4f, 0x48, 0x2d, 0xb5, 0x26, 0x88, 0xf4, 0x50, 0x7e, 0x26, 0xb8, 0xd0, 0xfe, 0x2f, 0x87, 0xde, 0x87, 0x83} txOffsets= -peer1.org1.example.com | [423 01-18 01:58:59.19 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -orderer.example.com | 2018-01-18 01:58:51.960 UTC [msp/identity] newIdentity -> DEBU 29f Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [48b 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode exp02:1.0 launch seq completed -peer1.org2.example.com | txId=544f379dda618ff2c82301cddc728a5ab3076d114052fb463df7e9d6c1ede6fd locPointer=offset=70, bytesLength=3394 -peer1.org1.example.com | [424 01-18 01:58:59.19 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer0.org2.example.com | [5fd 01-18 02:00:26.62 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [983fc1db]Got state. Sending RESPONSE -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [48c 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.sendReady.ready -> DEBU sending READY -peer1.org2.example.com | ] -peer0.org2.example.com | [5fe 01-18 02:00:26.62 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [983fc1db]handleGetState serial send RESPONSE -peer1.org1.example.com | [425 01-18 01:58:59.21 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -peer0.org1.example.com | [48d 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [5ff 01-18 02:00:26.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [983fc1db]Received message RESPONSE from shim -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org2.example.com | [548 01-18 01:59:48.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=44745, bytesLength=3394] for tx ID: [544f379dda618ff2c82301cddc728a5ab3076d114052fb463df7e9d6c1ede6fd] to index -peer1.org1.example.com | [426 01-18 01:58:59.26 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer0.org1.example.com | [48e 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org2.example.com | [600 01-18 02:00:26.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [983fc1db]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer1.org2.example.com | [549 01-18 01:59:48.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=44745, bytesLength=3394] for tx number:[0] ID: [544f379dda618ff2c82301cddc728a5ab3076d114052fb463df7e9d6c1ede6fd] to blockNumTranNum index -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org1.example.com | [427 01-18 01:58:59.26 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -peer0.org1.example.com | [48f 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ebabbeb4]Move state message READY -peer1.org2.example.com | [54a 01-18 01:59:48.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[49891], isChainEmpty=[false], lastBlockNumber=[4] -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -peer0.org2.example.com | [601 01-18 02:00:26.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [983fc1db]before send -peer1.org2.example.com | [54b 01-18 01:59:48.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [4] with 1 transaction(s) -peer0.org1.example.com | [490 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ebabbeb4]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org1.example.com | [428 01-18 01:58:59.26 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -peer1.org2.example.com | [54c 01-18 01:59:48.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -peer0.org2.example.com | [602 01-18 02:00:26.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [983fc1db]after send -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [491 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [ebabbeb4]Entered state ready -peer1.org1.example.com | [429 01-18 01:58:59.26 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -peer1.org2.example.com | [54d 01-18 02:00:08.39 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.deployImage -> DEBU Created image: dev-peer1.org2.example.com-exp02-1.0-ac79f954ea10befb402e8d87d56741bcfae7738c8fd82aee62f22874f759e30d -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -peer0.org2.example.com | [603 01-18 02:00:26.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [983fc1db]Received RESPONSE, communicated (state:ready) -peer0.org1.example.com | [492 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824 -peer1.org2.example.com | [54e 01-18 02:00:08.39 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-recreated image successfully -peer1.org1.example.com | [42a 01-18 01:58:59.26 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU config transaction received for chain businesschannel -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -peer0.org2.example.com | [604 01-18 02:00:26.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [983fc1db]GetState received payload RESPONSE -peer1.org2.example.com | [54f 01-18 02:00:08.39 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer1.org2.example.com-exp02-1.0 -peer1.org1.example.com | [42b 01-18 01:58:59.26 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -peer0.org1.example.com | [493 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ebabbeb4]sending state message READY -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -peer0.org2.example.com | [605 01-18 02:00:26.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [983fc1db]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [550 01-18 02:00:08.49 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Created container: dev-peer1.org2.example.com-exp02-1.0-ac79f954ea10befb402e8d87d56741bcfae7738c8fd82aee62f22874f759e30d -peer1.org1.example.com | [42c 01-18 01:58:59.26 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Received configuration update, calling CSCC ConfigUpdate -peer0.org1.example.com | [494 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch -> DEBU sending init completed -peer0.org2.example.com | [606 01-18 02:00:26.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [983fc1db]Move state message COMPLETED -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -peer1.org1.example.com | [42d 01-18 01:58:59.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer0.org1.example.com | [495 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch -> DEBU LaunchChaincode complete -peer1.org2.example.com | [551 01-18 02:00:09.03 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Started container dev-peer1.org2.example.com-exp02-1.0 -peer0.org2.example.com | [607 01-18 02:00:26.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [983fc1db]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -peer0.org2.example.com | [608 01-18 02:00:26.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [983fc1db]send state message COMPLETED -peer1.org1.example.com | [42e 01-18 01:58:59.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc42150b680), Data:(*common.BlockData)(0xc421c19cc0), Metadata:(*common.BlockMetadata)(0xc421c19d00)}, doMVCCValidation=true -peer1.org2.example.com | [552 01-18 02:00:09.03 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(dev-peer1.org2.example.com-exp02-1.0) -peer0.org1.example.com | [496 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -peer1.org1.example.com | [42f 01-18 01:58:59.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -peer0.org2.example.com | [609 01-18 02:00:26.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [983fc1db]Received message COMPLETED from shim -peer0.org1.example.com | [497 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute -> DEBU chaincode canonical name: exp02:1.0 -orderer.example.com | AXYxULZpXYDQXt1KaLI= -peer1.org2.example.com | [553 01-18 02:00:09.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer1.org1.example.com | [430 01-18 01:58:59.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [2] Transaction index [0] because, the transaction type is [CONFIG] -peer0.org2.example.com | [60a 01-18 02:00:26.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [983fc1db]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [554 01-18 02:00:09.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer0.org1.example.com | [498 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ebabbeb4]Inside sendExecuteMessage. Message INIT -orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [431 01-18 01:58:59.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0x5b, 0x7c, 0x4e, 0xf2, 0x74, 0xb6, 0x7f, 0xc2, 0x96, 0x1b, 0xb2, 0x5a, 0xd4, 0x86, 0x64, 0x1e, 0xc, 0x21, 0xb0, 0xdd, 0x91, 0xb8, 0xb5, 0x9d, 0x7f, 0x79, 0xeb, 0xbd, 0x3a, 0x97, 0xb8, 0xa1} txOffsets= -peer0.org2.example.com | [60b 01-18 02:00:26.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [983fc1dba680ebbdd503ae9f7fc13c048037af4e1c16979509b93634594fea34]HandleMessage- COMPLETED. Notify -orderer.example.com | 2018-01-18 01:58:51.961 UTC [msp] Validate -> DEBU 2a0 MSP Org2MSP validating identity -peer1.org2.example.com | [555 01-18 02:00:09.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer1.org1.example.com | txId= locPointer=offset=70, bytesLength=11970 -peer0.org1.example.com | [499 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [60c 01-18 02:00:26.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:983fc1dba680ebbdd503ae9f7fc13c048037af4e1c16979509b93634594fea34 -orderer.example.com | 2018-01-18 01:58:51.961 UTC [msp] Setup -> DEBU 2a1 Setting up the MSP manager (3 msps) -peer1.org2.example.com | [556 01-18 02:00:09.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer0.org1.example.com | [49a 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org1.example.com | ] -orderer.example.com | 2018-01-18 01:58:51.961 UTC [msp] Setup -> DEBU 2a2 MSP manager setup complete, setup 3 msps -peer0.org2.example.com | [60d 01-18 02:00:26.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [557 01-18 02:00:09.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode exp02:1.0 -peer0.org1.example.com | [49b 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ebabbeb4]sendExecuteMsg trigger event INIT -orderer.example.com | 2018-01-18 01:58:51.961 UTC [policies] GetPolicy -> DEBU 2a3 Returning policy Readers for evaluation -peer0.org2.example.com | [60e 01-18 02:00:26.62 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache -peer1.org1.example.com | [432 01-18 01:58:59.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=25738, bytesLength=11970] for tx ID: [] to index -peer0.org2.example.com | [60f 01-18 02:00:26.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 983fc1dba680ebbdd503ae9f7fc13c048037af4e1c16979509b93634594fea34 channel id: businesschannel version: 1.0 -orderer.example.com | 2018-01-18 01:58:51.961 UTC [policies] CommitProposals -> DEBU 2a4 In commit adding relative sub-policy OrdererOrg/Readers to Orderer -peer1.org2.example.com | [558 01-18 02:00:09.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"exp02:1.0" , sending back REGISTERED -peer0.org1.example.com | [49c 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ebabbeb4]Move state message INIT -peer0.org2.example.com | [610 01-18 02:00:26.62 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=exp02,version=1.0,txid=983fc1dba680ebbdd503ae9f7fc13c048037af4e1c16979509b93634594fea34,syscc=false,proposal=0xc4219b65f0,canname=exp02:1.0 -peer1.org1.example.com | [433 01-18 01:58:59.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=25738, bytesLength=11970] for tx number:[0] ID: [] to blockNumTranNum index -peer0.org1.example.com | [49d 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ebabbeb4]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org2.example.com | [559 01-18 02:00:09.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer1.org1.example.com | [434 01-18 01:58:59.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[39459], isChainEmpty=[false], lastBlockNumber=[2] -peer0.org2.example.com | [611 01-18 02:00:26.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : exp02:1.0 -orderer.example.com | 2018-01-18 01:58:51.961 UTC [policies] GetPolicy -> DEBU 2a5 Returning policy Writers for evaluation -peer0.org1.example.com | [49e 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [435 01-18 01:58:59.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [2] with 1 transaction(s) -peer0.org2.example.com | [612 01-18 02:00:26.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | 2018-01-18 01:58:51.961 UTC [policies] CommitProposals -> DEBU 2a6 In commit adding relative sub-policy OrdererOrg/Writers to Orderer -peer1.org2.example.com | [55a 01-18 02:00:09.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode exp02:1.0 launch seq completed -peer1.org1.example.com | [436 01-18 01:58:59.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -peer0.org2.example.com | [613 01-18 02:00:26.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: exp02:1.0 -peer0.org1.example.com | [49f 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ebabbeb4]sending state message INIT -orderer.example.com | 2018-01-18 01:58:51.961 UTC [policies] GetPolicy -> DEBU 2a7 Returning policy Admins for evaluation -peer1.org2.example.com | [55b 01-18 02:00:09.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.sendReady.ready -> DEBU sending READY -peer0.org2.example.com | [614 01-18 02:00:26.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [983fc1db]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | 2018-01-18 01:58:51.961 UTC [policies] CommitProposals -> DEBU 2a8 In commit adding relative sub-policy OrdererOrg/Admins to Orderer -peer1.org1.example.com | [437 01-18 01:58:59.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org1.example.com | [4a0 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ebabbeb4]Received message PUT_STATE from shim -peer0.org2.example.com | [615 01-18 02:00:26.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [55c 01-18 02:00:09.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | 2018-01-18 01:58:51.961 UTC [policies] GetPolicy -> DEBU 2a9 Returning policy Readers for evaluation -peer1.org1.example.com | [438 01-18 01:58:59.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -peer0.org2.example.com | [616 01-18 02:00:26.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org1.example.com | [4a1 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ebabbeb4]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -orderer.example.com | 2018-01-18 01:58:51.961 UTC [policies] GetPolicy -> DEBU 2aa Returning policy Writers for evaluation -peer1.org2.example.com | [55d 01-18 02:00:09.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org2.example.com | [617 01-18 02:00:26.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [983fc1db]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | 2018-01-18 01:58:51.961 UTC [policies] GetPolicy -> DEBU 2ab Returning policy Admins for evaluation -peer0.org2.example.com | [618 01-18 02:00:26.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [983fc1db]Move state message TRANSACTION -peer0.org1.example.com | [4a2 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | 2018-01-18 01:58:51.961 UTC [policies] GetPolicy -> DEBU 2ac Returning policy Writers for evaluation -peer0.org2.example.com | [619 01-18 02:00:26.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [983fc1db]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [55e 01-18 02:00:09.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [afd22039]Move state message READY -peer1.org1.example.com | [439 01-18 01:58:59.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [2] with [1] transactions -orderer.example.com | 2018-01-18 01:58:51.961 UTC [policies] GetPolicy -> DEBU 2ad Returning policy Admins for evaluation -peer0.org2.example.com | [61a 01-18 02:00:26.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | 2018-01-18 01:58:51.961 UTC [policies] CommitProposals -> DEBU 2ae In commit adding relative sub-policy Org2MSP/Admins to Application -peer0.org2.example.com | [61b 01-18 02:00:26.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [983fc1db]sending state message TRANSACTION -peer1.org2.example.com | [55f 01-18 02:00:09.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [afd22039]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org1.example.com | [43a 01-18 01:58:59.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -peer0.org2.example.com | [61c 01-18 02:00:26.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [983fc1db]Received message GET_STATE from shim -peer0.org1.example.com | [4a3 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [ebabbeb4]state is ready -peer0.org2.example.com | [61d 01-18 02:00:26.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [983fc1db]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -orderer.example.com | 2018-01-18 01:58:51.961 UTC [policies] GetPolicy -> DEBU 2af Returning policy Readers for evaluation -peer0.org2.example.com | [61e 01-18 02:00:26.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [983fc1db]Received GET_STATE, invoking get state from ledger -orderer.example.com | 2018-01-18 01:58:51.961 UTC [policies] CommitProposals -> DEBU 2b0 In commit adding relative sub-policy Org2MSP/Readers to Application -peer1.org1.example.com | [43b 01-18 01:58:59.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [2] -peer0.org2.example.com | [61f 01-18 02:00:26.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [4a4 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [ebabbeb4]Completed PUT_STATE. Sending RESPONSE -orderer.example.com | 2018-01-18 01:58:51.962 UTC [policies] GetPolicy -> DEBU 2b1 Returning policy Writers for evaluation -peer0.org2.example.com | [620 01-18 02:00:26.63 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [983fc1db] getting state for chaincode exp02, key a, channel businesschannel -peer0.org1.example.com | [4a5 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [ebabbeb4]enterBusyState trigger event RESPONSE -peer1.org2.example.com | [560 01-18 02:00:09.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [afd22039]Entered state ready -peer1.org1.example.com | [43c 01-18 01:58:59.27 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -orderer.example.com | 2018-01-18 01:58:51.962 UTC [policies] CommitProposals -> DEBU 2b2 In commit adding relative sub-policy Org2MSP/Writers to Application -peer0.org2.example.com | [621 01-18 02:00:26.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=exp02, key=a -peer0.org1.example.com | [4a6 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ebabbeb4]Move state message RESPONSE -peer1.org2.example.com | [561 01-18 02:00:09.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:afd2203955a8845122074437e7365cc652cdbd95f0cf91047123a63a45ca9267 -peer1.org1.example.com | [43d 01-18 01:58:59.27 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [2] -orderer.example.com | 2018-01-18 01:58:51.962 UTC [policies] GetPolicy -> DEBU 2b3 Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:51.962 UTC [policies] CommitProposals -> DEBU 2b4 In commit adding relative sub-policy Org1MSP/Writers to Application -peer0.org1.example.com | [4a7 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ebabbeb4]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -orderer.example.com | 2018-01-18 01:58:51.962 UTC [policies] GetPolicy -> DEBU 2b5 Returning policy Admins for evaluation -peer0.org2.example.com | [622 01-18 02:00:26.63 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [983fc1db]Got state. Sending RESPONSE -orderer.example.com | 2018-01-18 01:58:51.962 UTC [policies] CommitProposals -> DEBU 2b6 In commit adding relative sub-policy Org1MSP/Admins to Application -peer1.org1.example.com | [43e 01-18 01:58:59.27 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -peer1.org2.example.com | [562 01-18 02:00:09.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [afd22039]sending state message READY -orderer.example.com | 2018-01-18 01:58:51.962 UTC [policies] GetPolicy -> DEBU 2b7 Returning policy Readers for evaluation -peer1.org1.example.com | [43f 01-18 01:58:59.27 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer0.org1.example.com | [4a8 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | 2018-01-18 01:58:51.962 UTC [policies] CommitProposals -> DEBU 2b8 In commit adding relative sub-policy Org1MSP/Readers to Application -peer0.org2.example.com | [623 01-18 02:00:26.63 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [983fc1db]handleGetState serial send RESPONSE -peer1.org1.example.com | [440 01-18 01:58:59.27 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -orderer.example.com | 2018-01-18 01:58:51.962 UTC [policies] GetPolicy -> DEBU 2b9 Returning policy Admins for evaluation -peer0.org2.example.com | [624 01-18 02:00:26.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [983fc1db]Received message COMPLETED from shim -peer1.org2.example.com | [563 01-18 02:00:09.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU sending init completed -orderer.example.com | 2018-01-18 01:58:51.962 UTC [policies] GetPolicy -> DEBU 2ba Returning policy Admins for evaluation -peer1.org1.example.com | [441 01-18 01:58:59.27 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -peer0.org2.example.com | [625 01-18 02:00:26.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [983fc1db]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [4a9 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ebabbeb4]sending state message RESPONSE -peer1.org2.example.com | [564 01-18 02:00:09.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU LaunchChaincode complete -orderer.example.com | 2018-01-18 01:58:51.962 UTC [policies] GetPolicy -> DEBU 2bb Returning policy BlockValidation for evaluation -peer1.org1.example.com | [442 01-18 01:58:59.27 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -peer0.org1.example.com | [4aa 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ebabbeb4]Received message PUT_STATE from shim -peer0.org2.example.com | [626 01-18 02:00:26.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [983fc1dba680ebbdd503ae9f7fc13c048037af4e1c16979509b93634594fea34]HandleMessage- COMPLETED. Notify -orderer.example.com | 2018-01-18 01:58:51.962 UTC [policies] CommitProposals -> DEBU 2bc In commit adding relative sub-policy Orderer/BlockValidation to Channel -peer1.org2.example.com | [565 01-18 02:00:09.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [443 01-18 01:58:59.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -peer0.org2.example.com | [627 01-18 02:00:26.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:983fc1dba680ebbdd503ae9f7fc13c048037af4e1c16979509b93634594fea34 -orderer.example.com | 2018-01-18 01:58:51.962 UTC [policies] GetPolicy -> DEBU 2bd Returning policy OrdererOrg/Readers for evaluation -peer1.org1.example.com | [444 01-18 01:58:59.78 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4220e8a50 -peer0.org1.example.com | [4ab 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ebabbeb4]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -peer1.org2.example.com | [566 01-18 02:00:09.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: exp02:1.0 -orderer.example.com | 2018-01-18 01:58:51.962 UTC [policies] CommitProposals -> DEBU 2be In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -orderer.example.com | 2018-01-18 01:58:51.962 UTC [policies] GetPolicy -> DEBU 2bf Returning policy OrdererOrg/Writers for evaluation -peer0.org2.example.com | [628 01-18 02:00:26.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [567 01-18 02:00:09.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [afd22039]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [4ac 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [445 01-18 01:58:59.78 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -orderer.example.com | 2018-01-18 01:58:51.962 UTC [policies] CommitProposals -> DEBU 2c0 In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -peer0.org2.example.com | [629 01-18 02:00:26.63 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -orderer.example.com | 2018-01-18 01:58:51.962 UTC [policies] GetPolicy -> DEBU 2c1 Returning policy OrdererOrg/Admins for evaluation -peer1.org1.example.com | [446 01-18 01:58:59.78 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [4ad 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [ebabbeb4]state is ready -orderer.example.com | 2018-01-18 01:58:51.962 UTC [policies] CommitProposals -> DEBU 2c2 In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -peer1.org2.example.com | [568 01-18 02:00:09.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [62a 01-18 02:00:26.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -orderer.example.com | 2018-01-18 01:58:51.962 UTC [policies] GetPolicy -> DEBU 2c3 Returning policy Readers for evaluation -peer1.org1.example.com | [447 01-18 01:58:59.78 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -peer0.org1.example.com | [4ae 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [ebabbeb4]Completed PUT_STATE. Sending RESPONSE -peer1.org2.example.com | [569 01-18 02:00:09.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | 2018-01-18 01:58:51.962 UTC [policies] CommitProposals -> DEBU 2c4 In commit adding relative sub-policy Orderer/Readers to Channel -peer1.org1.example.com | [448 01-18 01:58:59.78 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | 2018-01-18 01:58:51.962 UTC [policies] GetPolicy -> DEBU 2c5 Returning policy Writers for evaluation -peer0.org2.example.com | [62b 01-18 02:00:26.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [c4a1bfbd-7528-4ea6-bce2-0b2425d2c58e] -orderer.example.com | 2018-01-18 01:58:51.962 UTC [policies] CommitProposals -> DEBU 2c6 In commit adding relative sub-policy Orderer/Writers to Channel -orderer.example.com | 2018-01-18 01:58:51.962 UTC [policies] GetPolicy -> DEBU 2c7 Returning policy Admins for evaluation -peer1.org1.example.com | [449 01-18 01:58:59.78 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org1.example.com | [4af 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [ebabbeb4]enterBusyState trigger event RESPONSE -peer1.org2.example.com | [56a 01-18 02:00:09.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [afd22039]sendExecuteMsg trigger event TRANSACTION -peer0.org2.example.com | [62c 01-18 02:00:26.63 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -orderer.example.com | 2018-01-18 01:58:51.962 UTC [policies] CommitProposals -> DEBU 2c8 In commit adding relative sub-policy Orderer/Admins to Channel -peer0.org1.example.com | [4b0 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ebabbeb4]Move state message RESPONSE -peer1.org1.example.com | [44a 01-18 01:58:59.78 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4220e68c0, header 0xc4220e8a80 -orderer.example.com | 2018-01-18 01:58:51.962 UTC [policies] GetPolicy -> DEBU 2c9 Returning policy Org1MSP/Admins for evaluation -peer0.org2.example.com | [62d 01-18 02:00:26.63 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 983fc1dba680ebbdd503ae9f7fc13c048037af4e1c16979509b93634594fea34 channel id: businesschannel chaincode id: name:"exp02" -peer1.org2.example.com | [56b 01-18 02:00:09.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [afd22039]Move state message TRANSACTION -peer0.org1.example.com | [4b1 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ebabbeb4]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -orderer.example.com | 2018-01-18 01:58:51.962 UTC [policies] CommitProposals -> DEBU 2ca In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -peer1.org1.example.com | [44b 01-18 01:58:59.78 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -peer1.org2.example.com | [56c 01-18 02:00:09.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [afd22039]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [56d 01-18 02:00:09.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | 2018-01-18 01:58:51.962 UTC [policies] GetPolicy -> DEBU 2cb Returning policy Org1MSP/Readers for evaluation -peer0.org1.example.com | [4b2 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [44c 01-18 01:58:59.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: d25d07d5a982b44640889bec98ca9cf58b1e3af16e4b5e65a1384b1533fcb698 -peer0.org2.example.com | [62e 01-18 02:00:26.63 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"exp02" is escc -peer1.org2.example.com | [56e 01-18 02:00:09.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [afd22039]sending state message TRANSACTION -orderer.example.com | 2018-01-18 01:58:51.962 UTC [policies] CommitProposals -> DEBU 2cc In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -peer0.org1.example.com | [4b3 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ebabbeb4]sending state message RESPONSE -peer0.org2.example.com | [62f 01-18 02:00:26.63 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 983fc1dba680ebbdd503ae9f7fc13c048037af4e1c16979509b93634594fea34 channel id: businesschannel version: 1.0.2 -peer1.org1.example.com | [44d 01-18 01:58:59.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: d25d07d5a982b44640889bec98ca9cf58b1e3af16e4b5e65a1384b1533fcb698 channel id: -orderer.example.com | 2018-01-18 01:58:51.962 UTC [policies] GetPolicy -> DEBU 2cd Returning policy ChannelCreationPolicy for evaluation -peer1.org2.example.com | [56f 01-18 02:00:09.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [afd22039]Received message GET_STATE from shim -peer0.org2.example.com | [630 01-18 02:00:26.63 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=983fc1dba680ebbdd503ae9f7fc13c048037af4e1c16979509b93634594fea34,syscc=true,proposal=0xc4219b65f0,canname=escc:1.0.2 -peer0.org1.example.com | [4b4 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ebabbeb4]Received message COMPLETED from shim -orderer.example.com | 2018-01-18 01:58:51.962 UTC [policies] CommitProposals -> DEBU 2ce In commit adding relative sub-policy Application/ChannelCreationPolicy to Channel -peer1.org1.example.com | [44e 01-18 01:58:59.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: d25d07d5a982b44640889bec98ca9cf58b1e3af16e4b5e65a1384b1533fcb698 channel id: version: 1.0.2 -peer1.org2.example.com | [570 01-18 02:00:09.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [afd22039]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer0.org1.example.com | [4b5 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ebabbeb4]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | 2018-01-18 01:58:51.962 UTC [policies] GetPolicy -> DEBU 2cf Returning policy Org2MSP/Admins for evaluation -peer0.org2.example.com | [631 01-18 02:00:26.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 -peer1.org1.example.com | [44f 01-18 01:58:59.78 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.0.2,txid=d25d07d5a982b44640889bec98ca9cf58b1e3af16e4b5e65a1384b1533fcb698,syscc=true,proposal=0xc4220e68c0,canname=lscc:1.0.2 -orderer.example.com | 2018-01-18 01:58:51.962 UTC [policies] CommitProposals -> DEBU 2d0 In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -peer1.org2.example.com | [571 01-18 02:00:09.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [afd22039]Received GET_STATE, invoking get state from ledger -peer0.org1.example.com | [4b6 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [632 01-18 02:00:26.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [450 01-18 01:58:59.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 -orderer.example.com | 2018-01-18 01:58:51.962 UTC [policies] GetPolicy -> DEBU 2d1 Returning policy Org2MSP/Readers for evaluation -peer1.org2.example.com | [572 01-18 02:00:09.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [633 01-18 02:00:26.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 -orderer.example.com | 2018-01-18 01:58:51.962 UTC [policies] CommitProposals -> DEBU 2d2 In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -peer0.org1.example.com | [4b7 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824 -peer1.org1.example.com | [451 01-18 01:58:59.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [573 01-18 02:00:09.10 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [afd22039] getting state for chaincode exp02, key a, channel businesschannel -orderer.example.com | 2018-01-18 01:58:51.962 UTC [policies] GetPolicy -> DEBU 2d3 Returning policy Org2MSP/Writers for evaluation -peer0.org2.example.com | [634 01-18 02:00:26.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [983fc1db]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [4b8 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | 2018-01-18 01:58:51.962 UTC [policies] CommitProposals -> DEBU 2d4 In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -peer1.org1.example.com | [452 01-18 01:58:59.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -peer1.org2.example.com | [574 01-18 02:00:09.10 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=exp02, key=a -peer0.org2.example.com | [635 01-18 02:00:26.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [4b9 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -orderer.example.com | 2018-01-18 01:58:51.962 UTC [policies] GetPolicy -> DEBU 2d5 Returning policy Org1MSP/Writers for evaluation -peer1.org2.example.com | [575 01-18 02:00:09.10 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [afd22039]Got state. Sending RESPONSE -peer1.org1.example.com | [453 01-18 01:58:59.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d25d07d5]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [4ba 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -orderer.example.com | 2018-01-18 01:58:51.962 UTC [policies] CommitProposals -> DEBU 2d6 In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -peer1.org2.example.com | [576 01-18 02:00:09.10 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [afd22039]handleGetState serial send RESPONSE -peer0.org2.example.com | [636 01-18 02:00:26.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org1.example.com | [454 01-18 01:58:59.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [577 01-18 02:00:09.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [afd22039]Received message COMPLETED from shim -orderer.example.com | 2018-01-18 01:58:51.962 UTC [policies] GetPolicy -> DEBU 2d7 Returning policy Readers for evaluation -peer0.org1.example.com | [4bb 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [b2886e93-0dcf-4cd2-aef9-ab99e897e7b2] -peer1.org1.example.com | [455 01-18 01:58:59.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org2.example.com | [578 01-18 02:00:09.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [afd22039]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [637 01-18 02:00:26.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [983fc1db]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [579 01-18 02:00:09.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [afd2203955a8845122074437e7365cc652cdbd95f0cf91047123a63a45ca9267]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [4bc 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -orderer.example.com | 2018-01-18 01:58:51.962 UTC [policies] GetPolicy -> DEBU 2d8 Returning dummy reject all policy because Readers could not be found in /Application/Readers -peer1.org1.example.com | [456 01-18 01:58:59.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d25d07d5]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [57a 01-18 02:00:09.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:afd2203955a8845122074437e7365cc652cdbd95f0cf91047123a63a45ca9267 -peer0.org2.example.com | [638 01-18 02:00:26.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [983fc1db]Move state message TRANSACTION -peer0.org1.example.com | [4bd 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824 channel id: businesschannel chaincode id: name:"lscc" -peer1.org2.example.com | [57b 01-18 02:00:09.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | 2018-01-18 01:58:51.962 UTC [policies] GetPolicy -> DEBU 2d9 Returning dummy reject all policy because Writers could not be found in /Application/Writers -peer1.org1.example.com | [457 01-18 01:58:59.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d25d07d5]Move state message TRANSACTION -peer0.org1.example.com | [4be 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc -peer1.org2.example.com | [57c 01-18 02:00:09.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer0.org2.example.com | [639 01-18 02:00:26.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [983fc1db]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | 2018-01-18 01:58:51.962 UTC [policies] GetPolicy -> DEBU 2da Returning policy Writers for evaluation -peer1.org2.example.com | [57d 01-18 02:00:09.10 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer0.org1.example.com | [4bf 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824 channel id: businesschannel version: 1.0.2 -peer0.org2.example.com | [63a 01-18 02:00:26.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [458 01-18 01:58:59.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d25d07d5]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [57e 01-18 02:00:09.10 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [d0e7cbd3-6142-4757-be96-893ec5e2b251] -orderer.example.com | 2018-01-18 01:58:51.962 UTC [policies] GetPolicy -> DEBU 2db Returning policy Admins for evaluation -peer0.org1.example.com | [4c0 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824,syscc=true,proposal=0xc421c4d9a0,canname=escc:1.0.2 -peer1.org1.example.com | [459 01-18 01:58:59.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [57f 01-18 02:00:09.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -peer0.org2.example.com | [63b 01-18 02:00:26.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [983fc1db]sending state message TRANSACTION -peer0.org1.example.com | [4c1 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 -peer1.org1.example.com | [45a 01-18 01:58:59.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d25d07d5]sending state message TRANSACTION -orderer.example.com | 2018-01-18 01:58:51.962 UTC [policies] GetPolicy -> DEBU 2dc Returning dummy reject all policy because Admins could not be found in /Application/Admins -peer1.org2.example.com | [580 01-18 02:00:09.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: afd2203955a8845122074437e7365cc652cdbd95f0cf91047123a63a45ca9267 channel id: businesschannel chaincode id: name:"exp02" -peer0.org2.example.com | [63c 01-18 02:00:26.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [983fc1db]Received message TRANSACTION from shim -peer1.org2.example.com | [581 01-18 02:00:09.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"exp02" is escc -peer0.org1.example.com | [4c2 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [582 01-18 02:00:09.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: afd2203955a8845122074437e7365cc652cdbd95f0cf91047123a63a45ca9267 channel id: businesschannel version: 1.0.2 -peer1.org1.example.com | [45b 01-18 01:58:59.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d25d07d5]Received message TRANSACTION from shim -peer0.org2.example.com | [63d 01-18 02:00:26.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [983fc1db]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | 2018-01-18 01:58:51.963 UTC [common/configtx] addToMap -> DEBU 2dd Adding to config map: [Groups] /Channel -peer1.org2.example.com | [583 01-18 02:00:09.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org1.example.com | [4c3 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 -peer0.org2.example.com | [63e 01-18 02:00:26.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [983fc1db]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | 2018-01-18 01:58:51.963 UTC [common/configtx] addToMap -> DEBU 2de Adding to config map: [Groups] /Channel/Application -peer1.org2.example.com | [584 01-18 02:00:09.11 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=afd2203955a8845122074437e7365cc652cdbd95f0cf91047123a63a45ca9267,syscc=true,proposal=0xc421eda190,canname=escc:1.0.2 -peer0.org1.example.com | [4c4 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ebabbeb4]Inside sendExecuteMessage. Message TRANSACTION -peer1.org1.example.com | [45c 01-18 01:58:59.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d25d07d5]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org2.example.com | [585 01-18 02:00:09.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 -peer0.org2.example.com | [63f 01-18 02:00:26.63 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -peer1.org2.example.com | [586 01-18 02:00:09.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -orderer.example.com | 2018-01-18 01:58:51.963 UTC [common/configtx] addToMap -> DEBU 2df Adding to config map: [Groups] /Channel/Application/Org1MSP -peer1.org1.example.com | [45d 01-18 01:58:59.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [d25d07d5]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org2.example.com | [587 01-18 02:00:09.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [4c5 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [640 01-18 02:00:26.63 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -peer1.org2.example.com | [588 01-18 02:00:09.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 -peer0.org1.example.com | [4c6 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org1.example.com | [45e 01-18 01:58:59.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d25d07d5]Transaction completed. Sending COMPLETED -orderer.example.com | 2018-01-18 01:58:51.963 UTC [common/configtx] addToMap -> DEBU 2e0 Adding to config map: [Groups] /Channel/Application/Org2MSP -peer1.org2.example.com | [589 01-18 02:00:09.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [4] with [1] transactions -peer0.org2.example.com | [641 01-18 02:00:26.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [983fc1db]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [4c7 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ebabbeb4]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [58b 01-18 02:00:09.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Skipping history write for invalid transaction number 0 -peer0.org2.example.com | [642 01-18 02:00:26.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [983fc1db]Move state message COMPLETED -peer1.org1.example.com | [45f 01-18 01:58:59.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d25d07d5]Move state message COMPLETED -peer1.org2.example.com | [58a 01-18 02:00:09.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [afd22039]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | 2018-01-18 01:58:51.963 UTC [common/configtx] addToMap -> DEBU 2e1 Adding to config map: [Values] /Channel/Consortium -peer0.org1.example.com | [4c8 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ebabbeb4]Move state message TRANSACTION -peer0.org2.example.com | [643 01-18 02:00:26.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [983fc1db]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [58c 01-18 02:00:09.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [4] -peer1.org1.example.com | [460 01-18 01:58:59.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d25d07d5]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [4c9 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ebabbeb4]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | 2018-01-18 01:58:51.963 UTC [common/configtx] addToMap -> DEBU 2e2 Adding to config map: [Groups] /Channel -peer0.org2.example.com | [644 01-18 02:00:26.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [983fc1db]send state message COMPLETED -peer1.org1.example.com | [461 01-18 01:58:59.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d25d07d5]send state message COMPLETED -peer1.org2.example.com | [58e 01-18 02:00:09.11 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -peer0.org1.example.com | [4ca 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [645 01-18 02:00:26.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [983fc1db]Received message COMPLETED from shim -orderer.example.com | 2018-01-18 01:58:51.963 UTC [common/configtx] addToMap -> DEBU 2e3 Adding to config map: [Groups] /Channel/Application -peer1.org2.example.com | [58d 01-18 02:00:09.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [462 01-18 01:58:59.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d25d07d5]Received message COMPLETED from shim -peer0.org2.example.com | [646 01-18 02:00:26.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [983fc1db]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [4cb 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ebabbeb4]sending state message TRANSACTION -orderer.example.com | 2018-01-18 01:58:51.963 UTC [common/configtx] addToMap -> DEBU 2e4 Adding to config map: [Groups] /Channel/Application/Org1MSP -peer1.org2.example.com | [58f 01-18 02:00:09.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org1.example.com | [463 01-18 01:58:59.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d25d07d5]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [647 01-18 02:00:26.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [983fc1dba680ebbdd503ae9f7fc13c048037af4e1c16979509b93634594fea34]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [4cc 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ebabbeb4]Received message TRANSACTION from shim -peer1.org2.example.com | [591 01-18 02:00:09.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [afd22039]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | 2018-01-18 01:58:51.963 UTC [common/configtx] addToMap -> DEBU 2e5 Adding to config map: [Groups] /Channel/Application/Org2MSP -peer1.org1.example.com | [464 01-18 01:58:59.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d25d07d5a982b44640889bec98ca9cf58b1e3af16e4b5e65a1384b1533fcb698]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [648 01-18 02:00:26.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:983fc1dba680ebbdd503ae9f7fc13c048037af4e1c16979509b93634594fea34 -peer0.org1.example.com | [4cd 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ebabbeb4]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org1.example.com | [465 01-18 01:58:59.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:d25d07d5a982b44640889bec98ca9cf58b1e3af16e4b5e65a1384b1533fcb698 -orderer.example.com | 2018-01-18 01:58:51.963 UTC [common/configtx] addToMap -> DEBU 2e6 Adding to config map: [Policy] /Channel/Application/Admins -peer0.org2.example.com | [649 01-18 02:00:26.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [592 01-18 02:00:09.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [afd22039]Move state message TRANSACTION -peer1.org1.example.com | [466 01-18 01:58:59.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [4ce 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [ebabbeb4]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org2.example.com | [64a 01-18 02:00:26.63 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -orderer.example.com | 2018-01-18 01:58:51.963 UTC [common/configtx] addToMap -> DEBU 2e7 Adding to config map: [Policy] /Channel/Application/Writers -peer1.org2.example.com | [593 01-18 02:00:09.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [afd22039]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [4cf 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -peer1.org1.example.com | [467 01-18 01:58:59.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer1.org2.example.com | [594 01-18 02:00:09.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [64b 01-18 02:00:26.63 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -orderer.example.com | 2018-01-18 01:58:51.963 UTC [common/configtx] addToMap -> DEBU 2e8 Adding to config map: [Policy] /Channel/Application/Readers -peer0.org1.example.com | [4d0 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -peer1.org1.example.com | [468 01-18 01:58:59.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -peer0.org2.example.com | [64c 01-18 02:00:26.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [c4a1bfbd-7528-4ea6-bce2-0b2425d2c58e] -peer0.org1.example.com | [4d1 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ebabbeb4]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [595 01-18 02:00:09.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [afd22039]sending state message TRANSACTION -peer1.org1.example.com | [469 01-18 01:58:59.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -peer0.org1.example.com | [4d2 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ebabbeb4]Move state message COMPLETED -peer0.org2.example.com | [64d 01-18 02:00:26.63 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -peer1.org2.example.com | [590 01-18 02:00:09.11 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: 544f379dda618ff2c82301cddc728a5ab3076d114052fb463df7e9d6c1ede6fd -peer0.org1.example.com | [4d3 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ebabbeb4]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | 2018-01-18 01:58:51.963 UTC [common/configtx] addToMap -> DEBU 2e9 Adding to config map: [Values] /Channel/Consortium -peer1.org1.example.com | [46a 01-18 01:59:27.73 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -peer0.org2.example.com | [64e 01-18 02:00:28.39 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [6], peers number [3] -peer1.org1.example.com | [46b 01-18 01:59:27.73 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -peer1.org2.example.com | [596 01-18 02:00:09.11 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [4] -peer0.org1.example.com | [4d4 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ebabbeb4]send state message COMPLETED -peer0.org2.example.com | [64f 01-18 02:00:28.39 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [6], peers number [3] -orderer.example.com | 2018-01-18 01:58:51.963 UTC [policies] GetPolicy -> DEBU 2ea Returning policy ChannelCreationPolicy for evaluation -peer1.org1.example.com | [46c 01-18 01:59:27.73 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -peer1.org2.example.com | [597 01-18 02:00:09.11 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -peer0.org1.example.com | [4d5 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ebabbeb4]Received message COMPLETED from shim -orderer.example.com | 2018-01-18 01:58:51.963 UTC [cauthdsl] func1 -> DEBU 2eb 0xc42014a990 gate 1516240731963650109 evaluation starts -peer0.org2.example.com | [650 01-18 02:00:28.39 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -peer0.org1.example.com | [4d6 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ebabbeb4]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | 2018-01-18 01:58:51.963 UTC [cauthdsl] func2 -> DEBU 2ec 0xc42014a990 signed by 0 principal evaluation starts (used [false]) -peer1.org1.example.com | [46d 01-18 01:59:27.73 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421f95c50 -peer0.org1.example.com | [4d7 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [598 01-18 02:00:09.11 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer0.org2.example.com | [651 01-18 02:00:28.39 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -orderer.example.com | 2018-01-18 01:58:51.963 UTC [cauthdsl] func2 -> DEBU 2ed 0xc42014a990 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a -peer0.org1.example.com | [4d8 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824 -peer1.org2.example.com | [599 01-18 02:00:09.11 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer1.org1.example.com | [46e 01-18 01:59:27.73 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\345\376\377\322\005\020\211\346\356\222\001\"\017businesschannel*@ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030\301\237\303\"+C\367\344\024\317<\323\262\343\371\027\307\t\002\340b0*\253" -peer0.org2.example.com | [652 01-18 02:00:28.39 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -peer0.org1.example.com | [4d9 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | 2018-01-18 01:58:51.963 UTC [msp/identity] newIdentity -> DEBU 2ee Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [59a 01-18 02:00:09.11 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -peer1.org1.example.com | [46f 01-18 01:59:27.73 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org1.example.com | [4da 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -peer0.org2.example.com | [653 01-18 02:00:28.39 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc422240870 -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [4db 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -peer1.org2.example.com | [59b 01-18 02:00:09.11 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -peer1.org1.example.com | [470 01-18 01:59:27.73 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org2.example.com | [654 01-18 02:00:28.39 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\272\377\377\322\005\020\327\344\236\214\001\"\017businesschannel*@ef892f35fb64f0ede0b8e75fccdd87a0b5a88e80208a6beacc5248090c895114:\t\022\007\022\005exp02" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\030d\331v\033\324\333\222\030\204\034k\t\024\337\364\272\341\336\300\200\303\207%\014" -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [4dc 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [b2886e93-0dcf-4cd2-aef9-ab99e897e7b2] -peer0.org2.example.com | [655 01-18 02:00:28.39 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org2.example.com | [59c 01-18 02:00:09.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [afd22039]Received message TRANSACTION from shim -peer1.org1.example.com | [471 01-18 01:59:27.73 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -peer0.org1.example.com | [4dd 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -peer0.org2.example.com | [656 01-18 02:00:28.39 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org2.example.com | [59d 01-18 02:00:09.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [afd22039]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [4de 01-18 01:59:27.63 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [3], peers number [3] -peer1.org1.example.com | [472 01-18 01:59:27.73 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org2.example.com | [657 01-18 02:00:28.39 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -peer0.org1.example.com | [4df 01-18 01:59:27.65 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [3], peers number [3] -peer1.org2.example.com | [59e 01-18 02:00:09.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [afd22039]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [4e0 01-18 01:59:27.65 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -peer1.org1.example.com | [473 01-18 01:59:27.73 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org1.example.com | [4e1 01-18 01:59:27.65 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -peer0.org2.example.com | [658 01-18 02:00:28.39 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org2.example.com | [59f 01-18 02:00:09.11 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -peer1.org1.example.com | [474 01-18 01:59:27.73 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421570a80, header channel_header:"\010\003\032\014\010\345\376\377\322\005\020\211\346\356\222\001\"\017businesschannel*@ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030\301\237\303\"+C\367\344\024\317<\323\262\343\371\027\307\t\002\340b0*\253" -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [4e2 01-18 01:59:27.65 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -peer1.org2.example.com | [5a0 01-18 02:00:09.11 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -peer0.org1.example.com | [4e3 01-18 01:59:27.65 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421daeba0 -peer0.org2.example.com | [659 01-18 02:00:28.39 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer1.org1.example.com | [475 01-18 01:59:27.73 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer0.org1.example.com | [4e4 01-18 01:59:27.65 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\345\376\377\322\005\020\211\346\356\222\001\"\017businesschannel*@ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030\301\237\303\"+C\367\344\024\317<\323\262\343\371\027\307\t\002\340b0*\253" -peer1.org2.example.com | [5a1 01-18 02:00:09.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [afd22039]Transaction completed. Sending COMPLETED -peer0.org2.example.com | [65a 01-18 02:00:28.39 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc42186b800, header channel_header:"\010\003\032\014\010\272\377\377\322\005\020\327\344\236\214\001\"\017businesschannel*@ef892f35fb64f0ede0b8e75fccdd87a0b5a88e80208a6beacc5248090c895114:\t\022\007\022\005exp02" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\030d\331v\033\324\333\222\030\204\034k\t\024\337\364\272\341\336\300\200\303\207%\014" -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -peer0.org1.example.com | [4e5 01-18 01:59:27.66 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org1.example.com | [4e6 01-18 01:59:27.66 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org1.example.com | [476 01-18 01:59:27.73 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer0.org2.example.com | [65b 01-18 02:00:28.39 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -peer1.org2.example.com | [5a2 01-18 02:00:09.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [afd22039]Move state message COMPLETED -peer1.org1.example.com | [477 01-18 01:59:27.73 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer0.org1.example.com | [4e7 01-18 01:59:27.67 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -peer0.org2.example.com | [65c 01-18 02:00:28.39 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer1.org2.example.com | [5a3 01-18 02:00:09.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [afd22039]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [478 01-18 01:59:27.73 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -peer0.org1.example.com | [4e8 01-18 01:59:27.67 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -peer1.org1.example.com | [479 01-18 01:59:27.73 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824] -peer0.org1.example.com | [4e9 01-18 01:59:27.67 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org2.example.com | [5a4 01-18 02:00:09.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [afd22039]send state message COMPLETED -peer0.org2.example.com | [65d 01-18 02:00:28.39 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer1.org1.example.com | [47a 01-18 01:59:27.73 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -peer1.org2.example.com | [5a5 01-18 02:00:09.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [afd22039]Received message COMPLETED from shim -peer0.org1.example.com | [4ea 01-18 01:59:27.67 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421968000, header channel_header:"\010\003\032\014\010\345\376\377\322\005\020\211\346\356\222\001\"\017businesschannel*@ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030\301\237\303\"+C\367\344\024\317<\323\262\343\371\027\307\t\002\340b0*\253" -peer1.org1.example.com | [47b 01-18 01:59:27.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org2.example.com | [65e 01-18 02:00:28.39 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -peer1.org1.example.com | [47c 01-18 01:59:27.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [dc331c49-09a4-4c76-8d4e-21e88e8d19e2] -peer1.org2.example.com | [5a6 01-18 02:00:09.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [afd22039]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [4eb 01-18 01:59:27.67 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer0.org2.example.com | [65f 01-18 02:00:28.39 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [ef892f35fb64f0ede0b8e75fccdd87a0b5a88e80208a6beacc5248090c895114] -peer1.org1.example.com | [47d 01-18 01:59:27.73 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=8bf7a8f3-54eb-4834-971c-4052714454b4,syscc=true,proposal=0x0,canname=vscc:1.0.2 -peer0.org1.example.com | [4ec 01-18 01:59:27.67 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -orderer.example.com | xHTBvxfK6mAzmUitFmY= -peer1.org1.example.com | [47e 01-18 01:59:27.73 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824 chaindID businesschannel -peer1.org2.example.com | [5a7 01-18 02:00:09.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [afd2203955a8845122074437e7365cc652cdbd95f0cf91047123a63a45ca9267]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [660 01-18 02:00:28.39 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -peer1.org1.example.com | [47f 01-18 01:59:27.73 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [4ed 01-18 01:59:27.67 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer0.org2.example.com | [661 01-18 02:00:28.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [00f97b14-4211-4c29-8196-014ca9a0977a] -peer1.org1.example.com | [480 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [5a8 01-18 02:00:09.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:afd2203955a8845122074437e7365cc652cdbd95f0cf91047123a63a45ca9267 -peer1.org1.example.com | [481 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 -orderer.example.com | 2018-01-18 01:58:51.964 UTC [msp] SatisfiesPrincipal -> DEBU 2ef Checking if identity satisfies ADMIN role for Org1MSP -peer0.org2.example.com | [662 01-18 02:00:28.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer1.org1.example.com | [482 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8bf7a8f3]Inside sendExecuteMessage. Message TRANSACTION -peer1.org2.example.com | [5a9 01-18 02:00:09.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [4ee 01-18 01:59:27.71 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -peer1.org1.example.com | [483 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [663 01-18 02:00:28.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [00f97b14-4211-4c29-8196-014ca9a0977a] -peer1.org2.example.com | [5aa 01-18 02:00:09.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -orderer.example.com | 2018-01-18 01:58:51.964 UTC [cauthdsl] func2 -> DEBU 2f0 0xc42014a990 principal matched by identity 0 -peer0.org1.example.com | [4ef 01-18 01:59:27.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824] -peer1.org1.example.com | [484 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8bf7a8f3]sendExecuteMsg trigger event TRANSACTION -peer0.org2.example.com | [664 01-18 02:00:28.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org2.example.com | [5ab 01-18 02:00:09.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -peer1.org1.example.com | [485 01-18 01:59:27.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8bf7a8f3]Move state message TRANSACTION -orderer.example.com | 2018-01-18 01:58:51.964 UTC [msp/identity] Verify -> DEBU 2f1 Verify: digest = 00000000 0a a0 5d 09 26 8b 7a 10 a3 b6 c2 9d af ba c9 56 |..].&.z........V| -peer1.org2.example.com | [5ac 01-18 02:00:09.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [d0e7cbd3-6142-4757-be96-893ec5e2b251] -peer0.org1.example.com | [4f0 01-18 01:59:27.71 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -peer0.org2.example.com | [665 01-18 02:00:28.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [e5dcebb8-4d11-47eb-9e9e-d31fed81b128] -peer1.org1.example.com | [486 01-18 01:59:27.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8bf7a8f3]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | 00000010 5f cb 22 5a 66 84 57 14 0b e8 1a 28 36 06 e9 3e |_."Zf.W....(6..>| -peer1.org2.example.com | [5ad 01-18 02:00:09.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -peer0.org2.example.com | [666 01-18 02:00:28.40 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=dea59990-7964-4171-a1d4-2a2bb297acbf,syscc=true,proposal=0x0,canname=vscc:1.0.2 -peer1.org1.example.com | [487 01-18 01:59:27.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [4f1 01-18 01:59:27.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | 2018-01-18 01:58:51.964 UTC [msp/identity] Verify -> DEBU 2f2 Verify: sig = 00000000 30 44 02 20 29 07 f5 3b 75 87 a0 a4 66 fd f4 8c |0D. )..;u...f...| -peer1.org2.example.com | [5ae 01-18 02:00:11.36 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -peer1.org1.example.com | [488 01-18 01:59:27.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8bf7a8f3]sending state message TRANSACTION -peer0.org2.example.com | [667 01-18 02:00:28.40 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid ef892f35fb64f0ede0b8e75fccdd87a0b5a88e80208a6beacc5248090c895114 chaindID businesschannel -peer0.org1.example.com | [4f2 01-18 01:59:27.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [5f60fc0c-7094-4f1a-8683-3a0d0b75530a] -peer1.org2.example.com | [5af 01-18 02:00:11.36 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -orderer.example.com | 00000010 9d 33 36 f4 39 b7 2e 82 fb 27 b6 27 f8 27 57 50 |.36.9....'.'.'WP| -peer1.org1.example.com | [489 01-18 01:59:27.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8bf7a8f3]Received message TRANSACTION from shim -peer0.org2.example.com | [668 01-18 02:00:28.40 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 -peer1.org2.example.com | [5b0 01-18 02:00:11.36 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -orderer.example.com | 00000020 a2 9f 0c a4 02 20 3e 03 90 56 ce da 45 23 b2 2d |..... >..V..E#.-| -peer0.org1.example.com | [4f3 01-18 01:59:27.71 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=da0f241e-8a8e-4378-829a-c45835b2f3cc,syscc=true,proposal=0x0,canname=vscc:1.0.2 -peer1.org1.example.com | [48a 01-18 01:59:27.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8bf7a8f3]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [669 01-18 02:00:28.40 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [5b1 01-18 02:00:11.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421790cc0 -orderer.example.com | 00000030 85 0f 22 ec 4c 0d 0e f8 31 f9 4d ed fb a4 0e 7e |..".L...1.M....~| -peer0.org1.example.com | [4f4 01-18 01:59:27.71 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824 chaindID businesschannel -peer1.org1.example.com | [48b 01-18 01:59:27.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [8bf7a8f3]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org2.example.com | [66a 01-18 02:00:28.40 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 -peer0.org1.example.com | [4f5 01-18 01:59:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 -peer1.org2.example.com | [5b2 01-18 02:00:11.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\251\377\377\322\005\020\301\210\311\204\001\"\017businesschannel*@82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f:\t\022\007\022\005exp02" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030\215L\3418\2617/0\026\310\033\"v\267\267\031\315i\305\260\215\352\256\351" -orderer.example.com | 00000040 2e 30 01 0f 91 31 |.0...1| -peer1.org1.example.com | [48c 01-18 01:59:27.77 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer0.org2.example.com | [66b 01-18 02:00:28.40 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [dea59990]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [4f6 01-18 01:59:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [5b3 01-18 02:00:11.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org1.example.com | [48d 01-18 01:59:27.79 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -peer0.org2.example.com | [66c 01-18 02:00:28.40 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | 2018-01-18 01:58:51.964 UTC [cauthdsl] func2 -> DEBU 2f3 0xc42014a990 principal evaluation succeeds for identity 0 -peer0.org1.example.com | [4f7 01-18 01:59:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 -peer1.org1.example.com | [48e 01-18 01:59:27.79 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC -peer0.org2.example.com | [66d 01-18 02:00:28.40 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [dea59990]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [5b4 01-18 02:00:11.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | 2018-01-18 01:58:51.964 UTC [cauthdsl] func1 -> DEBU 2f4 0xc42014a990 gate 1516240731963650109 evaluation succeeds -peer0.org1.example.com | [4f8 01-18 01:59:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [da0f241e]Inside sendExecuteMessage. Message TRANSACTION -peer1.org1.example.com | [48f 01-18 01:59:27.79 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} -peer0.org2.example.com | [66e 01-18 02:00:28.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dea59990]Move state message TRANSACTION -peer1.org2.example.com | [5b5 01-18 02:00:11.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -peer0.org1.example.com | [4f9 01-18 01:59:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | 2018-01-18 01:58:51.964 UTC [common/configtx] recurseConfigMap -> DEBU 2f5 Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [5b6 01-18 02:00:11.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org1.example.com | [490 01-18 01:59:27.79 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} -peer0.org2.example.com | [66f 01-18 02:00:28.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [dea59990]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [4fa 01-18 01:59:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [da0f241e]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | 2018-01-18 01:58:51.964 UTC [common/configtx] recurseConfigMap -> DEBU 2f6 Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [5b7 01-18 02:00:11.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org2.example.com | [670 01-18 02:00:28.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [491 01-18 01:59:27.79 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace exp02 -peer0.org1.example.com | [4fb 01-18 01:59:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [da0f241e]Move state message TRANSACTION -peer1.org2.example.com | [5b8 01-18 02:00:11.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc422045800, header channel_header:"\010\003\032\014\010\251\377\377\322\005\020\301\210\311\204\001\"\017businesschannel*@82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f:\t\022\007\022\005exp02" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030\215L\3418\2617/0\026\310\033\"v\267\267\031\315i\305\260\215\352\256\351" -peer1.org1.example.com | [492 01-18 01:59:27.80 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc -orderer.example.com | 2018-01-18 01:58:51.964 UTC [common/configtx] recurseConfigMap -> DEBU 2f7 Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [671 01-18 02:00:28.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dea59990]sending state message TRANSACTION -peer1.org1.example.com | [493 01-18 01:59:27.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [6fadd16d-237a-47ca-926e-c5f6e27ad262] -peer0.org1.example.com | [4fc 01-18 01:59:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [da0f241e]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [5b9 01-18 02:00:11.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer1.org1.example.com | [494 01-18 01:59:27.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -orderer.example.com | 2018-01-18 01:58:51.964 UTC [common/configtx] recurseConfigMap -> DEBU 2f8 Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [672 01-18 02:00:28.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dea59990]Received message TRANSACTION from shim -peer0.org1.example.com | [4fd 01-18 01:59:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [5ba 01-18 02:00:11.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer0.org2.example.com | [673 01-18 02:00:28.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [dea59990]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [4fe 01-18 01:59:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [da0f241e]sending state message TRANSACTION -orderer.example.com | 2018-01-18 01:58:51.964 UTC [common/configtx] recurseConfigMap -> DEBU 2f9 Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [495 01-18 01:59:27.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [6fadd16d-237a-47ca-926e-c5f6e27ad262] -peer1.org2.example.com | [5bb 01-18 02:00:11.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer0.org2.example.com | [674 01-18 02:00:28.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [dea59990]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | 2018-01-18 01:58:51.964 UTC [common/configtx] recurseConfigMap -> DEBU 2fa Setting policy for key BlockValidation to policy: mod_policy:"Admins" -peer1.org1.example.com | [496 01-18 01:59:27.82 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 -peer1.org2.example.com | [5bc 01-18 02:00:11.36 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -peer0.org1.example.com | [4ff 01-18 01:59:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [da0f241e]Received message TRANSACTION from shim -peer0.org2.example.com | [675 01-18 02:00:28.40 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -orderer.example.com | 2018-01-18 01:58:51.964 UTC [common/configtx] recurseConfigMap -> DEBU 2fb Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org2.example.com | [5bd 01-18 02:00:11.36 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f] -peer1.org1.example.com | [497 01-18 01:59:27.82 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x953df0)} -peer0.org2.example.com | [676 01-18 02:00:28.40 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -peer0.org1.example.com | [500 01-18 01:59:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [da0f241e]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org1.example.com | [498 01-18 01:59:27.82 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -peer1.org2.example.com | [5be 01-18 02:00:11.36 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -peer0.org2.example.com | [677 01-18 02:00:28.40 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -orderer.example.com | 2018-01-18 01:58:51.964 UTC [common/configtx] recurseConfigMap -> DEBU 2fc Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [501 01-18 01:59:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [da0f241e]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org2.example.com | [5bf 01-18 02:00:11.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [3fe7683e-eb7c-473e-88d6-2a5743d2ecff] -peer1.org1.example.com | [499 01-18 01:59:27.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8bf7a8f3]Transaction completed. Sending COMPLETED -peer0.org2.example.com | [678 01-18 02:00:28.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dea59990]Transaction completed. Sending COMPLETED -orderer.example.com | 2018-01-18 01:58:51.965 UTC [common/configtx] recurseConfigMap -> DEBU 2fd Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [5c0 01-18 02:00:11.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer0.org1.example.com | [502 01-18 01:59:27.71 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer1.org1.example.com | [49a 01-18 01:59:27.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8bf7a8f3]Move state message COMPLETED -orderer.example.com | 2018-01-18 01:58:51.965 UTC [common/configtx] recurseConfigMap -> DEBU 2fe Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [503 01-18 01:59:27.71 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -peer0.org2.example.com | [679 01-18 02:00:28.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dea59990]Move state message COMPLETED -peer1.org1.example.com | [49b 01-18 01:59:27.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8bf7a8f3]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [5c1 01-18 02:00:11.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [3fe7683e-eb7c-473e-88d6-2a5743d2ecff] -orderer.example.com | 2018-01-18 01:58:51.965 UTC [common/configtx] recurseConfigMap -> DEBU 2ff Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [504 01-18 01:59:27.73 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC -peer0.org2.example.com | [67a 01-18 02:00:28.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [dea59990]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [49c 01-18 01:59:27.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8bf7a8f3]send state message COMPLETED -orderer.example.com | 2018-01-18 01:58:51.965 UTC [common/configtx] recurseConfigMap -> DEBU 300 Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [5c2 01-18 02:00:11.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org1.example.com | [505 01-18 01:59:27.73 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} -peer1.org1.example.com | [49d 01-18 01:59:27.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8bf7a8f3]Received message COMPLETED from shim -peer0.org2.example.com | [67b 01-18 02:00:28.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dea59990]send state message COMPLETED -orderer.example.com | 2018-01-18 01:58:51.965 UTC [common/configtx] recurseConfigMap -> DEBU 301 Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org2.example.com | [5c3 01-18 02:00:11.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [6a3a9e7d-346c-46f6-ba2e-4c1fbc279b85] -peer0.org1.example.com | [506 01-18 01:59:27.73 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} -peer1.org1.example.com | [49e 01-18 01:59:27.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8bf7a8f3]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [67c 01-18 02:00:28.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dea59990]Received message COMPLETED from shim -peer1.org2.example.com | [5c4 01-18 02:00:11.37 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=71259741-7249-4cb6-bd6d-85d601af99b9,syscc=true,proposal=0x0,canname=vscc:1.0.2 -peer1.org1.example.com | [49f 01-18 01:59:27.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8bf7a8f3-54eb-4834-971c-4052714454b4]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [507 01-18 01:59:27.73 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace exp02 -orderer.example.com | 2018-01-18 01:58:51.965 UTC [common/configtx] recurseConfigMap -> DEBU 302 Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org2.example.com | [67d 01-18 02:00:28.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [dea59990]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [4a0 01-18 01:59:27.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:8bf7a8f3-54eb-4834-971c-4052714454b4 -peer1.org2.example.com | [5c5 01-18 02:00:11.37 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f chaindID businesschannel -peer0.org1.example.com | [508 01-18 01:59:27.73 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc -orderer.example.com | 2018-01-18 01:58:51.965 UTC [common/configtx] recurseConfigMap -> DEBU 303 Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org1.example.com | [4a1 01-18 01:59:27.83 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [5c6 01-18 02:00:11.37 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 -peer0.org2.example.com | [67e 01-18 02:00:28.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [dea59990-7964-4171-a1d4-2a2bb297acbf]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [509 01-18 01:59:27.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [acc729d2-4178-413e-bd67-6b770cf04f8d] -peer1.org1.example.com | [4a2 01-18 01:59:27.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [dc331c49-09a4-4c76-8d4e-21e88e8d19e2] -orderer.example.com | 2018-01-18 01:58:51.965 UTC [common/configtx] recurseConfigMap -> DEBU 304 Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [67f 01-18 02:00:28.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:dea59990-7964-4171-a1d4-2a2bb297acbf -peer1.org2.example.com | [5c7 01-18 02:00:11.37 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [5c8 01-18 02:00:11.37 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 -peer1.org2.example.com | [5c9 01-18 02:00:11.37 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [71259741]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [50a 01-18 01:59:27.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer0.org2.example.com | [680 01-18 02:00:28.40 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | 2018-01-18 01:58:51.965 UTC [common/configtx] recurseConfigMap -> DEBU 305 Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [4a3 01-18 01:59:27.83 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -peer1.org2.example.com | [5ca 01-18 02:00:11.37 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | 2018-01-18 01:58:51.965 UTC [common/configtx] recurseConfigMap -> DEBU 306 Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [681 01-18 02:00:28.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [e5dcebb8-4d11-47eb-9e9e-d31fed81b128] -peer0.org1.example.com | [50b 01-18 01:59:27.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [acc729d2-4178-413e-bd67-6b770cf04f8d] -peer1.org1.example.com | [4a4 01-18 01:59:27.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -orderer.example.com | 2018-01-18 01:58:51.965 UTC [common/configtx] recurseConfigMap -> DEBU 307 Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [682 01-18 02:00:28.40 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -peer0.org1.example.com | [50c 01-18 01:59:27.73 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 -peer1.org2.example.com | [5cb 01-18 02:00:11.37 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [71259741]sendExecuteMsg trigger event TRANSACTION -peer1.org1.example.com | [4a5 01-18 01:59:27.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc422275e00), Data:(*common.BlockData)(0xc4217fd7c0), Metadata:(*common.BlockMetadata)(0xc4217fd800)}, doMVCCValidation=true -orderer.example.com | 2018-01-18 01:58:51.965 UTC [common/configtx] processConfig -> DEBU 308 Beginning new config for channel businesschannel -peer0.org2.example.com | [683 01-18 02:00:28.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org2.example.com | [5cc 01-18 02:00:11.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [71259741]Move state message TRANSACTION -peer0.org1.example.com | [50d 01-18 01:59:27.73 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x953df0)} -orderer.example.com | 2018-01-18 01:58:51.965 UTC [common/config] NewStandardValues -> DEBU 309 Initializing protos for *config.ChannelProtos -peer1.org1.example.com | [4a6 01-18 01:59:27.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -peer0.org2.example.com | [684 01-18 02:00:28.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc421a0b7c0), Data:(*common.BlockData)(0xc422f78a60), Metadata:(*common.BlockMetadata)(0xc422f78aa0)}, doMVCCValidation=true -peer0.org1.example.com | [50e 01-18 01:59:27.73 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -peer1.org2.example.com | [5cd 01-18 02:00:11.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [71259741]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | 2018-01-18 01:58:51.965 UTC [common/config] initializeProtosStruct -> DEBU 30a Processing field: HashingAlgorithm -peer0.org2.example.com | [685 01-18 02:00:28.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -peer1.org1.example.com | [4a7 01-18 01:59:27.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer0.org1.example.com | [50f 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [da0f241e]Transaction completed. Sending COMPLETED -orderer.example.com | 2018-01-18 01:58:51.965 UTC [common/config] initializeProtosStruct -> DEBU 30b Processing field: BlockDataHashingStructure -peer1.org2.example.com | [5ce 01-18 02:00:11.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [686 01-18 02:00:28.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=exp02, key=a -peer0.org1.example.com | [510 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [da0f241e]Move state message COMPLETED -peer1.org1.example.com | [4a8 01-18 01:59:27.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [3] Transaction index [0] TxId [ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824] marked as valid by state validator -peer1.org2.example.com | [5cf 01-18 02:00:11.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [71259741]sending state message TRANSACTION -orderer.example.com | 2018-01-18 01:58:51.965 UTC [common/config] initializeProtosStruct -> DEBU 30c Processing field: OrdererAddresses -peer0.org2.example.com | [687 01-18 02:00:28.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=exp02, key=b -peer0.org1.example.com | [511 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [da0f241e]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [4a9 01-18 01:59:27.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0x97, 0xe, 0xbe, 0xd9, 0x27, 0xde, 0xad, 0x13, 0x22, 0x1c, 0xcb, 0xdd, 0x26, 0x3a, 0xf8, 0x99, 0xca, 0x2c, 0x54, 0x92, 0x33, 0x30, 0x7d, 0x62, 0xca, 0x6a, 0xf9, 0x20, 0xf, 0xe3, 0x82, 0xcd} txOffsets= -orderer.example.com | 2018-01-18 01:58:51.965 UTC [common/config] initializeProtosStruct -> DEBU 30d Processing field: Consortium -peer0.org1.example.com | [512 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [da0f241e]send state message COMPLETED -peer1.org2.example.com | [5d0 01-18 02:00:11.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [71259741]Received message TRANSACTION from shim -peer0.org2.example.com | [688 01-18 02:00:28.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer1.org1.example.com | txId=ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824 locPointer=offset=70, bytesLength=3395 -peer1.org2.example.com | [5d1 01-18 02:00:11.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [71259741]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | 2018-01-18 01:58:51.965 UTC [policies] ProposePolicy -> DEBU 30e Proposed new policy Writers for Channel -peer0.org1.example.com | [513 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [da0f241e]Received message COMPLETED from shim -peer0.org2.example.com | [689 01-18 02:00:28.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [6] Transaction index [0] TxId [ef892f35fb64f0ede0b8e75fccdd87a0b5a88e80208a6beacc5248090c895114] marked as valid by state validator -peer1.org2.example.com | [5d2 01-18 02:00:11.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [71259741]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org1.example.com | ] -orderer.example.com | 2018-01-18 01:58:51.965 UTC [policies] ProposePolicy -> DEBU 30f Proposed new policy Admins for Channel -peer0.org2.example.com | [68a 01-18 02:00:28.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0xb6, 0xc2, 0x2c, 0xe8, 0xb1, 0x4d, 0xad, 0xb5, 0xbc, 0xd7, 0x9f, 0xca, 0x1a, 0x2e, 0x40, 0x28, 0xdd, 0x17, 0xd0, 0xea, 0x49, 0x57, 0x8a, 0x25, 0x1c, 0xd, 0x93, 0xa9, 0x45, 0x57, 0xf1, 0xaa} txOffsets= -peer1.org2.example.com | [5d3 01-18 02:00:11.37 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer1.org1.example.com | [4aa 01-18 01:59:27.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=39529, bytesLength=3395] for tx ID: [ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824] to index -peer0.org1.example.com | [514 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [da0f241e]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | 2018-01-18 01:58:51.966 UTC [policies] ProposePolicy -> DEBU 310 Proposed new policy Readers for Channel -peer0.org2.example.com | txId=ef892f35fb64f0ede0b8e75fccdd87a0b5a88e80208a6beacc5248090c895114 locPointer=offset=70, bytesLength=2855 -peer1.org1.example.com | [4ab 01-18 01:59:27.85 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=39529, bytesLength=3395] for tx number:[0] ID: [ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824] to blockNumTranNum index -peer1.org2.example.com | [5d4 01-18 02:00:11.37 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -orderer.example.com | 2018-01-18 01:58:51.966 UTC [common/config] NewStandardValues -> DEBU 311 Initializing protos for *config.OrdererProtos -peer0.org1.example.com | [515 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [da0f241e-8a8e-4378-829a-c45835b2f3cc]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [4ac 01-18 01:59:27.85 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[44675], isChainEmpty=[false], lastBlockNumber=[3] -peer1.org2.example.com | [5d5 01-18 02:00:11.37 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -peer0.org2.example.com | ] -orderer.example.com | 2018-01-18 01:58:51.966 UTC [common/config] initializeProtosStruct -> DEBU 312 Processing field: ConsensusType -peer0.org1.example.com | [516 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:da0f241e-8a8e-4378-829a-c45835b2f3cc -peer0.org2.example.com | [68b 01-18 02:00:28.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=54636, bytesLength=2855] for tx ID: [ef892f35fb64f0ede0b8e75fccdd87a0b5a88e80208a6beacc5248090c895114] to index -peer1.org2.example.com | [5d6 01-18 02:00:11.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [71259741]Transaction completed. Sending COMPLETED -orderer.example.com | 2018-01-18 01:58:51.966 UTC [common/config] initializeProtosStruct -> DEBU 313 Processing field: BatchSize -peer1.org1.example.com | [4ad 01-18 01:59:27.85 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [3] with 1 transaction(s) -peer0.org2.example.com | [68c 01-18 02:00:28.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=54636, bytesLength=2855] for tx number:[0] ID: [ef892f35fb64f0ede0b8e75fccdd87a0b5a88e80208a6beacc5248090c895114] to blockNumTranNum index -peer0.org1.example.com | [517 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [5d7 01-18 02:00:11.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [71259741]Move state message COMPLETED -orderer.example.com | 2018-01-18 01:58:51.966 UTC [common/config] initializeProtosStruct -> DEBU 314 Processing field: BatchTimeout -peer0.org2.example.com | [68d 01-18 02:00:28.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[59242], isChainEmpty=[false], lastBlockNumber=[6] -peer0.org1.example.com | [518 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [5f60fc0c-7094-4f1a-8683-3a0d0b75530a] -orderer.example.com | 2018-01-18 01:58:51.966 UTC [common/config] initializeProtosStruct -> DEBU 315 Processing field: KafkaBrokers -peer1.org2.example.com | [5d8 01-18 02:00:11.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [71259741]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [68e 01-18 02:00:28.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [6] with 1 transaction(s) -peer1.org1.example.com | [4ae 01-18 01:59:27.85 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -orderer.example.com | 2018-01-18 01:58:51.966 UTC [common/config] initializeProtosStruct -> DEBU 316 Processing field: ChannelRestrictions -peer0.org2.example.com | [68f 01-18 02:00:28.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -peer0.org1.example.com | [519 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -peer1.org2.example.com | [5d9 01-18 02:00:11.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [71259741]send state message COMPLETED -peer1.org1.example.com | [4af 01-18 01:59:27.85 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org2.example.com | [690 01-18 02:00:28.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org2.example.com | [691 01-18 02:00:28.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] -peer1.org2.example.com | [5da 01-18 02:00:11.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [71259741]Received message COMPLETED from shim -orderer.example.com | 2018-01-18 01:58:51.966 UTC [policies] ProposePolicy -> DEBU 317 Proposed new policy Writers for Orderer -peer1.org1.example.com | [4b0 01-18 01:59:27.85 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] -peer0.org1.example.com | [51a 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer0.org2.example.com | [692 01-18 02:00:28.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] -peer1.org1.example.com | [4b1 01-18 01:59:27.85 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] -peer1.org2.example.com | [5db 01-18 02:00:11.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [71259741]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | 2018-01-18 01:58:51.966 UTC [policies] ProposePolicy -> DEBU 318 Proposed new policy Admins for Orderer -peer0.org2.example.com | [693 01-18 02:00:28.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -peer0.org1.example.com | [51b 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc421eff400), Data:(*common.BlockData)(0xc421dbb220), Metadata:(*common.BlockMetadata)(0xc421dbb260)}, doMVCCValidation=true -peer1.org1.example.com | [4b2 01-18 01:59:27.85 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6c, 0x73, 0x63, 0x63, 0x0, 0x65, 0x78, 0x70, 0x30, 0x32}] -peer0.org2.example.com | [694 01-18 02:00:28.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [6] with [1] transactions -orderer.example.com | 2018-01-18 01:58:51.966 UTC [policies] ProposePolicy -> DEBU 319 Proposed new policy BlockValidation for Orderer -peer0.org2.example.com | [695 01-18 02:00:28.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [6] -peer1.org2.example.com | [5dc 01-18 02:00:11.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [71259741-7249-4cb6-bd6d-85d601af99b9]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [51c 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -peer0.org2.example.com | [696 01-18 02:00:28.51 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -peer1.org1.example.com | [4b3 01-18 01:59:27.85 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -orderer.example.com | 2018-01-18 01:58:51.966 UTC [policies] ProposePolicy -> DEBU 31a Proposed new policy Readers for Orderer -peer0.org2.example.com | [697 01-18 02:00:28.51 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [6] contains transaction id: ef892f35fb64f0ede0b8e75fccdd87a0b5a88e80208a6beacc5248090c895114 -peer1.org2.example.com | [5dd 01-18 02:00:11.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:71259741-7249-4cb6-bd6d-85d601af99b9 -peer0.org1.example.com | [51d 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer0.org2.example.com | [698 01-18 02:00:28.51 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [6] -peer1.org2.example.com | [5de 01-18 02:00:11.37 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [4b4 01-18 01:59:27.85 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [3] with [1] transactions -peer0.org1.example.com | [51e 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [3] Transaction index [0] TxId [ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824] marked as valid by state validator -peer0.org2.example.com | [699 01-18 02:00:28.51 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -peer1.org2.example.com | [5df 01-18 02:00:11.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [6a3a9e7d-346c-46f6-ba2e-4c1fbc279b85] -peer1.org2.example.com | [5e0 01-18 02:00:11.37 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -peer1.org2.example.com | [5e1 01-18 02:00:11.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org2.example.com | [5e2 01-18 02:00:11.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc4221d4340), Data:(*common.BlockData)(0xc4201224a0), Metadata:(*common.BlockMetadata)(0xc420122520)}, doMVCCValidation=true -orderer.example.com | 2018-01-18 01:58:51.966 UTC [common/config] NewStandardValues -> DEBU 31b Initializing protos for *config.OrganizationProtos -peer0.org2.example.com | [69a 01-18 02:00:28.51 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer1.org1.example.com | [4b5 01-18 01:59:27.85 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [3] -orderer.example.com | 2018-01-18 01:58:51.966 UTC [common/config] initializeProtosStruct -> DEBU 31c Processing field: MSP -peer0.org1.example.com | [51f 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0x97, 0xe, 0xbe, 0xd9, 0x27, 0xde, 0xad, 0x13, 0x22, 0x1c, 0xcb, 0xdd, 0x26, 0x3a, 0xf8, 0x99, 0xca, 0x2c, 0x54, 0x92, 0x33, 0x30, 0x7d, 0x62, 0xca, 0x6a, 0xf9, 0x20, 0xf, 0xe3, 0x82, 0xcd} txOffsets= -peer0.org2.example.com | [69b 01-18 02:00:28.51 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer1.org2.example.com | [5e3 01-18 02:00:11.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -peer1.org1.example.com | [4b6 01-18 01:59:27.85 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -peer0.org2.example.com | [69c 01-18 02:00:28.51 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -orderer.example.com | 2018-01-18 01:58:51.966 UTC [policies] ProposePolicy -> DEBU 31d Proposed new policy Admins for OrdererOrg -peer0.org1.example.com | txId=ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824 locPointer=offset=70, bytesLength=3395 -peer0.org2.example.com | [69d 01-18 02:00:28.51 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -orderer.example.com | 2018-01-18 01:58:51.966 UTC [policies] ProposePolicy -> DEBU 31e Proposed new policy Readers for OrdererOrg -peer1.org2.example.com | [5e4 01-18 02:00:11.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=exp02, key=a -peer1.org1.example.com | [4b7 01-18 01:59:27.85 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824 -peer0.org1.example.com | ] -orderer.example.com | 2018-01-18 01:58:51.966 UTC [policies] ProposePolicy -> DEBU 31f Proposed new policy Writers for OrdererOrg -peer1.org2.example.com | [5e5 01-18 02:00:11.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=exp02, key=b -peer0.org1.example.com | [520 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=39529, bytesLength=3395] for tx ID: [ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824] to index -peer1.org1.example.com | [4b8 01-18 01:59:27.85 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [3] -peer1.org2.example.com | [5e6 01-18 02:00:11.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=exp02 -orderer.example.com | 2018-01-18 01:58:51.966 UTC [common/config] NewStandardValues -> DEBU 320 Initializing protos for *struct {} -peer0.org1.example.com | [521 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=39529, bytesLength=3395] for tx number:[0] ID: [ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824] to blockNumTranNum index -peer1.org1.example.com | [4b9 01-18 01:59:27.85 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -peer0.org1.example.com | [522 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[44675], isChainEmpty=[false], lastBlockNumber=[3] -peer1.org2.example.com | [5e7 01-18 02:00:11.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [5] Transaction index [0] TxId [82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f] marked as valid by state validator -orderer.example.com | 2018-01-18 01:58:51.966 UTC [policies] ProposePolicy -> DEBU 321 Proposed new policy Admins for Application -peer0.org1.example.com | [523 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [3] with 1 transaction(s) -peer1.org1.example.com | [4ba 01-18 01:59:27.85 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [5e8 01-18 02:00:11.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=5, blockHash=[]byte{0x6c, 0xf7, 0xab, 0xa5, 0x1f, 0xca, 0x2a, 0x58, 0xcb, 0xd4, 0xd1, 0xb3, 0x1d, 0x76, 0xc1, 0x27, 0x8a, 0x2f, 0xe, 0x8d, 0x19, 0x84, 0xf0, 0xbf, 0x33, 0x10, 0xfe, 0x43, 0xbc, 0xb4, 0x60, 0x53} txOffsets= -orderer.example.com | 2018-01-18 01:58:51.966 UTC [policies] ProposePolicy -> DEBU 322 Proposed new policy Writers for Application -peer1.org1.example.com | [4bb 01-18 01:59:27.85 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer0.org1.example.com | [524 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -peer1.org2.example.com | txId=82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f locPointer=offset=70, bytesLength=2855 -orderer.example.com | 2018-01-18 01:58:51.966 UTC [policies] ProposePolicy -> DEBU 323 Proposed new policy Readers for Application -peer1.org1.example.com | [4bc 01-18 01:59:27.85 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -peer0.org1.example.com | [525 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -peer1.org2.example.com | ] -orderer.example.com | 2018-01-18 01:58:51.966 UTC [common/config] NewStandardValues -> DEBU 324 Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [526 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] -peer1.org1.example.com | [4bd 01-18 01:59:27.85 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -peer1.org2.example.com | [5e9 01-18 02:00:11.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=49961, bytesLength=2855] for tx ID: [82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f] to index -orderer.example.com | 2018-01-18 01:58:51.966 UTC [common/config] initializeProtosStruct -> DEBU 325 Processing field: MSP -peer0.org1.example.com | [527 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] -peer1.org1.example.com | [4be 01-18 01:59:48.22 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -peer1.org2.example.com | [5ea 01-18 02:00:11.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=49961, bytesLength=2855] for tx number:[0] ID: [82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f] to blockNumTranNum index -peer0.org1.example.com | [528 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6c, 0x73, 0x63, 0x63, 0x0, 0x65, 0x78, 0x70, 0x30, 0x32}] -orderer.example.com | 2018-01-18 01:58:51.966 UTC [common/config] NewStandardValues -> DEBU 326 Initializing protos for *config.ApplicationOrgProtos -peer1.org1.example.com | [4bf 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -peer1.org2.example.com | [5eb 01-18 02:00:11.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[54566], isChainEmpty=[false], lastBlockNumber=[5] -peer0.org1.example.com | [529 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -orderer.example.com | 2018-01-18 01:58:51.966 UTC [common/config] initializeProtosStruct -> DEBU 327 Processing field: AnchorPeers -peer1.org2.example.com | [5ec 01-18 02:00:11.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [5] with 1 transaction(s) -peer1.org1.example.com | [4c0 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -peer0.org1.example.com | [52a 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [3] with [1] transactions -orderer.example.com | 2018-01-18 01:58:51.966 UTC [common/config] NewStandardValues -> DEBU 328 Initializing protos for *config.OrganizationProtos -peer1.org1.example.com | [4c1 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421f4a240 -peer1.org2.example.com | [5ed 01-18 02:00:11.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -peer0.org1.example.com | [52b 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [3] -orderer.example.com | 2018-01-18 01:58:51.967 UTC [common/config] initializeProtosStruct -> DEBU 329 Processing field: MSP -peer1.org2.example.com | [5ee 01-18 02:00:11.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -peer1.org1.example.com | [4c2 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\375\376\377\322\005\020\220\204\253\262\003\"\017businesschannel*@544f379dda618ff2c82301cddc728a5ab3076d114052fb463df7e9d6c1ede6fd:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\030.\346n\376\017\374\362\314\316\370\257\277\034\314\3600Y\212Kj\313\"\227\377" -peer0.org1.example.com | [52c 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -peer1.org2.example.com | [5ef 01-18 02:00:11.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] -orderer.example.com | 2018-01-18 01:58:51.967 UTC [policies] ProposePolicy -> DEBU 32a Proposed new policy Readers for Org1MSP -peer1.org1.example.com | [4c3 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org1.example.com | [52d 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824 -peer1.org2.example.com | [5f0 01-18 02:00:11.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] -peer0.org1.example.com | [52e 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [3] -orderer.example.com | 2018-01-18 01:58:51.967 UTC [policies] ProposePolicy -> DEBU 32b Proposed new policy Writers for Org1MSP -peer1.org2.example.com | [5f1 01-18 02:00:11.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -orderer.example.com | 2018-01-18 01:58:51.967 UTC [policies] ProposePolicy -> DEBU 32c Proposed new policy Admins for Org1MSP -peer1.org1.example.com | [4c4 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [52f 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -orderer.example.com | 2018-01-18 01:58:51.967 UTC [common/config] NewStandardValues -> DEBU 32d Initializing protos for *config.OrganizationProtos -peer1.org1.example.com | [4c5 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} -orderer.example.com | 2018-01-18 01:58:51.967 UTC [common/config] initializeProtosStruct -> DEBU 32e Processing field: MSP -peer0.org1.example.com | [530 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [5f2 01-18 02:00:11.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [5] with [1] transactions -orderer.example.com | 2018-01-18 01:58:51.967 UTC [common/config] NewStandardValues -> DEBU 32f Initializing protos for *config.ApplicationOrgProtos -peer1.org1.example.com | [4c6 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [531 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer1.org2.example.com | [5f3 01-18 02:00:11.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [5] -peer1.org1.example.com | [4c7 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | 2018-01-18 01:58:51.967 UTC [common/config] initializeProtosStruct -> DEBU 330 Processing field: AnchorPeers -peer1.org2.example.com | [5f4 01-18 02:00:11.38 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -peer1.org1.example.com | [4c8 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421570a80, header channel_header:"\010\003\032\014\010\375\376\377\322\005\020\220\204\253\262\003\"\017businesschannel*@544f379dda618ff2c82301cddc728a5ab3076d114052fb463df7e9d6c1ede6fd:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\030.\346n\376\017\374\362\314\316\370\257\277\034\314\3600Y\212Kj\313\"\227\377" -peer0.org1.example.com | [532 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -peer1.org2.example.com | [5f5 01-18 02:00:11.38 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [5] contains transaction id: 82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f -orderer.example.com | 2018-01-18 01:58:51.967 UTC [common/config] NewStandardValues -> DEBU 331 Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [533 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -peer1.org1.example.com | [4c9 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer1.org2.example.com | [5f6 01-18 02:00:11.38 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [5] -orderer.example.com | 2018-01-18 01:58:51.967 UTC [common/config] initializeProtosStruct -> DEBU 332 Processing field: MSP -peer1.org2.example.com | [5f7 01-18 02:00:11.38 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -peer0.org1.example.com | [534 01-18 01:59:48.19 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [4], peers number [3] -peer1.org1.example.com | [4ca 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer1.org2.example.com | [5f8 01-18 02:00:11.38 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [5f9 01-18 02:00:11.38 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer1.org1.example.com | [4cb 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -orderer.example.com | 2018-01-18 01:58:51.967 UTC [policies] ProposePolicy -> DEBU 333 Proposed new policy Writers for Org2MSP -peer1.org2.example.com | [5fa 01-18 02:00:11.38 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -peer0.org1.example.com | [535 01-18 01:59:48.19 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [4], peers number [3] -peer1.org1.example.com | [4cc 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -peer1.org2.example.com | [5fb 01-18 02:00:11.38 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -orderer.example.com | 2018-01-18 01:58:51.967 UTC [policies] ProposePolicy -> DEBU 334 Proposed new policy Admins for Org2MSP -peer0.org1.example.com | [536 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -peer1.org1.example.com | [4cd 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [544f379dda618ff2c82301cddc728a5ab3076d114052fb463df7e9d6c1ede6fd] -peer1.org2.example.com | [5fc 01-18 02:00:26.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -orderer.example.com | 2018-01-18 01:58:51.967 UTC [policies] ProposePolicy -> DEBU 335 Proposed new policy Readers for Org2MSP -peer1.org2.example.com | [5fd 01-18 02:00:26.12 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421e23080 -peer0.org1.example.com | [537 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -peer1.org1.example.com | [4ce 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -peer1.org2.example.com | [5fe 01-18 02:00:26.12 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -orderer.example.com | 2018-01-18 01:58:51.967 UTC [common/config] validateMSP -> DEBU 336 Setting up MSP for org OrdererOrg -peer1.org2.example.com | [5ff 01-18 02:00:26.12 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org1.example.com | [4cf 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org1.example.com | [538 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -peer1.org2.example.com | [600 01-18 02:00:26.12 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} -orderer.example.com | 2018-01-18 01:58:51.967 UTC [msp] NewBccspMsp -> DEBU 337 Creating BCCSP-based MSP instance -peer1.org1.example.com | [4d0 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [aac4e437-0990-47fd-bb34-4ba452ebd4f9] -peer1.org2.example.com | [601 01-18 02:00:26.12 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org1.example.com | [4d1 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=318b9166-c4b6-4f0a-8870-35b7f05b2ef7,syscc=true,proposal=0x0,canname=vscc:1.0.2 -peer1.org2.example.com | [602 01-18 02:00:26.12 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | 2018-01-18 01:58:51.967 UTC [msp] Setup -> DEBU 338 Setting up MSP instance OrdererMSP -peer0.org1.example.com | [539 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421b3bc80 -peer1.org2.example.com | [603 01-18 02:00:26.12 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421dffef0, header 0xc421e230b0 -peer1.org1.example.com | [4d2 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 544f379dda618ff2c82301cddc728a5ab3076d114052fb463df7e9d6c1ede6fd chaindID businesschannel -peer0.org1.example.com | [53a 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\375\376\377\322\005\020\220\204\253\262\003\"\017businesschannel*@544f379dda618ff2c82301cddc728a5ab3076d114052fb463df7e9d6c1ede6fd:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\030.\346n\376\017\374\362\314\316\370\257\277\034\314\3600Y\212Kj\313\"\227\377" -orderer.example.com | 2018-01-18 01:58:51.967 UTC [msp/identity] newIdentity -> DEBU 339 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [4d3 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 -peer1.org2.example.com | [604 01-18 02:00:26.12 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"exp02" -peer0.org1.example.com | [53b 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL -peer1.org2.example.com | [605 01-18 02:00:26.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 2d0a93c093872a7d4b9eb9555dcb8697519257e14978c9466afbe9be252fa78a -peer1.org1.example.com | [4d4 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [53c 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org2.example.com | [606 01-18 02:00:26.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [2d0a93c093872a7d4b9eb9555dcb8697519257e14978c9466afbe9be252fa78a] -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org1.example.com | [4d5 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 -peer1.org2.example.com | [607 01-18 02:00:26.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org1.example.com | [53d 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} -peer1.org2.example.com | [608 01-18 02:00:26.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [40e267dc-8990-41c3-a0a1-cc80482c4ed6] -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -peer1.org1.example.com | [4d6 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [318b9166]Inside sendExecuteMessage. Message TRANSACTION -peer1.org2.example.com | [609 01-18 02:00:26.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 2d0a93c093872a7d4b9eb9555dcb8697519257e14978c9466afbe9be252fa78a channel id: businesschannel -peer1.org2.example.com | [60a 01-18 02:00:26.12 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=2d0a93c093872a7d4b9eb9555dcb8697519257e14978c9466afbe9be252fa78a,syscc=true,proposal=0xc421dffef0,canname=lscc:1.0.2 -orderer.example.com | cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV -peer1.org2.example.com | [60b 01-18 02:00:26.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 -peer0.org1.example.com | [53e 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org1.example.com | [4d7 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -peer1.org2.example.com | [60c 01-18 02:00:26.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [4d8 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [318b9166]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [60d 01-18 02:00:26.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -peer0.org1.example.com | [53f 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW -peer1.org2.example.com | [60e 01-18 02:00:26.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [2d0a93c0]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [540 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421968000, header channel_header:"\010\003\032\014\010\375\376\377\322\005\020\220\204\253\262\003\"\017businesschannel*@544f379dda618ff2c82301cddc728a5ab3076d114052fb463df7e9d6c1ede6fd:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\030.\346n\376\017\374\362\314\316\370\257\277\034\314\3600Y\212Kj\313\"\227\377" -peer1.org1.example.com | [4d9 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [318b9166]Move state message TRANSACTION -orderer.example.com | gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w -peer0.org1.example.com | [541 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer1.org2.example.com | [60f 01-18 02:00:26.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -peer1.org1.example.com | [4da 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [318b9166]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [610 01-18 02:00:26.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK -peer1.org1.example.com | [4db 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [542 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs -peer1.org2.example.com | [611 01-18 02:00:26.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [2d0a93c0]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [543 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= -peer1.org1.example.com | [4dc 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [318b9166]sending state message TRANSACTION -peer1.org2.example.com | [612 01-18 02:00:26.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2d0a93c0]Move state message TRANSACTION -peer1.org1.example.com | [4dd 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [318b9166]Received message TRANSACTION from shim -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [544 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -peer1.org2.example.com | [613 01-18 02:00:26.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2d0a93c0]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org1.example.com | [4de 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [318b9166]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [545 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [544f379dda618ff2c82301cddc728a5ab3076d114052fb463df7e9d6c1ede6fd] -orderer.example.com | 2018-01-18 01:58:51.968 UTC [msp/identity] newIdentity -> DEBU 33a Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [614 01-18 02:00:26.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [4df 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [318b9166]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [546 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -peer1.org2.example.com | [615 01-18 02:00:26.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2d0a93c0]sending state message TRANSACTION -peer1.org1.example.com | [4e0 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [547 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org1.example.com | [4e1 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -peer0.org1.example.com | [548 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [c1b8ae7c-9127-4067-bfaf-bf89d641be82] -peer0.org1.example.com | [549 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=9231c3a0-0f5f-4f23-93c8-89e4afd1192e,syscc=true,proposal=0x0,canname=vscc:1.0.2 -peer0.org1.example.com | [54a 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 544f379dda618ff2c82301cddc728a5ab3076d114052fb463df7e9d6c1ede6fd chaindID businesschannel -peer0.org1.example.com | [54b 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 -peer1.org2.example.com | [616 01-18 02:00:26.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2d0a93c0]Received message TRANSACTION from shim -peer1.org1.example.com | [4e2 01-18 01:59:48.25 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer0.org1.example.com | [54c 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [4e3 01-18 01:59:48.25 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} -peer0.org1.example.com | [54d 01-18 01:59:48.21 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 -peer1.org2.example.com | [617 01-18 02:00:26.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2d0a93c0]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [54e 01-18 01:59:48.21 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9231c3a0]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [54f 01-18 01:59:48.21 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -peer0.org1.example.com | [550 01-18 01:59:48.21 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9231c3a0]sendExecuteMsg trigger event TRANSACTION -peer1.org1.example.com | [4e4 01-18 01:59:48.26 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} -peer0.org1.example.com | [551 01-18 01:59:48.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9231c3a0]Move state message TRANSACTION -peer1.org2.example.com | [618 01-18 02:00:26.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [2d0a93c0]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [552 01-18 01:59:48.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9231c3a0]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer0.org1.example.com | [553 01-18 01:59:48.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [4e5 01-18 01:59:48.26 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace exp02 -peer0.org1.example.com | [554 01-18 01:59:48.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9231c3a0]sending state message TRANSACTION -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -peer1.org2.example.com | [619 01-18 02:00:26.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [2d0a93c0]Sending GET_STATE -peer0.org1.example.com | [555 01-18 01:59:48.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9231c3a0]Received message TRANSACTION from shim -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -peer0.org1.example.com | [556 01-18 01:59:48.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9231c3a0]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org1.example.com | [4e6 01-18 01:59:48.26 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc -peer1.org2.example.com | [61a 01-18 02:00:26.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2d0a93c0]Received message GET_STATE from shim -peer0.org1.example.com | [557 01-18 01:59:48.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [9231c3a0]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org1.example.com | [4e7 01-18 01:59:48.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [533af3eb-06ba-4fcd-ba76-d693d2cd8bef] -peer0.org1.example.com | [558 01-18 01:59:48.21 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer0.org1.example.com | [559 01-18 01:59:48.21 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -peer1.org2.example.com | [61b 01-18 02:00:26.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2d0a93c0]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer0.org1.example.com | [55a 01-18 01:59:48.21 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -peer0.org1.example.com | [55b 01-18 01:59:48.21 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} -peer1.org1.example.com | [4e8 01-18 01:59:48.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer1.org2.example.com | [61c 01-18 02:00:26.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [2d0a93c0]Received GET_STATE, invoking get state from ledger -peer0.org1.example.com | [55c 01-18 01:59:48.21 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -peer0.org1.example.com | [55d 01-18 01:59:48.21 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace exp02 -peer1.org1.example.com | [4e9 01-18 01:59:48.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [533af3eb-06ba-4fcd-ba76-d693d2cd8bef] -peer0.org1.example.com | [55e 01-18 01:59:48.21 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -peer0.org1.example.com | [55f 01-18 01:59:48.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [26418205-1426-4f26-a3b8-060e826aae4d] -peer1.org1.example.com | [4ea 01-18 01:59:48.26 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 -peer1.org2.example.com | [61d 01-18 02:00:26.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -peer1.org2.example.com | [61e 01-18 02:00:26.12 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [2d0a93c0] getting state for chaincode lscc, key exp02, channel businesschannel -peer0.org1.example.com | [560 01-18 01:59:48.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer1.org1.example.com | [4eb 01-18 01:59:48.26 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x953df0)} -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [561 01-18 01:59:48.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [26418205-1426-4f26-a3b8-060e826aae4d] -peer1.org2.example.com | [61f 01-18 02:00:26.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer1.org1.example.com | [4ec 01-18 01:59:48.26 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode exp02 is already instantiated -peer0.org1.example.com | [562 01-18 01:59:48.22 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 -orderer.example.com | 2018-01-18 01:58:51.968 UTC [msp/identity] newIdentity -> DEBU 33b Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [4ed 01-18 01:59:48.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [318b9166]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [620 01-18 02:00:26.12 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [2d0a93c0]Got state. Sending RESPONSE -peer0.org1.example.com | [563 01-18 01:59:48.22 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x953df0)} -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -peer1.org2.example.com | [621 01-18 02:00:26.12 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [2d0a93c0]handleGetState serial send RESPONSE -peer1.org1.example.com | [4ee 01-18 01:59:48.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [318b9166]Move state message COMPLETED -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [564 01-18 01:59:48.22 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode exp02 is already instantiated -peer1.org1.example.com | [4ef 01-18 01:59:48.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [318b9166]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer1.org1.example.com | [4f0 01-18 01:59:48.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [318b9166]send state message COMPLETED -peer1.org2.example.com | [622 01-18 02:00:26.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2d0a93c0]Received message RESPONSE from shim -peer0.org1.example.com | [565 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9231c3a0]Transaction completed. Sending COMPLETED -peer1.org1.example.com | [4f1 01-18 01:59:48.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [318b9166]Received message COMPLETED from shim -peer1.org1.example.com | [4f2 01-18 01:59:48.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [318b9166]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [4f3 01-18 01:59:48.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [318b9166-c4b6-4f0a-8870-35b7f05b2ef7]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [566 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9231c3a0]Move state message COMPLETED -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -peer1.org1.example.com | [4f4 01-18 01:59:48.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:318b9166-c4b6-4f0a-8870-35b7f05b2ef7 -peer0.org1.example.com | [567 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9231c3a0]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [623 01-18 02:00:26.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2d0a93c0]Handling ChaincodeMessage of type: RESPONSE(state:ready) -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer1.org1.example.com | [4f5 01-18 01:59:48.27 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [624 01-18 02:00:26.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [2d0a93c0]before send -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -peer1.org1.example.com | [4f6 01-18 01:59:48.27 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> ERRO VSCC check failed for transaction txid=544f379dda618ff2c82301cddc728a5ab3076d114052fb463df7e9d6c1ede6fd, error Chaincode exp02 is already instantiated -peer0.org1.example.com | [568 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9231c3a0]send state message COMPLETED -peer1.org1.example.com | [4f7 01-18 01:59:48.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [aac4e437-0990-47fd-bb34-4ba452ebd4f9] -peer1.org2.example.com | [625 01-18 02:00:26.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [2d0a93c0]after send -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -peer0.org1.example.com | [569 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9231c3a0]Received message COMPLETED from shim -peer1.org1.example.com | [4f8 01-18 01:59:48.27 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> ERRO VSCCValidateTx for transaction txId = 544f379dda618ff2c82301cddc728a5ab3076d114052fb463df7e9d6c1ede6fd returned error Chaincode exp02 is already instantiated -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -peer1.org1.example.com | [4f9 01-18 01:59:48.27 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -peer1.org2.example.com | [626 01-18 02:00:26.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [2d0a93c0]Received RESPONSE, communicated (state:ready) -peer1.org1.example.com | [4fa 01-18 01:59:48.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer0.org1.example.com | [56a 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9231c3a0]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [4fb 01-18 01:59:48.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc421b87ac0), Data:(*common.BlockData)(0xc421f49120), Metadata:(*common.BlockMetadata)(0xc421f49160)}, doMVCCValidation=true -peer1.org1.example.com | [4fc 01-18 01:59:48.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -peer1.org1.example.com | [4fd 01-18 01:59:48.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> WARN Block [4] Transaction index [0] marked as invalid by committer. Reason code [10] -peer1.org2.example.com | [627 01-18 02:00:26.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [2d0a93c0]GetState received payload RESPONSE -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -peer1.org1.example.com | [4fe 01-18 01:59:48.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0xa9, 0xa2, 0x5c, 0x6d, 0x32, 0x6, 0xa0, 0x2d, 0x65, 0xc3, 0x6e, 0x5b, 0xf7, 0xb7, 0x4f, 0x48, 0x2d, 0xb5, 0x26, 0x88, 0xf4, 0x50, 0x7e, 0x26, 0xb8, 0xd0, 0xfe, 0x2f, 0x87, 0xde, 0x87, 0x83} txOffsets= -peer0.org1.example.com | [56b 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9231c3a0-0f5f-4f23-93c8-89e4afd1192e]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | txId=544f379dda618ff2c82301cddc728a5ab3076d114052fb463df7e9d6c1ede6fd locPointer=offset=70, bytesLength=3394 -peer1.org2.example.com | [628 01-18 02:00:26.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2d0a93c0]Transaction completed. Sending COMPLETED -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -peer0.org1.example.com | [56c 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:9231c3a0-0f5f-4f23-93c8-89e4afd1192e -peer1.org1.example.com | ] -peer1.org2.example.com | [629 01-18 02:00:26.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2d0a93c0]Move state message COMPLETED -peer0.org1.example.com | [56d 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -peer1.org1.example.com | [4ff 01-18 01:59:48.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=44745, bytesLength=3394] for tx ID: [544f379dda618ff2c82301cddc728a5ab3076d114052fb463df7e9d6c1ede6fd] to index -peer1.org2.example.com | [62a 01-18 02:00:26.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2d0a93c0]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [56e 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> ERRO VSCC check failed for transaction txid=544f379dda618ff2c82301cddc728a5ab3076d114052fb463df7e9d6c1ede6fd, error Chaincode exp02 is already instantiated -peer1.org1.example.com | [500 01-18 01:59:48.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=44745, bytesLength=3394] for tx number:[0] ID: [544f379dda618ff2c82301cddc728a5ab3076d114052fb463df7e9d6c1ede6fd] to blockNumTranNum index -orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [501 01-18 01:59:48.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[49891], isChainEmpty=[false], lastBlockNumber=[4] -peer0.org1.example.com | [56f 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [c1b8ae7c-9127-4067-bfaf-bf89d641be82] -orderer.example.com | 2018-01-18 01:58:51.969 UTC [msp] Validate -> DEBU 33c MSP OrdererMSP validating identity -peer1.org1.example.com | [502 01-18 01:59:48.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [4] with 1 transaction(s) -peer1.org2.example.com | [62b 01-18 02:00:26.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2d0a93c0]send state message COMPLETED -orderer.example.com | 2018-01-18 01:58:51.969 UTC [common/config] Validate -> DEBU 33d Anchor peers for org Org1MSP are -peer0.org1.example.com | [570 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> ERRO VSCCValidateTx for transaction txId = 544f379dda618ff2c82301cddc728a5ab3076d114052fb463df7e9d6c1ede6fd returned error Chaincode exp02 is already instantiated -peer1.org1.example.com | [503 01-18 01:59:48.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -orderer.example.com | 2018-01-18 01:58:51.969 UTC [common/config] validateMSP -> DEBU 33e Setting up MSP for org Org1MSP -peer1.org2.example.com | [62c 01-18 02:00:26.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2d0a93c0]Received message COMPLETED from shim -peer0.org1.example.com | [571 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -peer1.org1.example.com | [504 01-18 01:59:48.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -orderer.example.com | 2018-01-18 01:58:51.969 UTC [msp] NewBccspMsp -> DEBU 33f Creating BCCSP-based MSP instance -peer1.org1.example.com | [505 01-18 01:59:48.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -peer0.org1.example.com | [572 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org2.example.com | [62d 01-18 02:00:26.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2d0a93c0]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | 2018-01-18 01:58:51.969 UTC [msp] Setup -> DEBU 340 Setting up MSP instance Org1MSP -peer1.org1.example.com | [506 01-18 01:59:48.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [4] with [1] transactions -peer0.org1.example.com | [573 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc4226f2dc0), Data:(*common.BlockData)(0xc421aa2d20), Metadata:(*common.BlockMetadata)(0xc421aa2d60)}, doMVCCValidation=true -peer1.org2.example.com | [62e 01-18 02:00:26.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2d0a93c093872a7d4b9eb9555dcb8697519257e14978c9466afbe9be252fa78a]HandleMessage- COMPLETED. Notify -orderer.example.com | 2018-01-18 01:58:51.970 UTC [msp/identity] newIdentity -> DEBU 341 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [62f 01-18 02:00:26.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:2d0a93c093872a7d4b9eb9555dcb8697519257e14978c9466afbe9be252fa78a -peer0.org1.example.com | [574 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -peer1.org2.example.com | [630 01-18 02:00:26.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [507 01-18 01:59:48.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Skipping history write for invalid transaction number 0 -peer1.org2.example.com | [631 01-18 02:00:26.12 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache -peer0.org1.example.com | [575 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> WARN Block [4] Transaction index [0] marked as invalid by committer. Reason code [10] -orderer.example.com | MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL -peer1.org1.example.com | [508 01-18 01:59:48.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [4] -peer1.org2.example.com | [632 01-18 02:00:26.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 2d0a93c093872a7d4b9eb9555dcb8697519257e14978c9466afbe9be252fa78a channel id: businesschannel version: 1.0 -peer0.org1.example.com | [576 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0xa9, 0xa2, 0x5c, 0x6d, 0x32, 0x6, 0xa0, 0x2d, 0x65, 0xc3, 0x6e, 0x5b, 0xf7, 0xb7, 0x4f, 0x48, 0x2d, 0xb5, 0x26, 0x88, 0xf4, 0x50, 0x7e, 0x26, 0xb8, 0xd0, 0xfe, 0x2f, 0x87, 0xde, 0x87, 0x83} txOffsets= -peer1.org1.example.com | [509 01-18 01:59:48.28 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -peer1.org2.example.com | [633 01-18 02:00:26.12 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=exp02,version=1.0,txid=2d0a93c093872a7d4b9eb9555dcb8697519257e14978c9466afbe9be252fa78a,syscc=false,proposal=0xc421dffef0,canname=exp02:1.0 -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | txId=544f379dda618ff2c82301cddc728a5ab3076d114052fb463df7e9d6c1ede6fd locPointer=offset=70, bytesLength=3394 -peer1.org2.example.com | [634 01-18 02:00:26.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : exp02:1.0 -peer1.org2.example.com | [635 01-18 02:00:26.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [636 01-18 02:00:26.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: exp02:1.0 -peer1.org2.example.com | [637 01-18 02:00:26.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [2d0a93c0]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org2.example.com | [638 01-18 02:00:26.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | ] -peer1.org1.example.com | [50a 01-18 01:59:48.28 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: 544f379dda618ff2c82301cddc728a5ab3076d114052fb463df7e9d6c1ede6fd -peer1.org2.example.com | [639 01-18 02:00:26.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -peer1.org2.example.com | [63a 01-18 02:00:26.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [2d0a93c0]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [577 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=44745, bytesLength=3394] for tx ID: [544f379dda618ff2c82301cddc728a5ab3076d114052fb463df7e9d6c1ede6fd] to index -peer1.org2.example.com | [63b 01-18 02:00:26.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2d0a93c0]Move state message TRANSACTION -peer1.org1.example.com | [50b 01-18 01:59:48.28 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [4] -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org2.example.com | [63c 01-18 02:00:26.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2d0a93c0]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org1.example.com | [50c 01-18 01:59:48.28 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -peer1.org2.example.com | [63d 01-18 02:00:26.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [578 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=44745, bytesLength=3394] for tx number:[0] ID: [544f379dda618ff2c82301cddc728a5ab3076d114052fb463df7e9d6c1ede6fd] to blockNumTranNum index -peer1.org2.example.com | [63e 01-18 02:00:26.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2d0a93c0]sending state message TRANSACTION -peer1.org2.example.com | [63f 01-18 02:00:26.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2d0a93c0]Received message GET_STATE from shim -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -peer1.org2.example.com | [640 01-18 02:00:26.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2d0a93c0]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org1.example.com | [50d 01-18 01:59:48.28 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer0.org1.example.com | [579 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[49891], isChainEmpty=[false], lastBlockNumber=[4] -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -peer1.org2.example.com | [641 01-18 02:00:26.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [2d0a93c0]Received GET_STATE, invoking get state from ledger -peer1.org2.example.com | [642 01-18 02:00:26.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [50e 01-18 01:59:48.28 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer0.org1.example.com | [57a 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [4] with 1 transaction(s) -orderer.example.com | BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf -peer1.org1.example.com | [50f 01-18 01:59:48.28 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -peer1.org2.example.com | [643 01-18 02:00:26.13 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [2d0a93c0] getting state for chaincode exp02, key a, channel businesschannel -orderer.example.com | db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -peer1.org1.example.com | [510 01-18 01:59:48.28 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -peer0.org1.example.com | [57b 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -peer1.org2.example.com | [644 01-18 02:00:26.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=exp02, key=a -peer1.org1.example.com | [511 01-18 02:00:09.42 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx -peer0.org1.example.com | [57c 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -peer1.org1.example.com | [512 01-18 02:00:09.42 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc420199b00 -peer1.org2.example.com | [645 01-18 02:00:26.13 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [2d0a93c0]Got state. Sending RESPONSE -orderer.example.com | JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi -peer1.org1.example.com | [513 01-18 02:00:09.42 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org1.example.com | [57d 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -orderer.example.com | /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ -peer1.org2.example.com | [646 01-18 02:00:26.13 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [2d0a93c0]handleGetState serial send RESPONSE -peer1.org1.example.com | [514 01-18 02:00:09.42 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | H7n8z1pj5w== -peer0.org1.example.com | [57e 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [4] with [1] transactions -peer1.org2.example.com | [647 01-18 02:00:26.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2d0a93c0]Received message COMPLETED from shim -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [57f 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Skipping history write for invalid transaction number 0 -peer1.org1.example.com | [515 01-18 02:00:09.42 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -peer1.org2.example.com | [648 01-18 02:00:26.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2d0a93c0]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [580 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [4] -orderer.example.com | 2018-01-18 01:58:51.970 UTC [msp/identity] newIdentity -> DEBU 342 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [516 01-18 02:00:09.42 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org2.example.com | [649 01-18 02:00:26.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2d0a93c093872a7d4b9eb9555dcb8697519257e14978c9466afbe9be252fa78a]HandleMessage- COMPLETED. Notify -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [581 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -peer1.org2.example.com | [64a 01-18 02:00:26.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:2d0a93c093872a7d4b9eb9555dcb8697519257e14978c9466afbe9be252fa78a -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org1.example.com | [517 01-18 02:00:09.42 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org2.example.com | [64b 01-18 02:00:26.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [582 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: 544f379dda618ff2c82301cddc728a5ab3076d114052fb463df7e9d6c1ede6fd -peer1.org1.example.com | [518 01-18 02:00:09.42 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4224a36d0, header 0xc420199b30 -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org2.example.com | [64c 01-18 02:00:26.13 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer1.org1.example.com | [519 01-18 02:00:09.42 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"exp02" -peer0.org1.example.com | [583 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [4] -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -peer1.org2.example.com | [64d 01-18 02:00:26.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer0.org1.example.com | [584 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org1.example.com | [51a 01-18 02:00:09.42 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 100e86fddaf33e12d56c645c3f2cfe34de9685d4e676ae8af49cc6b8706a1a10 -peer1.org2.example.com | [64e 01-18 02:00:26.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [40e267dc-8990-41c3-a0a1-cc80482c4ed6] -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer1.org1.example.com | [51b 01-18 02:00:09.42 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [100e86fddaf33e12d56c645c3f2cfe34de9685d4e676ae8af49cc6b8706a1a10] -peer0.org1.example.com | [585 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -peer1.org2.example.com | [64f 01-18 02:00:26.13 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -peer0.org1.example.com | [586 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer1.org1.example.com | [51c 01-18 02:00:09.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org1.example.com | [51d 01-18 02:00:09.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [764d1fa6-1b85-49e9-b588-00e69dbddc72] -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -peer0.org1.example.com | [587 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -peer1.org2.example.com | [650 01-18 02:00:26.13 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 2d0a93c093872a7d4b9eb9555dcb8697519257e14978c9466afbe9be252fa78a channel id: businesschannel chaincode id: name:"exp02" -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -peer1.org1.example.com | [51e 01-18 02:00:09.42 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 100e86fddaf33e12d56c645c3f2cfe34de9685d4e676ae8af49cc6b8706a1a10 channel id: businesschannel -peer0.org1.example.com | [588 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -peer1.org2.example.com | [651 01-18 02:00:26.13 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"exp02" is escc -peer1.org1.example.com | [51f 01-18 02:00:09.42 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=100e86fddaf33e12d56c645c3f2cfe34de9685d4e676ae8af49cc6b8706a1a10,syscc=true,proposal=0xc4224a36d0,canname=lscc:1.0.2 -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -peer0.org1.example.com | [589 01-18 02:00:09.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -peer1.org2.example.com | [652 01-18 02:00:26.13 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 2d0a93c093872a7d4b9eb9555dcb8697519257e14978c9466afbe9be252fa78a channel id: businesschannel version: 1.0.2 -peer1.org1.example.com | [520 01-18 02:00:09.42 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -peer0.org1.example.com | [58a 01-18 02:00:09.27 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc424da6300 -peer1.org2.example.com | [653 01-18 02:00:26.13 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=2d0a93c093872a7d4b9eb9555dcb8697519257e14978c9466afbe9be252fa78a,syscc=true,proposal=0xc421dffef0,canname=escc:1.0.2 -peer1.org1.example.com | [521 01-18 02:00:09.42 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | xHTBvxfK6mAzmUitFmY= -peer0.org1.example.com | [58b 01-18 02:00:09.27 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org2.example.com | [654 01-18 02:00:26.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 -peer1.org1.example.com | [522 01-18 02:00:09.42 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [58c 01-18 02:00:09.27 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org1.example.com | [523 01-18 02:00:09.42 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [100e86fd]Inside sendExecuteMessage. Message TRANSACTION -peer1.org2.example.com | [655 01-18 02:00:26.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | 2018-01-18 01:58:51.971 UTC [msp/identity] newIdentity -> DEBU 343 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [58d 01-18 02:00:09.27 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -peer1.org1.example.com | [524 01-18 02:00:09.42 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [656 01-18 02:00:26.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 -peer0.org1.example.com | [58e 01-18 02:00:09.27 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org1.example.com | [525 01-18 02:00:09.42 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [58f 01-18 02:00:09.27 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org2.example.com | [657 01-18 02:00:26.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [2d0a93c0]Inside sendExecuteMessage. Message TRANSACTION -peer1.org1.example.com | [526 01-18 02:00:09.42 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [100e86fd]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org2.example.com | [658 01-18 02:00:26.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [590 01-18 02:00:09.27 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4224920f0, header 0xc424da6330 -peer1.org1.example.com | [527 01-18 02:00:09.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [100e86fd]Move state message TRANSACTION -peer1.org2.example.com | [659 01-18 02:00:26.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -peer0.org1.example.com | [591 01-18 02:00:09.27 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"exp02" -peer1.org1.example.com | [528 01-18 02:00:09.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [100e86fd]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [65a 01-18 02:00:26.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [2d0a93c0]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org1.example.com | [529 01-18 02:00:09.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [592 01-18 02:00:09.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer1.org2.example.com | [65b 01-18 02:00:26.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2d0a93c0]Move state message TRANSACTION -peer0.org1.example.com | [593 01-18 02:00:09.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f] -peer1.org1.example.com | [52a 01-18 02:00:09.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [100e86fd]sending state message TRANSACTION -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -peer1.org2.example.com | [65c 01-18 02:00:26.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2d0a93c0]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org1.example.com | [52b 01-18 02:00:09.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [100e86fd]Received message TRANSACTION from shim -peer0.org1.example.com | [594 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -peer1.org2.example.com | [65d 01-18 02:00:26.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [595 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [a58123b4-6a36-407b-9fb4-bf34a53f4ae9] -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -peer1.org1.example.com | [52c 01-18 02:00:09.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [100e86fd]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [596 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f channel id: businesschannel -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -peer1.org2.example.com | [65e 01-18 02:00:26.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2d0a93c0]sending state message TRANSACTION -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -peer1.org1.example.com | [52d 01-18 02:00:09.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [100e86fd]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [597 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f,syscc=true,proposal=0xc4224920f0,canname=lscc:1.0.2 -peer1.org2.example.com | [65f 01-18 02:00:26.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2d0a93c0]Received message TRANSACTION from shim -orderer.example.com | xHTBvxfK6mAzmUitFmY= -peer0.org1.example.com | [598 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 -peer1.org2.example.com | [660 01-18 02:00:26.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2d0a93c0]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [52e 01-18 02:00:09.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [100e86fd]Sending GET_STATE -peer0.org1.example.com | [599 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [52f 01-18 02:00:09.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [100e86fd]Received message GET_STATE from shim -peer1.org2.example.com | [661 01-18 02:00:26.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [2d0a93c0]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | 2018-01-18 01:58:51.971 UTC [msp] Validate -> DEBU 344 MSP Org1MSP validating identity -peer0.org1.example.com | [59a 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -peer1.org2.example.com | [662 01-18 02:00:26.13 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -peer1.org1.example.com | [530 01-18 02:00:09.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [100e86fd]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -orderer.example.com | 2018-01-18 01:58:51.971 UTC [common/config] Validate -> DEBU 345 Anchor peers for org Org2MSP are -peer1.org2.example.com | [663 01-18 02:00:26.14 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -peer0.org1.example.com | [59b 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [82ba6765]Inside sendExecuteMessage. Message TRANSACTION -peer1.org1.example.com | [531 01-18 02:00:09.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [100e86fd]Received GET_STATE, invoking get state from ledger -peer1.org2.example.com | [664 01-18 02:00:26.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2d0a93c0]Transaction completed. Sending COMPLETED -orderer.example.com | 2018-01-18 01:58:51.971 UTC [common/config] validateMSP -> DEBU 346 Setting up MSP for org Org2MSP -peer0.org1.example.com | [59c 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | 2018-01-18 01:58:51.971 UTC [msp] NewBccspMsp -> DEBU 347 Creating BCCSP-based MSP instance -peer1.org2.example.com | [665 01-18 02:00:26.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2d0a93c0]Move state message COMPLETED -peer1.org1.example.com | [532 01-18 02:00:09.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [59d 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | 2018-01-18 01:58:51.971 UTC [msp] Setup -> DEBU 348 Setting up MSP instance Org2MSP -peer1.org2.example.com | [666 01-18 02:00:26.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2d0a93c0]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [533 01-18 02:00:09.42 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [100e86fd] getting state for chaincode lscc, key exp02, channel businesschannel -peer0.org1.example.com | [59e 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [82ba6765]sendExecuteMsg trigger event TRANSACTION -peer1.org1.example.com | [534 01-18 02:00:09.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -orderer.example.com | 2018-01-18 01:58:51.971 UTC [msp/identity] newIdentity -> DEBU 349 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [535 01-18 02:00:09.42 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [100e86fd]Got state. Sending RESPONSE -peer1.org2.example.com | [667 01-18 02:00:26.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2d0a93c0]send state message COMPLETED -orderer.example.com | MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw -peer1.org1.example.com | [536 01-18 02:00:09.42 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [100e86fd]handleGetState serial send RESPONSE -peer0.org1.example.com | [59f 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [82ba6765]Move state message TRANSACTION -peer1.org2.example.com | [668 01-18 02:00:26.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2d0a93c0]Received message COMPLETED from shim -peer1.org1.example.com | [537 01-18 02:00:09.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [100e86fd]Received message RESPONSE from shim -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [5a0 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [82ba6765]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org1.example.com | [538 01-18 02:00:09.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [100e86fd]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer1.org2.example.com | [669 01-18 02:00:26.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2d0a93c0]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer0.org1.example.com | [5a1 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [539 01-18 02:00:09.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [100e86fd]before send -peer1.org2.example.com | [66a 01-18 02:00:26.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2d0a93c093872a7d4b9eb9555dcb8697519257e14978c9466afbe9be252fa78a]HandleMessage- COMPLETED. Notify -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa -peer1.org1.example.com | [53a 01-18 02:00:09.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [100e86fd]after send -peer0.org1.example.com | [5a2 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [82ba6765]sending state message TRANSACTION -peer1.org2.example.com | [66b 01-18 02:00:26.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:2d0a93c093872a7d4b9eb9555dcb8697519257e14978c9466afbe9be252fa78a -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer1.org1.example.com | [53b 01-18 02:00:09.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [100e86fd]Received RESPONSE, communicated (state:ready) -peer1.org2.example.com | [66c 01-18 02:00:26.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -peer0.org1.example.com | [5a3 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [82ba6765]Received message TRANSACTION from shim -peer1.org1.example.com | [53c 01-18 02:00:09.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [100e86fd]GetState received payload RESPONSE -peer1.org2.example.com | [66d 01-18 02:00:26.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -peer0.org1.example.com | [5a4 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [82ba6765]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org1.example.com | [53d 01-18 02:00:09.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [100e86fd]Transaction completed. Sending COMPLETED -orderer.example.com | mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 -peer0.org1.example.com | [5a5 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [82ba6765]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org2.example.com | [66e 01-18 02:00:26.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -orderer.example.com | sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -peer1.org1.example.com | [53e 01-18 02:00:09.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [100e86fd]Move state message COMPLETED -peer0.org1.example.com | [5a6 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [82ba6765]Sending GET_STATE -peer1.org1.example.com | [53f 01-18 02:00:09.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [100e86fd]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [66f 01-18 02:00:26.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [40e267dc-8990-41c3-a0a1-cc80482c4ed6] -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ -peer0.org1.example.com | [5a7 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [82ba6765]Received message GET_STATE from shim -peer1.org1.example.com | [540 01-18 02:00:09.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [100e86fd]send state message COMPLETED -orderer.example.com | xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv -peer1.org2.example.com | [670 01-18 02:00:26.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -orderer.example.com | WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk -peer0.org1.example.com | [5a8 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [82ba6765]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org1.example.com | [541 01-18 02:00:09.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [100e86fd]Received message COMPLETED from shim -orderer.example.com | SCjyRdD3aQ== -peer0.org1.example.com | [5a9 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [82ba6765]Received GET_STATE, invoking get state from ledger -peer1.org2.example.com | [671 01-18 02:00:26.29 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [542 01-18 02:00:09.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [100e86fd]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [5aa 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | 2018-01-18 01:58:51.972 UTC [msp/identity] newIdentity -> DEBU 34a Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [672 01-18 02:00:26.29 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42284c6c0 -peer1.org1.example.com | [543 01-18 02:00:09.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [100e86fddaf33e12d56c645c3f2cfe34de9685d4e676ae8af49cc6b8706a1a10]HandleMessage- COMPLETED. Notify -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -peer1.org2.example.com | [673 01-18 02:00:26.29 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org1.example.com | [544 01-18 02:00:09.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:100e86fddaf33e12d56c645c3f2cfe34de9685d4e676ae8af49cc6b8706a1a10 -peer1.org2.example.com | [674 01-18 02:00:26.29 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [5ab 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [82ba6765] getting state for chaincode lscc, key exp02, channel businesschannel -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org2.example.com | [675 01-18 02:00:26.29 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} -peer1.org1.example.com | [545 01-18 02:00:09.42 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org2.example.com | [676 01-18 02:00:26.29 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [5ac 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer1.org1.example.com | [546 01-18 02:00:09.42 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -peer1.org2.example.com | [677 01-18 02:00:26.29 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org1.example.com | [547 01-18 02:00:09.42 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 100e86fddaf33e12d56c645c3f2cfe34de9685d4e676ae8af49cc6b8706a1a10 channel id: businesschannel version: 1.0 -peer0.org1.example.com | [5ad 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [82ba6765]Got state. Sending RESPONSE -peer1.org1.example.com | [548 01-18 02:00:09.42 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=exp02,version=1.0,txid=100e86fddaf33e12d56c645c3f2cfe34de9685d4e676ae8af49cc6b8706a1a10,syscc=false,proposal=0xc4224a36d0,canname=exp02:1.0 -peer1.org2.example.com | [678 01-18 02:00:26.29 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422894280, header 0xc42284c6f0 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -peer1.org1.example.com | [549 01-18 02:00:09.43 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=100e86fddaf33e12d56c645c3f2cfe34de9685d4e676ae8af49cc6b8706a1a10,syscc=true,proposal=0xc4224a36d0,canname=lscc:1.0.2 -peer0.org1.example.com | [5ae 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [82ba6765]handleGetState serial send RESPONSE -peer1.org2.example.com | [679 01-18 02:00:26.29 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"exp02" -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -peer1.org1.example.com | [54a 01-18 02:00:09.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -peer0.org1.example.com | [5af 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [82ba6765]Received message RESPONSE from shim -peer1.org1.example.com | [54b 01-18 02:00:09.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [67a 01-18 02:00:26.29 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: ef892f35fb64f0ede0b8e75fccdd87a0b5a88e80208a6beacc5248090c895114 -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -peer1.org1.example.com | [54c 01-18 02:00:09.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -peer0.org1.example.com | [5b0 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [82ba6765]Handling ChaincodeMessage of type: RESPONSE(state:ready) -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -peer1.org1.example.com | [54d 01-18 02:00:09.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [100e86fd]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | AXYxULZpXYDQXt1KaLI= -peer0.org1.example.com | [5b1 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [82ba6765]before send -peer1.org1.example.com | [54e 01-18 02:00:09.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [67b 01-18 02:00:26.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [ef892f35fb64f0ede0b8e75fccdd87a0b5a88e80208a6beacc5248090c895114] -orderer.example.com | 2018-01-18 01:58:51.972 UTC [msp/identity] newIdentity -> DEBU 34b Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [54f 01-18 02:00:09.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org1.example.com | [5b2 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [82ba6765]after send -peer0.org1.example.com | [5b3 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [82ba6765]Received RESPONSE, communicated (state:ready) -peer0.org1.example.com | [5b4 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [82ba6765]GetState received payload RESPONSE -peer0.org1.example.com | [5b5 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [82ba6765]Transaction completed. Sending COMPLETED -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org2.example.com | [67c 01-18 02:00:26.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org1.example.com | [550 01-18 02:00:09.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [100e86fd]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [5b6 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [82ba6765]Move state message COMPLETED -peer1.org1.example.com | [551 01-18 02:00:09.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [100e86fd]Move state message TRANSACTION -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -peer1.org1.example.com | [552 01-18 02:00:09.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [100e86fd]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [67d 01-18 02:00:26.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [274ed28b-05d0-4a71-850c-6e381fb5edbf] -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org1.example.com | [553 01-18 02:00:09.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [5b7 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [82ba6765]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -peer1.org1.example.com | [554 01-18 02:00:09.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [100e86fd]sending state message TRANSACTION -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -peer1.org1.example.com | [555 01-18 02:00:09.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [100e86fd]Received message TRANSACTION from shim -peer0.org1.example.com | [5b8 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [82ba6765]send state message COMPLETED -peer1.org1.example.com | [556 01-18 02:00:09.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [100e86fd]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org1.example.com | [557 01-18 02:00:09.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [100e86fd]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org2.example.com | [67e 01-18 02:00:26.29 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: ef892f35fb64f0ede0b8e75fccdd87a0b5a88e80208a6beacc5248090c895114 channel id: businesschannel -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -peer0.org1.example.com | [5b9 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [82ba6765]Received message COMPLETED from shim -peer1.org1.example.com | [558 01-18 02:00:09.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [100e86fd]Sending GET_STATE -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -orderer.example.com | AXYxULZpXYDQXt1KaLI= -peer1.org2.example.com | [67f 01-18 02:00:26.29 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=ef892f35fb64f0ede0b8e75fccdd87a0b5a88e80208a6beacc5248090c895114,syscc=true,proposal=0xc422894280,canname=lscc:1.0.2 -orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [559 01-18 02:00:09.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [100e86fd]Received message GET_STATE from shim -peer0.org1.example.com | [5ba 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [82ba6765]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | 2018-01-18 01:58:51.972 UTC [msp] Validate -> DEBU 34c MSP Org2MSP validating identity -peer1.org1.example.com | [55a 01-18 02:00:09.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [100e86fd]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer0.org1.example.com | [5bb 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f]HandleMessage- COMPLETED. Notify -orderer.example.com | 2018-01-18 01:58:51.972 UTC [msp] Setup -> DEBU 34d Setting up the MSP manager (3 msps) -peer1.org1.example.com | [55b 01-18 02:00:09.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [100e86fd]Received GET_STATE, invoking get state from ledger -peer1.org2.example.com | [680 01-18 02:00:26.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 -orderer.example.com | 2018-01-18 01:58:51.972 UTC [msp] Setup -> DEBU 34e MSP manager setup complete, setup 3 msps -peer1.org1.example.com | [55c 01-18 02:00:09.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [5bc 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f -orderer.example.com | 2018-01-18 01:58:51.973 UTC [common/configtx] addToMap -> DEBU 34f Adding to config map: [Groups] /Channel -peer1.org1.example.com | [55d 01-18 02:00:09.43 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [100e86fd] getting state for chaincode lscc, key exp02, channel businesschannel -peer1.org2.example.com | [681 01-18 02:00:26.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | 2018-01-18 01:58:51.973 UTC [common/configtx] addToMap -> DEBU 350 Adding to config map: [Groups] /Channel/Orderer -peer0.org1.example.com | [5bd 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | 2018-01-18 01:58:51.973 UTC [common/configtx] addToMap -> DEBU 351 Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -peer1.org1.example.com | [55e 01-18 02:00:09.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -orderer.example.com | 2018-01-18 01:58:51.973 UTC [common/configtx] addToMap -> DEBU 352 Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -peer1.org2.example.com | [682 01-18 02:00:26.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -peer0.org1.example.com | [5be 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache -orderer.example.com | 2018-01-18 01:58:51.973 UTC [common/configtx] addToMap -> DEBU 353 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer1.org1.example.com | [55f 01-18 02:00:09.43 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [100e86fd]Got state. Sending RESPONSE -peer0.org1.example.com | [5bf 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f channel id: businesschannel version: 1.0 -orderer.example.com | 2018-01-18 01:58:51.973 UTC [common/configtx] addToMap -> DEBU 354 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer1.org2.example.com | [683 01-18 02:00:26.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ef892f35]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | 2018-01-18 01:58:51.973 UTC [common/configtx] addToMap -> DEBU 355 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer1.org1.example.com | [560 01-18 02:00:09.43 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [100e86fd]handleGetState serial send RESPONSE -orderer.example.com | 2018-01-18 01:58:51.974 UTC [common/configtx] addToMap -> DEBU 356 Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -peer1.org2.example.com | [684 01-18 02:00:26.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | 2018-01-18 01:58:51.974 UTC [common/configtx] addToMap -> DEBU 357 Adding to config map: [Values] /Channel/Orderer/ConsensusType -peer0.org1.example.com | [5c0 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=exp02,version=1.0,txid=82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f,syscc=false,proposal=0xc4224920f0,canname=exp02:1.0 -peer1.org2.example.com | [685 01-18 02:00:26.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | 2018-01-18 01:58:51.974 UTC [common/configtx] addToMap -> DEBU 358 Adding to config map: [Values] /Channel/Orderer/BatchSize -peer1.org1.example.com | [561 01-18 02:00:09.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [100e86fd]Received message RESPONSE from shim -peer0.org1.example.com | [5c1 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : exp02:1.0 -orderer.example.com | 2018-01-18 01:58:51.974 UTC [common/configtx] addToMap -> DEBU 359 Adding to config map: [Values] /Channel/Orderer/BatchTimeout -orderer.example.com | 2018-01-18 01:58:51.974 UTC [common/configtx] addToMap -> DEBU 35a Adding to config map: [Policy] /Channel/Orderer/Writers -peer1.org2.example.com | [686 01-18 02:00:26.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ef892f35]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [5c2 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | 2018-01-18 01:58:51.974 UTC [common/configtx] addToMap -> DEBU 35b Adding to config map: [Policy] /Channel/Orderer/Admins -peer1.org1.example.com | [562 01-18 02:00:09.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [100e86fd]Handling ChaincodeMessage of type: RESPONSE(state:ready) -orderer.example.com | 2018-01-18 01:58:51.974 UTC [common/configtx] addToMap -> DEBU 35c Adding to config map: [Policy] /Channel/Orderer/BlockValidation -orderer.example.com | 2018-01-18 01:58:51.974 UTC [common/configtx] addToMap -> DEBU 35d Adding to config map: [Policy] /Channel/Orderer/Readers -orderer.example.com | 2018-01-18 01:58:51.974 UTC [common/configtx] addToMap -> DEBU 35e Adding to config map: [Groups] /Channel/Application -orderer.example.com | 2018-01-18 01:58:51.974 UTC [common/configtx] addToMap -> DEBU 35f Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | 2018-01-18 01:58:51.974 UTC [common/configtx] addToMap -> DEBU 360 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -peer1.org1.example.com | [563 01-18 02:00:09.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [100e86fd]before send -peer0.org1.example.com | [5c3 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: exp02:1.0 -orderer.example.com | 2018-01-18 01:58:51.974 UTC [common/configtx] addToMap -> DEBU 361 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer1.org2.example.com | [687 01-18 02:00:26.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ef892f35]Move state message TRANSACTION -orderer.example.com | 2018-01-18 01:58:51.975 UTC [common/configtx] addToMap -> DEBU 362 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org1.example.com | [5c4 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [82ba6765]Inside sendExecuteMessage. Message TRANSACTION -peer1.org1.example.com | [564 01-18 02:00:09.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [100e86fd]after send -orderer.example.com | 2018-01-18 01:58:51.975 UTC [common/configtx] addToMap -> DEBU 363 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer1.org2.example.com | [688 01-18 02:00:26.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ef892f35]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | 2018-01-18 01:58:51.975 UTC [common/configtx] addToMap -> DEBU 364 Adding to config map: [Groups] /Channel/Application/Org2MSP -peer1.org1.example.com | [565 01-18 02:00:09.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [100e86fd]Received RESPONSE, communicated (state:ready) -orderer.example.com | 2018-01-18 01:58:51.975 UTC [common/configtx] addToMap -> DEBU 365 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -orderer.example.com | 2018-01-18 01:58:51.975 UTC [common/configtx] addToMap -> DEBU 366 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | 2018-01-18 01:58:51.975 UTC [common/configtx] addToMap -> DEBU 367 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | 2018-01-18 01:58:51.975 UTC [common/configtx] addToMap -> DEBU 368 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer1.org2.example.com | [689 01-18 02:00:26.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [5c5 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | 2018-01-18 01:58:51.975 UTC [common/configtx] addToMap -> DEBU 369 Adding to config map: [Policy] /Channel/Application/Admins -peer1.org2.example.com | [68a 01-18 02:00:26.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ef892f35]sending state message TRANSACTION -peer0.org1.example.com | [5c6 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org1.example.com | [566 01-18 02:00:09.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [100e86fd]GetState received payload RESPONSE -orderer.example.com | 2018-01-18 01:58:51.975 UTC [common/configtx] addToMap -> DEBU 36a Adding to config map: [Policy] /Channel/Application/Writers -peer0.org1.example.com | [5c7 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [82ba6765]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [5c8 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [82ba6765]Move state message TRANSACTION -peer0.org1.example.com | [5c9 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [82ba6765]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | 2018-01-18 01:58:51.975 UTC [common/configtx] addToMap -> DEBU 36b Adding to config map: [Policy] /Channel/Application/Readers -peer1.org2.example.com | [68b 01-18 02:00:26.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ef892f35]Received message TRANSACTION from shim -peer1.org1.example.com | [567 01-18 02:00:09.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [100e86fd]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [5ca 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | 2018-01-18 01:58:51.975 UTC [common/configtx] addToMap -> DEBU 36c Adding to config map: [Values] /Channel/HashingAlgorithm -peer0.org1.example.com | [5cb 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [82ba6765]sending state message TRANSACTION -peer1.org2.example.com | [68c 01-18 02:00:26.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ef892f35]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [5cc 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [82ba6765]Received message GET_STATE from shim -peer0.org1.example.com | [5cd 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [82ba6765]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer0.org1.example.com | [5ce 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [82ba6765]Received GET_STATE, invoking get state from ledger -peer1.org1.example.com | [568 01-18 02:00:09.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [100e86fd]Move state message COMPLETED -peer0.org1.example.com | [5cf 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [68d 01-18 02:00:26.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [ef892f35]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org1.example.com | [569 01-18 02:00:09.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [100e86fd]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [5d0 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [82ba6765] getting state for chaincode exp02, key a, channel businesschannel -orderer.example.com | 2018-01-18 01:58:51.975 UTC [common/configtx] addToMap -> DEBU 36d Adding to config map: [Values] /Channel/BlockDataHashingStructure -peer0.org1.example.com | [5d1 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=exp02, key=a -peer1.org2.example.com | [68e 01-18 02:00:26.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [ef892f35]Sending GET_STATE -peer0.org1.example.com | [5d2 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [82ba6765]Got state. Sending RESPONSE -peer1.org1.example.com | [56a 01-18 02:00:09.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [100e86fd]send state message COMPLETED -orderer.example.com | 2018-01-18 01:58:51.975 UTC [common/configtx] addToMap -> DEBU 36e Adding to config map: [Values] /Channel/Consortium -peer0.org1.example.com | [5d3 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [82ba6765]handleGetState serial send RESPONSE -peer0.org1.example.com | [5d4 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [82ba6765]Received message GET_STATE from shim -peer0.org1.example.com | [5d5 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [82ba6765]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org2.example.com | [68f 01-18 02:00:26.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ef892f35]Received message GET_STATE from shim -peer0.org1.example.com | [5d6 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [82ba6765]Received GET_STATE, invoking get state from ledger -peer1.org1.example.com | [56b 01-18 02:00:09.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [100e86fd]Received message COMPLETED from shim -orderer.example.com | 2018-01-18 01:58:51.975 UTC [common/configtx] addToMap -> DEBU 36f Adding to config map: [Values] /Channel/OrdererAddresses -peer1.org2.example.com | [690 01-18 02:00:26.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ef892f35]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer0.org1.example.com | [5d7 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [691 01-18 02:00:26.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [ef892f35]Received GET_STATE, invoking get state from ledger -peer1.org1.example.com | [56c 01-18 02:00:09.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [100e86fd]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | 2018-01-18 01:58:51.976 UTC [common/configtx] addToMap -> DEBU 370 Adding to config map: [Policy] /Channel/Writers -peer0.org1.example.com | [5d8 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [82ba6765] getting state for chaincode exp02, key b, channel businesschannel -peer1.org1.example.com | [56d 01-18 02:00:09.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [100e86fddaf33e12d56c645c3f2cfe34de9685d4e676ae8af49cc6b8706a1a10]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [5d9 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=exp02, key=b -orderer.example.com | 2018-01-18 01:58:51.976 UTC [common/configtx] addToMap -> DEBU 371 Adding to config map: [Policy] /Channel/Admins -peer1.org2.example.com | [692 01-18 02:00:26.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [5da 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [82ba6765]Got state. Sending RESPONSE -peer0.org1.example.com | [5db 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [82ba6765]handleGetState serial send RESPONSE -peer0.org1.example.com | [5dc 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [82ba6765]Received message PUT_STATE from shim -peer0.org1.example.com | [5dd 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [82ba6765]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -orderer.example.com | 2018-01-18 01:58:51.976 UTC [common/configtx] addToMap -> DEBU 372 Adding to config map: [Policy] /Channel/Readers -peer1.org1.example.com | [56e 01-18 02:00:09.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:100e86fddaf33e12d56c645c3f2cfe34de9685d4e676ae8af49cc6b8706a1a10 -peer0.org1.example.com | [5de 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [693 01-18 02:00:26.30 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [ef892f35] getting state for chaincode lscc, key exp02, channel businesschannel -orderer.example.com | 2018-01-18 01:58:51.976 UTC [common/configtx] addToMap -> DEBU 373 Adding to config map: [Groups] /Channel -peer1.org1.example.com | [56f 01-18 02:00:09.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [694 01-18 02:00:26.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer0.org1.example.com | [5df 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [82ba6765]state is ready -orderer.example.com | 2018-01-18 01:58:51.976 UTC [common/configtx] addToMap -> DEBU 374 Adding to config map: [Groups] /Channel/Application -peer1.org1.example.com | [570 01-18 02:00:09.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode exp02:1.0 is being launched -peer1.org2.example.com | [695 01-18 02:00:26.30 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [ef892f35]Got state. Sending RESPONSE -orderer.example.com | 2018-01-18 01:58:51.976 UTC [common/configtx] addToMap -> DEBU 375 Adding to config map: [Groups] /Channel/Application/Org1MSP -peer0.org1.example.com | [5e0 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [82ba6765]Completed PUT_STATE. Sending RESPONSE -peer1.org1.example.com | [571 01-18 02:00:09.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -peer1.org2.example.com | [696 01-18 02:00:26.30 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [ef892f35]handleGetState serial send RESPONSE -peer0.org1.example.com | [5e1 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [82ba6765]enterBusyState trigger event RESPONSE -orderer.example.com | 2018-01-18 01:58:51.976 UTC [common/configtx] addToMap -> DEBU 376 Adding to config map: [Groups] /Channel/Application/Org2MSP -peer1.org1.example.com | [572 01-18 02:00:09.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer1.org1.example.com:7052] -peer0.org1.example.com | [5e2 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [82ba6765]Move state message RESPONSE -orderer.example.com | 2018-01-18 01:58:51.976 UTC [common/configtx] addToMap -> DEBU 377 Adding to config map: [Values] /Channel/Consortium -peer1.org1.example.com | [573 01-18 02:00:09.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container: exp02:1.0(networkid:dev,peerid:peer1.org1.example.com) -peer0.org1.example.com | [5e3 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [82ba6765]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -peer1.org2.example.com | [697 01-18 02:00:26.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ef892f35]Received message RESPONSE from shim -orderer.example.com | 2018-01-18 01:58:51.976 UTC [common/configtx] addToMap -> DEBU 378 Adding to config map: [Groups] /Channel -peer1.org1.example.com | [574 01-18 02:00:09.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer1.org1.example.com:7052 -peer0.org1.example.com | [5e4 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | 2018-01-18 01:58:51.976 UTC [common/configtx] addToMap -> DEBU 379 Adding to config map: [Groups] /Channel/Application -peer1.org2.example.com | [698 01-18 02:00:26.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ef892f35]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer0.org1.example.com | [5e5 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [82ba6765]sending state message RESPONSE -peer1.org1.example.com | [575 01-18 02:00:09.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: -orderer.example.com | 2018-01-18 01:58:51.976 UTC [common/configtx] addToMap -> DEBU 37a Adding to config map: [Groups] /Channel/Application/Org1MSP -peer0.org1.example.com | [5e6 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [82ba6765]Received message PUT_STATE from shim -peer1.org2.example.com | [699 01-18 02:00:26.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [ef892f35]before send -peer1.org1.example.com | CORE_CHAINCODE_ID_NAME=exp02:1.0 -peer1.org2.example.com | [69a 01-18 02:00:26.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [ef892f35]after send -peer0.org1.example.com | [5e7 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [82ba6765]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -peer1.org2.example.com | [69b 01-18 02:00:26.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [ef892f35]Received RESPONSE, communicated (state:ready) -orderer.example.com | 2018-01-18 01:58:51.977 UTC [common/configtx] addToMap -> DEBU 37b Adding to config map: [Groups] /Channel/Application/Org2MSP -peer1.org2.example.com | [69c 01-18 02:00:26.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [ef892f35]GetState received payload RESPONSE -peer1.org2.example.com | [69d 01-18 02:00:26.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ef892f35]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [69e 01-18 02:00:26.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ef892f35]Move state message COMPLETED -peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org2.example.com | [69f 01-18 02:00:26.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ef892f35]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [5e8 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | 2018-01-18 01:58:51.977 UTC [common/configtx] addToMap -> DEBU 37c Adding to config map: [Policy] /Channel/Application/Admins -peer1.org2.example.com | [6a0 01-18 02:00:26.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ef892f35]send state message COMPLETED -peer1.org2.example.com | [6a1 01-18 02:00:26.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ef892f35]Received message COMPLETED from shim -peer1.org2.example.com | [6a2 01-18 02:00:26.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ef892f35]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | 2018-01-18 01:58:51.977 UTC [common/configtx] addToMap -> DEBU 37d Adding to config map: [Policy] /Channel/Application/Writers -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer0.org1.example.com | [5e9 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [82ba6765]state is ready -peer1.org2.example.com | [6a3 01-18 02:00:26.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ef892f35fb64f0ede0b8e75fccdd87a0b5a88e80208a6beacc5248090c895114]HandleMessage- COMPLETED. Notify -orderer.example.com | 2018-01-18 01:58:51.977 UTC [common/configtx] addToMap -> DEBU 37e Adding to config map: [Policy] /Channel/Application/Readers -peer1.org2.example.com | [6a4 01-18 02:00:26.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:ef892f35fb64f0ede0b8e75fccdd87a0b5a88e80208a6beacc5248090c895114 -orderer.example.com | 2018-01-18 01:58:51.977 UTC [common/configtx] addToMap -> DEBU 37f Adding to config map: [Values] /Channel/Consortium -peer1.org2.example.com | [6a5 01-18 02:00:26.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [5ea 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [82ba6765]Completed PUT_STATE. Sending RESPONSE -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -orderer.example.com | 2018-01-18 01:58:51.977 UTC [policies] GetPolicy -> DEBU 380 Returning policy ChannelCreationPolicy for evaluation -peer1.org2.example.com | [6a6 01-18 02:00:26.30 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache -orderer.example.com | 2018-01-18 01:58:51.977 UTC [cauthdsl] func1 -> DEBU 381 0xc42014b098 gate 1516240731977614523 evaluation starts -peer1.org2.example.com | [6a7 01-18 02:00:26.30 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: ef892f35fb64f0ede0b8e75fccdd87a0b5a88e80208a6beacc5248090c895114 channel id: businesschannel version: 1.0 -orderer.example.com | 2018-01-18 01:58:51.977 UTC [cauthdsl] func2 -> DEBU 382 0xc42014b098 signed by 0 principal evaluation starts (used [false]) -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer0.org1.example.com | [5eb 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [82ba6765]enterBusyState trigger event RESPONSE -peer1.org2.example.com | [6a8 01-18 02:00:26.30 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=exp02,version=1.0,txid=ef892f35fb64f0ede0b8e75fccdd87a0b5a88e80208a6beacc5248090c895114,syscc=false,proposal=0xc422894280,canname=exp02:1.0 -orderer.example.com | 2018-01-18 01:58:51.977 UTC [cauthdsl] func2 -> DEBU 383 0xc42014b098 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a -peer1.org2.example.com | [6a9 01-18 02:00:26.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : exp02:1.0 -orderer.example.com | 2018-01-18 01:58:51.978 UTC [msp/identity] newIdentity -> DEBU 384 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [5ec 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [82ba6765]Move state message RESPONSE -peer1.org1.example.com | [576 01-18 02:00:09.43 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(dev-peer1.org1.example.com-exp02-1.0) lock -peer1.org2.example.com | [6aa 01-18 02:00:26.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [5ed 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [82ba6765]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -peer1.org1.example.com | [577 01-18 02:00:09.43 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (dev-peer1.org1.example.com-exp02-1.0) lock -peer1.org2.example.com | [6ab 01-18 02:00:26.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: exp02:1.0 -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org2.example.com | [6ac 01-18 02:00:26.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ef892f35]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org1.example.com | [578 01-18 02:00:09.43 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Cleanup container dev-peer1.org1.example.com-exp02-1.0 -peer0.org1.example.com | [5ee 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [6ad 01-18 02:00:26.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -peer1.org2.example.com | [6ae 01-18 02:00:26.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org1.example.com | [5ef 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [82ba6765]sending state message RESPONSE -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org2.example.com | [6af 01-18 02:00:26.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ef892f35]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer1.org1.example.com | [579 01-18 02:00:09.43 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Stop container dev-peer1.org1.example.com-exp02-1.0(No such container: dev-peer1.org1.example.com-exp02-1.0) -peer0.org1.example.com | [5f0 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [82ba6765]Received message COMPLETED from shim -peer1.org2.example.com | [6b0 01-18 02:00:26.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ef892f35]Move state message TRANSACTION -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -peer1.org2.example.com | [6b1 01-18 02:00:26.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ef892f35]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [5f1 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [82ba6765]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [57a 01-18 02:00:09.43 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Kill container dev-peer1.org1.example.com-exp02-1.0 (No such container: dev-peer1.org1.example.com-exp02-1.0) -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -peer1.org2.example.com | [6b2 01-18 02:00:26.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -peer1.org1.example.com | [57b 01-18 02:00:09.43 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Remove container dev-peer1.org1.example.com-exp02-1.0 (No such container: dev-peer1.org1.example.com-exp02-1.0) -peer0.org1.example.com | [5f2 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f]HandleMessage- COMPLETED. Notify -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -peer1.org2.example.com | [6b3 01-18 02:00:26.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ef892f35]sending state message TRANSACTION -peer1.org1.example.com | [57c 01-18 02:00:09.43 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Start container dev-peer1.org1.example.com-exp02-1.0 -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -peer1.org1.example.com | [57d 01-18 02:00:09.43 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: v102_default -peer0.org1.example.com | [5f3 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f -orderer.example.com | xHTBvxfK6mAzmUitFmY= -peer1.org2.example.com | [6b4 01-18 02:00:26.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ef892f35]Received message GET_STATE from shim -peer1.org1.example.com | [57e 01-18 02:00:09.43 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer1.org1.example.com-exp02-1.0 -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [5f4 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [6b5 01-18 02:00:26.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ef892f35]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -orderer.example.com | 2018-01-18 01:58:51.978 UTC [msp] SatisfiesPrincipal -> DEBU 385 Checking if identity satisfies ADMIN role for Org1MSP -peer1.org1.example.com | [57f 01-18 02:00:09.44 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-could not find image (container id ), because of ...attempt to recreate image -orderer.example.com | 2018-01-18 01:58:51.978 UTC [cauthdsl] func2 -> DEBU 386 0xc42014b098 principal matched by identity 0 -peer0.org1.example.com | [5f5 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer1.org1.example.com | [580 01-18 02:00:09.44 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms] do.do.Start.func1.GenerateDockerBuild.generateDockerfile -> DEBU -peer1.org2.example.com | [6b6 01-18 02:00:26.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [ef892f35]Received GET_STATE, invoking get state from ledger -orderer.example.com | 2018-01-18 01:58:51.978 UTC [msp/identity] Verify -> DEBU 387 Verify: digest = 00000000 0a a0 5d 09 26 8b 7a 10 a3 b6 c2 9d af ba c9 56 |..].&.z........V| -orderer.example.com | 00000010 5f cb 22 5a 66 84 57 14 0b e8 1a 28 36 06 e9 3e |_."Zf.W....(6..>| -peer1.org1.example.com | FROM hyperledger/fabric-baseos:x86_64-0.3.2 -orderer.example.com | 2018-01-18 01:58:51.978 UTC [msp/identity] Verify -> DEBU 388 Verify: sig = 00000000 30 44 02 20 29 07 f5 3b 75 87 a0 a4 66 fd f4 8c |0D. )..;u...f...| -peer1.org2.example.com | [6b7 01-18 02:00:26.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | 00000010 9d 33 36 f4 39 b7 2e 82 fb 27 b6 27 f8 27 57 50 |.36.9....'.'.'WP| -peer0.org1.example.com | [5f6 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -orderer.example.com | 00000020 a2 9f 0c a4 02 20 3e 03 90 56 ce da 45 23 b2 2d |..... >..V..E#.-| -peer1.org1.example.com | ADD binpackage.tar /usr/local/bin -peer0.org1.example.com | [5f7 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [a58123b4-6a36-407b-9fb4-bf34a53f4ae9] -peer1.org2.example.com | [6b8 01-18 02:00:26.30 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [ef892f35] getting state for chaincode exp02, key a, channel businesschannel -peer0.org1.example.com | [5f8 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -peer1.org1.example.com | LABEL org.hyperledger.fabric.chaincode.id.name="exp02" \ -orderer.example.com | 00000030 85 0f 22 ec 4c 0d 0e f8 31 f9 4d ed fb a4 0e 7e |..".L...1.M....~| -peer1.org2.example.com | [6b9 01-18 02:00:26.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=exp02, key=a -peer1.org1.example.com | org.hyperledger.fabric.chaincode.id.version="1.0" \ -orderer.example.com | 00000040 2e 30 01 0f 91 31 |.0...1| -peer0.org1.example.com | [5f9 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f channel id: businesschannel chaincode id: name:"exp02" -orderer.example.com | 2018-01-18 01:58:51.978 UTC [cauthdsl] func2 -> DEBU 389 0xc42014b098 principal evaluation succeeds for identity 0 -peer1.org2.example.com | [6ba 01-18 02:00:26.30 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [ef892f35]Got state. Sending RESPONSE -orderer.example.com | 2018-01-18 01:58:51.978 UTC [cauthdsl] func1 -> DEBU 38a 0xc42014b098 gate 1516240731977614523 evaluation succeeds -peer1.org1.example.com | org.hyperledger.fabric.chaincode.type="GOLANG" \ -peer0.org1.example.com | [5fa 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"exp02" is escc -peer1.org2.example.com | [6bb 01-18 02:00:26.30 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [ef892f35]handleGetState serial send RESPONSE -orderer.example.com | 2018-01-18 01:58:51.978 UTC [common/configtx] recurseConfigMap -> DEBU 38b Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org1.example.com | org.hyperledger.fabric.version="1.0.2" \ -orderer.example.com | 2018-01-18 01:58:51.979 UTC [common/configtx] recurseConfigMap -> DEBU 38c Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:51.979 UTC [common/configtx] recurseConfigMap -> DEBU 38d Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:51.979 UTC [common/configtx] recurseConfigMap -> DEBU 38e Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [6bc 01-18 02:00:26.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ef892f35]Received message GET_STATE from shim -peer0.org1.example.com | [5fb 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f channel id: businesschannel version: 1.0.2 -orderer.example.com | 2018-01-18 01:58:51.979 UTC [common/configtx] recurseConfigMap -> DEBU 38f Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | org.hyperledger.fabric.base.version="0.3.2" -peer0.org1.example.com | [5fc 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f,syscc=true,proposal=0xc4224920f0,canname=escc:1.0.2 -orderer.example.com | 2018-01-18 01:58:51.979 UTC [common/configtx] recurseConfigMap -> DEBU 390 Setting policy for key BlockValidation to policy: mod_policy:"Admins" -peer1.org2.example.com | [6bd 01-18 02:00:26.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ef892f35]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org1.example.com | ENV CORE_CHAINCODE_BUILDLEVEL=1.0.2 -orderer.example.com | 2018-01-18 01:58:51.979 UTC [common/configtx] recurseConfigMap -> DEBU 391 Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [5fd 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 -peer1.org2.example.com | [6be 01-18 02:00:26.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [ef892f35]Received GET_STATE, invoking get state from ledger -peer1.org1.example.com | ENV CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -orderer.example.com | 2018-01-18 01:58:51.979 UTC [common/configtx] recurseConfigMap -> DEBU 392 Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [5fe 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [6bf 01-18 02:00:26.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | COPY peer.crt /etc/hyperledger/fabric/peer.crt -orderer.example.com | 2018-01-18 01:58:51.979 UTC [common/configtx] recurseConfigMap -> DEBU 393 Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [5ff 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 -peer1.org2.example.com | [6c0 01-18 02:00:26.31 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [ef892f35] getting state for chaincode exp02, key b, channel businesschannel -peer0.org1.example.com | [600 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [82ba6765]Inside sendExecuteMessage. Message TRANSACTION -peer1.org1.example.com | [581 01-18 02:00:09.44 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/util] generateDockerBuild.GenerateDockerBuild.DockerBuild -> DEBU Attempting build with image hyperledger/fabric-ccenv:x86_64-1.0.2 -orderer.example.com | 2018-01-18 01:58:51.979 UTC [common/configtx] recurseConfigMap -> DEBU 394 Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [6c1 01-18 02:00:26.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=exp02, key=b -peer1.org1.example.com | [582 01-18 02:00:11.35 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -orderer.example.com | 2018-01-18 01:58:51.979 UTC [common/configtx] recurseConfigMap -> DEBU 395 Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [601 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [602 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org1.example.com | [583 01-18 02:00:11.35 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -peer1.org2.example.com | [6c2 01-18 02:00:26.31 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [ef892f35]Got state. Sending RESPONSE -orderer.example.com | 2018-01-18 01:58:51.979 UTC [common/configtx] recurseConfigMap -> DEBU 396 Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [584 01-18 02:00:11.35 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -peer0.org1.example.com | [603 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [82ba6765]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [6c3 01-18 02:00:26.31 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [ef892f35]handleGetState serial send RESPONSE -orderer.example.com | 2018-01-18 01:58:51.979 UTC [common/configtx] recurseConfigMap -> DEBU 397 Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [585 01-18 02:00:11.35 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4221ec030 -peer1.org2.example.com | [6c4 01-18 02:00:26.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ef892f35]Received message PUT_STATE from shim -orderer.example.com | 2018-01-18 01:58:51.979 UTC [common/configtx] recurseConfigMap -> DEBU 398 Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [604 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [82ba6765]Move state message TRANSACTION -peer1.org1.example.com | [586 01-18 02:00:11.35 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\251\377\377\322\005\020\301\210\311\204\001\"\017businesschannel*@82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f:\t\022\007\022\005exp02" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030\215L\3418\2617/0\026\310\033\"v\267\267\031\315i\305\260\215\352\256\351" -peer1.org2.example.com | [6c5 01-18 02:00:26.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ef892f35]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -peer0.org1.example.com | [605 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [82ba6765]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | 2018-01-18 01:58:51.979 UTC [common/configtx] recurseConfigMap -> DEBU 399 Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org1.example.com | [587 01-18 02:00:11.35 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org1.example.com | [606 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [588 01-18 02:00:11.35 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org2.example.com | [6c6 01-18 02:00:26.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | 2018-01-18 01:58:51.979 UTC [common/configtx] recurseConfigMap -> DEBU 39a Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [607 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [82ba6765]sending state message TRANSACTION -peer1.org1.example.com | [589 01-18 02:00:11.35 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -peer0.org1.example.com | [608 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [82ba6765]Received message TRANSACTION from shim -orderer.example.com | 2018-01-18 01:58:51.979 UTC [common/configtx] recurseConfigMap -> DEBU 39b Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [6c7 01-18 02:00:26.31 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [ef892f35]state is ready -peer1.org1.example.com | [58a 01-18 02:00:11.35 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [609 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [82ba6765]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org2.example.com | [6c8 01-18 02:00:26.31 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [ef892f35]Completed PUT_STATE. Sending RESPONSE -orderer.example.com | 2018-01-18 01:58:51.979 UTC [common/configtx] recurseConfigMap -> DEBU 39c Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [60a 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [82ba6765]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org1.example.com | [58b 01-18 02:00:11.35 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org2.example.com | [6c9 01-18 02:00:26.31 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [ef892f35]enterBusyState trigger event RESPONSE -orderer.example.com | 2018-01-18 01:58:51.979 UTC [common/configtx] recurseConfigMap -> DEBU 39d Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [58c 01-18 02:00:11.35 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421903800, header channel_header:"\010\003\032\014\010\251\377\377\322\005\020\301\210\311\204\001\"\017businesschannel*@82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f:\t\022\007\022\005exp02" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030\215L\3418\2617/0\026\310\033\"v\267\267\031\315i\305\260\215\352\256\351" -peer0.org1.example.com | [60b 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -peer1.org2.example.com | [6ca 01-18 02:00:26.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ef892f35]Move state message RESPONSE -peer1.org1.example.com | [58d 01-18 02:00:11.35 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -orderer.example.com | 2018-01-18 01:58:51.979 UTC [common/configtx] processConfig -> DEBU 39e Beginning new config for channel businesschannel -peer1.org1.example.com | [58e 01-18 02:00:11.35 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer1.org2.example.com | [6cb 01-18 02:00:26.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ef892f35]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -peer0.org1.example.com | [60c 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -peer1.org1.example.com | [58f 01-18 02:00:11.35 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer1.org2.example.com | [6cc 01-18 02:00:26.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | 2018-01-18 01:58:51.979 UTC [common/config] NewStandardValues -> DEBU 39f Initializing protos for *config.ChannelProtos -peer0.org1.example.com | [60d 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [82ba6765]Transaction completed. Sending COMPLETED -peer1.org1.example.com | [590 01-18 02:00:11.35 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -orderer.example.com | 2018-01-18 01:58:51.979 UTC [common/config] initializeProtosStruct -> DEBU 3a0 Processing field: HashingAlgorithm -peer1.org2.example.com | [6cd 01-18 02:00:26.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ef892f35]sending state message RESPONSE -peer0.org1.example.com | [60e 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [82ba6765]Move state message COMPLETED -orderer.example.com | 2018-01-18 01:58:51.979 UTC [common/config] initializeProtosStruct -> DEBU 3a1 Processing field: BlockDataHashingStructure -peer1.org1.example.com | [591 01-18 02:00:11.35 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f] -peer1.org2.example.com | [6ce 01-18 02:00:26.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ef892f35]Received message PUT_STATE from shim -peer0.org1.example.com | [60f 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [82ba6765]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [592 01-18 02:00:11.35 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -orderer.example.com | 2018-01-18 01:58:51.979 UTC [common/config] initializeProtosStruct -> DEBU 3a2 Processing field: OrdererAddresses -peer0.org1.example.com | [610 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [82ba6765]send state message COMPLETED -peer1.org1.example.com | [593 01-18 02:00:11.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [97760b2d-415d-437a-91dd-1e3c9308825b] -peer1.org2.example.com | [6cf 01-18 02:00:26.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ef892f35]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -peer1.org1.example.com | [594 01-18 02:00:11.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer1.org2.example.com | [6d0 01-18 02:00:26.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [611 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [82ba6765]Received message COMPLETED from shim -peer1.org2.example.com | [6d1 01-18 02:00:26.31 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [ef892f35]state is ready -peer1.org1.example.com | [595 01-18 02:00:11.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [97760b2d-415d-437a-91dd-1e3c9308825b] -peer0.org1.example.com | [612 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [82ba6765]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | 2018-01-18 01:58:51.980 UTC [common/config] initializeProtosStruct -> DEBU 3a3 Processing field: Consortium -peer1.org2.example.com | [6d2 01-18 02:00:26.31 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [ef892f35]Completed PUT_STATE. Sending RESPONSE -peer0.org1.example.com | [613 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f]HandleMessage- COMPLETED. Notify -orderer.example.com | 2018-01-18 01:58:51.980 UTC [policies] ProposePolicy -> DEBU 3a4 Proposed new policy Admins for Channel -peer1.org2.example.com | [6d3 01-18 02:00:26.31 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [ef892f35]enterBusyState trigger event RESPONSE -peer1.org1.example.com | [596 01-18 02:00:11.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org1.example.com | [614 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f -orderer.example.com | 2018-01-18 01:58:51.980 UTC [policies] ProposePolicy -> DEBU 3a5 Proposed new policy Readers for Channel -peer1.org2.example.com | [6d4 01-18 02:00:26.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ef892f35]Move state message RESPONSE -peer1.org1.example.com | [597 01-18 02:00:11.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [df20d43e-c840-44dd-ba7b-e7f38e354801] -peer0.org1.example.com | [615 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [6d5 01-18 02:00:26.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ef892f35]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -orderer.example.com | 2018-01-18 01:58:51.980 UTC [policies] ProposePolicy -> DEBU 3a6 Proposed new policy Writers for Channel -peer0.org1.example.com | [616 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -peer1.org2.example.com | [6d6 01-18 02:00:26.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [598 01-18 02:00:11.35 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=e192df03-ce26-42cf-b44e-e9248a01141b,syscc=true,proposal=0x0,canname=vscc:1.0.2 -orderer.example.com | 2018-01-18 01:58:51.980 UTC [common/config] NewStandardValues -> DEBU 3a7 Initializing protos for *struct {} -peer0.org1.example.com | [617 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -peer1.org2.example.com | [6d7 01-18 02:00:26.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ef892f35]sending state message RESPONSE -orderer.example.com | 2018-01-18 01:58:51.980 UTC [policies] ProposePolicy -> DEBU 3a8 Proposed new policy Admins for Application -peer1.org2.example.com | [6d8 01-18 02:00:26.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ef892f35]Received message COMPLETED from shim -peer0.org1.example.com | [618 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [a58123b4-6a36-407b-9fb4-bf34a53f4ae9] -peer1.org1.example.com | [599 01-18 02:00:11.35 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f chaindID businesschannel -orderer.example.com | 2018-01-18 01:58:51.980 UTC [policies] ProposePolicy -> DEBU 3a9 Proposed new policy Writers for Application -peer1.org2.example.com | [6d9 01-18 02:00:26.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ef892f35]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [619 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -peer1.org2.example.com | [6da 01-18 02:00:26.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ef892f35fb64f0ede0b8e75fccdd87a0b5a88e80208a6beacc5248090c895114]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [59a 01-18 02:00:11.35 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 -orderer.example.com | 2018-01-18 01:58:51.980 UTC [policies] ProposePolicy -> DEBU 3aa Proposed new policy Readers for Application -peer0.org1.example.com | [61a 01-18 02:00:11.32 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [5], peers number [3] -peer1.org1.example.com | [59b 01-18 02:00:11.36 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [6db 01-18 02:00:26.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:ef892f35fb64f0ede0b8e75fccdd87a0b5a88e80208a6beacc5248090c895114 -orderer.example.com | 2018-01-18 01:58:51.980 UTC [common/config] NewStandardValues -> DEBU 3ab Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [61b 01-18 02:00:11.32 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [5], peers number [3] -peer1.org1.example.com | [59c 01-18 02:00:11.36 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 -peer1.org2.example.com | [6dc 01-18 02:00:26.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | 2018-01-18 01:58:51.980 UTC [common/config] initializeProtosStruct -> DEBU 3ac Processing field: MSP -peer0.org1.example.com | [61c 01-18 02:00:11.32 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -peer1.org2.example.com | [6dd 01-18 02:00:26.31 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -orderer.example.com | 2018-01-18 01:58:51.980 UTC [common/config] NewStandardValues -> DEBU 3ad Initializing protos for *config.ApplicationOrgProtos -peer1.org1.example.com | [59d 01-18 02:00:11.36 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [e192df03]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [61d 01-18 02:00:11.32 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -orderer.example.com | 2018-01-18 01:58:51.980 UTC [common/config] initializeProtosStruct -> DEBU 3ae Processing field: AnchorPeers -peer1.org2.example.com | [6de 01-18 02:00:26.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer1.org1.example.com | [59e 01-18 02:00:11.36 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [61e 01-18 02:00:11.32 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -orderer.example.com | 2018-01-18 01:58:51.980 UTC [common/config] NewStandardValues -> DEBU 3af Initializing protos for *config.OrganizationProtos -peer1.org2.example.com | [6df 01-18 02:00:26.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [274ed28b-05d0-4a71-850c-6e381fb5edbf] -peer0.org1.example.com | [61f 01-18 02:00:11.32 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc422100d80 -peer1.org1.example.com | [59f 01-18 02:00:11.36 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [e192df03]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | 2018-01-18 01:58:51.980 UTC [common/config] initializeProtosStruct -> DEBU 3b0 Processing field: MSP -peer1.org2.example.com | [6e0 01-18 02:00:26.31 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -orderer.example.com | 2018-01-18 01:58:51.980 UTC [policies] ProposePolicy -> DEBU 3b1 Proposed new policy Writers for Org2MSP -peer0.org1.example.com | [620 01-18 02:00:11.32 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\251\377\377\322\005\020\301\210\311\204\001\"\017businesschannel*@82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f:\t\022\007\022\005exp02" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030\215L\3418\2617/0\026\310\033\"v\267\267\031\315i\305\260\215\352\256\351" -peer1.org1.example.com | [5a0 01-18 02:00:11.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e192df03]Move state message TRANSACTION -peer1.org2.example.com | [6e1 01-18 02:00:26.31 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: ef892f35fb64f0ede0b8e75fccdd87a0b5a88e80208a6beacc5248090c895114 channel id: businesschannel chaincode id: name:"exp02" -peer0.org1.example.com | [621 01-18 02:00:11.32 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -orderer.example.com | 2018-01-18 01:58:51.980 UTC [policies] ProposePolicy -> DEBU 3b2 Proposed new policy Admins for Org2MSP -peer1.org2.example.com | [6e2 01-18 02:00:26.31 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"exp02" is escc -peer1.org1.example.com | [5a1 01-18 02:00:11.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e192df03]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | 2018-01-18 01:58:51.980 UTC [policies] ProposePolicy -> DEBU 3b3 Proposed new policy Readers for Org2MSP -peer0.org1.example.com | [622 01-18 02:00:11.32 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org1.example.com | [5a2 01-18 02:00:11.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [6e3 01-18 02:00:26.31 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: ef892f35fb64f0ede0b8e75fccdd87a0b5a88e80208a6beacc5248090c895114 channel id: businesschannel version: 1.0.2 -orderer.example.com | 2018-01-18 01:58:51.980 UTC [common/config] NewStandardValues -> DEBU 3b4 Initializing protos for *config.OrganizationProtos -peer1.org1.example.com | [5a3 01-18 02:00:11.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e192df03]sending state message TRANSACTION -peer0.org1.example.com | [623 01-18 02:00:11.32 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -peer1.org2.example.com | [6e4 01-18 02:00:26.31 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=ef892f35fb64f0ede0b8e75fccdd87a0b5a88e80208a6beacc5248090c895114,syscc=true,proposal=0xc422894280,canname=escc:1.0.2 -peer1.org1.example.com | [5a4 01-18 02:00:11.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e192df03]Received message TRANSACTION from shim -orderer.example.com | 2018-01-18 01:58:51.980 UTC [common/config] initializeProtosStruct -> DEBU 3b5 Processing field: MSP -peer0.org1.example.com | [624 01-18 02:00:11.32 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org1.example.com | [5a5 01-18 02:00:11.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e192df03]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org2.example.com | [6e5 01-18 02:00:26.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 -orderer.example.com | 2018-01-18 01:58:51.980 UTC [common/config] NewStandardValues -> DEBU 3b6 Initializing protos for *config.ApplicationOrgProtos -peer0.org1.example.com | [625 01-18 02:00:11.32 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org1.example.com | [5a6 01-18 02:00:11.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [e192df03]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org2.example.com | [6e6 01-18 02:00:26.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | 2018-01-18 01:58:51.980 UTC [common/config] initializeProtosStruct -> DEBU 3b7 Processing field: AnchorPeers -peer1.org1.example.com | [5a7 01-18 02:00:11.38 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer0.org1.example.com | [626 01-18 02:00:11.32 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc422131000, header channel_header:"\010\003\032\014\010\251\377\377\322\005\020\301\210\311\204\001\"\017businesschannel*@82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f:\t\022\007\022\005exp02" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030\215L\3418\2617/0\026\310\033\"v\267\267\031\315i\305\260\215\352\256\351" -peer1.org2.example.com | [6e7 01-18 02:00:26.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 -peer1.org1.example.com | [5a8 01-18 02:00:11.38 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -orderer.example.com | 2018-01-18 01:58:51.980 UTC [common/config] NewStandardValues -> DEBU 3b8 Initializing protos for *config.OrganizationProtos -peer1.org2.example.com | [6e8 01-18 02:00:26.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ef892f35]Inside sendExecuteMessage. Message TRANSACTION -peer1.org1.example.com | [5a9 01-18 02:00:11.38 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -peer0.org1.example.com | [627 01-18 02:00:11.32 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer1.org2.example.com | [6e9 01-18 02:00:26.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | 2018-01-18 01:58:51.980 UTC [common/config] initializeProtosStruct -> DEBU 3b9 Processing field: MSP -peer1.org1.example.com | [5aa 01-18 02:00:11.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e192df03]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [628 01-18 02:00:11.32 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -orderer.example.com | 2018-01-18 01:58:51.981 UTC [policies] ProposePolicy -> DEBU 3ba Proposed new policy Writers for Org1MSP -peer1.org1.example.com | [5ab 01-18 02:00:11.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e192df03]Move state message COMPLETED -peer1.org2.example.com | [6ea 01-18 02:00:26.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org1.example.com | [629 01-18 02:00:11.32 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer1.org2.example.com | [6eb 01-18 02:00:26.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ef892f35]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | 2018-01-18 01:58:51.981 UTC [policies] ProposePolicy -> DEBU 3bb Proposed new policy Admins for Org1MSP -peer1.org1.example.com | [5ac 01-18 02:00:11.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e192df03]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [62a 01-18 02:00:11.32 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -orderer.example.com | 2018-01-18 01:58:51.981 UTC [policies] ProposePolicy -> DEBU 3bc Proposed new policy Readers for Org1MSP -peer1.org2.example.com | [6ec 01-18 02:00:26.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ef892f35]Move state message TRANSACTION -peer0.org1.example.com | [62b 01-18 02:00:11.32 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f] -peer1.org1.example.com | [5ad 01-18 02:00:11.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e192df03]send state message COMPLETED -orderer.example.com | 2018-01-18 01:58:51.981 UTC [common/config] NewStandardValues -> DEBU 3bd Initializing protos for *config.OrdererProtos -peer0.org1.example.com | [62c 01-18 02:00:11.32 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -peer1.org2.example.com | [6ed 01-18 02:00:26.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ef892f35]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | 2018-01-18 01:58:51.981 UTC [common/config] initializeProtosStruct -> DEBU 3be Processing field: ConsensusType -peer0.org1.example.com | [62d 01-18 02:00:11.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [9c7d4f5f-93e4-4dad-9329-f20931a83f0f] -peer1.org1.example.com | [5ae 01-18 02:00:11.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e192df03]Received message COMPLETED from shim -peer1.org2.example.com | [6ee 01-18 02:00:26.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [62e 01-18 02:00:11.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -orderer.example.com | 2018-01-18 01:58:51.981 UTC [common/config] initializeProtosStruct -> DEBU 3bf Processing field: BatchSize -peer1.org1.example.com | [5af 01-18 02:00:11.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e192df03]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | 2018-01-18 01:58:51.981 UTC [common/config] initializeProtosStruct -> DEBU 3c0 Processing field: BatchTimeout -peer1.org2.example.com | [6ef 01-18 02:00:26.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ef892f35]sending state message TRANSACTION -peer0.org1.example.com | [62f 01-18 02:00:11.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [9c7d4f5f-93e4-4dad-9329-f20931a83f0f] -peer1.org1.example.com | [5b0 01-18 02:00:11.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e192df03-ce26-42cf-b44e-e9248a01141b]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [6f0 01-18 02:00:26.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ef892f35]Received message TRANSACTION from shim -orderer.example.com | 2018-01-18 01:58:51.981 UTC [common/config] initializeProtosStruct -> DEBU 3c1 Processing field: KafkaBrokers -peer0.org1.example.com | [630 01-18 02:00:11.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org2.example.com | [6f1 01-18 02:00:26.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ef892f35]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org1.example.com | [5b1 01-18 02:00:11.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:e192df03-ce26-42cf-b44e-e9248a01141b -orderer.example.com | 2018-01-18 01:58:51.981 UTC [common/config] initializeProtosStruct -> DEBU 3c2 Processing field: ChannelRestrictions -peer0.org1.example.com | [631 01-18 02:00:11.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [dcf02705-e884-4f34-a3fd-7629c08c697e] -peer1.org2.example.com | [6f2 01-18 02:00:26.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [ef892f35]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | 2018-01-18 01:58:51.981 UTC [policies] ProposePolicy -> DEBU 3c3 Proposed new policy Writers for Orderer -peer1.org1.example.com | [5b2 01-18 02:00:11.39 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [6f3 01-18 02:00:26.32 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -peer0.org1.example.com | [632 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=53087271-6656-4e0d-a78f-6fac50075504,syscc=true,proposal=0x0,canname=vscc:1.0.2 -peer1.org1.example.com | [5b3 01-18 02:00:11.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [df20d43e-c840-44dd-ba7b-e7f38e354801] -orderer.example.com | 2018-01-18 01:58:51.981 UTC [policies] ProposePolicy -> DEBU 3c4 Proposed new policy Admins for Orderer -peer1.org2.example.com | [6f4 01-18 02:00:26.32 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -peer1.org1.example.com | [5b4 01-18 02:00:11.39 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -orderer.example.com | 2018-01-18 01:58:51.981 UTC [policies] ProposePolicy -> DEBU 3c5 Proposed new policy BlockValidation for Orderer -peer0.org1.example.com | [633 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f chaindID businesschannel -peer1.org1.example.com | [5b5 01-18 02:00:11.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -orderer.example.com | 2018-01-18 01:58:51.981 UTC [policies] ProposePolicy -> DEBU 3c6 Proposed new policy Readers for Orderer -peer1.org2.example.com | [6f5 01-18 02:00:26.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ef892f35]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [634 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 -peer1.org1.example.com | [5b6 01-18 02:00:11.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc421f62540), Data:(*common.BlockData)(0xc421849820), Metadata:(*common.BlockMetadata)(0xc421849860)}, doMVCCValidation=true -peer1.org2.example.com | [6f6 01-18 02:00:26.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ef892f35]Move state message COMPLETED -peer0.org1.example.com | [635 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [5b7 01-18 02:00:11.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -peer1.org2.example.com | [6f7 01-18 02:00:26.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ef892f35]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | 2018-01-18 01:58:51.981 UTC [common/config] NewStandardValues -> DEBU 3c7 Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [636 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 -orderer.example.com | 2018-01-18 01:58:51.981 UTC [common/config] initializeProtosStruct -> DEBU 3c8 Processing field: MSP -peer1.org2.example.com | [6f8 01-18 02:00:26.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ef892f35]send state message COMPLETED -orderer.example.com | 2018-01-18 01:58:51.981 UTC [policies] ProposePolicy -> DEBU 3c9 Proposed new policy Writers for OrdererOrg -peer1.org1.example.com | [5b8 01-18 02:00:11.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=exp02, key=a -peer1.org2.example.com | [6f9 01-18 02:00:26.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ef892f35]Received message COMPLETED from shim -orderer.example.com | 2018-01-18 01:58:51.981 UTC [policies] ProposePolicy -> DEBU 3ca Proposed new policy Admins for OrdererOrg -peer0.org1.example.com | [637 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [53087271]Inside sendExecuteMessage. Message TRANSACTION -peer1.org2.example.com | [6fa 01-18 02:00:26.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ef892f35]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [5b9 01-18 02:00:11.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=exp02, key=b -orderer.example.com | 2018-01-18 01:58:51.981 UTC [policies] ProposePolicy -> DEBU 3cb Proposed new policy Readers for OrdererOrg -peer0.org1.example.com | [638 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [5ba 01-18 02:00:11.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer1.org2.example.com | [6fb 01-18 02:00:26.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ef892f35fb64f0ede0b8e75fccdd87a0b5a88e80208a6beacc5248090c895114]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [639 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [53087271]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | 2018-01-18 01:58:51.981 UTC [common/config] Validate -> DEBU 3cc Anchor peers for org Org2MSP are -peer1.org1.example.com | [5bb 01-18 02:00:11.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [5] Transaction index [0] TxId [82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f] marked as valid by state validator -peer1.org2.example.com | [6fc 01-18 02:00:26.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:ef892f35fb64f0ede0b8e75fccdd87a0b5a88e80208a6beacc5248090c895114 -peer0.org1.example.com | [63a 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [53087271]Move state message TRANSACTION -orderer.example.com | 2018-01-18 01:58:51.981 UTC [common/config] validateMSP -> DEBU 3cd Setting up MSP for org Org2MSP -peer1.org1.example.com | [5bc 01-18 02:00:11.39 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=5, blockHash=[]byte{0x6c, 0xf7, 0xab, 0xa5, 0x1f, 0xca, 0x2a, 0x58, 0xcb, 0xd4, 0xd1, 0xb3, 0x1d, 0x76, 0xc1, 0x27, 0x8a, 0x2f, 0xe, 0x8d, 0x19, 0x84, 0xf0, 0xbf, 0x33, 0x10, 0xfe, 0x43, 0xbc, 0xb4, 0x60, 0x53} txOffsets= -peer1.org2.example.com | [6fd 01-18 02:00:26.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | 2018-01-18 01:58:51.981 UTC [msp] NewBccspMsp -> DEBU 3ce Creating BCCSP-based MSP instance -peer1.org2.example.com | [6fe 01-18 02:00:26.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [63b 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [53087271]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org1.example.com | txId=82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f locPointer=offset=70, bytesLength=2855 -orderer.example.com | 2018-01-18 01:58:51.981 UTC [msp] Setup -> DEBU 3cf Setting up MSP instance Org2MSP -peer0.org1.example.com | [63c 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | ] -peer1.org2.example.com | [6ff 01-18 02:00:26.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -peer0.org1.example.com | [63d 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [53087271]sending state message TRANSACTION -orderer.example.com | 2018-01-18 01:58:51.982 UTC [msp/identity] newIdentity -> DEBU 3d0 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [5bd 01-18 02:00:11.39 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=49961, bytesLength=2855] for tx ID: [82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f] to index -peer1.org2.example.com | [700 01-18 02:00:26.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [274ed28b-05d0-4a71-850c-6e381fb5edbf] -orderer.example.com | MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw -peer0.org1.example.com | [63e 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [53087271]Received message TRANSACTION from shim -peer1.org1.example.com | [5be 01-18 02:00:11.39 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=49961, bytesLength=2855] for tx number:[0] ID: [82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f] to blockNumTranNum index -peer1.org2.example.com | [701 01-18 02:00:26.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org2.example.com | [702 01-18 02:00:28.44 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -peer0.org1.example.com | [63f 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [53087271]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer1.org1.example.com | [5bf 01-18 02:00:11.39 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[54566], isChainEmpty=[false], lastBlockNumber=[5] -peer1.org2.example.com | [703 01-18 02:00:28.44 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa -peer1.org1.example.com | [5c0 01-18 02:00:11.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [5] with 1 transaction(s) -peer0.org1.example.com | [640 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [53087271]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org2.example.com | [704 01-18 02:00:28.44 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer0.org1.example.com | [641 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -peer1.org1.example.com | [5c1 01-18 02:00:11.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -peer1.org2.example.com | [705 01-18 02:00:28.44 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421790ff0 -peer0.org1.example.com | [642 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -peer1.org1.example.com | [5c2 01-18 02:00:25.41 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.deployImage -> DEBU Created image: dev-peer1.org1.example.com-exp02-1.0-ad23b8236c10c42b6301975e5f10d4f2d69b41948e9b0f767dd7c8e4f21cf449 -peer1.org2.example.com | [706 01-18 02:00:28.44 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\272\377\377\322\005\020\327\344\236\214\001\"\017businesschannel*@ef892f35fb64f0ede0b8e75fccdd87a0b5a88e80208a6beacc5248090c895114:\t\022\007\022\005exp02" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\030d\331v\033\324\333\222\030\204\034k\t\024\337\364\272\341\336\300\200\303\207%\014" -peer0.org1.example.com | [643 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -peer0.org1.example.com | [644 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [53087271]Transaction completed. Sending COMPLETED -peer1.org1.example.com | [5c3 01-18 02:00:25.41 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-recreated image successfully -peer1.org2.example.com | [707 01-18 02:00:28.44 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org1.example.com | [645 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [53087271]Move state message COMPLETED -peer0.org1.example.com | [646 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [53087271]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 -peer0.org1.example.com | [647 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [53087271]send state message COMPLETED -peer1.org2.example.com | [708 01-18 02:00:28.44 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org1.example.com | [5c4 01-18 02:00:25.41 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer1.org1.example.com-exp02-1.0 -peer0.org1.example.com | [648 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [53087271]Received message COMPLETED from shim -orderer.example.com | sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -peer1.org1.example.com | [5c5 01-18 02:00:25.49 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Created container: dev-peer1.org1.example.com-exp02-1.0-ad23b8236c10c42b6301975e5f10d4f2d69b41948e9b0f767dd7c8e4f21cf449 -peer0.org1.example.com | [649 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [53087271]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ -peer1.org2.example.com | [709 01-18 02:00:28.45 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} -peer0.org1.example.com | [64a 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [53087271-6656-4e0d-a78f-6fac50075504]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [5c6 01-18 02:00:25.98 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Started container dev-peer1.org1.example.com-exp02-1.0 -orderer.example.com | xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv -peer0.org1.example.com | [64b 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:53087271-6656-4e0d-a78f-6fac50075504 -peer1.org2.example.com | [70a 01-18 02:00:28.45 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org1.example.com | [5c7 01-18 02:00:25.98 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(dev-peer1.org1.example.com-exp02-1.0) -orderer.example.com | WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk -peer0.org1.example.com | [64c 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [5c8 01-18 02:00:26.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -orderer.example.com | SCjyRdD3aQ== -peer0.org1.example.com | [64d 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [dcf02705-e884-4f34-a3fd-7629c08c697e] -peer1.org2.example.com | [70b 01-18 02:00:28.45 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org1.example.com | [64e 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -peer1.org1.example.com | [5c9 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer1.org2.example.com | [70c 01-18 02:00:28.45 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc42038d800, header channel_header:"\010\003\032\014\010\272\377\377\322\005\020\327\344\236\214\001\"\017businesschannel*@ef892f35fb64f0ede0b8e75fccdd87a0b5a88e80208a6beacc5248090c895114:\t\022\007\022\005exp02" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\030d\331v\033\324\333\222\030\204\034k\t\024\337\364\272\341\336\300\200\303\207%\014" -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [64f 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org1.example.com | [5ca 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -orderer.example.com | 2018-01-18 01:58:51.982 UTC [msp/identity] newIdentity -> DEBU 3d1 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [70d 01-18 02:00:28.45 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer0.org1.example.com | [650 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc4220f7c00), Data:(*common.BlockData)(0xc421fdd080), Metadata:(*common.BlockMetadata)(0xc421fdd0c0)}, doMVCCValidation=true -peer1.org1.example.com | [5cb 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer0.org1.example.com | [651 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -peer1.org2.example.com | [70e 01-18 02:00:28.45 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer0.org1.example.com | [652 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=exp02, key=a -peer1.org1.example.com | [5cc 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode exp02:1.0 -peer1.org2.example.com | [70f 01-18 02:00:28.45 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer0.org1.example.com | [653 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=exp02, key=b -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org1.example.com | [5cd 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"exp02:1.0" , sending back REGISTERED -peer1.org2.example.com | [710 01-18 02:00:28.45 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -peer0.org1.example.com | [654 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer0.org1.example.com | [655 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [5] Transaction index [0] TxId [82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f] marked as valid by state validator -peer1.org1.example.com | [5ce 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer1.org2.example.com | [711 01-18 02:00:28.45 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [ef892f35fb64f0ede0b8e75fccdd87a0b5a88e80208a6beacc5248090c895114] -peer0.org1.example.com | [656 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=5, blockHash=[]byte{0x6c, 0xf7, 0xab, 0xa5, 0x1f, 0xca, 0x2a, 0x58, 0xcb, 0xd4, 0xd1, 0xb3, 0x1d, 0x76, 0xc1, 0x27, 0x8a, 0x2f, 0xe, 0x8d, 0x19, 0x84, 0xf0, 0xbf, 0x33, 0x10, 0xfe, 0x43, 0xbc, 0xb4, 0x60, 0x53} txOffsets= -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org1.example.com | [5cf 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode exp02:1.0 launch seq completed -peer1.org1.example.com | [5d0 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.sendReady.ready -> DEBU sending READY -peer1.org1.example.com | [5d1 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [712 01-18 02:00:28.45 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -peer0.org1.example.com | txId=82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f locPointer=offset=70, bytesLength=2855 -peer0.org1.example.com | ] -peer0.org1.example.com | [657 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=49961, bytesLength=2855] for tx ID: [82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f] to index -peer1.org1.example.com | [5d2 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [658 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=49961, bytesLength=2855] for tx number:[0] ID: [82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f] to blockNumTranNum index -peer1.org1.example.com | [5d3 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [100e86fd]Move state message READY -peer0.org1.example.com | [659 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[54566], isChainEmpty=[false], lastBlockNumber=[5] -peer1.org1.example.com | [5d4 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [100e86fd]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org2.example.com | [713 01-18 02:00:28.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [6fc0e7ef-0fcf-4b6a-967c-7e0ad94ee847] -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -peer1.org1.example.com | [5d5 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [100e86fd]Entered state ready -peer1.org2.example.com | [714 01-18 02:00:28.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer0.org1.example.com | [65a 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [5] with 1 transaction(s) -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -peer1.org1.example.com | [5d6 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:100e86fddaf33e12d56c645c3f2cfe34de9685d4e676ae8af49cc6b8706a1a10 -peer1.org2.example.com | [715 01-18 02:00:28.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [6fc0e7ef-0fcf-4b6a-967c-7e0ad94ee847] -peer1.org1.example.com | [5d7 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [100e86fd]sending state message READY -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -peer1.org2.example.com | [716 01-18 02:00:28.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org1.example.com | [5d8 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU sending init completed -peer0.org1.example.com | [65b 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -peer1.org2.example.com | [717 01-18 02:00:28.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [0deb27f1-320b-4056-81a3-4bd8d6b48e36] -peer1.org1.example.com | [5d9 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU LaunchChaincode complete -peer1.org2.example.com | [718 01-18 02:00:28.45 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=c3fb0ca6-4317-404a-a86a-85a573acb99d,syscc=true,proposal=0x0,canname=vscc:1.0.2 -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -peer1.org1.example.com | [5da 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [719 01-18 02:00:28.45 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid ef892f35fb64f0ede0b8e75fccdd87a0b5a88e80208a6beacc5248090c895114 chaindID businesschannel -peer0.org1.example.com | [65c 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -peer1.org1.example.com | [5db 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: exp02:1.0 -peer1.org2.example.com | [71a 01-18 02:00:28.45 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 -peer1.org1.example.com | [5dc 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [100e86fd]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [65d 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -peer1.org2.example.com | [71b 01-18 02:00:28.47 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [5dd 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [5de 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org1.example.com | [5df 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [100e86fd]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [71c 01-18 02:00:28.47 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 -peer0.org1.example.com | [65e 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -peer1.org1.example.com | [5e0 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [100e86fd]Move state message TRANSACTION -peer1.org2.example.com | [71d 01-18 02:00:28.47 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c3fb0ca6]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | AXYxULZpXYDQXt1KaLI= -peer1.org2.example.com | [71e 01-18 02:00:28.47 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [5e1 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [100e86fd]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [65f 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -peer1.org2.example.com | [71f 01-18 02:00:28.47 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c3fb0ca6]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [720 01-18 02:00:28.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c3fb0ca6]Move state message TRANSACTION -peer1.org2.example.com | [721 01-18 02:00:28.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c3fb0ca6]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org1.example.com | [5e2 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [722 01-18 02:00:28.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [5e3 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [100e86fd]sending state message TRANSACTION -peer0.org1.example.com | [660 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [5] with [1] transactions -peer1.org2.example.com | [723 01-18 02:00:28.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c3fb0ca6]sending state message TRANSACTION -peer1.org1.example.com | [5e4 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [100e86fd]Received message GET_STATE from shim -orderer.example.com | 2018-01-18 01:58:51.982 UTC [msp/identity] newIdentity -> DEBU 3d2 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [661 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [5] -peer1.org2.example.com | [724 01-18 02:00:28.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c3fb0ca6]Received message TRANSACTION from shim -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [662 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -peer1.org2.example.com | [725 01-18 02:00:28.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c3fb0ca6]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org1.example.com | [5e5 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [100e86fd]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer0.org1.example.com | [663 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [5] contains transaction id: 82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org2.example.com | [726 01-18 02:00:28.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [c3fb0ca6]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org1.example.com | [5e6 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [100e86fd]Received GET_STATE, invoking get state from ledger -peer1.org2.example.com | [727 01-18 02:00:28.47 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer0.org1.example.com | [664 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [5] -peer1.org1.example.com | [5e7 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [728 01-18 02:00:28.47 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [665 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -peer1.org2.example.com | [729 01-18 02:00:28.48 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -peer1.org1.example.com | [5e8 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [100e86fd] getting state for chaincode exp02, key a, channel businesschannel -peer0.org1.example.com | [666 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [72a 01-18 02:00:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c3fb0ca6]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [667 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org1.example.com | [5e9 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=exp02, key=a -peer1.org2.example.com | [72b 01-18 02:00:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c3fb0ca6]Move state message COMPLETED -peer1.org2.example.com | [72c 01-18 02:00:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c3fb0ca6]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -peer0.org1.example.com | [668 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -peer1.org2.example.com | [72d 01-18 02:00:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c3fb0ca6]send state message COMPLETED -peer1.org1.example.com | [5ea 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [100e86fd]Got state. Sending RESPONSE -peer0.org1.example.com | [669 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -peer1.org2.example.com | [72e 01-18 02:00:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c3fb0ca6]Received message COMPLETED from shim -peer0.org1.example.com | [66a 01-18 02:00:26.44 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -peer1.org2.example.com | [72f 01-18 02:00:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c3fb0ca6]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [5eb 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [100e86fd]handleGetState serial send RESPONSE -peer0.org1.example.com | [66b 01-18 02:00:26.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422a885d0 -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -peer1.org2.example.com | [730 01-18 02:00:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c3fb0ca6-4317-404a-a86a-85a573acb99d]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [5ec 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [100e86fd]Received message COMPLETED from shim -peer1.org2.example.com | [731 01-18 02:00:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:c3fb0ca6-4317-404a-a86a-85a573acb99d -peer0.org1.example.com | [66c 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -peer1.org2.example.com | [732 01-18 02:00:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [5ed 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [100e86fd]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [66d 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org2.example.com | [733 01-18 02:00:28.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [0deb27f1-320b-4056-81a3-4bd8d6b48e36] -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -peer1.org1.example.com | [5ee 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [100e86fddaf33e12d56c645c3f2cfe34de9685d4e676ae8af49cc6b8706a1a10]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [66e 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -peer1.org2.example.com | [734 01-18 02:00:28.49 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -orderer.example.com | AXYxULZpXYDQXt1KaLI= -peer0.org1.example.com | [66f 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org1.example.com | [5ef 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:100e86fddaf33e12d56c645c3f2cfe34de9685d4e676ae8af49cc6b8706a1a10 -peer0.org1.example.com | [670 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [5f0 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [735 01-18 02:00:28.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -orderer.example.com | 2018-01-18 01:58:51.988 UTC [msp] Validate -> DEBU 3d3 MSP Org2MSP validating identity -peer0.org1.example.com | [671 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422314a50, header 0xc422a88600 -peer1.org1.example.com | [5f1 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer1.org2.example.com | [736 01-18 02:00:28.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc422512f40), Data:(*common.BlockData)(0xc421c7fc20), Metadata:(*common.BlockMetadata)(0xc421c7fc60)}, doMVCCValidation=true -peer0.org1.example.com | [672 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"exp02" -orderer.example.com | 2018-01-18 01:58:51.989 UTC [common/config] Validate -> DEBU 3d4 Anchor peers for org Org1MSP are -peer1.org2.example.com | [737 01-18 02:00:28.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -peer1.org1.example.com | [5f2 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer0.org1.example.com | [673 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: d2e76a62bdbcca82c4754a6e2badf8c59df0949f14f7817e98edebdeac82a6b0 -orderer.example.com | 2018-01-18 01:58:51.989 UTC [common/config] validateMSP -> DEBU 3d5 Setting up MSP for org Org1MSP -peer1.org1.example.com | [5f3 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [764d1fa6-1b85-49e9-b588-00e69dbddc72] -peer1.org1.example.com | [5f4 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -peer1.org1.example.com | [5f5 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 100e86fddaf33e12d56c645c3f2cfe34de9685d4e676ae8af49cc6b8706a1a10 channel id: businesschannel chaincode id: name:"exp02" -orderer.example.com | 2018-01-18 01:58:51.989 UTC [msp] NewBccspMsp -> DEBU 3d6 Creating BCCSP-based MSP instance -peer1.org2.example.com | [738 01-18 02:00:28.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=exp02, key=a -peer0.org1.example.com | [674 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [d2e76a62bdbcca82c4754a6e2badf8c59df0949f14f7817e98edebdeac82a6b0] -peer1.org1.example.com | [5f6 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"exp02" is escc -orderer.example.com | 2018-01-18 01:58:51.989 UTC [msp] Setup -> DEBU 3d7 Setting up MSP instance Org1MSP -peer1.org2.example.com | [739 01-18 02:00:28.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=exp02, key=b -peer0.org1.example.com | [675 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | 2018-01-18 01:58:51.990 UTC [msp/identity] newIdentity -> DEBU 3d8 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [73a 01-18 02:00:28.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=exp02 -orderer.example.com | MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [676 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [4b4815c4-4d91-4b0c-9077-5d3d004937e9] -peer1.org1.example.com | [5f7 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 100e86fddaf33e12d56c645c3f2cfe34de9685d4e676ae8af49cc6b8706a1a10 channel id: businesschannel version: 1.0.2 -peer1.org2.example.com | [73b 01-18 02:00:28.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [6] Transaction index [0] TxId [ef892f35fb64f0ede0b8e75fccdd87a0b5a88e80208a6beacc5248090c895114] marked as valid by state validator -peer0.org1.example.com | [677 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: d2e76a62bdbcca82c4754a6e2badf8c59df0949f14f7817e98edebdeac82a6b0 channel id: businesschannel -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org1.example.com | [5f8 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=100e86fddaf33e12d56c645c3f2cfe34de9685d4e676ae8af49cc6b8706a1a10,syscc=true,proposal=0xc4224a36d0,canname=escc:1.0.2 -peer0.org1.example.com | [678 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=d2e76a62bdbcca82c4754a6e2badf8c59df0949f14f7817e98edebdeac82a6b0,syscc=true,proposal=0xc422314a50,canname=lscc:1.0.2 -peer1.org2.example.com | [73c 01-18 02:00:28.49 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0xb6, 0xc2, 0x2c, 0xe8, 0xb1, 0x4d, 0xad, 0xb5, 0xbc, 0xd7, 0x9f, 0xca, 0x1a, 0x2e, 0x40, 0x28, 0xdd, 0x17, 0xd0, 0xea, 0x49, 0x57, 0x8a, 0x25, 0x1c, 0xd, 0x93, 0xa9, 0x45, 0x57, 0xf1, 0xaa} txOffsets= -peer1.org1.example.com | [5f9 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [679 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 -peer1.org2.example.com | txId=ef892f35fb64f0ede0b8e75fccdd87a0b5a88e80208a6beacc5248090c895114 locPointer=offset=70, bytesLength=2855 -peer1.org1.example.com | [5fa 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -peer0.org1.example.com | [67a 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org2.example.com | ] -peer1.org1.example.com | [5fb 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [67b 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -peer1.org1.example.com | [5fc 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [100e86fd]Inside sendExecuteMessage. Message TRANSACTION -peer1.org2.example.com | [73d 01-18 02:00:28.49 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=54636, bytesLength=2855] for tx ID: [ef892f35fb64f0ede0b8e75fccdd87a0b5a88e80208a6beacc5248090c895114] to index -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -peer0.org1.example.com | [67c 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d2e76a62]Inside sendExecuteMessage. Message TRANSACTION -peer1.org1.example.com | [5fd 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -peer1.org2.example.com | [73e 01-18 02:00:28.49 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=54636, bytesLength=2855] for tx number:[0] ID: [ef892f35fb64f0ede0b8e75fccdd87a0b5a88e80208a6beacc5248090c895114] to blockNumTranNum index -orderer.example.com | BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf -peer0.org1.example.com | [67d 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [5fe 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -peer1.org2.example.com | [73f 01-18 02:00:28.49 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[59242], isChainEmpty=[false], lastBlockNumber=[6] -peer0.org1.example.com | [67e 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org1.example.com | [5ff 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [100e86fd]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [740 01-18 02:00:28.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [6] with 1 transaction(s) -peer0.org1.example.com | [67f 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d2e76a62]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx -peer1.org2.example.com | [741 01-18 02:00:28.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -peer1.org1.example.com | [600 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [100e86fd]Move state message TRANSACTION -peer0.org1.example.com | [680 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d2e76a62]Move state message TRANSACTION -orderer.example.com | JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi -peer1.org2.example.com | [742 01-18 02:00:28.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org1.example.com | [681 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d2e76a62]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org1.example.com | [601 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [100e86fd]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ -peer1.org2.example.com | [743 01-18 02:00:28.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] -peer0.org1.example.com | [682 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | H7n8z1pj5w== -peer1.org1.example.com | [602 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [744 01-18 02:00:28.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] -peer1.org1.example.com | [603 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [100e86fd]sending state message TRANSACTION -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [683 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d2e76a62]sending state message TRANSACTION -peer1.org2.example.com | [745 01-18 02:00:28.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -orderer.example.com | 2018-01-18 01:58:51.990 UTC [msp/identity] newIdentity -> DEBU 3d9 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [604 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org1.example.com | [684 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d2e76a62]Received message TRANSACTION from shim -peer1.org1.example.com | [605 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [685 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d2e76a62]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org1.example.com | [606 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] -peer1.org2.example.com | [746 01-18 02:00:28.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [6] with [1] transactions -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [686 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [d2e76a62]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org2.example.com | [747 01-18 02:00:28.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [6] -peer1.org1.example.com | [607 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -peer0.org1.example.com | [687 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [d2e76a62]Sending GET_STATE -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org2.example.com | [748 01-18 02:00:28.49 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -peer1.org1.example.com | [608 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [5] with [1] transactions -peer0.org1.example.com | [688 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d2e76a62]Received message GET_STATE from shim -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -peer0.org1.example.com | [689 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d2e76a62]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org1.example.com | [609 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [5] -peer1.org2.example.com | [749 01-18 02:00:28.50 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [6] contains transaction id: ef892f35fb64f0ede0b8e75fccdd87a0b5a88e80208a6beacc5248090c895114 -peer1.org1.example.com | [60a 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [68a 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [d2e76a62]Received GET_STATE, invoking get state from ledger -peer1.org2.example.com | [74a 01-18 02:00:28.50 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [6] -peer1.org1.example.com | [60b 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [5] contains transaction id: 82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer1.org2.example.com | [74b 01-18 02:00:28.50 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -peer0.org1.example.com | [68b 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -peer1.org1.example.com | [60c 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [5] -peer1.org2.example.com | [74c 01-18 02:00:28.50 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer0.org1.example.com | [68c 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [d2e76a62] getting state for chaincode lscc, key exp02, channel businesschannel -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -peer1.org1.example.com | [60d 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -peer1.org2.example.com | [74d 01-18 02:00:28.50 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer0.org1.example.com | [68d 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer1.org1.example.com | [60e 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -peer1.org2.example.com | [74e 01-18 02:00:28.50 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -peer1.org1.example.com | [60f 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer0.org1.example.com | [68e 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [d2e76a62]Got state. Sending RESPONSE -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -peer1.org1.example.com | [610 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -peer1.org2.example.com | [74f 01-18 02:00:28.50 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -orderer.example.com | xHTBvxfK6mAzmUitFmY= -peer0.org1.example.com | [68f 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [d2e76a62]handleGetState serial send RESPONSE -peer1.org1.example.com | [611 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -peer1.org1.example.com | [612 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [100e86fd]Received message TRANSACTION from shim -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [690 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d2e76a62]Received message RESPONSE from shim -orderer.example.com | 2018-01-18 01:58:51.991 UTC [msp/identity] newIdentity -> DEBU 3da Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [613 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [100e86fd]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [691 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d2e76a62]Handling ChaincodeMessage of type: RESPONSE(state:ready) -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [692 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [d2e76a62]before send -peer0.org1.example.com | [693 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [d2e76a62]after send -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org1.example.com | [614 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [100e86fd]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [694 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [d2e76a62]Received RESPONSE, communicated (state:ready) -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [695 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [d2e76a62]GetState received payload RESPONSE -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -peer1.org1.example.com | [615 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org1.example.com | [616 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -peer0.org1.example.com | [696 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d2e76a62]Transaction completed. Sending COMPLETED -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer0.org1.example.com | [697 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d2e76a62]Move state message COMPLETED -peer1.org1.example.com | [617 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [100e86fd]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [698 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d2e76a62]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [618 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [100e86fd]Move state message COMPLETED -peer0.org1.example.com | [699 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d2e76a62]send state message COMPLETED -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -peer1.org1.example.com | [619 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [100e86fd]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [69a 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d2e76a62]Received message COMPLETED from shim -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -peer1.org1.example.com | [61a 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [100e86fd]send state message COMPLETED -peer0.org1.example.com | [69b 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d2e76a62]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -peer1.org1.example.com | [61b 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [100e86fd]Received message COMPLETED from shim -peer0.org1.example.com | [69c 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d2e76a62bdbcca82c4754a6e2badf8c59df0949f14f7817e98edebdeac82a6b0]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [69d 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:d2e76a62bdbcca82c4754a6e2badf8c59df0949f14f7817e98edebdeac82a6b0 -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -peer1.org1.example.com | [61c 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [100e86fd]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [69e 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [61d 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [100e86fddaf33e12d56c645c3f2cfe34de9685d4e676ae8af49cc6b8706a1a10]HandleMessage- COMPLETED. Notify -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -peer0.org1.example.com | [69f 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache -peer1.org1.example.com | [61e 01-18 02:00:26.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:100e86fddaf33e12d56c645c3f2cfe34de9685d4e676ae8af49cc6b8706a1a10 -peer0.org1.example.com | [6a0 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: d2e76a62bdbcca82c4754a6e2badf8c59df0949f14f7817e98edebdeac82a6b0 channel id: businesschannel version: 1.0 -orderer.example.com | xHTBvxfK6mAzmUitFmY= -peer0.org1.example.com | [6a1 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=exp02,version=1.0,txid=d2e76a62bdbcca82c4754a6e2badf8c59df0949f14f7817e98edebdeac82a6b0,syscc=false,proposal=0xc422314a50,canname=exp02:1.0 -peer1.org1.example.com | [61f 01-18 02:00:26.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [6a2 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : exp02:1.0 -orderer.example.com | 2018-01-18 01:58:51.991 UTC [msp] Validate -> DEBU 3db MSP Org1MSP validating identity -peer1.org1.example.com | [620 01-18 02:00:26.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -orderer.example.com | 2018-01-18 01:58:51.991 UTC [common/config] validateMSP -> DEBU 3dc Setting up MSP for org OrdererOrg -peer1.org1.example.com | [621 01-18 02:00:26.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -peer0.org1.example.com | [6a3 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | 2018-01-18 01:58:51.991 UTC [msp] NewBccspMsp -> DEBU 3dd Creating BCCSP-based MSP instance -peer0.org1.example.com | [6a4 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: exp02:1.0 -peer1.org1.example.com | [622 01-18 02:00:26.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [764d1fa6-1b85-49e9-b588-00e69dbddc72] -orderer.example.com | 2018-01-18 01:58:51.991 UTC [msp] Setup -> DEBU 3de Setting up MSP instance OrdererMSP -peer0.org1.example.com | [6a5 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d2e76a62]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | 2018-01-18 01:58:51.992 UTC [msp/identity] newIdentity -> DEBU 3df Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [623 01-18 02:00:26.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -peer1.org1.example.com | [624 01-18 02:00:28.46 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL -peer0.org1.example.com | [6a6 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [625 01-18 02:00:28.46 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [6a7 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -peer0.org1.example.com | [6a8 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d2e76a62]sendExecuteMsg trigger event TRANSACTION -peer1.org1.example.com | [626 01-18 02:00:28.46 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -peer0.org1.example.com | [6a9 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d2e76a62]Move state message TRANSACTION -peer1.org1.example.com | [627 01-18 02:00:28.46 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4217f1ce0 -peer0.org1.example.com | [6aa 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d2e76a62]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org1.example.com | [628 01-18 02:00:28.46 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\272\377\377\322\005\020\327\344\236\214\001\"\017businesschannel*@ef892f35fb64f0ede0b8e75fccdd87a0b5a88e80208a6beacc5248090c895114:\t\022\007\022\005exp02" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\030d\331v\033\324\333\222\030\204\034k\t\024\337\364\272\341\336\300\200\303\207%\014" -orderer.example.com | cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -peer0.org1.example.com | [6ab 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -peer0.org1.example.com | [6ac 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d2e76a62]sending state message TRANSACTION -peer1.org1.example.com | [629 01-18 02:00:28.46 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW -peer0.org1.example.com | [6ad 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d2e76a62]Received message GET_STATE from shim -orderer.example.com | gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w -peer1.org1.example.com | [62a 01-18 02:00:28.46 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -peer0.org1.example.com | [6ae 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d2e76a62]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org1.example.com | [62b 01-18 02:00:28.46 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} -orderer.example.com | AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK -peer1.org1.example.com | [62c 01-18 02:00:28.46 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [6af 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [d2e76a62]Received GET_STATE, invoking get state from ledger -peer0.org1.example.com | [6b0 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [62d 01-18 02:00:28.46 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs -orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= -peer1.org1.example.com | [62e 01-18 02:00:28.46 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc422498000, header channel_header:"\010\003\032\014\010\272\377\377\322\005\020\327\344\236\214\001\"\017businesschannel*@ef892f35fb64f0ede0b8e75fccdd87a0b5a88e80208a6beacc5248090c895114:\t\022\007\022\005exp02" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\030d\331v\033\324\333\222\030\204\034k\t\024\337\364\272\341\336\300\200\303\207%\014" -peer0.org1.example.com | [6b1 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [d2e76a62] getting state for chaincode exp02, key a, channel businesschannel -orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [62f 01-18 02:00:28.46 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer0.org1.example.com | [6b2 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=exp02, key=a -orderer.example.com | 2018-01-18 01:58:51.993 UTC [msp/identity] newIdentity -> DEBU 3e0 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [6b3 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [d2e76a62]Got state. Sending RESPONSE -peer1.org1.example.com | [630 01-18 02:00:28.46 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer0.org1.example.com | [6b4 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [d2e76a62]handleGetState serial send RESPONSE -peer1.org1.example.com | [631 01-18 02:00:28.46 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -peer0.org1.example.com | [6b5 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d2e76a62]Received message COMPLETED from shim -peer1.org1.example.com | [632 01-18 02:00:28.46 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -peer0.org1.example.com | [6b6 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d2e76a62]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [633 01-18 02:00:28.46 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [ef892f35fb64f0ede0b8e75fccdd87a0b5a88e80208a6beacc5248090c895114] -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [6b7 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d2e76a62bdbcca82c4754a6e2badf8c59df0949f14f7817e98edebdeac82a6b0]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [634 01-18 02:00:28.46 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer1.org1.example.com | [635 01-18 02:00:28.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [3db7988b-4d99-4b56-81e1-a715b58e0cd4] -peer0.org1.example.com | [6b8 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:d2e76a62bdbcca82c4754a6e2badf8c59df0949f14f7817e98edebdeac82a6b0 -peer1.org1.example.com | [636 01-18 02:00:28.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -peer0.org1.example.com | [6b9 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer0.org1.example.com | [6ba 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [6bb 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -peer1.org1.example.com | [637 01-18 02:00:28.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [3db7988b-4d99-4b56-81e1-a715b58e0cd4] -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -peer0.org1.example.com | [6bc 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [4b4815c4-4d91-4b0c-9077-5d3d004937e9] -peer1.org1.example.com | [638 01-18 02:00:28.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org1.example.com | [6bd 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -peer0.org1.example.com | [6be 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: d2e76a62bdbcca82c4754a6e2badf8c59df0949f14f7817e98edebdeac82a6b0 channel id: businesschannel chaincode id: name:"exp02" -peer1.org1.example.com | [639 01-18 02:00:28.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [65304246-538e-4309-99c7-c50906b1b8bd] -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -peer0.org1.example.com | [6bf 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"exp02" is escc -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -peer0.org1.example.com | [6c0 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: d2e76a62bdbcca82c4754a6e2badf8c59df0949f14f7817e98edebdeac82a6b0 channel id: businesschannel version: 1.0.2 -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -peer0.org1.example.com | [6c1 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=d2e76a62bdbcca82c4754a6e2badf8c59df0949f14f7817e98edebdeac82a6b0,syscc=true,proposal=0xc422314a50,canname=escc:1.0.2 -peer1.org1.example.com | [63a 01-18 02:00:28.47 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=891aad13-dae3-48e4-b929-fa7cb6053dd2,syscc=true,proposal=0x0,canname=vscc:1.0.2 -peer0.org1.example.com | [6c2 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 -peer0.org1.example.com | [6c3 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [63b 01-18 02:00:28.47 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid ef892f35fb64f0ede0b8e75fccdd87a0b5a88e80208a6beacc5248090c895114 chaindID businesschannel -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [6c4 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 -peer0.org1.example.com | [6c5 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d2e76a62]Inside sendExecuteMessage. Message TRANSACTION -peer1.org1.example.com | [63c 01-18 02:00:28.47 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 -peer0.org1.example.com | [6c6 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [6c7 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org1.example.com | [6c8 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d2e76a62]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | 2018-01-18 01:58:51.993 UTC [msp/identity] newIdentity -> DEBU 3e1 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [63d 01-18 02:00:28.47 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [6c9 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d2e76a62]Move state message TRANSACTION -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -peer0.org1.example.com | [6ca 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d2e76a62]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org1.example.com | [63e 01-18 02:00:28.47 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 -peer0.org1.example.com | [6cb 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [6cc 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d2e76a62]sending state message TRANSACTION -peer0.org1.example.com | [6cd 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d2e76a62]Received message TRANSACTION from shim -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [6ce 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d2e76a62]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [6cf 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [d2e76a62]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [6d0 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -peer1.org1.example.com | [63f 01-18 02:00:28.47 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [891aad13]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [6d1 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer0.org1.example.com | [6d2 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d2e76a62]Transaction completed. Sending COMPLETED -peer1.org1.example.com | [640 01-18 02:00:28.47 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [6d3 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d2e76a62]Move state message COMPLETED -peer0.org1.example.com | [6d4 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d2e76a62]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [6d5 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d2e76a62]send state message COMPLETED -peer0.org1.example.com | [6d6 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d2e76a62]Received message COMPLETED from shim -peer0.org1.example.com | [6d7 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d2e76a62]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [6d8 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d2e76a62bdbcca82c4754a6e2badf8c59df0949f14f7817e98edebdeac82a6b0]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [641 01-18 02:00:28.47 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [891aad13]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -peer0.org1.example.com | [6d9 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:d2e76a62bdbcca82c4754a6e2badf8c59df0949f14f7817e98edebdeac82a6b0 -peer0.org1.example.com | [6da 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer0.org1.example.com | [6db 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -peer0.org1.example.com | [6dc 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -peer1.org1.example.com | [642 01-18 02:00:28.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [891aad13]Move state message TRANSACTION -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -peer0.org1.example.com | [6dd 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [4b4815c4-4d91-4b0c-9077-5d3d004937e9] -peer1.org1.example.com | [643 01-18 02:00:28.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [891aad13]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [6de 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -peer1.org1.example.com | [644 01-18 02:00:28.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -peer0.org1.example.com | [6df 01-18 02:00:27.05 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -peer0.org1.example.com | [6e0 01-18 02:00:27.05 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4221014d0 -peer1.org1.example.com | [645 01-18 02:00:28.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [891aad13]sending state message TRANSACTION -peer0.org1.example.com | [6e1 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org1.example.com | [646 01-18 02:00:28.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [891aad13]Received message TRANSACTION from shim -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:51.994 UTC [msp] Validate -> DEBU 3e2 MSP OrdererMSP validating identity -peer0.org1.example.com | [6e2 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org1.example.com | [647 01-18 02:00:28.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [891aad13]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [6e3 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -peer1.org1.example.com | [648 01-18 02:00:28.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [891aad13]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | 2018-01-18 01:58:51.994 UTC [msp] Setup -> DEBU 3e3 Setting up the MSP manager (3 msps) -peer0.org1.example.com | [6e4 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org1.example.com | [649 01-18 02:00:28.47 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer1.org1.example.com | [64a 01-18 02:00:28.47 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -peer0.org1.example.com | [6e5 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | 2018-01-18 01:58:51.994 UTC [msp] Setup -> DEBU 3e4 MSP manager setup complete, setup 3 msps -peer1.org1.example.com | [64b 01-18 02:00:28.47 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -peer1.org1.example.com | [64c 01-18 02:00:28.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [891aad13]Transaction completed. Sending COMPLETED -orderer.example.com | 2018-01-18 01:58:51.994 UTC [policies] GetPolicy -> DEBU 3e5 Returning policy Writers for evaluation -peer0.org1.example.com | [6e6 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4220ce690, header 0xc422101500 -peer1.org1.example.com | [64d 01-18 02:00:28.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [891aad13]Move state message COMPLETED -peer1.org1.example.com | [64e 01-18 02:00:28.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [891aad13]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [6e7 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -orderer.example.com | 2018-01-18 01:58:51.994 UTC [policies] CommitProposals -> DEBU 3e6 In commit adding relative sub-policy Org2MSP/Writers to Application -peer1.org1.example.com | [64f 01-18 02:00:28.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [891aad13]send state message COMPLETED -orderer.example.com | 2018-01-18 01:58:51.994 UTC [policies] GetPolicy -> DEBU 3e7 Returning policy Admins for evaluation -peer1.org1.example.com | [650 01-18 02:00:28.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [891aad13]Received message COMPLETED from shim -peer0.org1.example.com | [6e8 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 64be734822a4b71446785f11de481328b9fc773646fb32bed6bdbd5bd5c75f3a -peer1.org1.example.com | [651 01-18 02:00:28.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [891aad13]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | 2018-01-18 01:58:51.994 UTC [policies] CommitProposals -> DEBU 3e8 In commit adding relative sub-policy Org2MSP/Admins to Application -peer1.org1.example.com | [652 01-18 02:00:28.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [891aad13-dae3-48e4-b929-fa7cb6053dd2]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [653 01-18 02:00:28.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:891aad13-dae3-48e4-b929-fa7cb6053dd2 -peer1.org1.example.com | [654 01-18 02:00:28.47 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [655 01-18 02:00:28.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [65304246-538e-4309-99c7-c50906b1b8bd] -peer1.org1.example.com | [656 01-18 02:00:28.48 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -orderer.example.com | 2018-01-18 01:58:51.994 UTC [policies] GetPolicy -> DEBU 3e9 Returning policy Readers for evaluation -peer0.org1.example.com | [6e9 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [64be734822a4b71446785f11de481328b9fc773646fb32bed6bdbd5bd5c75f3a] -peer1.org1.example.com | [657 01-18 02:00:28.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org1.example.com | [658 01-18 02:00:28.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc420136b00), Data:(*common.BlockData)(0xc42290ee20), Metadata:(*common.BlockMetadata)(0xc42290ee60)}, doMVCCValidation=true -peer1.org1.example.com | [659 01-18 02:00:28.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -peer1.org1.example.com | [65a 01-18 02:00:28.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=exp02, key=a -orderer.example.com | 2018-01-18 01:58:51.994 UTC [policies] CommitProposals -> DEBU 3ea In commit adding relative sub-policy Org2MSP/Readers to Application -peer0.org1.example.com | [6ea 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org1.example.com | [65b 01-18 02:00:28.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=exp02, key=b -peer1.org1.example.com | [65c 01-18 02:00:28.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=exp02 -orderer.example.com | 2018-01-18 01:58:51.994 UTC [policies] GetPolicy -> DEBU 3eb Returning policy Admins for evaluation -peer0.org1.example.com | [6eb 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [1d523410-5cb4-4aa5-9070-3dc33fecc565] -peer1.org1.example.com | [65d 01-18 02:00:28.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [6] Transaction index [0] TxId [ef892f35fb64f0ede0b8e75fccdd87a0b5a88e80208a6beacc5248090c895114] marked as valid by state validator -peer1.org1.example.com | [65e 01-18 02:00:28.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0xb6, 0xc2, 0x2c, 0xe8, 0xb1, 0x4d, 0xad, 0xb5, 0xbc, 0xd7, 0x9f, 0xca, 0x1a, 0x2e, 0x40, 0x28, 0xdd, 0x17, 0xd0, 0xea, 0x49, 0x57, 0x8a, 0x25, 0x1c, 0xd, 0x93, 0xa9, 0x45, 0x57, 0xf1, 0xaa} txOffsets= -orderer.example.com | 2018-01-18 01:58:51.994 UTC [policies] CommitProposals -> DEBU 3ec In commit adding relative sub-policy Org1MSP/Admins to Application -peer1.org1.example.com | txId=ef892f35fb64f0ede0b8e75fccdd87a0b5a88e80208a6beacc5248090c895114 locPointer=offset=70, bytesLength=2855 -peer0.org1.example.com | [6ec 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 64be734822a4b71446785f11de481328b9fc773646fb32bed6bdbd5bd5c75f3a channel id: businesschannel -peer1.org1.example.com | ] -orderer.example.com | 2018-01-18 01:58:51.995 UTC [policies] GetPolicy -> DEBU 3ed Returning policy Readers for evaluation -peer1.org1.example.com | [65f 01-18 02:00:28.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=54636, bytesLength=2855] for tx ID: [ef892f35fb64f0ede0b8e75fccdd87a0b5a88e80208a6beacc5248090c895114] to index -peer0.org1.example.com | [6ed 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 64be734822a4b71446785f11de481328b9fc773646fb32bed6bdbd5bd5c75f3a channel id: businesschannel version: 1.0.2 -peer1.org1.example.com | [660 01-18 02:00:28.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=54636, bytesLength=2855] for tx number:[0] ID: [ef892f35fb64f0ede0b8e75fccdd87a0b5a88e80208a6beacc5248090c895114] to blockNumTranNum index -peer1.org1.example.com | [661 01-18 02:00:28.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[59242], isChainEmpty=[false], lastBlockNumber=[6] -peer0.org1.example.com | [6ee 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=64be734822a4b71446785f11de481328b9fc773646fb32bed6bdbd5bd5c75f3a,syscc=true,proposal=0xc4220ce690,canname=lscc:1.0.2 -orderer.example.com | 2018-01-18 01:58:51.995 UTC [policies] CommitProposals -> DEBU 3ee In commit adding relative sub-policy Org1MSP/Readers to Application -peer1.org1.example.com | [662 01-18 02:00:28.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [6] with 1 transaction(s) -orderer.example.com | 2018-01-18 01:58:51.995 UTC [policies] GetPolicy -> DEBU 3ef Returning policy Writers for evaluation -peer0.org1.example.com | [6ef 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 -peer0.org1.example.com | [6f0 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [663 01-18 02:00:28.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -orderer.example.com | 2018-01-18 01:58:51.995 UTC [policies] CommitProposals -> DEBU 3f0 In commit adding relative sub-policy Org1MSP/Writers to Application -peer0.org1.example.com | [6f1 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -peer1.org1.example.com | [664 01-18 02:00:28.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org1.example.com | [6f2 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [64be7348]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | 2018-01-18 01:58:51.995 UTC [policies] GetPolicy -> DEBU 3f1 Returning policy Admins for evaluation -peer1.org1.example.com | [665 01-18 02:00:28.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] -orderer.example.com | 2018-01-18 01:58:51.995 UTC [policies] GetPolicy -> DEBU 3f2 Returning policy Admins for evaluation -peer1.org1.example.com | [666 01-18 02:00:28.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] -peer0.org1.example.com | [6f3 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | 2018-01-18 01:58:51.995 UTC [policies] GetPolicy -> DEBU 3f3 Returning policy Writers for evaluation -peer0.org1.example.com | [6f4 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | 2018-01-18 01:58:51.995 UTC [policies] GetPolicy -> DEBU 3f4 Returning policy Writers for evaluation -peer0.org1.example.com | [6f5 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [64be7348]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | 2018-01-18 01:58:51.995 UTC [policies] GetPolicy -> DEBU 3f5 Returning policy Readers for evaluation -peer0.org1.example.com | [6f6 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [64be7348]Move state message TRANSACTION -orderer.example.com | 2018-01-18 01:58:51.995 UTC [policies] GetPolicy -> DEBU 3f6 Returning policy Readers for evaluation -peer1.org1.example.com | [667 01-18 02:00:28.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -peer1.org1.example.com | [668 01-18 02:00:28.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [6] with [1] transactions -peer0.org1.example.com | [6f7 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [64be7348]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org1.example.com | [669 01-18 02:00:28.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [6] -peer0.org1.example.com | [6f8 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | 2018-01-18 01:58:51.995 UTC [policies] GetPolicy -> DEBU 3f7 Returning policy Writers for evaluation -peer1.org1.example.com | [66a 01-18 02:00:28.51 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -peer0.org1.example.com | [6f9 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [64be7348]sending state message TRANSACTION -peer1.org1.example.com | [66b 01-18 02:00:28.51 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [6] contains transaction id: ef892f35fb64f0ede0b8e75fccdd87a0b5a88e80208a6beacc5248090c895114 -orderer.example.com | 2018-01-18 01:58:51.995 UTC [policies] CommitProposals -> DEBU 3f8 In commit adding relative sub-policy OrdererOrg/Writers to Orderer -peer0.org1.example.com | [6fa 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [64be7348]Received message TRANSACTION from shim -peer1.org1.example.com | [66c 01-18 02:00:28.51 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [6] -orderer.example.com | 2018-01-18 01:58:51.995 UTC [policies] GetPolicy -> DEBU 3f9 Returning policy Admins for evaluation -peer0.org1.example.com | [6fb 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [64be7348]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | 2018-01-18 01:58:51.995 UTC [policies] CommitProposals -> DEBU 3fa In commit adding relative sub-policy OrdererOrg/Admins to Orderer -peer1.org1.example.com | [66d 01-18 02:00:28.51 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -orderer.example.com | 2018-01-18 01:58:51.995 UTC [policies] GetPolicy -> DEBU 3fb Returning policy Readers for evaluation -peer1.org1.example.com | [66e 01-18 02:00:28.51 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer0.org1.example.com | [6fc 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [64be7348]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org1.example.com | [66f 01-18 02:00:28.51 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer0.org1.example.com | [6fd 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [64be7348]Sending GET_STATE -orderer.example.com | 2018-01-18 01:58:51.995 UTC [policies] CommitProposals -> DEBU 3fc In commit adding relative sub-policy OrdererOrg/Readers to Orderer -peer1.org1.example.com | [670 01-18 02:00:28.51 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -orderer.example.com | 2018-01-18 01:58:51.995 UTC [policies] GetPolicy -> DEBU 3fd Returning policy Writers for evaluation -peer0.org1.example.com | [6fe 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [64be7348]Received message GET_STATE from shim -peer1.org1.example.com | [671 01-18 02:00:28.51 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -peer0.org1.example.com | [6ff 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [64be7348]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -orderer.example.com | 2018-01-18 01:58:51.995 UTC [policies] GetPolicy -> DEBU 3fe Returning policy Admins for evaluation -orderer.example.com | 2018-01-18 01:58:51.995 UTC [policies] GetPolicy -> DEBU 3ff Returning policy Writers for evaluation -peer0.org1.example.com | [700 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [64be7348]Received GET_STATE, invoking get state from ledger -orderer.example.com | 2018-01-18 01:58:51.995 UTC [policies] GetPolicy -> DEBU 400 Returning policy Readers for evaluation -peer0.org1.example.com | [701 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | 2018-01-18 01:58:51.995 UTC [policies] GetPolicy -> DEBU 401 Returning policy Readers for evaluation -peer0.org1.example.com | [702 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [64be7348] getting state for chaincode lscc, key exp02, channel businesschannel -orderer.example.com | 2018-01-18 01:58:51.995 UTC [policies] CommitProposals -> DEBU 402 In commit adding relative sub-policy Application/Readers to Channel -orderer.example.com | 2018-01-18 01:58:51.996 UTC [policies] GetPolicy -> DEBU 403 Returning policy Org2MSP/Admins for evaluation -peer0.org1.example.com | [703 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -orderer.example.com | 2018-01-18 01:58:51.996 UTC [policies] CommitProposals -> DEBU 404 In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -orderer.example.com | 2018-01-18 01:58:51.996 UTC [policies] GetPolicy -> DEBU 405 Returning policy Org1MSP/Readers for evaluation -peer0.org1.example.com | [704 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [64be7348]Got state. Sending RESPONSE -orderer.example.com | 2018-01-18 01:58:51.996 UTC [policies] CommitProposals -> DEBU 406 In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -orderer.example.com | 2018-01-18 01:58:51.996 UTC [policies] GetPolicy -> DEBU 407 Returning policy Admins for evaluation -peer0.org1.example.com | [705 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [64be7348]handleGetState serial send RESPONSE -orderer.example.com | 2018-01-18 01:58:51.996 UTC [policies] CommitProposals -> DEBU 408 In commit adding relative sub-policy Application/Admins to Channel -peer0.org1.example.com | [706 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [64be7348]Received message RESPONSE from shim -orderer.example.com | 2018-01-18 01:58:51.996 UTC [policies] GetPolicy -> DEBU 409 Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:51.996 UTC [policies] CommitProposals -> DEBU 40a In commit adding relative sub-policy Application/Writers to Channel -peer0.org1.example.com | [707 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [64be7348]Handling ChaincodeMessage of type: RESPONSE(state:ready) -orderer.example.com | 2018-01-18 01:58:51.996 UTC [policies] GetPolicy -> DEBU 40b Returning policy Org2MSP/Writers for evaluation -orderer.example.com | 2018-01-18 01:58:51.996 UTC [policies] CommitProposals -> DEBU 40c In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -peer0.org1.example.com | [708 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [64be7348]before send -orderer.example.com | 2018-01-18 01:58:51.996 UTC [policies] GetPolicy -> DEBU 40d Returning policy Org2MSP/Readers for evaluation -peer0.org1.example.com | [709 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [64be7348]after send -orderer.example.com | 2018-01-18 01:58:51.996 UTC [policies] CommitProposals -> DEBU 40e In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -orderer.example.com | 2018-01-18 01:58:51.996 UTC [policies] GetPolicy -> DEBU 40f Returning policy Org1MSP/Admins for evaluation -peer0.org1.example.com | [70b 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [64be7348]Received RESPONSE, communicated (state:ready) -orderer.example.com | 2018-01-18 01:58:51.996 UTC [policies] CommitProposals -> DEBU 410 In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -peer0.org1.example.com | [70a 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [64be7348]GetState received payload RESPONSE -orderer.example.com | 2018-01-18 01:58:51.996 UTC [policies] GetPolicy -> DEBU 411 Returning policy Org1MSP/Writers for evaluation -peer0.org1.example.com | [70c 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [64be7348]Transaction completed. Sending COMPLETED -orderer.example.com | 2018-01-18 01:58:51.996 UTC [policies] CommitProposals -> DEBU 412 In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -orderer.example.com | 2018-01-18 01:58:51.996 UTC [policies] GetPolicy -> DEBU 413 Returning policy OrdererOrg/Readers for evaluation -peer0.org1.example.com | [70d 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [64be7348]Move state message COMPLETED -orderer.example.com | 2018-01-18 01:58:51.996 UTC [policies] CommitProposals -> DEBU 414 In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -orderer.example.com | 2018-01-18 01:58:51.996 UTC [policies] GetPolicy -> DEBU 415 Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:51.996 UTC [policies] CommitProposals -> DEBU 416 In commit adding relative sub-policy Orderer/Writers to Channel -peer0.org1.example.com | [70e 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [64be7348]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | 2018-01-18 01:58:51.996 UTC [policies] GetPolicy -> DEBU 417 Returning policy Admins for evaluation -peer0.org1.example.com | [70f 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [64be7348]send state message COMPLETED -peer0.org1.example.com | [710 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [64be7348]Received message COMPLETED from shim -orderer.example.com | 2018-01-18 01:58:51.996 UTC [policies] CommitProposals -> DEBU 418 In commit adding relative sub-policy Orderer/Admins to Channel -peer0.org1.example.com | [711 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [64be7348]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | 2018-01-18 01:58:51.997 UTC [policies] GetPolicy -> DEBU 419 Returning policy BlockValidation for evaluation -orderer.example.com | 2018-01-18 01:58:51.997 UTC [policies] CommitProposals -> DEBU 41a In commit adding relative sub-policy Orderer/BlockValidation to Channel -orderer.example.com | 2018-01-18 01:58:51.997 UTC [policies] GetPolicy -> DEBU 41b Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 01:58:51.997 UTC [policies] CommitProposals -> DEBU 41c In commit adding relative sub-policy Orderer/Readers to Channel -orderer.example.com | 2018-01-18 01:58:51.997 UTC [policies] GetPolicy -> DEBU 41d Returning policy OrdererOrg/Writers for evaluation -peer0.org1.example.com | [712 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [64be734822a4b71446785f11de481328b9fc773646fb32bed6bdbd5bd5c75f3a]HandleMessage- COMPLETED. Notify -orderer.example.com | 2018-01-18 01:58:51.998 UTC [policies] CommitProposals -> DEBU 41e In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -peer0.org1.example.com | [713 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:64be734822a4b71446785f11de481328b9fc773646fb32bed6bdbd5bd5c75f3a -orderer.example.com | 2018-01-18 01:58:51.998 UTC [policies] GetPolicy -> DEBU 41f Returning policy OrdererOrg/Admins for evaluation -orderer.example.com | 2018-01-18 01:58:51.998 UTC [policies] CommitProposals -> DEBU 420 In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -orderer.example.com | 2018-01-18 01:58:51.998 UTC [policies] GetPolicy -> DEBU 421 Returning policy Admins for evaluation -orderer.example.com | 2018-01-18 01:58:51.998 UTC [policies] GetPolicy -> DEBU 422 Returning policy Admins for evaluation -peer0.org1.example.com | [714 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | 2018-01-18 01:58:51.998 UTC [policies] GetPolicy -> DEBU 423 Returning policy Readers for evaluation -peer0.org1.example.com | [715 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -orderer.example.com | 2018-01-18 01:58:51.998 UTC [policies] GetPolicy -> DEBU 424 Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 01:58:51.998 UTC [policies] GetPolicy -> DEBU 425 Returning policy Writers for evaluation -peer0.org1.example.com | [716 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -orderer.example.com | 2018-01-18 01:58:51.998 UTC [policies] GetPolicy -> DEBU 426 Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:51.998 UTC [policies] GetPolicy -> DEBU 427 Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 01:58:51.998 UTC [policies] CommitProposals -> DEBU 428 As expected, current configuration has policy '/Channel/Readers' -orderer.example.com | 2018-01-18 01:58:51.998 UTC [policies] GetPolicy -> DEBU 429 Returning policy Writers for evaluation -peer0.org1.example.com | [717 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [1d523410-5cb4-4aa5-9070-3dc33fecc565] -orderer.example.com | 2018-01-18 01:58:51.998 UTC [policies] CommitProposals -> DEBU 42a As expected, current configuration has policy '/Channel/Writers' -orderer.example.com | 2018-01-18 01:58:51.998 UTC [policies] GetPolicy -> DEBU 42b Returning policy Application/Readers for evaluation -orderer.example.com | 2018-01-18 01:58:51.998 UTC [policies] CommitProposals -> DEBU 42c As expected, current configuration has policy '/Channel/Application/Readers' -peer0.org1.example.com | [718 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -orderer.example.com | 2018-01-18 01:58:51.998 UTC [policies] GetPolicy -> DEBU 42d Returning policy Application/Writers for evaluation -orderer.example.com | 2018-01-18 01:58:51.998 UTC [policies] CommitProposals -> DEBU 42e As expected, current configuration has policy '/Channel/Application/Writers' -peer0.org1.example.com | [719 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 64be734822a4b71446785f11de481328b9fc773646fb32bed6bdbd5bd5c75f3a channel id: businesschannel chaincode id: name:"lscc" -orderer.example.com | 2018-01-18 01:58:51.998 UTC [policies] GetPolicy -> DEBU 42f Returning policy Application/Admins for evaluation -orderer.example.com | 2018-01-18 01:58:51.998 UTC [policies] CommitProposals -> DEBU 430 As expected, current configuration has policy '/Channel/Application/Admins' -orderer.example.com | 2018-01-18 01:58:51.998 UTC [policies] GetPolicy -> DEBU 431 Returning policy Orderer/BlockValidation for evaluation -orderer.example.com | 2018-01-18 01:58:51.998 UTC [policies] CommitProposals -> DEBU 432 As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -peer0.org1.example.com | [71a 01-18 02:00:27.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc -orderer.example.com | 2018-01-18 01:58:51.998 UTC [common/config] NewStandardValues -> DEBU 433 Initializing protos for *config.ChannelProtos -orderer.example.com | 2018-01-18 01:58:51.998 UTC [common/config] initializeProtosStruct -> DEBU 434 Processing field: HashingAlgorithm -orderer.example.com | 2018-01-18 01:58:51.999 UTC [common/config] initializeProtosStruct -> DEBU 435 Processing field: BlockDataHashingStructure -peer0.org1.example.com | [71b 01-18 02:00:27.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 64be734822a4b71446785f11de481328b9fc773646fb32bed6bdbd5bd5c75f3a channel id: businesschannel version: 1.0.2 -orderer.example.com | 2018-01-18 01:58:51.999 UTC [common/config] initializeProtosStruct -> DEBU 436 Processing field: OrdererAddresses -orderer.example.com | 2018-01-18 01:58:51.999 UTC [common/config] initializeProtosStruct -> DEBU 437 Processing field: Consortium -orderer.example.com | 2018-01-18 01:58:51.999 UTC [common/configtx] addToMap -> DEBU 438 Adding to config map: [Groups] /Channel -orderer.example.com | 2018-01-18 01:58:51.999 UTC [common/configtx] addToMap -> DEBU 439 Adding to config map: [Groups] /Channel/Application -orderer.example.com | 2018-01-18 01:58:51.999 UTC [common/configtx] addToMap -> DEBU 43a Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | 2018-01-18 01:58:51.999 UTC [common/configtx] addToMap -> DEBU 43b Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -peer0.org1.example.com | [71c 01-18 02:00:27.07 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=64be734822a4b71446785f11de481328b9fc773646fb32bed6bdbd5bd5c75f3a,syscc=true,proposal=0xc4220ce690,canname=escc:1.0.2 -orderer.example.com | 2018-01-18 01:58:51.999 UTC [common/configtx] addToMap -> DEBU 43c Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | 2018-01-18 01:58:51.999 UTC [common/configtx] addToMap -> DEBU 43d Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org1.example.com | [71d 01-18 02:00:27.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 -orderer.example.com | 2018-01-18 01:58:52.000 UTC [common/configtx] addToMap -> DEBU 43e Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | 2018-01-18 01:58:52.000 UTC [common/configtx] addToMap -> DEBU 43f Adding to config map: [Groups] /Channel/Application/Org2MSP -peer0.org1.example.com | [71e 01-18 02:00:27.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | 2018-01-18 01:58:52.000 UTC [common/configtx] addToMap -> DEBU 440 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -orderer.example.com | 2018-01-18 01:58:52.000 UTC [common/configtx] addToMap -> DEBU 441 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | 2018-01-18 01:58:52.000 UTC [common/configtx] addToMap -> DEBU 442 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | 2018-01-18 01:58:52.000 UTC [common/configtx] addToMap -> DEBU 443 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | 2018-01-18 01:58:52.000 UTC [common/configtx] addToMap -> DEBU 444 Adding to config map: [Policy] /Channel/Application/Admins -peer0.org1.example.com | [71f 01-18 02:00:27.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 -orderer.example.com | 2018-01-18 01:58:52.000 UTC [common/configtx] addToMap -> DEBU 445 Adding to config map: [Policy] /Channel/Application/Writers -orderer.example.com | 2018-01-18 01:58:52.000 UTC [common/configtx] addToMap -> DEBU 446 Adding to config map: [Policy] /Channel/Application/Readers -peer0.org1.example.com | [720 01-18 02:00:27.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [64be7348]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [721 01-18 02:00:27.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | 2018-01-18 01:58:52.000 UTC [common/configtx] addToMap -> DEBU 447 Adding to config map: [Groups] /Channel/Orderer -orderer.example.com | 2018-01-18 01:58:52.000 UTC [common/configtx] addToMap -> DEBU 448 Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -peer0.org1.example.com | [722 01-18 02:00:27.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org1.example.com | [723 01-18 02:00:27.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [64be7348]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | 2018-01-18 01:58:52.000 UTC [common/configtx] addToMap -> DEBU 449 Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -orderer.example.com | 2018-01-18 01:58:52.000 UTC [common/configtx] addToMap -> DEBU 44a Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer0.org1.example.com | [724 01-18 02:00:27.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [64be7348]Move state message TRANSACTION -orderer.example.com | 2018-01-18 01:58:52.000 UTC [common/configtx] addToMap -> DEBU 44b Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer0.org1.example.com | [725 01-18 02:00:27.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [64be7348]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | 2018-01-18 01:58:52.000 UTC [common/configtx] addToMap -> DEBU 44c Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer0.org1.example.com | [726 01-18 02:00:27.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | 2018-01-18 01:58:52.000 UTC [common/configtx] addToMap -> DEBU 44d Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -orderer.example.com | 2018-01-18 01:58:52.000 UTC [common/configtx] addToMap -> DEBU 44e Adding to config map: [Values] /Channel/Orderer/ConsensusType -peer0.org1.example.com | [727 01-18 02:00:27.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [64be7348]sending state message TRANSACTION -orderer.example.com | 2018-01-18 01:58:52.001 UTC [common/configtx] addToMap -> DEBU 44f Adding to config map: [Values] /Channel/Orderer/BatchSize -orderer.example.com | 2018-01-18 01:58:52.001 UTC [common/configtx] addToMap -> DEBU 450 Adding to config map: [Values] /Channel/Orderer/BatchTimeout -peer0.org1.example.com | [728 01-18 02:00:27.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [64be7348]Received message TRANSACTION from shim -orderer.example.com | 2018-01-18 01:58:52.001 UTC [common/configtx] addToMap -> DEBU 451 Adding to config map: [Policy] /Channel/Orderer/BlockValidation -orderer.example.com | 2018-01-18 01:58:52.001 UTC [common/configtx] addToMap -> DEBU 452 Adding to config map: [Policy] /Channel/Orderer/Readers -peer0.org1.example.com | [729 01-18 02:00:27.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [64be7348]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | 2018-01-18 01:58:52.001 UTC [common/configtx] addToMap -> DEBU 453 Adding to config map: [Policy] /Channel/Orderer/Writers -orderer.example.com | 2018-01-18 01:58:52.001 UTC [common/configtx] addToMap -> DEBU 454 Adding to config map: [Policy] /Channel/Orderer/Admins -peer0.org1.example.com | [72a 01-18 02:00:27.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [64be7348]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [72b 01-18 02:00:27.07 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -orderer.example.com | 2018-01-18 01:58:52.001 UTC [common/configtx] addToMap -> DEBU 455 Adding to config map: [Values] /Channel/HashingAlgorithm -peer0.org1.example.com | [72c 01-18 02:00:27.07 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -orderer.example.com | 2018-01-18 01:58:52.001 UTC [common/configtx] addToMap -> DEBU 456 Adding to config map: [Values] /Channel/BlockDataHashingStructure -peer0.org1.example.com | [72d 01-18 02:00:27.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [64be7348]Transaction completed. Sending COMPLETED -orderer.example.com | 2018-01-18 01:58:52.001 UTC [common/configtx] addToMap -> DEBU 457 Adding to config map: [Values] /Channel/Consortium -peer0.org1.example.com | [72e 01-18 02:00:27.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [64be7348]Move state message COMPLETED -orderer.example.com | 2018-01-18 01:58:52.001 UTC [common/configtx] addToMap -> DEBU 458 Adding to config map: [Values] /Channel/OrdererAddresses -orderer.example.com | 2018-01-18 01:58:52.001 UTC [common/configtx] addToMap -> DEBU 459 Adding to config map: [Policy] /Channel/Writers -orderer.example.com | 2018-01-18 01:58:52.001 UTC [common/configtx] addToMap -> DEBU 45a Adding to config map: [Policy] /Channel/Admins -orderer.example.com | 2018-01-18 01:58:52.001 UTC [common/configtx] addToMap -> DEBU 45b Adding to config map: [Policy] /Channel/Readers -peer0.org1.example.com | [72f 01-18 02:00:27.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [64be7348]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | 2018-01-18 01:58:52.001 UTC [common/configtx] processConfig -> DEBU 45c Beginning new config for channel businesschannel -peer0.org1.example.com | [730 01-18 02:00:27.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [64be7348]send state message COMPLETED -orderer.example.com | 2018-01-18 01:58:52.001 UTC [common/config] NewStandardValues -> DEBU 45d Initializing protos for *config.ChannelProtos -peer0.org1.example.com | [731 01-18 02:00:27.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [64be7348]Received message COMPLETED from shim -peer0.org1.example.com | [732 01-18 02:00:27.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [64be7348]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | 2018-01-18 01:58:52.001 UTC [common/config] initializeProtosStruct -> DEBU 45e Processing field: HashingAlgorithm -peer0.org1.example.com | [733 01-18 02:00:27.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [64be734822a4b71446785f11de481328b9fc773646fb32bed6bdbd5bd5c75f3a]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [734 01-18 02:00:27.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:64be734822a4b71446785f11de481328b9fc773646fb32bed6bdbd5bd5c75f3a -orderer.example.com | 2018-01-18 01:58:52.001 UTC [common/config] initializeProtosStruct -> DEBU 45f Processing field: BlockDataHashingStructure -peer0.org1.example.com | [735 01-18 02:00:27.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | 2018-01-18 01:58:52.001 UTC [common/config] initializeProtosStruct -> DEBU 460 Processing field: OrdererAddresses -peer0.org1.example.com | [736 01-18 02:00:27.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [737 01-18 02:00:27.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -orderer.example.com | 2018-01-18 01:58:52.001 UTC [common/config] initializeProtosStruct -> DEBU 461 Processing field: Consortium -peer0.org1.example.com | [738 01-18 02:00:27.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [1d523410-5cb4-4aa5-9070-3dc33fecc565] -orderer.example.com | 2018-01-18 01:58:52.001 UTC [policies] ProposePolicy -> DEBU 462 Proposed new policy Readers for Channel -peer0.org1.example.com | [739 01-18 02:00:27.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -orderer.example.com | 2018-01-18 01:58:52.001 UTC [policies] ProposePolicy -> DEBU 463 Proposed new policy Writers for Channel -peer0.org1.example.com | [73a 01-18 02:00:27.25 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -orderer.example.com | 2018-01-18 01:58:52.002 UTC [policies] ProposePolicy -> DEBU 464 Proposed new policy Admins for Channel -peer0.org1.example.com | [73b 01-18 02:00:27.25 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42206fb90 -orderer.example.com | 2018-01-18 01:58:52.002 UTC [common/config] NewStandardValues -> DEBU 465 Initializing protos for *struct {} -peer0.org1.example.com | [73c 01-18 02:00:27.25 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org1.example.com | [73d 01-18 02:00:27.25 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | 2018-01-18 01:58:52.002 UTC [policies] ProposePolicy -> DEBU 466 Proposed new policy Admins for Application -peer0.org1.example.com | [73e 01-18 02:00:27.25 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -peer0.org1.example.com | [73f 01-18 02:00:27.25 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | 2018-01-18 01:58:52.002 UTC [policies] ProposePolicy -> DEBU 467 Proposed new policy Writers for Application -peer0.org1.example.com | [740 01-18 02:00:27.25 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | 2018-01-18 01:58:52.002 UTC [policies] ProposePolicy -> DEBU 468 Proposed new policy Readers for Application -peer0.org1.example.com | [741 01-18 02:00:27.25 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4220cfb80, header 0xc42206fbc0 -orderer.example.com | 2018-01-18 01:58:52.002 UTC [common/config] NewStandardValues -> DEBU 469 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:52.002 UTC [common/config] initializeProtosStruct -> DEBU 46a Processing field: MSP -orderer.example.com | 2018-01-18 01:58:52.002 UTC [common/config] NewStandardValues -> DEBU 46b Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | 2018-01-18 01:58:52.002 UTC [common/config] initializeProtosStruct -> DEBU 46c Processing field: AnchorPeers -orderer.example.com | 2018-01-18 01:58:52.002 UTC [common/config] NewStandardValues -> DEBU 46d Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:52.002 UTC [common/config] initializeProtosStruct -> DEBU 46e Processing field: MSP -peer0.org1.example.com | [742 01-18 02:00:27.25 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -orderer.example.com | 2018-01-18 01:58:52.002 UTC [policies] ProposePolicy -> DEBU 46f Proposed new policy Admins for Org1MSP -orderer.example.com | 2018-01-18 01:58:52.002 UTC [policies] ProposePolicy -> DEBU 470 Proposed new policy Readers for Org1MSP -peer0.org1.example.com | [743 01-18 02:00:27.25 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 17ae29ab841c021191f1743f07a0d324a7a91e1d02ac8c62bb78901611ff0527 -orderer.example.com | 2018-01-18 01:58:52.002 UTC [policies] ProposePolicy -> DEBU 471 Proposed new policy Writers for Org1MSP -peer0.org1.example.com | [744 01-18 02:00:27.25 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [17ae29ab841c021191f1743f07a0d324a7a91e1d02ac8c62bb78901611ff0527] -orderer.example.com | 2018-01-18 01:58:52.002 UTC [common/config] NewStandardValues -> DEBU 472 Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [745 01-18 02:00:27.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | 2018-01-18 01:58:52.002 UTC [common/config] initializeProtosStruct -> DEBU 473 Processing field: MSP -orderer.example.com | 2018-01-18 01:58:52.002 UTC [common/config] NewStandardValues -> DEBU 474 Initializing protos for *config.ApplicationOrgProtos -peer0.org1.example.com | [746 01-18 02:00:27.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [ea82d204-5f08-4195-b3f1-1dbf06e18d91] -peer0.org1.example.com | [747 01-18 02:00:27.25 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 17ae29ab841c021191f1743f07a0d324a7a91e1d02ac8c62bb78901611ff0527 channel id: businesschannel -peer0.org1.example.com | [748 01-18 02:00:27.25 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 17ae29ab841c021191f1743f07a0d324a7a91e1d02ac8c62bb78901611ff0527 channel id: businesschannel version: 1.0.2 -peer0.org1.example.com | [749 01-18 02:00:27.25 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=17ae29ab841c021191f1743f07a0d324a7a91e1d02ac8c62bb78901611ff0527,syscc=true,proposal=0xc4220cfb80,canname=lscc:1.0.2 -peer0.org1.example.com | [74a 01-18 02:00:27.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 -orderer.example.com | 2018-01-18 01:58:52.002 UTC [common/config] initializeProtosStruct -> DEBU 475 Processing field: AnchorPeers -peer0.org1.example.com | [74b 01-18 02:00:27.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | 2018-01-18 01:58:52.002 UTC [common/config] NewStandardValues -> DEBU 476 Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [74c 01-18 02:00:27.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -peer0.org1.example.com | [74d 01-18 02:00:27.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [17ae29ab]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [74e 01-18 02:00:27.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [74f 01-18 02:00:27.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org1.example.com | [750 01-18 02:00:27.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [17ae29ab]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [751 01-18 02:00:27.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [17ae29ab]Move state message TRANSACTION -orderer.example.com | 2018-01-18 01:58:52.002 UTC [common/config] initializeProtosStruct -> DEBU 477 Processing field: MSP -peer0.org1.example.com | [752 01-18 02:00:27.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [17ae29ab]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [753 01-18 02:00:27.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [754 01-18 02:00:27.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [17ae29ab]sending state message TRANSACTION -orderer.example.com | 2018-01-18 01:58:52.002 UTC [policies] ProposePolicy -> DEBU 478 Proposed new policy Writers for Org2MSP -peer0.org1.example.com | [755 01-18 02:00:27.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [17ae29ab]Received message TRANSACTION from shim -orderer.example.com | 2018-01-18 01:58:52.002 UTC [policies] ProposePolicy -> DEBU 479 Proposed new policy Admins for Org2MSP -peer0.org1.example.com | [756 01-18 02:00:27.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [17ae29ab]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [757 01-18 02:00:27.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [17ae29ab]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [758 01-18 02:00:27.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [17ae29ab]Sending GET_STATE -peer0.org1.example.com | [759 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [17ae29ab]Received message GET_STATE from shim -orderer.example.com | 2018-01-18 01:58:52.002 UTC [policies] ProposePolicy -> DEBU 47a Proposed new policy Readers for Org2MSP -peer0.org1.example.com | [75a 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [17ae29ab]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -orderer.example.com | 2018-01-18 01:58:52.002 UTC [common/config] NewStandardValues -> DEBU 47b Initializing protos for *config.OrdererProtos -peer0.org1.example.com | [75b 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [17ae29ab]Received GET_STATE, invoking get state from ledger -orderer.example.com | 2018-01-18 01:58:52.002 UTC [common/config] initializeProtosStruct -> DEBU 47c Processing field: ConsensusType -peer0.org1.example.com | [75c 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [75d 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [17ae29ab] getting state for chaincode lscc, key exp02, channel businesschannel -orderer.example.com | 2018-01-18 01:58:52.003 UTC [common/config] initializeProtosStruct -> DEBU 47d Processing field: BatchSize -peer0.org1.example.com | [75e 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer0.org1.example.com | [75f 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [17ae29ab]Got state. Sending RESPONSE -orderer.example.com | 2018-01-18 01:58:52.003 UTC [common/config] initializeProtosStruct -> DEBU 47e Processing field: BatchTimeout -peer0.org1.example.com | [760 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [17ae29ab]handleGetState serial send RESPONSE -peer0.org1.example.com | [761 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [17ae29ab]Received message RESPONSE from shim -orderer.example.com | 2018-01-18 01:58:52.003 UTC [common/config] initializeProtosStruct -> DEBU 47f Processing field: KafkaBrokers -peer0.org1.example.com | [762 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [17ae29ab]Handling ChaincodeMessage of type: RESPONSE(state:ready) -orderer.example.com | 2018-01-18 01:58:52.003 UTC [common/config] initializeProtosStruct -> DEBU 480 Processing field: ChannelRestrictions -peer0.org1.example.com | [763 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [17ae29ab]before send -peer0.org1.example.com | [764 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [17ae29ab]after send -peer0.org1.example.com | [765 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [17ae29ab]Received RESPONSE, communicated (state:ready) -orderer.example.com | 2018-01-18 01:58:52.003 UTC [policies] ProposePolicy -> DEBU 481 Proposed new policy BlockValidation for Orderer -peer0.org1.example.com | [766 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [17ae29ab]GetState received payload RESPONSE -orderer.example.com | 2018-01-18 01:58:52.003 UTC [policies] ProposePolicy -> DEBU 482 Proposed new policy Readers for Orderer -peer0.org1.example.com | [767 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [17ae29ab]Transaction completed. Sending COMPLETED -orderer.example.com | 2018-01-18 01:58:52.003 UTC [policies] ProposePolicy -> DEBU 483 Proposed new policy Writers for Orderer -peer0.org1.example.com | [768 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [17ae29ab]Move state message COMPLETED -orderer.example.com | 2018-01-18 01:58:52.003 UTC [policies] ProposePolicy -> DEBU 484 Proposed new policy Admins for Orderer -peer0.org1.example.com | [769 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [17ae29ab]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | 2018-01-18 01:58:52.003 UTC [common/config] NewStandardValues -> DEBU 485 Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [76a 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [17ae29ab]send state message COMPLETED -orderer.example.com | 2018-01-18 01:58:52.003 UTC [common/config] initializeProtosStruct -> DEBU 486 Processing field: MSP -peer0.org1.example.com | [76b 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [17ae29ab]Received message COMPLETED from shim -orderer.example.com | 2018-01-18 01:58:52.003 UTC [policies] ProposePolicy -> DEBU 487 Proposed new policy Admins for OrdererOrg -peer0.org1.example.com | [76c 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [17ae29ab]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | 2018-01-18 01:58:52.003 UTC [policies] ProposePolicy -> DEBU 488 Proposed new policy Readers for OrdererOrg -peer0.org1.example.com | [76d 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [17ae29ab841c021191f1743f07a0d324a7a91e1d02ac8c62bb78901611ff0527]HandleMessage- COMPLETED. Notify -orderer.example.com | 2018-01-18 01:58:52.003 UTC [policies] ProposePolicy -> DEBU 489 Proposed new policy Writers for OrdererOrg -peer0.org1.example.com | [76e 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:17ae29ab841c021191f1743f07a0d324a7a91e1d02ac8c62bb78901611ff0527 -orderer.example.com | 2018-01-18 01:58:52.003 UTC [common/config] Validate -> DEBU 48a Anchor peers for org Org1MSP are -orderer.example.com | 2018-01-18 01:58:52.003 UTC [common/config] validateMSP -> DEBU 48b Setting up MSP for org Org1MSP -peer0.org1.example.com | [76f 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | 2018-01-18 01:58:52.003 UTC [msp] NewBccspMsp -> DEBU 48c Creating BCCSP-based MSP instance -peer0.org1.example.com | [770 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -orderer.example.com | 2018-01-18 01:58:52.004 UTC [msp] Setup -> DEBU 48d Setting up MSP instance Org1MSP -orderer.example.com | 2018-01-18 01:58:52.004 UTC [msp/identity] newIdentity -> DEBU 48e Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [771 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [772 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [ea82d204-5f08-4195-b3f1-1dbf06e18d91] -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [773 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -peer0.org1.example.com | [774 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 17ae29ab841c021191f1743f07a0d324a7a91e1d02ac8c62bb78901611ff0527 channel id: businesschannel chaincode id: name:"lscc" -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -peer0.org1.example.com | [775 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc -peer0.org1.example.com | [776 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 17ae29ab841c021191f1743f07a0d324a7a91e1d02ac8c62bb78901611ff0527 channel id: businesschannel version: 1.0.2 -peer0.org1.example.com | [777 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=17ae29ab841c021191f1743f07a0d324a7a91e1d02ac8c62bb78901611ff0527,syscc=true,proposal=0xc4220cfb80,canname=escc:1.0.2 -orderer.example.com | BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf -orderer.example.com | db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx -peer0.org1.example.com | [778 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 -orderer.example.com | JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi -orderer.example.com | /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ -peer0.org1.example.com | [779 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | H7n8z1pj5w== -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [77a 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 -orderer.example.com | 2018-01-18 01:58:52.004 UTC [msp/identity] newIdentity -> DEBU 48f Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [77b 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [17ae29ab]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [77c 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [77d 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [77e 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [17ae29ab]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -peer0.org1.example.com | [77f 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [17ae29ab]Move state message TRANSACTION -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [780 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [17ae29ab]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -peer0.org1.example.com | [781 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [782 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [17ae29ab]sending state message TRANSACTION -peer0.org1.example.com | [783 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [17ae29ab]Received message TRANSACTION from shim -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -peer0.org1.example.com | [784 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [17ae29ab]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -peer0.org1.example.com | [785 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [17ae29ab]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | xHTBvxfK6mAzmUitFmY= -peer0.org1.example.com | [786 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [787 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -orderer.example.com | 2018-01-18 01:58:52.004 UTC [msp/identity] newIdentity -> DEBU 490 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [788 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [17ae29ab]Transaction completed. Sending COMPLETED -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [789 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [17ae29ab]Move state message COMPLETED -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [78a 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [17ae29ab]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [78b 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [17ae29ab]send state message COMPLETED -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -peer0.org1.example.com | [78c 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [17ae29ab]Received message COMPLETED from shim -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [78d 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [17ae29ab]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [78e 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [17ae29ab841c021191f1743f07a0d324a7a91e1d02ac8c62bb78901611ff0527]HandleMessage- COMPLETED. Notify -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer0.org1.example.com | [78f 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:17ae29ab841c021191f1743f07a0d324a7a91e1d02ac8c62bb78901611ff0527 -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -peer0.org1.example.com | [790 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -peer0.org1.example.com | [791 01-18 02:00:27.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -peer0.org1.example.com | [792 01-18 02:00:27.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -peer0.org1.example.com | [793 01-18 02:00:27.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [ea82d204-5f08-4195-b3f1-1dbf06e18d91] -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -orderer.example.com | xHTBvxfK6mAzmUitFmY= -peer0.org1.example.com | [794 01-18 02:00:27.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -peer0.org1.example.com | [795 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:52.005 UTC [msp] Validate -> DEBU 491 MSP Org1MSP validating identity -peer0.org1.example.com | [796 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4220d38c0 -peer0.org1.example.com | [797 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org1.example.com | [798 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | 2018-01-18 01:58:52.005 UTC [common/config] Validate -> DEBU 492 Anchor peers for org Org2MSP are -peer0.org1.example.com | [799 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -peer0.org1.example.com | [79a 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | 2018-01-18 01:58:52.005 UTC [common/config] validateMSP -> DEBU 493 Setting up MSP for org Org2MSP -peer0.org1.example.com | [79b 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | 2018-01-18 01:58:52.005 UTC [msp] NewBccspMsp -> DEBU 494 Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-18 01:58:52.005 UTC [msp] Setup -> DEBU 495 Setting up MSP instance Org2MSP -peer0.org1.example.com | [79c 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4221b7040, header 0xc4220d38f0 -orderer.example.com | 2018-01-18 01:58:52.006 UTC [msp/identity] newIdentity -> DEBU 496 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw -peer0.org1.example.com | [79d 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [79e 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: f425012571884d0ceb6345b1ff63521e3cadce9232d196e10130e2fcb870b91b -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa -peer0.org1.example.com | [79f 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [f425012571884d0ceb6345b1ff63521e3cadce9232d196e10130e2fcb870b91b] -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -peer0.org1.example.com | [7a0 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -peer0.org1.example.com | [7a1 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [b3977d1a-df55-4a10-aa11-e735797136a3] -orderer.example.com | mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 -orderer.example.com | sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -peer0.org1.example.com | [7a2 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: f425012571884d0ceb6345b1ff63521e3cadce9232d196e10130e2fcb870b91b channel id: businesschannel -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ -peer0.org1.example.com | [7a3 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: f425012571884d0ceb6345b1ff63521e3cadce9232d196e10130e2fcb870b91b channel id: businesschannel version: 1.0.2 -orderer.example.com | xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv -peer0.org1.example.com | [7a4 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=f425012571884d0ceb6345b1ff63521e3cadce9232d196e10130e2fcb870b91b,syscc=true,proposal=0xc4221b7040,canname=lscc:1.0.2 -orderer.example.com | WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk -orderer.example.com | SCjyRdD3aQ== -peer0.org1.example.com | [7a5 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 -peer0.org1.example.com | [7a6 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [7a7 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -peer0.org1.example.com | [7a8 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f4250125]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | 2018-01-18 01:58:52.006 UTC [msp/identity] newIdentity -> DEBU 497 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [7a9 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [7aa 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [7ab 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f4250125]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [7ac 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f4250125]Move state message TRANSACTION -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -peer0.org1.example.com | [7ad 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f4250125]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [7ae 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -peer0.org1.example.com | [7af 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f4250125]sending state message TRANSACTION -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -peer0.org1.example.com | [7b0 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f4250125]Received message TRANSACTION from shim -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -peer0.org1.example.com | [7b1 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f4250125]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -peer0.org1.example.com | [7b2 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [f4250125]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -peer0.org1.example.com | [7b3 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [f4250125]Sending GET_STATE -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -peer0.org1.example.com | [7b4 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f4250125]Received message GET_STATE from shim -orderer.example.com | AXYxULZpXYDQXt1KaLI= -peer0.org1.example.com | [7b5 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f4250125]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [7b6 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [f4250125]Received GET_STATE, invoking get state from ledger -orderer.example.com | 2018-01-18 01:58:52.006 UTC [msp/identity] newIdentity -> DEBU 498 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [7b7 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [7b8 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [f4250125] getting state for chaincode lscc, key exp02, channel businesschannel -peer0.org1.example.com | [7b9 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [7ba 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [f4250125]Got state. Sending RESPONSE -peer0.org1.example.com | [7bb 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [f4250125]handleGetState serial send RESPONSE -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -peer0.org1.example.com | [7bc 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f4250125]Received message RESPONSE from shim -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [7bd 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f4250125]Handling ChaincodeMessage of type: RESPONSE(state:ready) -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -peer0.org1.example.com | [7be 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [f4250125]before send -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -peer0.org1.example.com | [7bf 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [f4250125]after send -peer0.org1.example.com | [7c0 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [f4250125]Received RESPONSE, communicated (state:ready) -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -peer0.org1.example.com | [7c1 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [f4250125]GetState received payload RESPONSE -peer0.org1.example.com | [7c2 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f4250125]Transaction completed. Sending COMPLETED -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -peer0.org1.example.com | [7c3 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f4250125]Move state message COMPLETED -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -orderer.example.com | AXYxULZpXYDQXt1KaLI= -peer0.org1.example.com | [7c4 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f4250125]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:52.007 UTC [msp] Validate -> DEBU 499 MSP Org2MSP validating identity -peer0.org1.example.com | [7c5 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f4250125]send state message COMPLETED -orderer.example.com | 2018-01-18 01:58:52.007 UTC [common/config] validateMSP -> DEBU 49a Setting up MSP for org OrdererOrg -orderer.example.com | 2018-01-18 01:58:52.007 UTC [msp] NewBccspMsp -> DEBU 49b Creating BCCSP-based MSP instance -peer0.org1.example.com | [7c6 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f4250125]Received message COMPLETED from shim -orderer.example.com | 2018-01-18 01:58:52.007 UTC [msp] Setup -> DEBU 49c Setting up MSP instance OrdererMSP -peer0.org1.example.com | [7c7 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f4250125]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | 2018-01-18 01:58:52.007 UTC [msp/identity] newIdentity -> DEBU 49d Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [7c8 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f425012571884d0ceb6345b1ff63521e3cadce9232d196e10130e2fcb870b91b]HandleMessage- COMPLETED. Notify -orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL -peer0.org1.example.com | [7c9 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:f425012571884d0ceb6345b1ff63521e3cadce9232d196e10130e2fcb870b91b -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -peer0.org1.example.com | [7ca 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [7cb 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [7cc 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -orderer.example.com | cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV -peer0.org1.example.com | [7cd 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [b3977d1a-df55-4a10-aa11-e735797136a3] -peer0.org1.example.com | [7ce 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -peer0.org1.example.com | [7cf 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: f425012571884d0ceb6345b1ff63521e3cadce9232d196e10130e2fcb870b91b channel id: businesschannel chaincode id: name:"lscc" -peer0.org1.example.com | [7d0 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -peer0.org1.example.com | [7d1 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: f425012571884d0ceb6345b1ff63521e3cadce9232d196e10130e2fcb870b91b channel id: businesschannel version: 1.0.2 -peer0.org1.example.com | [7d2 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=f425012571884d0ceb6345b1ff63521e3cadce9232d196e10130e2fcb870b91b,syscc=true,proposal=0xc4221b7040,canname=escc:1.0.2 -peer0.org1.example.com | [7d3 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 -orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -peer0.org1.example.com | [7d4 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [7d5 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 -peer0.org1.example.com | [7d6 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f4250125]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [7d7 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [7d8 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW -peer0.org1.example.com | [7d9 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f4250125]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w -peer0.org1.example.com | [7da 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f4250125]Move state message TRANSACTION -peer0.org1.example.com | [7db 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f4250125]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [7dc 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [7dd 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f4250125]sending state message TRANSACTION -orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -peer0.org1.example.com | [7de 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f4250125]Received message TRANSACTION from shim -peer0.org1.example.com | [7df 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f4250125]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [7e0 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [f4250125]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [7e1 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -orderer.example.com | AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK -peer0.org1.example.com | [7e2 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs -peer0.org1.example.com | [7e3 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f4250125]Transaction completed. Sending COMPLETED -orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= -peer0.org1.example.com | [7e4 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f4250125]Move state message COMPLETED -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:52.008 UTC [msp/identity] newIdentity -> DEBU 49e Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [7e5 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f4250125]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -peer0.org1.example.com | [7e6 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f4250125]send state message COMPLETED -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [7e7 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f4250125]Received message COMPLETED from shim -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer0.org1.example.com | [7e8 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f4250125]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [7e9 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f425012571884d0ceb6345b1ff63521e3cadce9232d196e10130e2fcb870b91b]HandleMessage- COMPLETED. Notify -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -peer0.org1.example.com | [7ea 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:f425012571884d0ceb6345b1ff63521e3cadce9232d196e10130e2fcb870b91b -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer0.org1.example.com | [7eb 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -peer0.org1.example.com | [7ec 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -peer0.org1.example.com | [7ed 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -peer0.org1.example.com | [7ee 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [b3977d1a-df55-4a10-aa11-e735797136a3] -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:52.008 UTC [msp/identity] newIdentity -> DEBU 49f Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -peer0.org1.example.com | [7ef 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [7f0 01-18 02:00:27.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer0.org1.example.com | [7f1 01-18 02:00:27.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421f787b0 -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -peer0.org1.example.com | [7f2 01-18 02:00:27.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer0.org1.example.com | [7f3 01-18 02:00:27.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -peer0.org1.example.com | [7f4 01-18 02:00:27.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -peer0.org1.example.com | [7f5 01-18 02:00:27.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -peer0.org1.example.com | [7f6 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -peer0.org1.example.com | [7f7 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422039130, header 0xc421f787e0 -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [7f8 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -peer0.org1.example.com | [7f9 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 36acd9e4fedfa11372df6c96ca9f36fa4c6c62d7e55d4459574d822990bb9af9 -orderer.example.com | 2018-01-18 01:58:52.008 UTC [msp] Validate -> DEBU 4a0 MSP OrdererMSP validating identity -peer0.org1.example.com | [7fa 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [36acd9e4fedfa11372df6c96ca9f36fa4c6c62d7e55d4459574d822990bb9af9] -orderer.example.com | 2018-01-18 01:58:52.008 UTC [msp] Setup -> DEBU 4a1 Setting up the MSP manager (3 msps) -peer0.org1.example.com | [7fb 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | 2018-01-18 01:58:52.009 UTC [msp] Setup -> DEBU 4a2 MSP manager setup complete, setup 3 msps -peer0.org1.example.com | [7fc 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [907eb064-9c21-4247-81c4-11a02baf2003] -orderer.example.com | 2018-01-18 01:58:52.009 UTC [policies] GetPolicy -> DEBU 4a3 Returning policy Admins for evaluation -orderer.example.com | 2018-01-18 01:58:52.009 UTC [policies] CommitProposals -> DEBU 4a4 In commit adding relative sub-policy Org1MSP/Admins to Application -peer0.org1.example.com | [7fd 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 36acd9e4fedfa11372df6c96ca9f36fa4c6c62d7e55d4459574d822990bb9af9 channel id: businesschannel -orderer.example.com | 2018-01-18 01:58:52.009 UTC [policies] GetPolicy -> DEBU 4a5 Returning policy Readers for evaluation -peer0.org1.example.com | [7fe 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 36acd9e4fedfa11372df6c96ca9f36fa4c6c62d7e55d4459574d822990bb9af9 channel id: businesschannel version: 1.0.2 -peer0.org1.example.com | [7ff 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=36acd9e4fedfa11372df6c96ca9f36fa4c6c62d7e55d4459574d822990bb9af9,syscc=true,proposal=0xc422039130,canname=lscc:1.0.2 -orderer.example.com | 2018-01-18 01:58:52.009 UTC [policies] CommitProposals -> DEBU 4a6 In commit adding relative sub-policy Org1MSP/Readers to Application -peer0.org1.example.com | [800 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 -orderer.example.com | 2018-01-18 01:58:52.009 UTC [policies] GetPolicy -> DEBU 4a7 Returning policy Writers for evaluation -peer0.org1.example.com | [801 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | 2018-01-18 01:58:52.009 UTC [policies] CommitProposals -> DEBU 4a8 In commit adding relative sub-policy Org1MSP/Writers to Application -peer0.org1.example.com | [802 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -orderer.example.com | 2018-01-18 01:58:52.009 UTC [policies] GetPolicy -> DEBU 4a9 Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:52.009 UTC [policies] CommitProposals -> DEBU 4aa In commit adding relative sub-policy Org2MSP/Writers to Application -peer0.org1.example.com | [803 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [36acd9e4]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | 2018-01-18 01:58:52.009 UTC [policies] GetPolicy -> DEBU 4ab Returning policy Admins for evaluation -orderer.example.com | 2018-01-18 01:58:52.009 UTC [policies] CommitProposals -> DEBU 4ac In commit adding relative sub-policy Org2MSP/Admins to Application -peer0.org1.example.com | [804 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [805 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | 2018-01-18 01:58:52.009 UTC [policies] GetPolicy -> DEBU 4ad Returning policy Readers for evaluation -peer0.org1.example.com | [806 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [36acd9e4]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | 2018-01-18 01:58:52.009 UTC [policies] CommitProposals -> DEBU 4ae In commit adding relative sub-policy Org2MSP/Readers to Application -peer0.org1.example.com | [807 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [36acd9e4]Move state message TRANSACTION -peer0.org1.example.com | [808 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [36acd9e4]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | 2018-01-18 01:58:52.009 UTC [policies] GetPolicy -> DEBU 4af Returning policy Admins for evaluation -peer0.org1.example.com | [809 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | 2018-01-18 01:58:52.009 UTC [policies] GetPolicy -> DEBU 4b0 Returning policy Admins for evaluation -peer0.org1.example.com | [80a 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [36acd9e4]sending state message TRANSACTION -orderer.example.com | 2018-01-18 01:58:52.009 UTC [policies] GetPolicy -> DEBU 4b1 Returning policy Writers for evaluation -peer0.org1.example.com | [80b 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [36acd9e4]Received message TRANSACTION from shim -orderer.example.com | 2018-01-18 01:58:52.009 UTC [policies] GetPolicy -> DEBU 4b2 Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:52.009 UTC [policies] GetPolicy -> DEBU 4b3 Returning policy Readers for evaluation -peer0.org1.example.com | [80c 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [36acd9e4]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | 2018-01-18 01:58:52.009 UTC [policies] GetPolicy -> DEBU 4b4 Returning policy Readers for evaluation -peer0.org1.example.com | [80d 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [36acd9e4]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | 2018-01-18 01:58:52.009 UTC [policies] GetPolicy -> DEBU 4b5 Returning policy Admins for evaluation -peer0.org1.example.com | [80e 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [36acd9e4]Transaction completed. Sending COMPLETED -orderer.example.com | 2018-01-18 01:58:52.009 UTC [policies] CommitProposals -> DEBU 4b6 In commit adding relative sub-policy OrdererOrg/Admins to Orderer -peer0.org1.example.com | [80f 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [36acd9e4]Move state message COMPLETED -orderer.example.com | 2018-01-18 01:58:52.009 UTC [policies] GetPolicy -> DEBU 4b7 Returning policy Readers for evaluation -peer0.org1.example.com | [810 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [36acd9e4]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | 2018-01-18 01:58:52.009 UTC [policies] CommitProposals -> DEBU 4b8 In commit adding relative sub-policy OrdererOrg/Readers to Orderer -peer0.org1.example.com | [811 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [36acd9e4]send state message COMPLETED -orderer.example.com | 2018-01-18 01:58:52.009 UTC [policies] GetPolicy -> DEBU 4b9 Returning policy Writers for evaluation -peer0.org1.example.com | [812 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [36acd9e4]Received message COMPLETED from shim -orderer.example.com | 2018-01-18 01:58:52.009 UTC [policies] CommitProposals -> DEBU 4ba In commit adding relative sub-policy OrdererOrg/Writers to Orderer -peer0.org1.example.com | [813 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [36acd9e4]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | 2018-01-18 01:58:52.009 UTC [policies] GetPolicy -> DEBU 4bb Returning policy Writers for evaluation -peer0.org1.example.com | [814 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [36acd9e4fedfa11372df6c96ca9f36fa4c6c62d7e55d4459574d822990bb9af9]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [815 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:36acd9e4fedfa11372df6c96ca9f36fa4c6c62d7e55d4459574d822990bb9af9 -orderer.example.com | 2018-01-18 01:58:52.010 UTC [policies] GetPolicy -> DEBU 4bc Returning policy Readers for evaluation -peer0.org1.example.com | [816 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | 2018-01-18 01:58:52.010 UTC [policies] GetPolicy -> DEBU 4bd Returning policy Writers for evaluation -peer0.org1.example.com | [817 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -orderer.example.com | 2018-01-18 01:58:52.010 UTC [policies] GetPolicy -> DEBU 4be Returning policy Admins for evaluation -orderer.example.com | 2018-01-18 01:58:52.010 UTC [policies] GetPolicy -> DEBU 4bf Returning policy Admins for evaluation -peer0.org1.example.com | [818 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -orderer.example.com | 2018-01-18 01:58:52.010 UTC [policies] CommitProposals -> DEBU 4c0 In commit adding relative sub-policy Application/Admins to Channel -orderer.example.com | 2018-01-18 01:58:52.010 UTC [policies] GetPolicy -> DEBU 4c1 Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 01:58:52.010 UTC [policies] CommitProposals -> DEBU 4c2 In commit adding relative sub-policy Application/Readers to Channel -orderer.example.com | 2018-01-18 01:58:52.010 UTC [policies] GetPolicy -> DEBU 4c3 Returning policy Org1MSP/Admins for evaluation -orderer.example.com | 2018-01-18 01:58:52.010 UTC [policies] CommitProposals -> DEBU 4c4 In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -orderer.example.com | 2018-01-18 01:58:52.010 UTC [policies] GetPolicy -> DEBU 4c5 Returning policy Org1MSP/Readers for evaluation -orderer.example.com | 2018-01-18 01:58:52.010 UTC [policies] CommitProposals -> DEBU 4c6 In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -peer0.org1.example.com | [819 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [907eb064-9c21-4247-81c4-11a02baf2003] -orderer.example.com | 2018-01-18 01:58:52.010 UTC [policies] GetPolicy -> DEBU 4c7 Returning policy Org1MSP/Writers for evaluation -peer0.org1.example.com | [81a 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -orderer.example.com | 2018-01-18 01:58:52.010 UTC [policies] CommitProposals -> DEBU 4c8 In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -peer0.org1.example.com | [81b 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 36acd9e4fedfa11372df6c96ca9f36fa4c6c62d7e55d4459574d822990bb9af9 channel id: businesschannel chaincode id: name:"lscc" -peer0.org1.example.com | [81c 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc -orderer.example.com | 2018-01-18 01:58:52.010 UTC [policies] GetPolicy -> DEBU 4c9 Returning policy Org2MSP/Writers for evaluation -peer0.org1.example.com | [81d 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 36acd9e4fedfa11372df6c96ca9f36fa4c6c62d7e55d4459574d822990bb9af9 channel id: businesschannel version: 1.0.2 -peer0.org1.example.com | [81e 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=36acd9e4fedfa11372df6c96ca9f36fa4c6c62d7e55d4459574d822990bb9af9,syscc=true,proposal=0xc422039130,canname=escc:1.0.2 -orderer.example.com | 2018-01-18 01:58:52.010 UTC [policies] CommitProposals -> DEBU 4ca In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -orderer.example.com | 2018-01-18 01:58:52.010 UTC [policies] GetPolicy -> DEBU 4cb Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:52.010 UTC [policies] CommitProposals -> DEBU 4cc In commit adding relative sub-policy Application/Writers to Channel -peer0.org1.example.com | [81f 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 -orderer.example.com | 2018-01-18 01:58:52.011 UTC [policies] GetPolicy -> DEBU 4cd Returning policy Org2MSP/Admins for evaluation -peer0.org1.example.com | [820 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | 2018-01-18 01:58:52.011 UTC [policies] CommitProposals -> DEBU 4ce In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -orderer.example.com | 2018-01-18 01:58:52.011 UTC [policies] GetPolicy -> DEBU 4cf Returning policy Org2MSP/Readers for evaluation -peer0.org1.example.com | [821 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 -peer0.org1.example.com | [822 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [36acd9e4]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | 2018-01-18 01:58:52.011 UTC [policies] CommitProposals -> DEBU 4d0 In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -peer0.org1.example.com | [823 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | 2018-01-18 01:58:52.011 UTC [policies] GetPolicy -> DEBU 4d1 Returning policy Writers for evaluation -peer0.org1.example.com | [824 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org1.example.com | [825 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [36acd9e4]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | 2018-01-18 01:58:52.011 UTC [policies] CommitProposals -> DEBU 4d2 In commit adding relative sub-policy Orderer/Writers to Channel -orderer.example.com | 2018-01-18 01:58:52.011 UTC [policies] GetPolicy -> DEBU 4d3 Returning policy Admins for evaluation -peer0.org1.example.com | [826 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [36acd9e4]Move state message TRANSACTION -peer0.org1.example.com | [827 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [36acd9e4]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [828 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | 2018-01-18 01:58:52.011 UTC [policies] CommitProposals -> DEBU 4d4 In commit adding relative sub-policy Orderer/Admins to Channel -orderer.example.com | 2018-01-18 01:58:52.011 UTC [policies] GetPolicy -> DEBU 4d5 Returning policy OrdererOrg/Admins for evaluation -orderer.example.com | 2018-01-18 01:58:52.011 UTC [policies] CommitProposals -> DEBU 4d6 In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -orderer.example.com | 2018-01-18 01:58:52.011 UTC [policies] GetPolicy -> DEBU 4d7 Returning policy OrdererOrg/Readers for evaluation -orderer.example.com | 2018-01-18 01:58:52.011 UTC [policies] CommitProposals -> DEBU 4d8 In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -peer0.org1.example.com | [829 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [36acd9e4]sending state message TRANSACTION -orderer.example.com | 2018-01-18 01:58:52.011 UTC [policies] GetPolicy -> DEBU 4d9 Returning policy OrdererOrg/Writers for evaluation -orderer.example.com | 2018-01-18 01:58:52.011 UTC [policies] CommitProposals -> DEBU 4da In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -orderer.example.com | 2018-01-18 01:58:52.011 UTC [policies] GetPolicy -> DEBU 4db Returning policy BlockValidation for evaluation -orderer.example.com | 2018-01-18 01:58:52.011 UTC [policies] CommitProposals -> DEBU 4dc In commit adding relative sub-policy Orderer/BlockValidation to Channel -orderer.example.com | 2018-01-18 01:58:52.011 UTC [policies] GetPolicy -> DEBU 4dd Returning policy Readers for evaluation -peer0.org1.example.com | [82a 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [36acd9e4]Received message TRANSACTION from shim -orderer.example.com | 2018-01-18 01:58:52.011 UTC [policies] CommitProposals -> DEBU 4de In commit adding relative sub-policy Orderer/Readers to Channel -orderer.example.com | 2018-01-18 01:58:52.011 UTC [policies] GetPolicy -> DEBU 4df Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 01:58:52.011 UTC [policies] GetPolicy -> DEBU 4e0 Returning policy Readers for evaluation -peer0.org1.example.com | [82b 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [36acd9e4]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | 2018-01-18 01:58:52.011 UTC [policies] GetPolicy -> DEBU 4e1 Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:52.012 UTC [policies] GetPolicy -> DEBU 4e2 Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:52.012 UTC [policies] GetPolicy -> DEBU 4e3 Returning policy Admins for evaluation -orderer.example.com | 2018-01-18 01:58:52.012 UTC [policies] GetPolicy -> DEBU 4e4 Returning policy Admins for evaluation -orderer.example.com | 2018-01-18 01:58:52.012 UTC [policies] GetPolicy -> DEBU 4e5 Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 01:58:52.012 UTC [policies] CommitProposals -> DEBU 4e6 As expected, current configuration has policy '/Channel/Readers' -peer0.org1.example.com | [82c 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [36acd9e4]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | 2018-01-18 01:58:52.012 UTC [policies] GetPolicy -> DEBU 4e7 Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:52.012 UTC [policies] CommitProposals -> DEBU 4e8 As expected, current configuration has policy '/Channel/Writers' -orderer.example.com | 2018-01-18 01:58:52.012 UTC [policies] GetPolicy -> DEBU 4e9 Returning policy Application/Readers for evaluation -orderer.example.com | 2018-01-18 01:58:52.012 UTC [policies] CommitProposals -> DEBU 4ea As expected, current configuration has policy '/Channel/Application/Readers' -orderer.example.com | 2018-01-18 01:58:52.012 UTC [policies] GetPolicy -> DEBU 4eb Returning policy Application/Writers for evaluation -orderer.example.com | 2018-01-18 01:58:52.012 UTC [policies] CommitProposals -> DEBU 4ec As expected, current configuration has policy '/Channel/Application/Writers' -peer0.org1.example.com | [82d 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -orderer.example.com | 2018-01-18 01:58:52.012 UTC [policies] GetPolicy -> DEBU 4ed Returning policy Application/Admins for evaluation -orderer.example.com | 2018-01-18 01:58:52.012 UTC [policies] CommitProposals -> DEBU 4ee As expected, current configuration has policy '/Channel/Application/Admins' -orderer.example.com | 2018-01-18 01:58:52.012 UTC [policies] GetPolicy -> DEBU 4ef Returning policy Orderer/BlockValidation for evaluation -peer0.org1.example.com | [82e 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -orderer.example.com | 2018-01-18 01:58:52.012 UTC [policies] CommitProposals -> DEBU 4f0 As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -orderer.example.com | 2018-01-18 01:58:52.012 UTC [orderer/common/broadcast] Handle -> DEBU 4f1 [channel: testchainid] Broadcast has successfully enqueued message of type ORDERER_TRANSACTION -orderer.example.com | 2018-01-18 01:58:52.013 UTC [policies] GetPolicy -> DEBU 4f2 Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:52.013 UTC [cauthdsl] func1 -> DEBU 4f3 0xc420026028 gate 1516240732013234104 evaluation starts -orderer.example.com | 2018-01-18 01:58:52.013 UTC [cauthdsl] func2 -> DEBU 4f4 0xc420026028 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-18 01:58:52.013 UTC [cauthdsl] func2 -> DEBU 4f5 0xc420026028 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a -peer0.org1.example.com | [82f 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [36acd9e4]Transaction completed. Sending COMPLETED -orderer.example.com | 2018-01-18 01:58:52.013 UTC [msp/identity] newIdentity -> DEBU 4f6 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [830 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [36acd9e4]Move state message COMPLETED -peer0.org1.example.com | [831 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [36acd9e4]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw -peer0.org1.example.com | [832 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [36acd9e4]send state message COMPLETED -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [833 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [36acd9e4]Received message COMPLETED from shim -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer0.org1.example.com | [834 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [36acd9e4]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [835 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [36acd9e4fedfa11372df6c96ca9f36fa4c6c62d7e55d4459574d822990bb9af9]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [836 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:36acd9e4fedfa11372df6c96ca9f36fa4c6c62d7e55d4459574d822990bb9af9 -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE -peer0.org1.example.com | [837 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer0.org1.example.com | [838 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq -peer0.org1.example.com | [839 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -orderer.example.com | hkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz -orderer.example.com | MKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw -peer0.org1.example.com | [83a 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [907eb064-9c21-4247-81c4-11a02baf2003] -orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN -peer0.org1.example.com | [83b 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -orderer.example.com | RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH -peer0.org1.example.com | [83c 01-18 02:00:27.69 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -orderer.example.com | /4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl -peer0.org1.example.com | [83d 01-18 02:00:27.69 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421f720f0 -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [83e 01-18 02:00:27.69 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org1.example.com | [83f 01-18 02:00:27.69 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [840 01-18 02:00:27.69 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -orderer.example.com | 2018-01-18 01:58:52.013 UTC [msp] SatisfiesPrincipal -> DEBU 4f7 Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | 2018-01-18 01:58:52.013 UTC [msp] Validate -> DEBU 4f8 MSP OrdererMSP validating identity -peer0.org1.example.com | [841 01-18 02:00:27.69 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | 2018-01-18 01:58:52.014 UTC [cauthdsl] func2 -> DEBU 4f9 0xc420026028 principal matched by identity 0 -peer0.org1.example.com | [842 01-18 02:00:27.69 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | 2018-01-18 01:58:52.014 UTC [msp/identity] Verify -> DEBU 4fa Verify: digest = 00000000 0e f1 13 89 ab 59 12 bf 66 d9 1d 41 e6 47 42 e3 |.....Y..f..A.GB.| -orderer.example.com | 00000010 db ce c8 72 e0 b8 d1 19 a3 49 9e 68 de 11 de 32 |...r.....I.h...2| -peer0.org1.example.com | [843 01-18 02:00:27.69 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422039ea0, header 0xc421f72120 -orderer.example.com | 2018-01-18 01:58:52.014 UTC [msp/identity] Verify -> DEBU 4fb Verify: sig = 00000000 30 45 02 21 00 87 2f 92 95 54 fb 85 e0 ff ce 19 |0E.!../..T......| -peer0.org1.example.com | [844 01-18 02:00:27.69 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -peer0.org1.example.com | [845 01-18 02:00:27.69 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 24e361c15bec5f76498a283f5b3df9f58b598be7cbff7c4950e47796f7c92014 -orderer.example.com | 00000010 8d dc 61 d1 ea fa 81 9b fa 83 0b 66 ee c6 8f 3e |..a........f...>| -peer0.org1.example.com | [846 01-18 02:00:27.69 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [24e361c15bec5f76498a283f5b3df9f58b598be7cbff7c4950e47796f7c92014] -orderer.example.com | 00000020 64 0d 71 9b 09 02 20 4d 7e d7 b1 be eb 57 8f 9a |d.q... M~....W..| -orderer.example.com | 00000030 17 5f 57 5b d4 ad f3 f1 20 b2 bc a5 05 58 b3 2c |._W[.... ....X.,| -peer0.org1.example.com | [847 01-18 02:00:27.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | 00000040 9f 3b e7 3c 89 72 68 |.;.<.rh| -orderer.example.com | 2018-01-18 01:58:52.014 UTC [cauthdsl] func2 -> DEBU 4fc 0xc420026028 principal evaluation succeeds for identity 0 -peer0.org1.example.com | [848 01-18 02:00:27.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [527193b7-82ea-4a76-9b1e-b04343c02e55] -orderer.example.com | 2018-01-18 01:58:52.014 UTC [cauthdsl] func1 -> DEBU 4fd 0xc420026028 gate 1516240732013234104 evaluation succeeds -orderer.example.com | 2018-01-18 01:58:52.014 UTC [orderer/common/sigfilter] Apply -> DEBU 4fe Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420381280 1 [0xc42014a5d8]}) Writers]} -orderer.example.com | 2018-01-18 01:58:52.014 UTC [msp] GetLocalMSP -> DEBU 4ff Returning existing local MSP -peer0.org1.example.com | [849 01-18 02:00:27.69 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 24e361c15bec5f76498a283f5b3df9f58b598be7cbff7c4950e47796f7c92014 channel id: businesschannel -orderer.example.com | 2018-01-18 01:58:52.014 UTC [msp] GetDefaultSigningIdentity -> DEBU 500 Obtaining default signing identity -peer0.org1.example.com | [84a 01-18 02:00:27.69 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 24e361c15bec5f76498a283f5b3df9f58b598be7cbff7c4950e47796f7c92014 channel id: businesschannel version: 1.0.2 -peer0.org1.example.com | [84b 01-18 02:00:27.69 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=24e361c15bec5f76498a283f5b3df9f58b598be7cbff7c4950e47796f7c92014,syscc=true,proposal=0xc422039ea0,canname=lscc:1.0.2 -orderer.example.com | 2018-01-18 01:58:52.014 UTC [msp] GetLocalMSP -> DEBU 501 Returning existing local MSP -peer0.org1.example.com | [84c 01-18 02:00:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 -peer0.org1.example.com | [84d 01-18 02:00:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [84e 01-18 02:00:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -peer0.org1.example.com | [84f 01-18 02:00:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [24e361c1]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [850 01-18 02:00:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [851 01-18 02:00:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | 2018-01-18 01:58:52.014 UTC [msp] GetDefaultSigningIdentity -> DEBU 502 Obtaining default signing identity -peer0.org1.example.com | [852 01-18 02:00:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [24e361c1]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [853 01-18 02:00:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [24e361c1]Move state message TRANSACTION -orderer.example.com | 2018-01-18 01:58:52.014 UTC [msp/identity] Sign -> DEBU 503 Sign: plaintext: 0AB7060A1B08011A0608DCFEFFD20522...07577269746572731A0641646D696E73 -peer0.org1.example.com | [854 01-18 02:00:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [24e361c1]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [855 01-18 02:00:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [856 01-18 02:00:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [24e361c1]sending state message TRANSACTION -peer0.org1.example.com | [857 01-18 02:00:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [24e361c1]Received message TRANSACTION from shim -orderer.example.com | 2018-01-18 01:58:52.014 UTC [msp/identity] Sign -> DEBU 504 Sign: digest: AE8E1C872814EF9A144F05935113C92DA20DBDF502053942E7AEA68C4A8958F0 -peer0.org1.example.com | [858 01-18 02:00:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [24e361c1]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [859 01-18 02:00:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [24e361c1]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [85a 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.GetStateByRange.handleGetStateByRange.handleGetStateByRange -> DEBU [24e361c1]Sending GET_STATE_BY_RANGE -peer0.org1.example.com | [85b 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [24e361c1]Received message GET_STATE_BY_RANGE from shim -orderer.example.com | 2018-01-18 01:58:52.015 UTC [common/config] NewStandardValues -> DEBU 505 Initializing protos for *config.ChannelProtos -peer0.org1.example.com | [85c 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [24e361c1]Fabric side Handling ChaincodeMessage of type: GET_STATE_BY_RANGE in state ready -peer0.org1.example.com | [85d 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func4.afterGetStateByRange -> DEBU Received GET_STATE_BY_RANGE, invoking get state from ledger -peer0.org1.example.com | [85e 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func4.afterGetStateByRange -> DEBU Exiting GET_STATE_BY_RANGE -peer0.org1.example.com | [85f 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | 2018-01-18 01:58:52.015 UTC [common/config] initializeProtosStruct -> DEBU 506 Processing field: HashingAlgorithm -peer0.org1.example.com | [860 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] GetStateRangeScanIterator.getStateRangeScanIterator.newResultsItr.GetStateRangeScanIterator.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x0, 0x6c, 0x73, 0x63, 0x63, 0x0, 0x1}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x0, 0x6c, 0x73, 0x63, 0x63, 0x1}] -orderer.example.com | 2018-01-18 01:58:52.015 UTC [common/config] initializeProtosStruct -> DEBU 507 Processing field: BlockDataHashingStructure -peer0.org1.example.com | [861 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/rwsetutil] getQueryResponse.Next.updateRangeQueryInfo.AddResult -> DEBU Adding a result -orderer.example.com | 2018-01-18 01:58:52.015 UTC [common/config] initializeProtosStruct -> DEBU 508 Processing field: OrdererAddresses -orderer.example.com | 2018-01-18 01:58:52.015 UTC [common/config] initializeProtosStruct -> DEBU 509 Processing field: Consortium -peer0.org1.example.com | [862 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU Got keys and values. Sending RESPONSE -orderer.example.com | 2018-01-18 01:58:52.015 UTC [common/configtx] addToMap -> DEBU 50a Adding to config map: [Groups] /Channel -orderer.example.com | 2018-01-18 01:58:52.015 UTC [common/configtx] addToMap -> DEBU 50b Adding to config map: [Groups] /Channel/Orderer -peer0.org1.example.com | [863 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [24e361c1]handleGetStateByRange serial send RESPONSE -orderer.example.com | 2018-01-18 01:58:52.015 UTC [common/configtx] addToMap -> DEBU 50c Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -peer0.org1.example.com | [864 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [24e361c1]Received message RESPONSE from shim -orderer.example.com | 2018-01-18 01:58:52.015 UTC [common/configtx] addToMap -> DEBU 50d Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -peer0.org1.example.com | [865 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [24e361c1]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer0.org1.example.com | [866 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [24e361c1]before send -orderer.example.com | 2018-01-18 01:58:52.015 UTC [common/configtx] addToMap -> DEBU 50e Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -orderer.example.com | 2018-01-18 01:58:52.015 UTC [common/configtx] addToMap -> DEBU 50f Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer0.org1.example.com | [867 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [24e361c1]after send -peer0.org1.example.com | [868 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [24e361c1]Received RESPONSE, communicated (state:ready) -orderer.example.com | 2018-01-18 01:58:52.015 UTC [common/configtx] addToMap -> DEBU 510 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer0.org1.example.com | [869 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.GetStateByRange.handleGetStateByRange.handleGetStateByRange -> DEBU [24e361c1]Received RESPONSE. Successfully got range -orderer.example.com | 2018-01-18 01:58:52.016 UTC [common/configtx] addToMap -> DEBU 511 Adding to config map: [Values] /Channel/Orderer/BatchTimeout -orderer.example.com | 2018-01-18 01:58:52.016 UTC [common/configtx] addToMap -> DEBU 512 Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -peer0.org1.example.com | [86a 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.Close.handleQueryStateClose -> DEBU [24e361c1]Sending QUERY_STATE_CLOSE -orderer.example.com | 2018-01-18 01:58:52.016 UTC [common/configtx] addToMap -> DEBU 513 Adding to config map: [Values] /Channel/Orderer/ConsensusType -peer0.org1.example.com | [86b 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [24e361c1]Received message QUERY_STATE_CLOSE from shim -orderer.example.com | 2018-01-18 01:58:52.016 UTC [common/configtx] addToMap -> DEBU 514 Adding to config map: [Values] /Channel/Orderer/BatchSize -peer0.org1.example.com | [86c 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [24e361c1]Fabric side Handling ChaincodeMessage of type: QUERY_STATE_CLOSE in state ready -orderer.example.com | 2018-01-18 01:58:52.016 UTC [common/configtx] addToMap -> DEBU 515 Adding to config map: [Policy] /Channel/Orderer/Writers -peer0.org1.example.com | [86d 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func8.afterQueryStateClose -> DEBU Received QUERY_STATE_CLOSE, invoking query state close from ledger -peer0.org1.example.com | [86e 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func8.afterQueryStateClose -> DEBU Exiting QUERY_STATE_CLOSE -orderer.example.com | 2018-01-18 01:58:52.016 UTC [common/configtx] addToMap -> DEBU 516 Adding to config map: [Policy] /Channel/Orderer/Admins -peer0.org1.example.com | [86f 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [870 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU Closed. Sending RESPONSE -orderer.example.com | 2018-01-18 01:58:52.016 UTC [common/configtx] addToMap -> DEBU 517 Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer0.org1.example.com | [871 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [24e361c1]handleQueryStateClose serial send RESPONSE -orderer.example.com | 2018-01-18 01:58:52.016 UTC [common/configtx] addToMap -> DEBU 518 Adding to config map: [Policy] /Channel/Orderer/Readers -peer0.org1.example.com | [872 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [24e361c1]Received message RESPONSE from shim -orderer.example.com | 2018-01-18 01:58:52.016 UTC [common/configtx] addToMap -> DEBU 519 Adding to config map: [Groups] /Channel/Application -peer0.org1.example.com | [873 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [24e361c1]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer0.org1.example.com | [874 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [24e361c1]before send -orderer.example.com | 2018-01-18 01:58:52.016 UTC [common/configtx] addToMap -> DEBU 51a Adding to config map: [Groups] /Channel/Application/Org1MSP -peer0.org1.example.com | [875 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [24e361c1]after send -orderer.example.com | 2018-01-18 01:58:52.016 UTC [common/configtx] addToMap -> DEBU 51b Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -orderer.example.com | 2018-01-18 01:58:52.016 UTC [common/configtx] addToMap -> DEBU 51c Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org1.example.com | [876 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [24e361c1]Received RESPONSE, communicated (state:ready) -orderer.example.com | 2018-01-18 01:58:52.016 UTC [common/configtx] addToMap -> DEBU 51d Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | 2018-01-18 01:58:52.016 UTC [common/configtx] addToMap -> DEBU 51e Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org1.example.com | [877 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.Close.handleQueryStateClose -> DEBU [24e361c1]Received RESPONSE. Successfully got range -orderer.example.com | 2018-01-18 01:58:52.016 UTC [common/configtx] addToMap -> DEBU 51f Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | 2018-01-18 01:58:52.017 UTC [common/configtx] addToMap -> DEBU 520 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -peer0.org1.example.com | [878 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [24e361c1]Transaction completed. Sending COMPLETED -orderer.example.com | 2018-01-18 01:58:52.017 UTC [common/configtx] addToMap -> DEBU 521 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org1.example.com | [879 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [24e361c1]Move state message COMPLETED -orderer.example.com | 2018-01-18 01:58:52.017 UTC [common/configtx] addToMap -> DEBU 522 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer0.org1.example.com | [87a 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [24e361c1]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | 2018-01-18 01:58:52.017 UTC [common/configtx] addToMap -> DEBU 523 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org1.example.com | [87b 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [24e361c1]send state message COMPLETED -orderer.example.com | 2018-01-18 01:58:52.017 UTC [common/configtx] addToMap -> DEBU 524 Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy -peer0.org1.example.com | [87c 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [24e361c1]Received message COMPLETED from shim -peer0.org1.example.com | [87d 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [24e361c1]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | 2018-01-18 01:58:52.017 UTC [common/configtx] addToMap -> DEBU 525 Adding to config map: [Values] /Channel/BlockDataHashingStructure -orderer.example.com | 2018-01-18 01:58:52.017 UTC [common/configtx] addToMap -> DEBU 526 Adding to config map: [Values] /Channel/OrdererAddresses -peer0.org1.example.com | [87e 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [24e361c15bec5f76498a283f5b3df9f58b598be7cbff7c4950e47796f7c92014]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [87f 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:24e361c15bec5f76498a283f5b3df9f58b598be7cbff7c4950e47796f7c92014 -orderer.example.com | 2018-01-18 01:58:52.017 UTC [common/configtx] addToMap -> DEBU 527 Adding to config map: [Values] /Channel/Consortium -peer0.org1.example.com | [880 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | 2018-01-18 01:58:52.017 UTC [common/configtx] addToMap -> DEBU 528 Adding to config map: [Values] /Channel/HashingAlgorithm -peer0.org1.example.com | [881 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -orderer.example.com | 2018-01-18 01:58:52.017 UTC [common/configtx] addToMap -> DEBU 529 Adding to config map: [Policy] /Channel/Admins -peer0.org1.example.com | [882 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer0.org1.example.com | [883 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [527193b7-82ea-4a76-9b1e-b04343c02e55] -peer0.org1.example.com | [884 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -orderer.example.com | 2018-01-18 01:58:52.017 UTC [common/configtx] addToMap -> DEBU 52a Adding to config map: [Policy] /Channel/Readers -peer0.org1.example.com | [885 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 24e361c15bec5f76498a283f5b3df9f58b598be7cbff7c4950e47796f7c92014 channel id: businesschannel chaincode id: name:"lscc" -orderer.example.com | 2018-01-18 01:58:52.017 UTC [common/configtx] addToMap -> DEBU 52b Adding to config map: [Policy] /Channel/Writers -peer0.org1.example.com | [886 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc -peer0.org1.example.com | [887 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 24e361c15bec5f76498a283f5b3df9f58b598be7cbff7c4950e47796f7c92014 channel id: businesschannel version: 1.0.2 -orderer.example.com | 2018-01-18 01:58:52.017 UTC [common/configtx] processConfig -> DEBU 52c Beginning new config for channel businesschannel -orderer.example.com | 2018-01-18 01:58:52.017 UTC [common/config] NewStandardValues -> DEBU 52d Initializing protos for *config.ChannelProtos -peer0.org1.example.com | [888 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=24e361c15bec5f76498a283f5b3df9f58b598be7cbff7c4950e47796f7c92014,syscc=true,proposal=0xc422039ea0,canname=escc:1.0.2 -orderer.example.com | 2018-01-18 01:58:52.018 UTC [common/config] initializeProtosStruct -> DEBU 52e Processing field: HashingAlgorithm -peer0.org1.example.com | [889 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 -peer0.org1.example.com | [88a 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | 2018-01-18 01:58:52.018 UTC [common/config] initializeProtosStruct -> DEBU 52f Processing field: BlockDataHashingStructure -orderer.example.com | 2018-01-18 01:58:52.018 UTC [common/config] initializeProtosStruct -> DEBU 530 Processing field: OrdererAddresses -peer0.org1.example.com | [88b 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 -orderer.example.com | 2018-01-18 01:58:52.018 UTC [common/config] initializeProtosStruct -> DEBU 531 Processing field: Consortium -peer0.org1.example.com | [88c 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [24e361c1]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | 2018-01-18 01:58:52.018 UTC [policies] ProposePolicy -> DEBU 532 Proposed new policy Writers for Channel -peer0.org1.example.com | [88d 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [88e 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org1.example.com | [88f 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [24e361c1]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | 2018-01-18 01:58:52.018 UTC [policies] ProposePolicy -> DEBU 533 Proposed new policy Admins for Channel -peer0.org1.example.com | [890 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [24e361c1]Move state message TRANSACTION -peer0.org1.example.com | [891 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [24e361c1]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | 2018-01-18 01:58:52.018 UTC [policies] ProposePolicy -> DEBU 534 Proposed new policy Readers for Channel -peer0.org1.example.com | [892 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | 2018-01-18 01:58:52.018 UTC [common/config] NewStandardValues -> DEBU 535 Initializing protos for *config.OrdererProtos -peer0.org1.example.com | [893 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [24e361c1]sending state message TRANSACTION -peer0.org1.example.com | [894 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [24e361c1]Received message TRANSACTION from shim -orderer.example.com | 2018-01-18 01:58:52.018 UTC [common/config] initializeProtosStruct -> DEBU 536 Processing field: ConsensusType -peer0.org1.example.com | [895 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [24e361c1]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [896 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [24e361c1]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | 2018-01-18 01:58:52.018 UTC [common/config] initializeProtosStruct -> DEBU 537 Processing field: BatchSize -orderer.example.com | 2018-01-18 01:58:52.018 UTC [common/config] initializeProtosStruct -> DEBU 538 Processing field: BatchTimeout -orderer.example.com | 2018-01-18 01:58:52.018 UTC [common/config] initializeProtosStruct -> DEBU 539 Processing field: KafkaBrokers -orderer.example.com | 2018-01-18 01:58:52.018 UTC [common/config] initializeProtosStruct -> DEBU 53a Processing field: ChannelRestrictions -peer0.org1.example.com | [897 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -orderer.example.com | 2018-01-18 01:58:52.018 UTC [policies] ProposePolicy -> DEBU 53b Proposed new policy Readers for Orderer -orderer.example.com | 2018-01-18 01:58:52.018 UTC [policies] ProposePolicy -> DEBU 53c Proposed new policy Writers for Orderer -peer0.org1.example.com | [898 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -orderer.example.com | 2018-01-18 01:58:52.018 UTC [policies] ProposePolicy -> DEBU 53d Proposed new policy Admins for Orderer -orderer.example.com | 2018-01-18 01:58:52.018 UTC [policies] ProposePolicy -> DEBU 53e Proposed new policy BlockValidation for Orderer -orderer.example.com | 2018-01-18 01:58:52.018 UTC [common/config] NewStandardValues -> DEBU 53f Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:52.018 UTC [common/config] initializeProtosStruct -> DEBU 540 Processing field: MSP -orderer.example.com | 2018-01-18 01:58:52.018 UTC [policies] ProposePolicy -> DEBU 541 Proposed new policy Readers for OrdererOrg -orderer.example.com | 2018-01-18 01:58:52.018 UTC [policies] ProposePolicy -> DEBU 542 Proposed new policy Writers for OrdererOrg -orderer.example.com | 2018-01-18 01:58:52.018 UTC [policies] ProposePolicy -> DEBU 543 Proposed new policy Admins for OrdererOrg -orderer.example.com | 2018-01-18 01:58:52.018 UTC [common/config] NewStandardValues -> DEBU 544 Initializing protos for *struct {} -orderer.example.com | 2018-01-18 01:58:52.018 UTC [policies] ProposePolicy -> DEBU 545 Proposed new policy ChannelCreationPolicy for Application -orderer.example.com | 2018-01-18 01:58:52.018 UTC [common/config] NewStandardValues -> DEBU 546 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:52.018 UTC [common/config] initializeProtosStruct -> DEBU 547 Processing field: MSP -orderer.example.com | 2018-01-18 01:58:52.019 UTC [common/config] NewStandardValues -> DEBU 548 Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | 2018-01-18 01:58:52.019 UTC [common/config] initializeProtosStruct -> DEBU 549 Processing field: AnchorPeers -orderer.example.com | 2018-01-18 01:58:52.019 UTC [common/config] NewStandardValues -> DEBU 54a Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:52.019 UTC [common/config] initializeProtosStruct -> DEBU 54b Processing field: MSP -peer0.org1.example.com | [899 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [24e361c1]Transaction completed. Sending COMPLETED -orderer.example.com | 2018-01-18 01:58:52.019 UTC [policies] ProposePolicy -> DEBU 54c Proposed new policy Readers for Org1MSP -orderer.example.com | 2018-01-18 01:58:52.019 UTC [policies] ProposePolicy -> DEBU 54d Proposed new policy Writers for Org1MSP -orderer.example.com | 2018-01-18 01:58:52.019 UTC [policies] ProposePolicy -> DEBU 54e Proposed new policy Admins for Org1MSP -peer0.org1.example.com | [89a 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [24e361c1]Move state message COMPLETED -peer0.org1.example.com | [89b 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [24e361c1]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | 2018-01-18 01:58:52.019 UTC [common/config] NewStandardValues -> DEBU 54f Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:52.019 UTC [common/config] initializeProtosStruct -> DEBU 550 Processing field: MSP -orderer.example.com | 2018-01-18 01:58:52.019 UTC [common/config] NewStandardValues -> DEBU 551 Initializing protos for *config.ApplicationOrgProtos -peer0.org1.example.com | [89c 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [24e361c1]send state message COMPLETED -orderer.example.com | 2018-01-18 01:58:52.019 UTC [common/config] initializeProtosStruct -> DEBU 552 Processing field: AnchorPeers -peer0.org1.example.com | [89d 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [24e361c1]Received message COMPLETED from shim -peer0.org1.example.com | [89e 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [24e361c1]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [89f 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [24e361c15bec5f76498a283f5b3df9f58b598be7cbff7c4950e47796f7c92014]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [8a0 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:24e361c15bec5f76498a283f5b3df9f58b598be7cbff7c4950e47796f7c92014 -orderer.example.com | 2018-01-18 01:58:52.019 UTC [common/config] NewStandardValues -> DEBU 553 Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [8a1 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | 2018-01-18 01:58:52.019 UTC [common/config] initializeProtosStruct -> DEBU 554 Processing field: MSP -peer0.org1.example.com | [8a2 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -orderer.example.com | 2018-01-18 01:58:52.019 UTC [policies] ProposePolicy -> DEBU 555 Proposed new policy Writers for Org2MSP -peer0.org1.example.com | [8a3 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -orderer.example.com | 2018-01-18 01:58:52.019 UTC [policies] ProposePolicy -> DEBU 556 Proposed new policy Admins for Org2MSP -peer0.org1.example.com | [8a4 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [527193b7-82ea-4a76-9b1e-b04343c02e55] -orderer.example.com | 2018-01-18 01:58:52.019 UTC [policies] ProposePolicy -> DEBU 557 Proposed new policy Readers for Org2MSP -peer0.org1.example.com | [8a5 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -orderer.example.com | 2018-01-18 01:58:52.019 UTC [common/config] validateMSP -> DEBU 558 Setting up MSP for org OrdererOrg -peer0.org1.example.com | [8a6 01-18 02:00:28.05 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -orderer.example.com | 2018-01-18 01:58:52.019 UTC [msp] NewBccspMsp -> DEBU 559 Creating BCCSP-based MSP instance -peer0.org1.example.com | [8a7 01-18 02:00:28.05 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421efa720 -orderer.example.com | 2018-01-18 01:58:52.019 UTC [msp] Setup -> DEBU 55a Setting up MSP instance OrdererMSP -peer0.org1.example.com | [8a8 01-18 02:00:28.05 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org1.example.com | [8a9 01-18 02:00:28.05 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [8aa 01-18 02:00:28.05 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -peer0.org1.example.com | [8ab 01-18 02:00:28.05 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [8ac 01-18 02:00:28.05 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | 2018-01-18 01:58:52.020 UTC [msp/identity] newIdentity -> DEBU 55b Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [8ad 01-18 02:00:28.05 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422012dc0, header 0xc421efa750 -orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL -peer0.org1.example.com | [8ae 01-18 02:00:28.05 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [8af 01-18 02:00:28.05 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 3b67b0431338e608b9fd0f210e25268caaac8a74158467c8b033b9293284aa99 -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -peer0.org1.example.com | [8b0 01-18 02:00:28.05 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [3b67b0431338e608b9fd0f210e25268caaac8a74158467c8b033b9293284aa99] -orderer.example.com | cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV -peer0.org1.example.com | [8b1 01-18 02:00:28.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -peer0.org1.example.com | [8b2 01-18 02:00:28.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [19acc589-27ec-42be-bd55-ce0583d717d4] -orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -peer0.org1.example.com | [8b3 01-18 02:00:28.05 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 3b67b0431338e608b9fd0f210e25268caaac8a74158467c8b033b9293284aa99 channel id: businesschannel -orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW -peer0.org1.example.com | [8b4 01-18 02:00:28.05 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 3b67b0431338e608b9fd0f210e25268caaac8a74158467c8b033b9293284aa99 channel id: businesschannel version: 1.0.2 -orderer.example.com | gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w -peer0.org1.example.com | [8b5 01-18 02:00:28.05 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.0.2,txid=3b67b0431338e608b9fd0f210e25268caaac8a74158467c8b033b9293284aa99,syscc=true,proposal=0xc422012dc0,canname=qscc:1.0.2 -orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -orderer.example.com | AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK -orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs -orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= -peer0.org1.example.com | [8b6 01-18 02:00:28.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.0.2 -peer0.org1.example.com | [8b7 01-18 02:00:28.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [8b8 01-18 02:00:28.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.2 -peer0.org1.example.com | [8b9 01-18 02:00:28.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [3b67b043]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | 2018-01-18 01:58:52.020 UTC [msp/identity] newIdentity -> DEBU 55c Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [8ba 01-18 02:00:28.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [8bb 01-18 02:00:28.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [8bc 01-18 02:00:28.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [3b67b043]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -peer0.org1.example.com | [8bd 01-18 02:00:28.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3b67b043]Move state message TRANSACTION -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -peer0.org1.example.com | [8be 01-18 02:00:28.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3b67b043]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -peer0.org1.example.com | [8bf 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [8c0 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3b67b043]sending state message TRANSACTION -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -peer0.org1.example.com | [8c1 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3b67b043]Received message TRANSACTION from shim -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -peer0.org1.example.com | [8c2 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3b67b043]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [8c3 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [3b67b043]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | 2018-01-18 01:58:52.021 UTC [msp/identity] newIdentity -> DEBU 55d Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [8c4 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -peer0.org1.example.com | [8c5 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3b67b043]Transaction completed. Sending COMPLETED -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -peer0.org1.example.com | [8c6 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3b67b043]Move state message COMPLETED -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer0.org1.example.com | [8c7 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3b67b043]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -peer0.org1.example.com | [8c8 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3b67b043]send state message COMPLETED -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -peer0.org1.example.com | [8c9 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3b67b043]Received message COMPLETED from shim -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -peer0.org1.example.com | [8ca 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3b67b043]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [8cb 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3b67b0431338e608b9fd0f210e25268caaac8a74158467c8b033b9293284aa99]HandleMessage- COMPLETED. Notify -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -peer0.org1.example.com | [8cc 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:3b67b0431338e608b9fd0f210e25268caaac8a74158467c8b033b9293284aa99 -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:52.022 UTC [msp] Validate -> DEBU 55e MSP OrdererMSP validating identity -orderer.example.com | 2018-01-18 01:58:52.023 UTC [orderer/common/deliver] Handle -> DEBU 560 Rejecting deliver because channel businesschannel not found -peer0.org1.example.com | [8cd 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | 2018-01-18 01:58:52.026 UTC [orderer/main] func1 -> DEBU 561 Closing Deliver stream -orderer.example.com | 2018-01-18 01:58:52.023 UTC [common/config] Validate -> DEBU 55f Anchor peers for org Org1MSP are -orderer.example.com | 2018-01-18 01:58:52.029 UTC [common/config] validateMSP -> DEBU 563 Setting up MSP for org Org1MSP -orderer.example.com | 2018-01-18 01:58:52.029 UTC [orderer/common/broadcast] Handle -> WARN 562 Error reading from stream: rpc error: code = Canceled desc = context canceled -peer0.org1.example.com | [8ce 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -orderer.example.com | 2018-01-18 01:58:52.030 UTC [orderer/main] func1 -> DEBU 565 Closing Broadcast stream -orderer.example.com | 2018-01-18 01:58:52.029 UTC [msp] NewBccspMsp -> DEBU 564 Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-18 01:58:52.030 UTC [msp] Setup -> DEBU 566 Setting up MSP instance Org1MSP -peer0.org1.example.com | [8cf 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -orderer.example.com | 2018-01-18 01:58:52.031 UTC [msp/identity] newIdentity -> DEBU 567 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [8d0 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [19acc589-27ec-42be-bd55-ce0583d717d4] -orderer.example.com | MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [8d1 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [8d2 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 3b67b0431338e608b9fd0f210e25268caaac8a74158467c8b033b9293284aa99 channel id: businesschannel chaincode id: name:"qscc" -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [8d3 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -peer0.org1.example.com | [8d4 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 3b67b0431338e608b9fd0f210e25268caaac8a74158467c8b033b9293284aa99 channel id: businesschannel version: 1.0.2 -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -peer0.org1.example.com | [8d5 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=3b67b0431338e608b9fd0f210e25268caaac8a74158467c8b033b9293284aa99,syscc=true,proposal=0xc422012dc0,canname=escc:1.0.2 -orderer.example.com | BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf -peer0.org1.example.com | [8d6 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 -orderer.example.com | db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -peer0.org1.example.com | [8d7 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx -peer0.org1.example.com | [8d8 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 -orderer.example.com | JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi -peer0.org1.example.com | [8d9 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [3b67b043]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ -peer0.org1.example.com | [8da 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | H7n8z1pj5w== -peer0.org1.example.com | [8db 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [8dc 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [3b67b043]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | 2018-01-18 01:58:52.032 UTC [msp/identity] newIdentity -> DEBU 568 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [8dd 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3b67b043]Move state message TRANSACTION -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [8de 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3b67b043]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [8df 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [8e0 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3b67b043]sending state message TRANSACTION -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -peer0.org1.example.com | [8e1 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3b67b043]Received message TRANSACTION from shim -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -peer0.org1.example.com | [8e2 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3b67b043]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -peer0.org1.example.com | [8e3 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [3b67b043]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -peer0.org1.example.com | [8e4 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -peer0.org1.example.com | [8e5 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -orderer.example.com | xHTBvxfK6mAzmUitFmY= -peer0.org1.example.com | [8e6 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3b67b043]Transaction completed. Sending COMPLETED -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:52.035 UTC [msp/identity] newIdentity -> DEBU 569 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [8e7 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3b67b043]Move state message COMPLETED -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -peer0.org1.example.com | [8e8 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3b67b043]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -peer0.org1.example.com | [8e9 01-18 02:00:28.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3b67b043]send state message COMPLETED -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -orderer.example.com | xHTBvxfK6mAzmUitFmY= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:52.038 UTC [msp] Validate -> DEBU 56a MSP Org1MSP validating identity -orderer.example.com | 2018-01-18 01:58:52.041 UTC [orderer/main] Deliver -> DEBU 56b Starting new Deliver handler -orderer.example.com | 2018-01-18 01:58:52.041 UTC [orderer/common/deliver] Handle -> DEBU 56c Starting new deliver loop -orderer.example.com | 2018-01-18 01:58:52.041 UTC [orderer/common/deliver] Handle -> DEBU 56d Attempting to read seek info message -peer0.org1.example.com | [8ea 01-18 02:00:28.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3b67b043]Received message COMPLETED from shim -orderer.example.com | 2018-01-18 01:58:52.041 UTC [common/config] Validate -> DEBU 56e Anchor peers for org Org2MSP are -orderer.example.com | 2018-01-18 01:58:52.041 UTC [common/config] validateMSP -> DEBU 56f Setting up MSP for org Org2MSP -peer0.org1.example.com | [8eb 01-18 02:00:28.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3b67b043]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | 2018-01-18 01:58:52.041 UTC [msp] NewBccspMsp -> DEBU 570 Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-18 01:58:52.042 UTC [msp] Setup -> DEBU 571 Setting up MSP instance Org2MSP -orderer.example.com | 2018-01-18 01:58:52.043 UTC [msp/identity] newIdentity -> DEBU 572 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [8ec 01-18 02:00:28.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3b67b0431338e608b9fd0f210e25268caaac8a74158467c8b033b9293284aa99]HandleMessage- COMPLETED. Notify -orderer.example.com | MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer0.org1.example.com | [8ed 01-18 02:00:28.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:3b67b0431338e608b9fd0f210e25268caaac8a74158467c8b033b9293284aa99 -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -orderer.example.com | mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 -orderer.example.com | sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ -orderer.example.com | xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv -peer0.org1.example.com | [8ee 01-18 02:00:28.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [8ef 01-18 02:00:28.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -orderer.example.com | WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk -peer0.org1.example.com | [8f0 01-18 02:00:28.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -orderer.example.com | SCjyRdD3aQ== -peer0.org1.example.com | [8f1 01-18 02:00:28.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [19acc589-27ec-42be-bd55-ce0583d717d4] -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:52.043 UTC [msp/identity] newIdentity -> DEBU 573 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [8f2 01-18 02:00:28.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [8f3 01-18 02:00:28.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [8f4 01-18 02:00:28.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421ed8060 -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [8f5 01-18 02:00:28.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -peer0.org1.example.com | [8f6 01-18 02:00:28.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [8f7 01-18 02:00:28.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -peer0.org1.example.com | [8f8 01-18 02:00:28.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -peer0.org1.example.com | [8f9 01-18 02:00:28.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -peer0.org1.example.com | [8fa 01-18 02:00:28.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421f92d20, header 0xc421ed8090 -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -peer0.org1.example.com | [8fb 01-18 02:00:28.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" -peer0.org1.example.com | [8fc 01-18 02:00:28.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 329b166a81f79ddd207d9d3e9deb96569efd0cbcc4d2704f6c055e1e72eba079 -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -peer0.org1.example.com | [8fd 01-18 02:00:28.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [329b166a81f79ddd207d9d3e9deb96569efd0cbcc4d2704f6c055e1e72eba079] -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -peer0.org1.example.com | [8fe 01-18 02:00:28.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -peer0.org1.example.com | [8ff 01-18 02:00:28.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [641d293a-cfeb-42bb-ba2e-366de51be8ea] -peer0.org1.example.com | [900 01-18 02:00:28.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 329b166a81f79ddd207d9d3e9deb96569efd0cbcc4d2704f6c055e1e72eba079 channel id: businesschannel -orderer.example.com | AXYxULZpXYDQXt1KaLI= -peer0.org1.example.com | [901 01-18 02:00:28.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 329b166a81f79ddd207d9d3e9deb96569efd0cbcc4d2704f6c055e1e72eba079 channel id: businesschannel version: 1.0.2 -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [902 01-18 02:00:28.22 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.0.2,txid=329b166a81f79ddd207d9d3e9deb96569efd0cbcc4d2704f6c055e1e72eba079,syscc=true,proposal=0xc421f92d20,canname=qscc:1.0.2 -peer0.org1.example.com | [903 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.0.2 -orderer.example.com | 2018-01-18 01:58:52.044 UTC [msp/identity] newIdentity -> DEBU 574 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [904 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [905 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.2 -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [906 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [329b166a]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -peer0.org1.example.com | [907 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -peer0.org1.example.com | [908 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org1.example.com | [909 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [329b166a]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [90a 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [329b166a]Move state message TRANSACTION -peer0.org1.example.com | [90b 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [329b166a]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -peer0.org1.example.com | [90c 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -peer0.org1.example.com | [90d 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [329b166a]sending state message TRANSACTION -peer0.org1.example.com | [90e 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [329b166a]Received message TRANSACTION from shim -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -peer0.org1.example.com | [90f 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [329b166a]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [910 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [329b166a]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -peer0.org1.example.com | [911 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetBlockByNumber on chain: businesschannel -orderer.example.com | AXYxULZpXYDQXt1KaLI= -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [912 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [2] -peer0.org1.example.com | [913 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/ledgersData/chains/chains/businesschannel/blockfile_000000], startOffset=[25668] -peer0.org1.example.com | [914 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[28898], Going to peek [8] bytes -orderer.example.com | 2018-01-18 01:58:52.044 UTC [msp] Validate -> DEBU 575 MSP Org2MSP validating identity -orderer.example.com | 2018-01-18 01:58:52.044 UTC [msp] Setup -> DEBU 576 Setting up the MSP manager (3 msps) -peer0.org1.example.com | [915 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13789], placementInfo={fileNum=[0], startOffset=[25668], bytesOffset=[25670]} -orderer.example.com | 2018-01-18 01:58:52.044 UTC [msp] Setup -> DEBU 577 MSP manager setup complete, setup 3 msps -peer0.org1.example.com | [916 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [329b166a]Transaction completed. Sending COMPLETED -orderer.example.com | 2018-01-18 01:58:52.044 UTC [policies] GetPolicy -> DEBU 578 Returning policy Admins for evaluation -peer0.org1.example.com | [917 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [329b166a]Move state message COMPLETED -orderer.example.com | 2018-01-18 01:58:52.044 UTC [policies] CommitProposals -> DEBU 579 In commit adding relative sub-policy OrdererOrg/Admins to Orderer -orderer.example.com | 2018-01-18 01:58:52.044 UTC [policies] GetPolicy -> DEBU 57a Returning policy Readers for evaluation -peer0.org1.example.com | [918 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [329b166a]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | 2018-01-18 01:58:52.045 UTC [policies] CommitProposals -> DEBU 57b In commit adding relative sub-policy OrdererOrg/Readers to Orderer -orderer.example.com | 2018-01-18 01:58:52.045 UTC [policies] GetPolicy -> DEBU 57c Returning policy Writers for evaluation -peer0.org1.example.com | [919 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [329b166a]send state message COMPLETED -orderer.example.com | 2018-01-18 01:58:52.045 UTC [policies] CommitProposals -> DEBU 57d In commit adding relative sub-policy OrdererOrg/Writers to Orderer -peer0.org1.example.com | [91a 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [329b166a]Received message COMPLETED from shim -orderer.example.com | 2018-01-18 01:58:52.045 UTC [policies] GetPolicy -> DEBU 57e Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 01:58:52.045 UTC [policies] GetPolicy -> DEBU 57f Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:52.045 UTC [policies] GetPolicy -> DEBU 580 Returning policy Admins for evaluation -peer0.org1.example.com | [91b 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [329b166a]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | 2018-01-18 01:58:52.045 UTC [policies] GetPolicy -> DEBU 581 Returning policy Writers for evaluation -peer0.org1.example.com | [91c 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [329b166a81f79ddd207d9d3e9deb96569efd0cbcc4d2704f6c055e1e72eba079]HandleMessage- COMPLETED. Notify -orderer.example.com | 2018-01-18 01:58:52.045 UTC [policies] GetPolicy -> DEBU 582 Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:52.045 UTC [policies] CommitProposals -> DEBU 583 In commit adding relative sub-policy Org1MSP/Writers to Application -orderer.example.com | 2018-01-18 01:58:52.045 UTC [policies] GetPolicy -> DEBU 584 Returning policy Admins for evaluation -peer0.org1.example.com | [91d 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:329b166a81f79ddd207d9d3e9deb96569efd0cbcc4d2704f6c055e1e72eba079 -orderer.example.com | 2018-01-18 01:58:52.045 UTC [policies] CommitProposals -> DEBU 585 In commit adding relative sub-policy Org1MSP/Admins to Application -peer0.org1.example.com | [91e 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | 2018-01-18 01:58:52.045 UTC [policies] GetPolicy -> DEBU 586 Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 01:58:52.045 UTC [policies] CommitProposals -> DEBU 587 In commit adding relative sub-policy Org1MSP/Readers to Application -peer0.org1.example.com | [91f 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -orderer.example.com | 2018-01-18 01:58:52.045 UTC [policies] GetPolicy -> DEBU 588 Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:52.045 UTC [policies] CommitProposals -> DEBU 589 In commit adding relative sub-policy Org2MSP/Writers to Application -peer0.org1.example.com | [920 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -orderer.example.com | 2018-01-18 01:58:52.045 UTC [policies] GetPolicy -> DEBU 58a Returning policy Admins for evaluation -orderer.example.com | 2018-01-18 01:58:52.045 UTC [policies] CommitProposals -> DEBU 58b In commit adding relative sub-policy Org2MSP/Admins to Application -peer0.org1.example.com | [921 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [641d293a-cfeb-42bb-ba2e-366de51be8ea] -orderer.example.com | 2018-01-18 01:58:52.045 UTC [policies] GetPolicy -> DEBU 58c Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 01:58:52.045 UTC [policies] CommitProposals -> DEBU 58d In commit adding relative sub-policy Org2MSP/Readers to Application -peer0.org1.example.com | [922 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -orderer.example.com | 2018-01-18 01:58:52.045 UTC [policies] GetPolicy -> DEBU 58e Returning policy Admins for evaluation -peer0.org1.example.com | [923 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 329b166a81f79ddd207d9d3e9deb96569efd0cbcc4d2704f6c055e1e72eba079 channel id: businesschannel chaincode id: name:"qscc" -orderer.example.com | 2018-01-18 01:58:52.045 UTC [policies] GetPolicy -> DEBU 58f Returning policy Admins for evaluation -peer0.org1.example.com | [924 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc -peer0.org1.example.com | [925 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 329b166a81f79ddd207d9d3e9deb96569efd0cbcc4d2704f6c055e1e72eba079 channel id: businesschannel version: 1.0.2 -orderer.example.com | 2018-01-18 01:58:52.045 UTC [policies] GetPolicy -> DEBU 590 Returning policy Admins for evaluation -orderer.example.com | 2018-01-18 01:58:52.045 UTC [policies] CommitProposals -> DEBU 591 In commit adding relative sub-policy Orderer/Admins to Channel -peer0.org1.example.com | [926 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=329b166a81f79ddd207d9d3e9deb96569efd0cbcc4d2704f6c055e1e72eba079,syscc=true,proposal=0xc421f92d20,canname=escc:1.0.2 -orderer.example.com | 2018-01-18 01:58:52.045 UTC [policies] GetPolicy -> DEBU 592 Returning policy BlockValidation for evaluation -orderer.example.com | 2018-01-18 01:58:52.045 UTC [policies] CommitProposals -> DEBU 593 In commit adding relative sub-policy Orderer/BlockValidation to Channel -orderer.example.com | 2018-01-18 01:58:52.045 UTC [policies] GetPolicy -> DEBU 594 Returning policy OrdererOrg/Admins for evaluation -peer0.org1.example.com | [927 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 -orderer.example.com | 2018-01-18 01:58:52.045 UTC [policies] CommitProposals -> DEBU 595 In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -peer0.org1.example.com | [928 01-18 02:00:28.24 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | 2018-01-18 01:58:52.045 UTC [policies] GetPolicy -> DEBU 596 Returning policy OrdererOrg/Readers for evaluation -peer0.org1.example.com | [929 01-18 02:00:28.24 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 -orderer.example.com | 2018-01-18 01:58:52.045 UTC [policies] CommitProposals -> DEBU 597 In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -peer0.org1.example.com | [92a 01-18 02:00:28.24 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [329b166a]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [92b 01-18 02:00:28.24 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | 2018-01-18 01:58:52.045 UTC [policies] GetPolicy -> DEBU 598 Returning policy OrdererOrg/Writers for evaluation -peer0.org1.example.com | [92c 01-18 02:00:28.24 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org1.example.com | [92d 01-18 02:00:28.24 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [329b166a]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | 2018-01-18 01:58:52.045 UTC [policies] CommitProposals -> DEBU 599 In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -peer0.org1.example.com | [92e 01-18 02:00:28.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [329b166a]Move state message TRANSACTION -orderer.example.com | 2018-01-18 01:58:52.045 UTC [policies] GetPolicy -> DEBU 59a Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 01:58:52.045 UTC [policies] CommitProposals -> DEBU 59b In commit adding relative sub-policy Orderer/Readers to Channel -peer0.org1.example.com | [92f 01-18 02:00:28.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [329b166a]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [930 01-18 02:00:28.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | 2018-01-18 01:58:52.045 UTC [policies] GetPolicy -> DEBU 59c Returning policy Writers for evaluation -peer0.org1.example.com | [931 01-18 02:00:28.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [329b166a]sending state message TRANSACTION -peer0.org1.example.com | [932 01-18 02:00:28.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [329b166a]Received message TRANSACTION from shim -orderer.example.com | 2018-01-18 01:58:52.045 UTC [policies] CommitProposals -> DEBU 59d In commit adding relative sub-policy Orderer/Writers to Channel -peer0.org1.example.com | [933 01-18 02:00:28.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [329b166a]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [934 01-18 02:00:28.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [329b166a]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | 2018-01-18 01:58:52.045 UTC [policies] GetPolicy -> DEBU 59e Returning policy Org2MSP/Writers for evaluation -peer0.org1.example.com | [935 01-18 02:00:28.24 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -orderer.example.com | 2018-01-18 01:58:52.045 UTC [policies] CommitProposals -> DEBU 59f In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -peer0.org1.example.com | [936 01-18 02:00:28.24 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -orderer.example.com | 2018-01-18 01:58:52.045 UTC [policies] GetPolicy -> DEBU 5a0 Returning policy Org2MSP/Admins for evaluation -peer0.org1.example.com | [937 01-18 02:00:28.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [329b166a]Transaction completed. Sending COMPLETED -orderer.example.com | 2018-01-18 01:58:52.046 UTC [policies] CommitProposals -> DEBU 5a1 In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -peer0.org1.example.com | [938 01-18 02:00:28.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [329b166a]Move state message COMPLETED -orderer.example.com | 2018-01-18 01:58:52.046 UTC [policies] GetPolicy -> DEBU 5a2 Returning policy Org2MSP/Readers for evaluation -orderer.example.com | 2018-01-18 01:58:52.046 UTC [policies] CommitProposals -> DEBU 5a3 In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -peer0.org1.example.com | [939 01-18 02:00:28.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [329b166a]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [93a 01-18 02:00:28.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [329b166a]send state message COMPLETED -orderer.example.com | 2018-01-18 01:58:52.046 UTC [policies] GetPolicy -> DEBU 5a4 Returning policy ChannelCreationPolicy for evaluation -orderer.example.com | 2018-01-18 01:58:52.046 UTC [policies] CommitProposals -> DEBU 5a5 In commit adding relative sub-policy Application/ChannelCreationPolicy to Channel -peer0.org1.example.com | [93b 01-18 02:00:28.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [329b166a]Received message COMPLETED from shim -orderer.example.com | 2018-01-18 01:58:52.046 UTC [policies] GetPolicy -> DEBU 5a6 Returning policy Org1MSP/Writers for evaluation -peer0.org1.example.com | [93c 01-18 02:00:28.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [329b166a]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | 2018-01-18 01:58:52.046 UTC [policies] CommitProposals -> DEBU 5a7 In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -peer0.org1.example.com | [93d 01-18 02:00:28.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [329b166a81f79ddd207d9d3e9deb96569efd0cbcc4d2704f6c055e1e72eba079]HandleMessage- COMPLETED. Notify -orderer.example.com | 2018-01-18 01:58:52.046 UTC [policies] GetPolicy -> DEBU 5a8 Returning policy Org1MSP/Admins for evaluation -orderer.example.com | 2018-01-18 01:58:52.046 UTC [policies] CommitProposals -> DEBU 5a9 In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -peer0.org1.example.com | [93e 01-18 02:00:28.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:329b166a81f79ddd207d9d3e9deb96569efd0cbcc4d2704f6c055e1e72eba079 -orderer.example.com | 2018-01-18 01:58:52.046 UTC [policies] GetPolicy -> DEBU 5aa Returning policy Org1MSP/Readers for evaluation -peer0.org1.example.com | [93f 01-18 02:00:28.24 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [940 01-18 02:00:28.24 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -orderer.example.com | 2018-01-18 01:58:52.046 UTC [policies] CommitProposals -> DEBU 5ab In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -peer0.org1.example.com | [941 01-18 02:00:28.24 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -peer0.org1.example.com | [942 01-18 02:00:28.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [641d293a-cfeb-42bb-ba2e-366de51be8ea] -orderer.example.com | 2018-01-18 01:58:52.046 UTC [policies] GetPolicy -> DEBU 5ac Returning dummy reject all policy because Writers could not be found in /Application/Writers -peer0.org1.example.com | [943 01-18 02:00:28.24 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -peer0.org1.example.com | [944 01-18 02:00:28.41 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [6], peers number [3] -orderer.example.com | 2018-01-18 01:58:52.046 UTC [policies] GetPolicy -> DEBU 5ad Returning policy Writers for evaluation -peer0.org1.example.com | [945 01-18 02:00:28.41 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [6], peers number [3] -orderer.example.com | 2018-01-18 01:58:52.046 UTC [policies] GetPolicy -> DEBU 5ae Returning policy Admins for evaluation -peer0.org1.example.com | [946 01-18 02:00:28.41 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -orderer.example.com | 2018-01-18 01:58:52.046 UTC [policies] GetPolicy -> DEBU 5af Returning dummy reject all policy because Admins could not be found in /Application/Admins -peer0.org1.example.com | [947 01-18 02:00:28.41 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -peer0.org1.example.com | [948 01-18 02:00:28.41 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -orderer.example.com | 2018-01-18 01:58:52.046 UTC [policies] GetPolicy -> DEBU 5b0 Returning policy Readers for evaluation -peer0.org1.example.com | [949 01-18 02:00:28.41 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421ed8600 -peer0.org1.example.com | [94a 01-18 02:00:28.41 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\272\377\377\322\005\020\327\344\236\214\001\"\017businesschannel*@ef892f35fb64f0ede0b8e75fccdd87a0b5a88e80208a6beacc5248090c895114:\t\022\007\022\005exp02" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\030d\331v\033\324\333\222\030\204\034k\t\024\337\364\272\341\336\300\200\303\207%\014" -orderer.example.com | 2018-01-18 01:58:52.046 UTC [policies] GetPolicy -> DEBU 5b1 Returning dummy reject all policy because Readers could not be found in /Application/Readers -peer0.org1.example.com | [94b 01-18 02:00:28.41 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -orderer.example.com | 2018-01-18 01:58:52.046 UTC [common/configtx] addToMap -> DEBU 5b2 Adding to config map: [Groups] /Channel -peer0.org1.example.com | [94c 01-18 02:00:28.41 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | 2018-01-18 01:58:52.047 UTC [common/configtx] addToMap -> DEBU 5b3 Adding to config map: [Groups] /Channel/Application -orderer.example.com | 2018-01-18 01:58:52.047 UTC [common/configtx] addToMap -> DEBU 5b4 Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | 2018-01-18 01:58:52.047 UTC [common/configtx] addToMap -> DEBU 5b5 Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | 2018-01-18 01:58:52.047 UTC [common/configtx] addToMap -> DEBU 5b6 Adding to config map: [Values] /Channel/Consortium -orderer.example.com | 2018-01-18 01:58:52.048 UTC [common/configtx] addToMap -> DEBU 5b7 Adding to config map: [Groups] /Channel -orderer.example.com | 2018-01-18 01:58:52.048 UTC [common/configtx] addToMap -> DEBU 5b8 Adding to config map: [Groups] /Channel/Application -orderer.example.com | 2018-01-18 01:58:52.048 UTC [common/configtx] addToMap -> DEBU 5b9 Adding to config map: [Groups] /Channel/Application/Org1MSP -peer0.org1.example.com | [94d 01-18 02:00:28.41 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} -peer0.org1.example.com | [94e 01-18 02:00:28.41 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [94f 01-18 02:00:28.41 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org1.example.com | [950 01-18 02:00:28.41 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421a13800, header channel_header:"\010\003\032\014\010\272\377\377\322\005\020\327\344\236\214\001\"\017businesschannel*@ef892f35fb64f0ede0b8e75fccdd87a0b5a88e80208a6beacc5248090c895114:\t\022\007\022\005exp02" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\030d\331v\033\324\333\222\030\204\034k\t\024\337\364\272\341\336\300\200\303\207%\014" -orderer.example.com | 2018-01-18 01:58:52.048 UTC [common/configtx] addToMap -> DEBU 5ba Adding to config map: [Groups] /Channel/Application/Org2MSP -peer0.org1.example.com | [951 01-18 02:00:28.41 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer0.org1.example.com | [952 01-18 02:00:28.41 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer0.org1.example.com | [953 01-18 02:00:28.41 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer0.org1.example.com | [954 01-18 02:00:28.41 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -orderer.example.com | 2018-01-18 01:58:52.049 UTC [common/configtx] addToMap -> DEBU 5bb Adding to config map: [Policy] /Channel/Application/Admins -peer0.org1.example.com | [955 01-18 02:00:28.41 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [ef892f35fb64f0ede0b8e75fccdd87a0b5a88e80208a6beacc5248090c895114] -peer0.org1.example.com | [956 01-18 02:00:28.41 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -peer0.org1.example.com | [957 01-18 02:00:28.41 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [b8b83b3a-efef-4d78-93d2-aed2caae252e] -peer0.org1.example.com | [958 01-18 02:00:28.41 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer0.org1.example.com | [959 01-18 02:00:28.41 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [b8b83b3a-efef-4d78-93d2-aed2caae252e] -peer0.org1.example.com | [95a 01-18 02:00:28.41 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | 2018-01-18 01:58:52.049 UTC [common/configtx] addToMap -> DEBU 5bc Adding to config map: [Policy] /Channel/Application/Writers -peer0.org1.example.com | [95b 01-18 02:00:28.41 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [757cc9e3-a4d8-4f77-a8fb-52a0be7c7955] -peer0.org1.example.com | [95c 01-18 02:00:28.41 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=546b5c81-e4ad-4176-8c58-b2c02addec65,syscc=true,proposal=0x0,canname=vscc:1.0.2 -peer0.org1.example.com | [95d 01-18 02:00:28.41 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid ef892f35fb64f0ede0b8e75fccdd87a0b5a88e80208a6beacc5248090c895114 chaindID businesschannel -peer0.org1.example.com | [95e 01-18 02:00:28.41 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 -orderer.example.com | 2018-01-18 01:58:52.049 UTC [common/configtx] addToMap -> DEBU 5bd Adding to config map: [Policy] /Channel/Application/Readers -peer0.org1.example.com | [95f 01-18 02:00:28.41 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [960 01-18 02:00:28.41 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 -peer0.org1.example.com | [961 01-18 02:00:28.41 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [546b5c81]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | 2018-01-18 01:58:52.049 UTC [common/configtx] addToMap -> DEBU 5be Adding to config map: [Values] /Channel/Consortium -peer0.org1.example.com | [962 01-18 02:00:28.41 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | 2018-01-18 01:58:52.049 UTC [policies] GetPolicy -> DEBU 5bf Returning policy ChannelCreationPolicy for evaluation -peer0.org1.example.com | [963 01-18 02:00:28.42 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [546b5c81]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | 2018-01-18 01:58:52.049 UTC [cauthdsl] func1 -> DEBU 5c0 0xc42014a8f8 gate 1516240732049767129 evaluation starts -peer0.org1.example.com | [964 01-18 02:00:28.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [546b5c81]Move state message TRANSACTION -orderer.example.com | 2018-01-18 01:58:52.049 UTC [cauthdsl] func2 -> DEBU 5c1 0xc42014a8f8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-18 01:58:52.049 UTC [cauthdsl] func2 -> DEBU 5c2 0xc42014a8f8 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a -peer0.org1.example.com | [965 01-18 02:00:28.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [546b5c81]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [966 01-18 02:00:28.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | 2018-01-18 01:58:52.050 UTC [msp/identity] newIdentity -> DEBU 5c3 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [967 01-18 02:00:28.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [546b5c81]sending state message TRANSACTION -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [968 01-18 02:00:28.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [546b5c81]Received message TRANSACTION from shim -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [969 01-18 02:00:28.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [546b5c81]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [96a 01-18 02:00:28.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [546b5c81]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [96b 01-18 02:00:28.42 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer0.org1.example.com | [96c 01-18 02:00:28.42 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -peer0.org1.example.com | [96d 01-18 02:00:28.42 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -peer0.org1.example.com | [96e 01-18 02:00:28.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [546b5c81]Transaction completed. Sending COMPLETED -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -peer0.org1.example.com | [96f 01-18 02:00:28.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [546b5c81]Move state message COMPLETED -peer0.org1.example.com | [970 01-18 02:00:28.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [546b5c81]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -peer0.org1.example.com | [971 01-18 02:00:28.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [546b5c81]send state message COMPLETED -orderer.example.com | xHTBvxfK6mAzmUitFmY= -peer0.org1.example.com | [972 01-18 02:00:28.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [546b5c81]Received message COMPLETED from shim -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [973 01-18 02:00:28.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [546b5c81]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | 2018-01-18 01:58:52.050 UTC [msp] SatisfiesPrincipal -> DEBU 5c4 Checking if identity satisfies ADMIN role for Org1MSP -peer0.org1.example.com | [974 01-18 02:00:28.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [546b5c81-e4ad-4176-8c58-b2c02addec65]HandleMessage- COMPLETED. Notify -orderer.example.com | 2018-01-18 01:58:52.050 UTC [cauthdsl] func2 -> DEBU 5c5 0xc42014a8f8 principal matched by identity 0 -peer0.org1.example.com | [975 01-18 02:00:28.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:546b5c81-e4ad-4176-8c58-b2c02addec65 -orderer.example.com | 2018-01-18 01:58:52.050 UTC [msp/identity] Verify -> DEBU 5c6 Verify: digest = 00000000 0a a0 5d 09 26 8b 7a 10 a3 b6 c2 9d af ba c9 56 |..].&.z........V| -orderer.example.com | 00000010 5f cb 22 5a 66 84 57 14 0b e8 1a 28 36 06 e9 3e |_."Zf.W....(6..>| -orderer.example.com | 2018-01-18 01:58:52.050 UTC [msp/identity] Verify -> DEBU 5c7 Verify: sig = 00000000 30 44 02 20 29 07 f5 3b 75 87 a0 a4 66 fd f4 8c |0D. )..;u...f...| -orderer.example.com | 00000010 9d 33 36 f4 39 b7 2e 82 fb 27 b6 27 f8 27 57 50 |.36.9....'.'.'WP| -orderer.example.com | 00000020 a2 9f 0c a4 02 20 3e 03 90 56 ce da 45 23 b2 2d |..... >..V..E#.-| -orderer.example.com | 00000030 85 0f 22 ec 4c 0d 0e f8 31 f9 4d ed fb a4 0e 7e |..".L...1.M....~| -orderer.example.com | 00000040 2e 30 01 0f 91 31 |.0...1| -orderer.example.com | 2018-01-18 01:58:52.050 UTC [cauthdsl] func2 -> DEBU 5c8 0xc42014a8f8 principal evaluation succeeds for identity 0 -peer0.org1.example.com | [976 01-18 02:00:28.43 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | 2018-01-18 01:58:52.050 UTC [cauthdsl] func1 -> DEBU 5c9 0xc42014a8f8 gate 1516240732049767129 evaluation succeeds -peer0.org1.example.com | [977 01-18 02:00:28.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [757cc9e3-a4d8-4f77-a8fb-52a0be7c7955] -peer0.org1.example.com | [978 01-18 02:00:28.43 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -orderer.example.com | 2018-01-18 01:58:52.051 UTC [common/configtx] recurseConfigMap -> DEBU 5ca Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:52.051 UTC [common/configtx] recurseConfigMap -> DEBU 5cb Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [979 01-18 02:00:28.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer0.org1.example.com | [97a 01-18 02:00:28.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc42014b9c0), Data:(*common.BlockData)(0xc4215ee5a0), Metadata:(*common.BlockMetadata)(0xc4215ee5e0)}, doMVCCValidation=true -peer0.org1.example.com | [97b 01-18 02:00:28.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -orderer.example.com | 2018-01-18 01:58:52.051 UTC [common/configtx] recurseConfigMap -> DEBU 5cc Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:52.051 UTC [common/configtx] recurseConfigMap -> DEBU 5cd Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:52.051 UTC [common/configtx] recurseConfigMap -> DEBU 5ce Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:52.051 UTC [common/configtx] recurseConfigMap -> DEBU 5cf Setting policy for key BlockValidation to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:52.051 UTC [common/configtx] recurseConfigMap -> DEBU 5d0 Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:52.051 UTC [common/configtx] recurseConfigMap -> DEBU 5d1 Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:52.051 UTC [common/configtx] recurseConfigMap -> DEBU 5d2 Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:52.051 UTC [common/configtx] recurseConfigMap -> DEBU 5d3 Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:52.051 UTC [common/configtx] recurseConfigMap -> DEBU 5d4 Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:52.051 UTC [common/configtx] recurseConfigMap -> DEBU 5d5 Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:52.051 UTC [common/configtx] recurseConfigMap -> DEBU 5d6 Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:52.051 UTC [common/configtx] recurseConfigMap -> DEBU 5d7 Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:52.051 UTC [common/configtx] recurseConfigMap -> DEBU 5d8 Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:52.052 UTC [common/configtx] recurseConfigMap -> DEBU 5d9 Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:52.052 UTC [common/configtx] recurseConfigMap -> DEBU 5da Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [97c 01-18 02:00:28.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=exp02, key=a -orderer.example.com | 2018-01-18 01:58:52.052 UTC [common/configtx] recurseConfigMap -> DEBU 5db Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [97d 01-18 02:00:28.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=exp02, key=b -peer0.org1.example.com | [97e 01-18 02:00:28.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=exp02 -orderer.example.com | 2018-01-18 01:58:52.052 UTC [common/configtx] recurseConfigMap -> DEBU 5dc Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [97f 01-18 02:00:28.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [6] Transaction index [0] TxId [ef892f35fb64f0ede0b8e75fccdd87a0b5a88e80208a6beacc5248090c895114] marked as valid by state validator -peer0.org1.example.com | [980 01-18 02:00:28.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0xb6, 0xc2, 0x2c, 0xe8, 0xb1, 0x4d, 0xad, 0xb5, 0xbc, 0xd7, 0x9f, 0xca, 0x1a, 0x2e, 0x40, 0x28, 0xdd, 0x17, 0xd0, 0xea, 0x49, 0x57, 0x8a, 0x25, 0x1c, 0xd, 0x93, 0xa9, 0x45, 0x57, 0xf1, 0xaa} txOffsets= -orderer.example.com | 2018-01-18 01:58:52.052 UTC [common/configtx] processConfig -> DEBU 5dd Beginning new config for channel businesschannel -peer0.org1.example.com | txId=ef892f35fb64f0ede0b8e75fccdd87a0b5a88e80208a6beacc5248090c895114 locPointer=offset=70, bytesLength=2855 -orderer.example.com | 2018-01-18 01:58:52.052 UTC [common/config] NewStandardValues -> DEBU 5de Initializing protos for *config.ChannelProtos -peer0.org1.example.com | ] -peer0.org1.example.com | [981 01-18 02:00:28.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=54636, bytesLength=2855] for tx ID: [ef892f35fb64f0ede0b8e75fccdd87a0b5a88e80208a6beacc5248090c895114] to index -peer0.org1.example.com | [982 01-18 02:00:28.45 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=54636, bytesLength=2855] for tx number:[0] ID: [ef892f35fb64f0ede0b8e75fccdd87a0b5a88e80208a6beacc5248090c895114] to blockNumTranNum index -orderer.example.com | 2018-01-18 01:58:52.052 UTC [common/config] initializeProtosStruct -> DEBU 5df Processing field: HashingAlgorithm -orderer.example.com | 2018-01-18 01:58:52.052 UTC [common/config] initializeProtosStruct -> DEBU 5e0 Processing field: BlockDataHashingStructure -peer0.org1.example.com | [983 01-18 02:00:28.45 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[59242], isChainEmpty=[false], lastBlockNumber=[6] -peer0.org1.example.com | [984 01-18 02:00:28.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [6] with 1 transaction(s) -orderer.example.com | 2018-01-18 01:58:52.052 UTC [common/config] initializeProtosStruct -> DEBU 5e1 Processing field: OrdererAddresses -peer0.org1.example.com | [985 01-18 02:00:28.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -orderer.example.com | 2018-01-18 01:58:52.052 UTC [common/config] initializeProtosStruct -> DEBU 5e2 Processing field: Consortium -peer0.org1.example.com | [986 01-18 02:00:28.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -orderer.example.com | 2018-01-18 01:58:52.052 UTC [policies] ProposePolicy -> DEBU 5e3 Proposed new policy Admins for Channel -peer0.org1.example.com | [987 01-18 02:00:28.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] -orderer.example.com | 2018-01-18 01:58:52.052 UTC [policies] ProposePolicy -> DEBU 5e4 Proposed new policy Readers for Channel -peer0.org1.example.com | [988 01-18 02:00:28.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] -orderer.example.com | 2018-01-18 01:58:52.052 UTC [policies] ProposePolicy -> DEBU 5e5 Proposed new policy Writers for Channel -peer0.org1.example.com | [989 01-18 02:00:28.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -orderer.example.com | 2018-01-18 01:58:52.052 UTC [common/config] NewStandardValues -> DEBU 5e6 Initializing protos for *config.OrdererProtos -peer0.org1.example.com | [98a 01-18 02:00:28.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [6] with [1] transactions -peer0.org1.example.com | [98b 01-18 02:00:28.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [6] -orderer.example.com | 2018-01-18 01:58:52.052 UTC [common/config] initializeProtosStruct -> DEBU 5e7 Processing field: ConsensusType -orderer.example.com | 2018-01-18 01:58:52.052 UTC [common/config] initializeProtosStruct -> DEBU 5e8 Processing field: BatchSize -peer0.org1.example.com | [98c 01-18 02:00:28.46 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -orderer.example.com | 2018-01-18 01:58:52.052 UTC [common/config] initializeProtosStruct -> DEBU 5e9 Processing field: BatchTimeout -peer0.org1.example.com | [98d 01-18 02:00:28.46 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [6] contains transaction id: ef892f35fb64f0ede0b8e75fccdd87a0b5a88e80208a6beacc5248090c895114 -orderer.example.com | 2018-01-18 01:58:52.052 UTC [common/config] initializeProtosStruct -> DEBU 5ea Processing field: KafkaBrokers -peer0.org1.example.com | [98e 01-18 02:00:28.46 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [6] -orderer.example.com | 2018-01-18 01:58:52.052 UTC [common/config] initializeProtosStruct -> DEBU 5eb Processing field: ChannelRestrictions -peer0.org1.example.com | [98f 01-18 02:00:28.46 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -orderer.example.com | 2018-01-18 01:58:52.052 UTC [policies] ProposePolicy -> DEBU 5ec Proposed new policy Writers for Orderer -orderer.example.com | 2018-01-18 01:58:52.052 UTC [policies] ProposePolicy -> DEBU 5ed Proposed new policy Admins for Orderer -peer0.org1.example.com | [990 01-18 02:00:28.46 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -orderer.example.com | 2018-01-18 01:58:52.052 UTC [policies] ProposePolicy -> DEBU 5ee Proposed new policy BlockValidation for Orderer -orderer.example.com | 2018-01-18 01:58:52.052 UTC [policies] ProposePolicy -> DEBU 5ef Proposed new policy Readers for Orderer -peer0.org1.example.com | [991 01-18 02:00:28.46 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer0.org1.example.com | [992 01-18 02:00:28.46 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -orderer.example.com | 2018-01-18 01:58:52.052 UTC [common/config] NewStandardValues -> DEBU 5f0 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:52.053 UTC [common/config] initializeProtosStruct -> DEBU 5f1 Processing field: MSP -peer0.org1.example.com | [993 01-18 02:00:28.46 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -orderer.example.com | 2018-01-18 01:58:52.053 UTC [policies] ProposePolicy -> DEBU 5f2 Proposed new policy Admins for OrdererOrg -orderer.example.com | 2018-01-18 01:58:52.053 UTC [policies] ProposePolicy -> DEBU 5f3 Proposed new policy Readers for OrdererOrg -orderer.example.com | 2018-01-18 01:58:52.053 UTC [policies] ProposePolicy -> DEBU 5f4 Proposed new policy Writers for OrdererOrg -orderer.example.com | 2018-01-18 01:58:52.053 UTC [common/config] NewStandardValues -> DEBU 5f5 Initializing protos for *struct {} -orderer.example.com | 2018-01-18 01:58:52.053 UTC [policies] ProposePolicy -> DEBU 5f6 Proposed new policy Admins for Application -orderer.example.com | 2018-01-18 01:58:52.053 UTC [policies] ProposePolicy -> DEBU 5f7 Proposed new policy Writers for Application -orderer.example.com | 2018-01-18 01:58:52.053 UTC [policies] ProposePolicy -> DEBU 5f8 Proposed new policy Readers for Application -orderer.example.com | 2018-01-18 01:58:52.053 UTC [common/config] NewStandardValues -> DEBU 5f9 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:52.053 UTC [common/config] initializeProtosStruct -> DEBU 5fa Processing field: MSP -orderer.example.com | 2018-01-18 01:58:52.053 UTC [common/config] NewStandardValues -> DEBU 5fb Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | 2018-01-18 01:58:52.053 UTC [common/config] initializeProtosStruct -> DEBU 5fc Processing field: AnchorPeers -orderer.example.com | 2018-01-18 01:58:52.053 UTC [common/config] NewStandardValues -> DEBU 5fd Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:52.053 UTC [common/config] initializeProtosStruct -> DEBU 5fe Processing field: MSP -orderer.example.com | 2018-01-18 01:58:52.053 UTC [policies] ProposePolicy -> DEBU 5ff Proposed new policy Writers for Org1MSP -orderer.example.com | 2018-01-18 01:58:52.053 UTC [policies] ProposePolicy -> DEBU 600 Proposed new policy Admins for Org1MSP -orderer.example.com | 2018-01-18 01:58:52.053 UTC [policies] ProposePolicy -> DEBU 601 Proposed new policy Readers for Org1MSP -orderer.example.com | 2018-01-18 01:58:52.053 UTC [common/config] NewStandardValues -> DEBU 602 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:52.053 UTC [common/config] initializeProtosStruct -> DEBU 603 Processing field: MSP -orderer.example.com | 2018-01-18 01:58:52.053 UTC [common/config] NewStandardValues -> DEBU 604 Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | 2018-01-18 01:58:52.053 UTC [common/config] initializeProtosStruct -> DEBU 605 Processing field: AnchorPeers -orderer.example.com | 2018-01-18 01:58:52.053 UTC [common/config] NewStandardValues -> DEBU 606 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:52.054 UTC [common/config] initializeProtosStruct -> DEBU 607 Processing field: MSP -orderer.example.com | 2018-01-18 01:58:52.054 UTC [policies] ProposePolicy -> DEBU 608 Proposed new policy Admins for Org2MSP -orderer.example.com | 2018-01-18 01:58:52.054 UTC [policies] ProposePolicy -> DEBU 609 Proposed new policy Readers for Org2MSP -orderer.example.com | 2018-01-18 01:58:52.054 UTC [policies] ProposePolicy -> DEBU 60a Proposed new policy Writers for Org2MSP -orderer.example.com | 2018-01-18 01:58:52.054 UTC [common/config] validateMSP -> DEBU 60b Setting up MSP for org OrdererOrg -orderer.example.com | 2018-01-18 01:58:52.054 UTC [msp] NewBccspMsp -> DEBU 60c Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-18 01:58:52.054 UTC [msp] Setup -> DEBU 60d Setting up MSP instance OrdererMSP -orderer.example.com | 2018-01-18 01:58:52.054 UTC [msp/identity] newIdentity -> DEBU 60e Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW -orderer.example.com | gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w -orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -orderer.example.com | AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK -orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs -orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:52.054 UTC [msp/identity] newIdentity -> DEBU 60f Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:52.055 UTC [msp/identity] newIdentity -> DEBU 610 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:52.055 UTC [msp] Validate -> DEBU 611 MSP OrdererMSP validating identity -orderer.example.com | 2018-01-18 01:58:52.055 UTC [common/config] Validate -> DEBU 612 Anchor peers for org Org1MSP are -orderer.example.com | 2018-01-18 01:58:52.056 UTC [common/config] validateMSP -> DEBU 613 Setting up MSP for org Org1MSP -orderer.example.com | 2018-01-18 01:58:52.056 UTC [msp] NewBccspMsp -> DEBU 614 Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-18 01:58:52.056 UTC [msp] Setup -> DEBU 615 Setting up MSP instance Org1MSP -orderer.example.com | 2018-01-18 01:58:52.056 UTC [msp/identity] newIdentity -> DEBU 616 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -orderer.example.com | BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf -orderer.example.com | db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx -orderer.example.com | JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi -orderer.example.com | /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ -orderer.example.com | H7n8z1pj5w== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:52.056 UTC [msp/identity] newIdentity -> DEBU 617 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -orderer.example.com | xHTBvxfK6mAzmUitFmY= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:52.057 UTC [msp/identity] newIdentity -> DEBU 618 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -orderer.example.com | xHTBvxfK6mAzmUitFmY= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:52.057 UTC [msp] Validate -> DEBU 619 MSP Org1MSP validating identity -orderer.example.com | 2018-01-18 01:58:52.058 UTC [common/config] Validate -> DEBU 61a Anchor peers for org Org2MSP are -orderer.example.com | 2018-01-18 01:58:52.058 UTC [common/config] validateMSP -> DEBU 61b Setting up MSP for org Org2MSP -orderer.example.com | 2018-01-18 01:58:52.058 UTC [msp] NewBccspMsp -> DEBU 61c Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-18 01:58:52.058 UTC [msp] Setup -> DEBU 61d Setting up MSP instance Org2MSP -orderer.example.com | 2018-01-18 01:58:52.058 UTC [msp/identity] newIdentity -> DEBU 61e Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -orderer.example.com | mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 -orderer.example.com | sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ -orderer.example.com | xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv -orderer.example.com | WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk -orderer.example.com | SCjyRdD3aQ== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:52.058 UTC [msp/identity] newIdentity -> DEBU 61f Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -orderer.example.com | AXYxULZpXYDQXt1KaLI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:52.058 UTC [msp/identity] newIdentity -> DEBU 620 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -orderer.example.com | AXYxULZpXYDQXt1KaLI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:52.059 UTC [msp] Validate -> DEBU 621 MSP Org2MSP validating identity -orderer.example.com | 2018-01-18 01:58:52.059 UTC [msp] Setup -> DEBU 622 Setting up the MSP manager (3 msps) -orderer.example.com | 2018-01-18 01:58:52.059 UTC [msp] Setup -> DEBU 623 MSP manager setup complete, setup 3 msps -orderer.example.com | 2018-01-18 01:58:52.059 UTC [common/configtx] addToMap -> DEBU 624 Adding to config map: [Groups] /Channel -orderer.example.com | 2018-01-18 01:58:52.059 UTC [common/configtx] addToMap -> DEBU 625 Adding to config map: [Groups] /Channel/Orderer -orderer.example.com | 2018-01-18 01:58:52.059 UTC [common/configtx] addToMap -> DEBU 626 Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -orderer.example.com | 2018-01-18 01:58:52.060 UTC [common/configtx] addToMap -> DEBU 627 Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -orderer.example.com | 2018-01-18 01:58:52.060 UTC [common/configtx] addToMap -> DEBU 628 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -orderer.example.com | 2018-01-18 01:58:52.060 UTC [common/configtx] addToMap -> DEBU 629 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | 2018-01-18 01:58:52.060 UTC [common/configtx] addToMap -> DEBU 62a Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | 2018-01-18 01:58:52.060 UTC [common/configtx] addToMap -> DEBU 62b Adding to config map: [Values] /Channel/Orderer/ConsensusType -orderer.example.com | 2018-01-18 01:58:52.060 UTC [common/configtx] addToMap -> DEBU 62c Adding to config map: [Values] /Channel/Orderer/BatchSize -orderer.example.com | 2018-01-18 01:58:52.060 UTC [common/configtx] addToMap -> DEBU 62d Adding to config map: [Values] /Channel/Orderer/BatchTimeout -orderer.example.com | 2018-01-18 01:58:52.060 UTC [common/configtx] addToMap -> DEBU 62e Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -orderer.example.com | 2018-01-18 01:58:52.060 UTC [common/configtx] addToMap -> DEBU 62f Adding to config map: [Policy] /Channel/Orderer/BlockValidation -orderer.example.com | 2018-01-18 01:58:52.060 UTC [common/configtx] addToMap -> DEBU 630 Adding to config map: [Policy] /Channel/Orderer/Readers -orderer.example.com | 2018-01-18 01:58:52.060 UTC [common/configtx] addToMap -> DEBU 631 Adding to config map: [Policy] /Channel/Orderer/Writers -orderer.example.com | 2018-01-18 01:58:52.061 UTC [common/configtx] addToMap -> DEBU 632 Adding to config map: [Policy] /Channel/Orderer/Admins -orderer.example.com | 2018-01-18 01:58:52.061 UTC [common/configtx] addToMap -> DEBU 633 Adding to config map: [Groups] /Channel/Application -orderer.example.com | 2018-01-18 01:58:52.061 UTC [common/configtx] addToMap -> DEBU 634 Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | 2018-01-18 01:58:52.061 UTC [common/configtx] addToMap -> DEBU 635 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -orderer.example.com | 2018-01-18 01:58:52.061 UTC [common/configtx] addToMap -> DEBU 636 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | 2018-01-18 01:58:52.061 UTC [common/configtx] addToMap -> DEBU 637 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | 2018-01-18 01:58:52.061 UTC [common/configtx] addToMap -> DEBU 638 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | 2018-01-18 01:58:52.061 UTC [common/configtx] addToMap -> DEBU 639 Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | 2018-01-18 01:58:52.061 UTC [common/configtx] addToMap -> DEBU 63a Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -orderer.example.com | 2018-01-18 01:58:52.061 UTC [common/configtx] addToMap -> DEBU 63b Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | 2018-01-18 01:58:52.061 UTC [common/configtx] addToMap -> DEBU 63c Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | 2018-01-18 01:58:52.061 UTC [common/configtx] addToMap -> DEBU 63d Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | 2018-01-18 01:58:52.061 UTC [common/configtx] addToMap -> DEBU 63e Adding to config map: [Policy] /Channel/Application/Readers -orderer.example.com | 2018-01-18 01:58:52.061 UTC [common/configtx] addToMap -> DEBU 63f Adding to config map: [Policy] /Channel/Application/Admins -orderer.example.com | 2018-01-18 01:58:52.061 UTC [common/configtx] addToMap -> DEBU 640 Adding to config map: [Policy] /Channel/Application/Writers -orderer.example.com | 2018-01-18 01:58:52.062 UTC [common/configtx] addToMap -> DEBU 641 Adding to config map: [Values] /Channel/Consortium -orderer.example.com | 2018-01-18 01:58:52.062 UTC [common/configtx] addToMap -> DEBU 642 Adding to config map: [Values] /Channel/HashingAlgorithm -orderer.example.com | 2018-01-18 01:58:52.062 UTC [common/configtx] addToMap -> DEBU 643 Adding to config map: [Values] /Channel/BlockDataHashingStructure -orderer.example.com | 2018-01-18 01:58:52.062 UTC [common/configtx] addToMap -> DEBU 644 Adding to config map: [Values] /Channel/OrdererAddresses -orderer.example.com | 2018-01-18 01:58:52.062 UTC [common/configtx] addToMap -> DEBU 645 Adding to config map: [Policy] /Channel/Admins -orderer.example.com | 2018-01-18 01:58:52.062 UTC [common/configtx] addToMap -> DEBU 646 Adding to config map: [Policy] /Channel/Readers -orderer.example.com | 2018-01-18 01:58:52.062 UTC [common/configtx] addToMap -> DEBU 647 Adding to config map: [Policy] /Channel/Writers -orderer.example.com | 2018-01-18 01:58:52.062 UTC [common/configtx] addToMap -> DEBU 648 Adding to config map: [Groups] /Channel -orderer.example.com | 2018-01-18 01:58:52.062 UTC [common/configtx] addToMap -> DEBU 649 Adding to config map: [Groups] /Channel/Application -orderer.example.com | 2018-01-18 01:58:52.062 UTC [common/configtx] addToMap -> DEBU 64a Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | 2018-01-18 01:58:52.062 UTC [common/configtx] addToMap -> DEBU 64b Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | 2018-01-18 01:58:52.062 UTC [common/configtx] addToMap -> DEBU 64c Adding to config map: [Values] /Channel/Consortium -orderer.example.com | 2018-01-18 01:58:52.062 UTC [common/configtx] addToMap -> DEBU 64d Adding to config map: [Groups] /Channel -orderer.example.com | 2018-01-18 01:58:52.062 UTC [common/configtx] addToMap -> DEBU 64e Adding to config map: [Groups] /Channel/Application -orderer.example.com | 2018-01-18 01:58:52.062 UTC [common/configtx] addToMap -> DEBU 64f Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | 2018-01-18 01:58:52.062 UTC [common/configtx] addToMap -> DEBU 650 Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | 2018-01-18 01:58:52.062 UTC [common/configtx] addToMap -> DEBU 651 Adding to config map: [Policy] /Channel/Application/Admins -orderer.example.com | 2018-01-18 01:58:52.062 UTC [common/configtx] addToMap -> DEBU 652 Adding to config map: [Policy] /Channel/Application/Writers -orderer.example.com | 2018-01-18 01:58:52.062 UTC [common/configtx] addToMap -> DEBU 653 Adding to config map: [Policy] /Channel/Application/Readers -orderer.example.com | 2018-01-18 01:58:52.062 UTC [common/configtx] addToMap -> DEBU 654 Adding to config map: [Values] /Channel/Consortium -orderer.example.com | 2018-01-18 01:58:52.063 UTC [policies] GetPolicy -> DEBU 655 Returning policy ChannelCreationPolicy for evaluation -orderer.example.com | 2018-01-18 01:58:52.063 UTC [cauthdsl] func1 -> DEBU 656 0xc42014b0a8 gate 1516240732063082468 evaluation starts -orderer.example.com | 2018-01-18 01:58:52.063 UTC [cauthdsl] func2 -> DEBU 657 0xc42014b0a8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-18 01:58:52.063 UTC [cauthdsl] func2 -> DEBU 658 0xc42014b0a8 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-18 01:58:52.063 UTC [msp/identity] newIdentity -> DEBU 659 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -orderer.example.com | xHTBvxfK6mAzmUitFmY= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:52.063 UTC [msp] SatisfiesPrincipal -> DEBU 65a Checking if identity satisfies ADMIN role for Org1MSP -orderer.example.com | 2018-01-18 01:58:52.063 UTC [cauthdsl] func2 -> DEBU 65b 0xc42014b0a8 principal matched by identity 0 -orderer.example.com | 2018-01-18 01:58:52.063 UTC [msp/identity] Verify -> DEBU 65c Verify: digest = 00000000 0a a0 5d 09 26 8b 7a 10 a3 b6 c2 9d af ba c9 56 |..].&.z........V| -orderer.example.com | 00000010 5f cb 22 5a 66 84 57 14 0b e8 1a 28 36 06 e9 3e |_."Zf.W....(6..>| -orderer.example.com | 2018-01-18 01:58:52.063 UTC [msp/identity] Verify -> DEBU 65d Verify: sig = 00000000 30 44 02 20 29 07 f5 3b 75 87 a0 a4 66 fd f4 8c |0D. )..;u...f...| -orderer.example.com | 00000010 9d 33 36 f4 39 b7 2e 82 fb 27 b6 27 f8 27 57 50 |.36.9....'.'.'WP| -orderer.example.com | 00000020 a2 9f 0c a4 02 20 3e 03 90 56 ce da 45 23 b2 2d |..... >..V..E#.-| -orderer.example.com | 00000030 85 0f 22 ec 4c 0d 0e f8 31 f9 4d ed fb a4 0e 7e |..".L...1.M....~| -orderer.example.com | 00000040 2e 30 01 0f 91 31 |.0...1| -orderer.example.com | 2018-01-18 01:58:52.063 UTC [cauthdsl] func2 -> DEBU 65e 0xc42014b0a8 principal evaluation succeeds for identity 0 -orderer.example.com | 2018-01-18 01:58:52.063 UTC [cauthdsl] func1 -> DEBU 65f 0xc42014b0a8 gate 1516240732063082468 evaluation succeeds -orderer.example.com | 2018-01-18 01:58:52.064 UTC [common/configtx] recurseConfigMap -> DEBU 660 Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:52.064 UTC [common/configtx] recurseConfigMap -> DEBU 661 Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:52.064 UTC [common/configtx] recurseConfigMap -> DEBU 662 Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:52.064 UTC [common/configtx] recurseConfigMap -> DEBU 663 Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:52.064 UTC [common/configtx] recurseConfigMap -> DEBU 664 Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:52.064 UTC [common/configtx] recurseConfigMap -> DEBU 665 Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:52.064 UTC [common/configtx] recurseConfigMap -> DEBU 666 Setting policy for key BlockValidation to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:52.064 UTC [common/configtx] recurseConfigMap -> DEBU 667 Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:52.064 UTC [common/configtx] recurseConfigMap -> DEBU 668 Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:52.064 UTC [common/configtx] recurseConfigMap -> DEBU 669 Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:52.064 UTC [common/configtx] recurseConfigMap -> DEBU 66a Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:52.064 UTC [common/configtx] recurseConfigMap -> DEBU 66b Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:52.064 UTC [common/configtx] recurseConfigMap -> DEBU 66c Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:52.064 UTC [common/configtx] recurseConfigMap -> DEBU 66d Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:52.064 UTC [common/configtx] recurseConfigMap -> DEBU 66e Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:52.065 UTC [common/configtx] recurseConfigMap -> DEBU 66f Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:52.065 UTC [common/configtx] recurseConfigMap -> DEBU 670 Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:52.065 UTC [common/configtx] recurseConfigMap -> DEBU 671 Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:52.065 UTC [common/configtx] recurseConfigMap -> DEBU 672 Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:52.065 UTC [common/configtx] processConfig -> DEBU 673 Beginning new config for channel businesschannel -orderer.example.com | 2018-01-18 01:58:52.065 UTC [common/config] NewStandardValues -> DEBU 674 Initializing protos for *config.ChannelProtos -orderer.example.com | 2018-01-18 01:58:52.065 UTC [common/config] initializeProtosStruct -> DEBU 675 Processing field: HashingAlgorithm -orderer.example.com | 2018-01-18 01:58:52.065 UTC [common/config] initializeProtosStruct -> DEBU 676 Processing field: BlockDataHashingStructure -orderer.example.com | 2018-01-18 01:58:52.065 UTC [common/config] initializeProtosStruct -> DEBU 677 Processing field: OrdererAddresses -orderer.example.com | 2018-01-18 01:58:52.065 UTC [common/config] initializeProtosStruct -> DEBU 678 Processing field: Consortium -orderer.example.com | 2018-01-18 01:58:52.065 UTC [policies] ProposePolicy -> DEBU 679 Proposed new policy Admins for Channel -orderer.example.com | 2018-01-18 01:58:52.065 UTC [policies] ProposePolicy -> DEBU 67a Proposed new policy Readers for Channel -orderer.example.com | 2018-01-18 01:58:52.065 UTC [policies] ProposePolicy -> DEBU 67b Proposed new policy Writers for Channel -orderer.example.com | 2018-01-18 01:58:52.065 UTC [common/config] NewStandardValues -> DEBU 67c Initializing protos for *struct {} -orderer.example.com | 2018-01-18 01:58:52.065 UTC [policies] ProposePolicy -> DEBU 67d Proposed new policy Writers for Application -orderer.example.com | 2018-01-18 01:58:52.065 UTC [policies] ProposePolicy -> DEBU 67e Proposed new policy Readers for Application -orderer.example.com | 2018-01-18 01:58:52.065 UTC [policies] ProposePolicy -> DEBU 67f Proposed new policy Admins for Application -orderer.example.com | 2018-01-18 01:58:52.065 UTC [common/config] NewStandardValues -> DEBU 680 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:52.065 UTC [common/config] initializeProtosStruct -> DEBU 681 Processing field: MSP -orderer.example.com | 2018-01-18 01:58:52.065 UTC [common/config] NewStandardValues -> DEBU 682 Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | 2018-01-18 01:58:52.065 UTC [common/config] initializeProtosStruct -> DEBU 683 Processing field: AnchorPeers -orderer.example.com | 2018-01-18 01:58:52.065 UTC [common/config] NewStandardValues -> DEBU 684 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:52.066 UTC [common/config] initializeProtosStruct -> DEBU 685 Processing field: MSP -orderer.example.com | 2018-01-18 01:58:52.066 UTC [policies] ProposePolicy -> DEBU 686 Proposed new policy Admins for Org1MSP -orderer.example.com | 2018-01-18 01:58:52.066 UTC [policies] ProposePolicy -> DEBU 687 Proposed new policy Readers for Org1MSP -orderer.example.com | 2018-01-18 01:58:52.066 UTC [policies] ProposePolicy -> DEBU 688 Proposed new policy Writers for Org1MSP -orderer.example.com | 2018-01-18 01:58:52.066 UTC [common/config] NewStandardValues -> DEBU 689 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:52.066 UTC [common/config] initializeProtosStruct -> DEBU 68a Processing field: MSP -orderer.example.com | 2018-01-18 01:58:52.066 UTC [common/config] NewStandardValues -> DEBU 68b Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | 2018-01-18 01:58:52.066 UTC [common/config] initializeProtosStruct -> DEBU 68c Processing field: AnchorPeers -orderer.example.com | 2018-01-18 01:58:52.066 UTC [common/config] NewStandardValues -> DEBU 68d Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:52.066 UTC [common/config] initializeProtosStruct -> DEBU 68e Processing field: MSP -orderer.example.com | 2018-01-18 01:58:52.066 UTC [policies] ProposePolicy -> DEBU 68f Proposed new policy Writers for Org2MSP -orderer.example.com | 2018-01-18 01:58:52.066 UTC [policies] ProposePolicy -> DEBU 690 Proposed new policy Admins for Org2MSP -orderer.example.com | 2018-01-18 01:58:52.066 UTC [policies] ProposePolicy -> DEBU 691 Proposed new policy Readers for Org2MSP -orderer.example.com | 2018-01-18 01:58:52.066 UTC [common/config] NewStandardValues -> DEBU 692 Initializing protos for *config.OrdererProtos -orderer.example.com | 2018-01-18 01:58:52.066 UTC [common/config] initializeProtosStruct -> DEBU 693 Processing field: ConsensusType -orderer.example.com | 2018-01-18 01:58:52.066 UTC [common/config] initializeProtosStruct -> DEBU 694 Processing field: BatchSize -orderer.example.com | 2018-01-18 01:58:52.066 UTC [common/config] initializeProtosStruct -> DEBU 695 Processing field: BatchTimeout -orderer.example.com | 2018-01-18 01:58:52.066 UTC [common/config] initializeProtosStruct -> DEBU 696 Processing field: KafkaBrokers -orderer.example.com | 2018-01-18 01:58:52.066 UTC [common/config] initializeProtosStruct -> DEBU 697 Processing field: ChannelRestrictions -orderer.example.com | 2018-01-18 01:58:52.066 UTC [policies] ProposePolicy -> DEBU 698 Proposed new policy Writers for Orderer -orderer.example.com | 2018-01-18 01:58:52.066 UTC [policies] ProposePolicy -> DEBU 699 Proposed new policy Admins for Orderer -orderer.example.com | 2018-01-18 01:58:52.066 UTC [policies] ProposePolicy -> DEBU 69a Proposed new policy BlockValidation for Orderer -orderer.example.com | 2018-01-18 01:58:52.067 UTC [policies] ProposePolicy -> DEBU 69b Proposed new policy Readers for Orderer -orderer.example.com | 2018-01-18 01:58:52.067 UTC [common/config] NewStandardValues -> DEBU 69c Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:52.067 UTC [common/config] initializeProtosStruct -> DEBU 69d Processing field: MSP -orderer.example.com | 2018-01-18 01:58:52.067 UTC [policies] ProposePolicy -> DEBU 69e Proposed new policy Writers for OrdererOrg -orderer.example.com | 2018-01-18 01:58:52.067 UTC [policies] ProposePolicy -> DEBU 69f Proposed new policy Admins for OrdererOrg -orderer.example.com | 2018-01-18 01:58:52.067 UTC [policies] ProposePolicy -> DEBU 6a0 Proposed new policy Readers for OrdererOrg -orderer.example.com | 2018-01-18 01:58:52.067 UTC [common/config] Validate -> DEBU 6a1 Anchor peers for org Org1MSP are -orderer.example.com | 2018-01-18 01:58:52.067 UTC [common/config] validateMSP -> DEBU 6a2 Setting up MSP for org Org1MSP -orderer.example.com | 2018-01-18 01:58:52.067 UTC [msp] NewBccspMsp -> DEBU 6a3 Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-18 01:58:52.067 UTC [msp] Setup -> DEBU 6a4 Setting up MSP instance Org1MSP -orderer.example.com | 2018-01-18 01:58:52.067 UTC [msp/identity] newIdentity -> DEBU 6a5 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -orderer.example.com | BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf -orderer.example.com | db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx -orderer.example.com | JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi -orderer.example.com | /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ -orderer.example.com | H7n8z1pj5w== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:52.068 UTC [msp/identity] newIdentity -> DEBU 6a6 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -orderer.example.com | xHTBvxfK6mAzmUitFmY= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:52.068 UTC [msp/identity] newIdentity -> DEBU 6a7 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -orderer.example.com | xHTBvxfK6mAzmUitFmY= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:52.068 UTC [msp] Validate -> DEBU 6a8 MSP Org1MSP validating identity -orderer.example.com | 2018-01-18 01:58:52.069 UTC [common/config] Validate -> DEBU 6a9 Anchor peers for org Org2MSP are -orderer.example.com | 2018-01-18 01:58:52.069 UTC [common/config] validateMSP -> DEBU 6aa Setting up MSP for org Org2MSP -orderer.example.com | 2018-01-18 01:58:52.069 UTC [msp] NewBccspMsp -> DEBU 6ab Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-18 01:58:52.069 UTC [msp] Setup -> DEBU 6ac Setting up MSP instance Org2MSP -orderer.example.com | 2018-01-18 01:58:52.069 UTC [msp/identity] newIdentity -> DEBU 6ad Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -orderer.example.com | mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 -orderer.example.com | sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ -orderer.example.com | xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv -orderer.example.com | WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk -orderer.example.com | SCjyRdD3aQ== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:52.069 UTC [msp/identity] newIdentity -> DEBU 6ae Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -orderer.example.com | AXYxULZpXYDQXt1KaLI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:52.069 UTC [msp/identity] newIdentity -> DEBU 6af Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -orderer.example.com | AXYxULZpXYDQXt1KaLI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:52.070 UTC [msp] Validate -> DEBU 6b0 MSP Org2MSP validating identity -orderer.example.com | 2018-01-18 01:58:52.070 UTC [common/config] validateMSP -> DEBU 6b1 Setting up MSP for org OrdererOrg -orderer.example.com | 2018-01-18 01:58:52.070 UTC [msp] NewBccspMsp -> DEBU 6b2 Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-18 01:58:52.070 UTC [msp] Setup -> DEBU 6b3 Setting up MSP instance OrdererMSP -orderer.example.com | 2018-01-18 01:58:52.071 UTC [msp/identity] newIdentity -> DEBU 6b4 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW -orderer.example.com | gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w -orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -orderer.example.com | AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK -orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs -orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:52.071 UTC [msp/identity] newIdentity -> DEBU 6b5 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:52.072 UTC [msp/identity] newIdentity -> DEBU 6b6 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:52.072 UTC [msp] Validate -> DEBU 6b7 MSP OrdererMSP validating identity -orderer.example.com | 2018-01-18 01:58:52.073 UTC [msp] Setup -> DEBU 6b8 Setting up the MSP manager (3 msps) -orderer.example.com | 2018-01-18 01:58:52.073 UTC [msp] Setup -> DEBU 6b9 MSP manager setup complete, setup 3 msps -orderer.example.com | 2018-01-18 01:58:52.073 UTC [policies] GetPolicy -> DEBU 6ba Returning policy Admins for evaluation -orderer.example.com | 2018-01-18 01:58:52.073 UTC [policies] CommitProposals -> DEBU 6bb In commit adding relative sub-policy Org1MSP/Admins to Application -orderer.example.com | 2018-01-18 01:58:52.073 UTC [policies] GetPolicy -> DEBU 6bc Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 01:58:52.073 UTC [policies] CommitProposals -> DEBU 6bd In commit adding relative sub-policy Org1MSP/Readers to Application -orderer.example.com | 2018-01-18 01:58:52.073 UTC [policies] GetPolicy -> DEBU 6be Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:52.073 UTC [policies] CommitProposals -> DEBU 6bf In commit adding relative sub-policy Org1MSP/Writers to Application -orderer.example.com | 2018-01-18 01:58:52.073 UTC [policies] GetPolicy -> DEBU 6c0 Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:52.073 UTC [policies] CommitProposals -> DEBU 6c1 In commit adding relative sub-policy Org2MSP/Writers to Application -orderer.example.com | 2018-01-18 01:58:52.073 UTC [policies] GetPolicy -> DEBU 6c2 Returning policy Admins for evaluation -orderer.example.com | 2018-01-18 01:58:52.073 UTC [policies] CommitProposals -> DEBU 6c3 In commit adding relative sub-policy Org2MSP/Admins to Application -orderer.example.com | 2018-01-18 01:58:52.073 UTC [policies] GetPolicy -> DEBU 6c4 Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 01:58:52.073 UTC [policies] CommitProposals -> DEBU 6c5 In commit adding relative sub-policy Org2MSP/Readers to Application -orderer.example.com | 2018-01-18 01:58:52.073 UTC [policies] GetPolicy -> DEBU 6c6 Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:52.073 UTC [policies] GetPolicy -> DEBU 6c7 Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:52.073 UTC [policies] GetPolicy -> DEBU 6c8 Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 01:58:52.073 UTC [policies] GetPolicy -> DEBU 6c9 Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 01:58:52.074 UTC [policies] GetPolicy -> DEBU 6ca Returning policy Admins for evaluation -orderer.example.com | 2018-01-18 01:58:52.074 UTC [policies] GetPolicy -> DEBU 6cb Returning policy Admins for evaluation -orderer.example.com | 2018-01-18 01:58:52.074 UTC [policies] GetPolicy -> DEBU 6cc Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:52.074 UTC [policies] CommitProposals -> DEBU 6cd In commit adding relative sub-policy OrdererOrg/Writers to Orderer -orderer.example.com | 2018-01-18 01:58:52.074 UTC [policies] GetPolicy -> DEBU 6ce Returning policy Admins for evaluation -orderer.example.com | 2018-01-18 01:58:52.074 UTC [policies] CommitProposals -> DEBU 6cf In commit adding relative sub-policy OrdererOrg/Admins to Orderer -orderer.example.com | 2018-01-18 01:58:52.074 UTC [policies] GetPolicy -> DEBU 6d0 Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 01:58:52.074 UTC [policies] CommitProposals -> DEBU 6d1 In commit adding relative sub-policy OrdererOrg/Readers to Orderer -orderer.example.com | 2018-01-18 01:58:52.074 UTC [policies] GetPolicy -> DEBU 6d2 Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:52.074 UTC [policies] GetPolicy -> DEBU 6d3 Returning policy Admins for evaluation -orderer.example.com | 2018-01-18 01:58:52.074 UTC [policies] GetPolicy -> DEBU 6d4 Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:52.074 UTC [policies] GetPolicy -> DEBU 6d5 Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 01:58:52.074 UTC [policies] GetPolicy -> DEBU 6d6 Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:52.074 UTC [policies] CommitProposals -> DEBU 6d7 In commit adding relative sub-policy Application/Writers to Channel -orderer.example.com | 2018-01-18 01:58:52.074 UTC [policies] GetPolicy -> DEBU 6d8 Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 01:58:52.074 UTC [policies] CommitProposals -> DEBU 6d9 In commit adding relative sub-policy Application/Readers to Channel -orderer.example.com | 2018-01-18 01:58:52.074 UTC [policies] GetPolicy -> DEBU 6da Returning policy Org1MSP/Admins for evaluation -orderer.example.com | 2018-01-18 01:58:52.074 UTC [policies] CommitProposals -> DEBU 6db In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -orderer.example.com | 2018-01-18 01:58:52.074 UTC [policies] GetPolicy -> DEBU 6dc Returning policy Org1MSP/Readers for evaluation -orderer.example.com | 2018-01-18 01:58:52.074 UTC [policies] CommitProposals -> DEBU 6dd In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -orderer.example.com | 2018-01-18 01:58:52.074 UTC [policies] GetPolicy -> DEBU 6de Returning policy Org1MSP/Writers for evaluation -orderer.example.com | 2018-01-18 01:58:52.075 UTC [policies] CommitProposals -> DEBU 6df In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -orderer.example.com | 2018-01-18 01:58:52.075 UTC [policies] GetPolicy -> DEBU 6e0 Returning policy Admins for evaluation -orderer.example.com | 2018-01-18 01:58:52.075 UTC [policies] CommitProposals -> DEBU 6e1 In commit adding relative sub-policy Application/Admins to Channel -orderer.example.com | 2018-01-18 01:58:52.075 UTC [policies] GetPolicy -> DEBU 6e2 Returning policy Org2MSP/Writers for evaluation -orderer.example.com | 2018-01-18 01:58:52.075 UTC [policies] CommitProposals -> DEBU 6e3 In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -orderer.example.com | 2018-01-18 01:58:52.075 UTC [policies] GetPolicy -> DEBU 6e4 Returning policy Org2MSP/Admins for evaluation -orderer.example.com | 2018-01-18 01:58:52.075 UTC [policies] CommitProposals -> DEBU 6e5 In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -orderer.example.com | 2018-01-18 01:58:52.075 UTC [policies] GetPolicy -> DEBU 6e6 Returning policy Org2MSP/Readers for evaluation -orderer.example.com | 2018-01-18 01:58:52.075 UTC [policies] CommitProposals -> DEBU 6e7 In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -orderer.example.com | 2018-01-18 01:58:52.075 UTC [policies] GetPolicy -> DEBU 6e8 Returning policy Admins for evaluation -orderer.example.com | 2018-01-18 01:58:52.075 UTC [policies] CommitProposals -> DEBU 6e9 In commit adding relative sub-policy Orderer/Admins to Channel -orderer.example.com | 2018-01-18 01:58:52.075 UTC [policies] GetPolicy -> DEBU 6ea Returning policy BlockValidation for evaluation -orderer.example.com | 2018-01-18 01:58:52.075 UTC [policies] CommitProposals -> DEBU 6eb In commit adding relative sub-policy Orderer/BlockValidation to Channel -orderer.example.com | 2018-01-18 01:58:52.075 UTC [policies] GetPolicy -> DEBU 6ec Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 01:58:52.075 UTC [policies] CommitProposals -> DEBU 6ed In commit adding relative sub-policy Orderer/Readers to Channel -orderer.example.com | 2018-01-18 01:58:52.075 UTC [policies] GetPolicy -> DEBU 6ee Returning policy OrdererOrg/Writers for evaluation -orderer.example.com | 2018-01-18 01:58:52.075 UTC [policies] CommitProposals -> DEBU 6ef In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -orderer.example.com | 2018-01-18 01:58:52.075 UTC [policies] GetPolicy -> DEBU 6f0 Returning policy OrdererOrg/Admins for evaluation -orderer.example.com | 2018-01-18 01:58:52.075 UTC [policies] CommitProposals -> DEBU 6f1 In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -orderer.example.com | 2018-01-18 01:58:52.075 UTC [policies] GetPolicy -> DEBU 6f2 Returning policy OrdererOrg/Readers for evaluation -orderer.example.com | 2018-01-18 01:58:52.075 UTC [policies] CommitProposals -> DEBU 6f3 In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -orderer.example.com | 2018-01-18 01:58:52.076 UTC [policies] GetPolicy -> DEBU 6f4 Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:52.076 UTC [policies] CommitProposals -> DEBU 6f5 In commit adding relative sub-policy Orderer/Writers to Channel -orderer.example.com | 2018-01-18 01:58:52.076 UTC [policies] GetPolicy -> DEBU 6f6 Returning policy Admins for evaluation -orderer.example.com | 2018-01-18 01:58:52.076 UTC [policies] GetPolicy -> DEBU 6f7 Returning policy Admins for evaluation -orderer.example.com | 2018-01-18 01:58:52.076 UTC [policies] GetPolicy -> DEBU 6f8 Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 01:58:52.076 UTC [policies] GetPolicy -> DEBU 6f9 Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 01:58:52.076 UTC [policies] GetPolicy -> DEBU 6fa Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:52.076 UTC [policies] GetPolicy -> DEBU 6fb Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:52.076 UTC [policies] GetPolicy -> DEBU 6fc Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 01:58:52.076 UTC [policies] CommitProposals -> DEBU 6fd As expected, current configuration has policy '/Channel/Readers' -orderer.example.com | 2018-01-18 01:58:52.076 UTC [policies] GetPolicy -> DEBU 6fe Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:52.076 UTC [policies] CommitProposals -> DEBU 6ff As expected, current configuration has policy '/Channel/Writers' -orderer.example.com | 2018-01-18 01:58:52.076 UTC [policies] GetPolicy -> DEBU 700 Returning policy Application/Readers for evaluation -orderer.example.com | 2018-01-18 01:58:52.077 UTC [policies] CommitProposals -> DEBU 701 As expected, current configuration has policy '/Channel/Application/Readers' -orderer.example.com | 2018-01-18 01:58:52.077 UTC [policies] GetPolicy -> DEBU 702 Returning policy Application/Writers for evaluation -orderer.example.com | 2018-01-18 01:58:52.077 UTC [policies] CommitProposals -> DEBU 703 As expected, current configuration has policy '/Channel/Application/Writers' -orderer.example.com | 2018-01-18 01:58:52.077 UTC [policies] GetPolicy -> DEBU 704 Returning policy Application/Admins for evaluation -orderer.example.com | 2018-01-18 01:58:52.077 UTC [policies] CommitProposals -> DEBU 705 As expected, current configuration has policy '/Channel/Application/Admins' -orderer.example.com | 2018-01-18 01:58:52.077 UTC [policies] GetPolicy -> DEBU 706 Returning policy Orderer/BlockValidation for evaluation -orderer.example.com | 2018-01-18 01:58:52.077 UTC [policies] CommitProposals -> DEBU 707 As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -orderer.example.com | 2018-01-18 01:58:52.077 UTC [common/config] NewStandardValues -> DEBU 708 Initializing protos for *config.ChannelProtos -orderer.example.com | 2018-01-18 01:58:52.077 UTC [common/config] initializeProtosStruct -> DEBU 709 Processing field: HashingAlgorithm -orderer.example.com | 2018-01-18 01:58:52.077 UTC [common/config] initializeProtosStruct -> DEBU 70a Processing field: BlockDataHashingStructure -orderer.example.com | 2018-01-18 01:58:52.077 UTC [common/config] initializeProtosStruct -> DEBU 70b Processing field: OrdererAddresses -orderer.example.com | 2018-01-18 01:58:52.077 UTC [common/config] initializeProtosStruct -> DEBU 70c Processing field: Consortium -orderer.example.com | 2018-01-18 01:58:52.077 UTC [common/configtx] addToMap -> DEBU 70d Adding to config map: [Groups] /Channel -orderer.example.com | 2018-01-18 01:58:52.078 UTC [common/configtx] addToMap -> DEBU 70e Adding to config map: [Groups] /Channel/Application -orderer.example.com | 2018-01-18 01:58:52.078 UTC [common/configtx] addToMap -> DEBU 70f Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | 2018-01-18 01:58:52.078 UTC [common/configtx] addToMap -> DEBU 710 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -orderer.example.com | 2018-01-18 01:58:52.078 UTC [common/configtx] addToMap -> DEBU 711 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | 2018-01-18 01:58:52.082 UTC [common/configtx] addToMap -> DEBU 712 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | 2018-01-18 01:58:52.082 UTC [common/configtx] addToMap -> DEBU 713 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | 2018-01-18 01:58:52.084 UTC [common/configtx] addToMap -> DEBU 714 Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | 2018-01-18 01:58:52.084 UTC [common/configtx] addToMap -> DEBU 715 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -orderer.example.com | 2018-01-18 01:58:52.084 UTC [common/configtx] addToMap -> DEBU 716 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | 2018-01-18 01:58:52.084 UTC [common/configtx] addToMap -> DEBU 717 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | 2018-01-18 01:58:52.084 UTC [common/configtx] addToMap -> DEBU 718 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | 2018-01-18 01:58:52.084 UTC [common/configtx] addToMap -> DEBU 719 Adding to config map: [Policy] /Channel/Application/Admins -orderer.example.com | 2018-01-18 01:58:52.084 UTC [common/configtx] addToMap -> DEBU 71a Adding to config map: [Policy] /Channel/Application/Writers -orderer.example.com | 2018-01-18 01:58:52.084 UTC [common/configtx] addToMap -> DEBU 71b Adding to config map: [Policy] /Channel/Application/Readers -orderer.example.com | 2018-01-18 01:58:52.084 UTC [common/configtx] addToMap -> DEBU 71c Adding to config map: [Groups] /Channel/Orderer -orderer.example.com | 2018-01-18 01:58:52.084 UTC [common/configtx] addToMap -> DEBU 71d Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -orderer.example.com | 2018-01-18 01:58:52.084 UTC [common/configtx] addToMap -> DEBU 71e Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -orderer.example.com | 2018-01-18 01:58:52.084 UTC [common/configtx] addToMap -> DEBU 71f Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | 2018-01-18 01:58:52.084 UTC [common/configtx] addToMap -> DEBU 720 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -orderer.example.com | 2018-01-18 01:58:52.084 UTC [common/configtx] addToMap -> DEBU 721 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | 2018-01-18 01:58:52.084 UTC [common/configtx] addToMap -> DEBU 722 Adding to config map: [Values] /Channel/Orderer/BatchSize -orderer.example.com | 2018-01-18 01:58:52.084 UTC [common/configtx] addToMap -> DEBU 723 Adding to config map: [Values] /Channel/Orderer/BatchTimeout -orderer.example.com | 2018-01-18 01:58:52.084 UTC [common/configtx] addToMap -> DEBU 724 Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -orderer.example.com | 2018-01-18 01:58:52.085 UTC [common/configtx] addToMap -> DEBU 725 Adding to config map: [Values] /Channel/Orderer/ConsensusType -orderer.example.com | 2018-01-18 01:58:52.085 UTC [common/configtx] addToMap -> DEBU 726 Adding to config map: [Policy] /Channel/Orderer/BlockValidation -orderer.example.com | 2018-01-18 01:58:52.085 UTC [common/configtx] addToMap -> DEBU 727 Adding to config map: [Policy] /Channel/Orderer/Readers -orderer.example.com | 2018-01-18 01:58:52.085 UTC [common/configtx] addToMap -> DEBU 728 Adding to config map: [Policy] /Channel/Orderer/Writers -orderer.example.com | 2018-01-18 01:58:52.085 UTC [common/configtx] addToMap -> DEBU 729 Adding to config map: [Policy] /Channel/Orderer/Admins -orderer.example.com | 2018-01-18 01:58:52.085 UTC [common/configtx] addToMap -> DEBU 72a Adding to config map: [Values] /Channel/HashingAlgorithm -orderer.example.com | 2018-01-18 01:58:52.085 UTC [common/configtx] addToMap -> DEBU 72b Adding to config map: [Values] /Channel/BlockDataHashingStructure -orderer.example.com | 2018-01-18 01:58:52.085 UTC [common/configtx] addToMap -> DEBU 72c Adding to config map: [Values] /Channel/Consortium -orderer.example.com | 2018-01-18 01:58:52.085 UTC [common/configtx] addToMap -> DEBU 72d Adding to config map: [Values] /Channel/OrdererAddresses -orderer.example.com | 2018-01-18 01:58:52.085 UTC [common/configtx] addToMap -> DEBU 72e Adding to config map: [Policy] /Channel/Readers -orderer.example.com | 2018-01-18 01:58:52.085 UTC [common/configtx] addToMap -> DEBU 72f Adding to config map: [Policy] /Channel/Writers -orderer.example.com | 2018-01-18 01:58:52.085 UTC [common/configtx] addToMap -> DEBU 730 Adding to config map: [Policy] /Channel/Admins -orderer.example.com | 2018-01-18 01:58:52.085 UTC [common/configtx] processConfig -> DEBU 731 Beginning new config for channel businesschannel -orderer.example.com | 2018-01-18 01:58:52.085 UTC [common/config] NewStandardValues -> DEBU 732 Initializing protos for *config.ChannelProtos -orderer.example.com | 2018-01-18 01:58:52.085 UTC [common/config] initializeProtosStruct -> DEBU 733 Processing field: HashingAlgorithm -orderer.example.com | 2018-01-18 01:58:52.085 UTC [common/config] initializeProtosStruct -> DEBU 734 Processing field: BlockDataHashingStructure -orderer.example.com | 2018-01-18 01:58:52.085 UTC [common/config] initializeProtosStruct -> DEBU 735 Processing field: OrdererAddresses -orderer.example.com | 2018-01-18 01:58:52.085 UTC [common/config] initializeProtosStruct -> DEBU 736 Processing field: Consortium -orderer.example.com | 2018-01-18 01:58:52.085 UTC [policies] ProposePolicy -> DEBU 737 Proposed new policy Admins for Channel -orderer.example.com | 2018-01-18 01:58:52.085 UTC [policies] ProposePolicy -> DEBU 738 Proposed new policy Readers for Channel -orderer.example.com | 2018-01-18 01:58:52.085 UTC [policies] ProposePolicy -> DEBU 739 Proposed new policy Writers for Channel -orderer.example.com | 2018-01-18 01:58:52.085 UTC [common/config] NewStandardValues -> DEBU 73a Initializing protos for *struct {} -orderer.example.com | 2018-01-18 01:58:52.085 UTC [policies] ProposePolicy -> DEBU 73b Proposed new policy Admins for Application -orderer.example.com | 2018-01-18 01:58:52.085 UTC [policies] ProposePolicy -> DEBU 73c Proposed new policy Writers for Application -orderer.example.com | 2018-01-18 01:58:52.085 UTC [policies] ProposePolicy -> DEBU 73d Proposed new policy Readers for Application -orderer.example.com | 2018-01-18 01:58:52.085 UTC [common/config] NewStandardValues -> DEBU 73e Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:52.085 UTC [common/config] initializeProtosStruct -> DEBU 73f Processing field: MSP -orderer.example.com | 2018-01-18 01:58:52.085 UTC [common/config] NewStandardValues -> DEBU 740 Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | 2018-01-18 01:58:52.085 UTC [common/config] initializeProtosStruct -> DEBU 741 Processing field: AnchorPeers -orderer.example.com | 2018-01-18 01:58:52.085 UTC [common/config] NewStandardValues -> DEBU 742 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:52.085 UTC [common/config] initializeProtosStruct -> DEBU 743 Processing field: MSP -orderer.example.com | 2018-01-18 01:58:52.085 UTC [policies] ProposePolicy -> DEBU 744 Proposed new policy Writers for Org1MSP -orderer.example.com | 2018-01-18 01:58:52.085 UTC [policies] ProposePolicy -> DEBU 745 Proposed new policy Admins for Org1MSP -orderer.example.com | 2018-01-18 01:58:52.085 UTC [policies] ProposePolicy -> DEBU 746 Proposed new policy Readers for Org1MSP -orderer.example.com | 2018-01-18 01:58:52.085 UTC [common/config] NewStandardValues -> DEBU 747 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:52.085 UTC [common/config] initializeProtosStruct -> DEBU 748 Processing field: MSP -orderer.example.com | 2018-01-18 01:58:52.085 UTC [common/config] NewStandardValues -> DEBU 749 Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | 2018-01-18 01:58:52.085 UTC [common/config] initializeProtosStruct -> DEBU 74a Processing field: AnchorPeers -orderer.example.com | 2018-01-18 01:58:52.085 UTC [common/config] NewStandardValues -> DEBU 74b Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:52.085 UTC [common/config] initializeProtosStruct -> DEBU 74c Processing field: MSP -orderer.example.com | 2018-01-18 01:58:52.086 UTC [policies] ProposePolicy -> DEBU 74d Proposed new policy Admins for Org2MSP -orderer.example.com | 2018-01-18 01:58:52.086 UTC [policies] ProposePolicy -> DEBU 74e Proposed new policy Readers for Org2MSP -orderer.example.com | 2018-01-18 01:58:52.086 UTC [policies] ProposePolicy -> DEBU 74f Proposed new policy Writers for Org2MSP -orderer.example.com | 2018-01-18 01:58:52.086 UTC [common/config] NewStandardValues -> DEBU 750 Initializing protos for *config.OrdererProtos -orderer.example.com | 2018-01-18 01:58:52.086 UTC [common/config] initializeProtosStruct -> DEBU 751 Processing field: ConsensusType -orderer.example.com | 2018-01-18 01:58:52.086 UTC [common/config] initializeProtosStruct -> DEBU 752 Processing field: BatchSize -orderer.example.com | 2018-01-18 01:58:52.086 UTC [common/config] initializeProtosStruct -> DEBU 753 Processing field: BatchTimeout -orderer.example.com | 2018-01-18 01:58:52.086 UTC [common/config] initializeProtosStruct -> DEBU 754 Processing field: KafkaBrokers -orderer.example.com | 2018-01-18 01:58:52.086 UTC [common/config] initializeProtosStruct -> DEBU 755 Processing field: ChannelRestrictions -orderer.example.com | 2018-01-18 01:58:52.086 UTC [policies] ProposePolicy -> DEBU 756 Proposed new policy Readers for Orderer -orderer.example.com | 2018-01-18 01:58:52.086 UTC [policies] ProposePolicy -> DEBU 757 Proposed new policy Writers for Orderer -orderer.example.com | 2018-01-18 01:58:52.086 UTC [policies] ProposePolicy -> DEBU 758 Proposed new policy Admins for Orderer -orderer.example.com | 2018-01-18 01:58:52.086 UTC [policies] ProposePolicy -> DEBU 759 Proposed new policy BlockValidation for Orderer -orderer.example.com | 2018-01-18 01:58:52.086 UTC [common/config] NewStandardValues -> DEBU 75a Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:52.086 UTC [common/config] initializeProtosStruct -> DEBU 75b Processing field: MSP -orderer.example.com | 2018-01-18 01:58:52.086 UTC [policies] ProposePolicy -> DEBU 75c Proposed new policy Admins for OrdererOrg -orderer.example.com | 2018-01-18 01:58:52.086 UTC [policies] ProposePolicy -> DEBU 75d Proposed new policy Readers for OrdererOrg -orderer.example.com | 2018-01-18 01:58:52.086 UTC [policies] ProposePolicy -> DEBU 75e Proposed new policy Writers for OrdererOrg -orderer.example.com | 2018-01-18 01:58:52.086 UTC [common/config] Validate -> DEBU 75f Anchor peers for org Org1MSP are -orderer.example.com | 2018-01-18 01:58:52.086 UTC [common/config] validateMSP -> DEBU 760 Setting up MSP for org Org1MSP -orderer.example.com | 2018-01-18 01:58:52.086 UTC [msp] NewBccspMsp -> DEBU 761 Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-18 01:58:52.086 UTC [msp] Setup -> DEBU 762 Setting up MSP instance Org1MSP -orderer.example.com | 2018-01-18 01:58:52.087 UTC [msp/identity] newIdentity -> DEBU 763 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -orderer.example.com | BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf -orderer.example.com | db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx -orderer.example.com | JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi -orderer.example.com | /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ -orderer.example.com | H7n8z1pj5w== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:52.088 UTC [msp/identity] newIdentity -> DEBU 764 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -orderer.example.com | xHTBvxfK6mAzmUitFmY= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:52.088 UTC [msp/identity] newIdentity -> DEBU 765 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -orderer.example.com | xHTBvxfK6mAzmUitFmY= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:52.089 UTC [msp] Validate -> DEBU 766 MSP Org1MSP validating identity -orderer.example.com | 2018-01-18 01:58:52.089 UTC [common/config] Validate -> DEBU 767 Anchor peers for org Org2MSP are -orderer.example.com | 2018-01-18 01:58:52.089 UTC [common/config] validateMSP -> DEBU 768 Setting up MSP for org Org2MSP -orderer.example.com | 2018-01-18 01:58:52.089 UTC [msp] NewBccspMsp -> DEBU 769 Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-18 01:58:52.089 UTC [msp] Setup -> DEBU 76a Setting up MSP instance Org2MSP -orderer.example.com | 2018-01-18 01:58:52.089 UTC [msp/identity] newIdentity -> DEBU 76b Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -orderer.example.com | mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 -orderer.example.com | sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ -orderer.example.com | xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv -orderer.example.com | WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk -orderer.example.com | SCjyRdD3aQ== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:52.089 UTC [msp/identity] newIdentity -> DEBU 76c Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -orderer.example.com | AXYxULZpXYDQXt1KaLI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:52.090 UTC [msp/identity] newIdentity -> DEBU 76d Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -orderer.example.com | AXYxULZpXYDQXt1KaLI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:52.090 UTC [msp] Validate -> DEBU 76e MSP Org2MSP validating identity -orderer.example.com | 2018-01-18 01:58:52.090 UTC [common/config] validateMSP -> DEBU 76f Setting up MSP for org OrdererOrg -orderer.example.com | 2018-01-18 01:58:52.090 UTC [msp] NewBccspMsp -> DEBU 770 Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-18 01:58:52.090 UTC [msp] Setup -> DEBU 771 Setting up MSP instance OrdererMSP -orderer.example.com | 2018-01-18 01:58:52.091 UTC [msp/identity] newIdentity -> DEBU 772 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW -orderer.example.com | gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w -orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -orderer.example.com | AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK -orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs -orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:52.091 UTC [msp/identity] newIdentity -> DEBU 773 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:52.091 UTC [msp/identity] newIdentity -> DEBU 774 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:52.092 UTC [msp] Validate -> DEBU 775 MSP OrdererMSP validating identity -orderer.example.com | 2018-01-18 01:58:52.092 UTC [msp] Setup -> DEBU 776 Setting up the MSP manager (3 msps) -orderer.example.com | 2018-01-18 01:58:52.092 UTC [msp] Setup -> DEBU 777 MSP manager setup complete, setup 3 msps -orderer.example.com | 2018-01-18 01:58:52.092 UTC [policies] GetPolicy -> DEBU 778 Returning policy Admins for evaluation -orderer.example.com | 2018-01-18 01:58:52.092 UTC [policies] CommitProposals -> DEBU 779 In commit adding relative sub-policy Org1MSP/Admins to Application -orderer.example.com | 2018-01-18 01:58:52.092 UTC [policies] GetPolicy -> DEBU 77a Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 01:58:52.092 UTC [policies] CommitProposals -> DEBU 77b In commit adding relative sub-policy Org1MSP/Readers to Application -orderer.example.com | 2018-01-18 01:58:52.092 UTC [policies] GetPolicy -> DEBU 77c Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:52.092 UTC [policies] CommitProposals -> DEBU 77d In commit adding relative sub-policy Org1MSP/Writers to Application -orderer.example.com | 2018-01-18 01:58:52.092 UTC [policies] GetPolicy -> DEBU 77e Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 01:58:52.092 UTC [policies] CommitProposals -> DEBU 77f In commit adding relative sub-policy Org2MSP/Readers to Application -orderer.example.com | 2018-01-18 01:58:52.092 UTC [policies] GetPolicy -> DEBU 780 Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:52.092 UTC [policies] CommitProposals -> DEBU 781 In commit adding relative sub-policy Org2MSP/Writers to Application -orderer.example.com | 2018-01-18 01:58:52.092 UTC [policies] GetPolicy -> DEBU 782 Returning policy Admins for evaluation -orderer.example.com | 2018-01-18 01:58:52.092 UTC [policies] CommitProposals -> DEBU 783 In commit adding relative sub-policy Org2MSP/Admins to Application -orderer.example.com | 2018-01-18 01:58:52.092 UTC [policies] GetPolicy -> DEBU 784 Returning policy Admins for evaluation -orderer.example.com | 2018-01-18 01:58:52.092 UTC [policies] GetPolicy -> DEBU 785 Returning policy Admins for evaluation -orderer.example.com | 2018-01-18 01:58:52.092 UTC [policies] GetPolicy -> DEBU 786 Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:52.092 UTC [policies] GetPolicy -> DEBU 787 Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:52.092 UTC [policies] GetPolicy -> DEBU 788 Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 01:58:52.092 UTC [policies] GetPolicy -> DEBU 789 Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 01:58:52.092 UTC [policies] GetPolicy -> DEBU 78a Returning policy Admins for evaluation -orderer.example.com | 2018-01-18 01:58:52.092 UTC [policies] CommitProposals -> DEBU 78b In commit adding relative sub-policy OrdererOrg/Admins to Orderer -orderer.example.com | 2018-01-18 01:58:52.092 UTC [policies] GetPolicy -> DEBU 78c Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 01:58:52.092 UTC [policies] CommitProposals -> DEBU 78d In commit adding relative sub-policy OrdererOrg/Readers to Orderer -orderer.example.com | 2018-01-18 01:58:52.092 UTC [policies] GetPolicy -> DEBU 78e Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:52.092 UTC [policies] CommitProposals -> DEBU 78f In commit adding relative sub-policy OrdererOrg/Writers to Orderer -orderer.example.com | 2018-01-18 01:58:52.092 UTC [policies] GetPolicy -> DEBU 790 Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 01:58:52.092 UTC [policies] GetPolicy -> DEBU 791 Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:52.093 UTC [policies] GetPolicy -> DEBU 792 Returning policy Admins for evaluation -orderer.example.com | 2018-01-18 01:58:52.093 UTC [policies] GetPolicy -> DEBU 793 Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:52.093 UTC [policies] GetPolicy -> DEBU 794 Returning policy Admins for evaluation -orderer.example.com | 2018-01-18 01:58:52.093 UTC [policies] CommitProposals -> DEBU 795 In commit adding relative sub-policy Orderer/Admins to Channel -orderer.example.com | 2018-01-18 01:58:52.093 UTC [policies] GetPolicy -> DEBU 796 Returning policy BlockValidation for evaluation -orderer.example.com | 2018-01-18 01:58:52.093 UTC [policies] CommitProposals -> DEBU 797 In commit adding relative sub-policy Orderer/BlockValidation to Channel -orderer.example.com | 2018-01-18 01:58:52.093 UTC [policies] GetPolicy -> DEBU 798 Returning policy OrdererOrg/Admins for evaluation -orderer.example.com | 2018-01-18 01:58:52.093 UTC [policies] CommitProposals -> DEBU 799 In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -orderer.example.com | 2018-01-18 01:58:52.093 UTC [policies] GetPolicy -> DEBU 79a Returning policy OrdererOrg/Readers for evaluation -orderer.example.com | 2018-01-18 01:58:52.093 UTC [policies] CommitProposals -> DEBU 79b In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -orderer.example.com | 2018-01-18 01:58:52.093 UTC [policies] GetPolicy -> DEBU 79c Returning policy OrdererOrg/Writers for evaluation -orderer.example.com | 2018-01-18 01:58:52.093 UTC [policies] CommitProposals -> DEBU 79d In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -orderer.example.com | 2018-01-18 01:58:52.093 UTC [policies] GetPolicy -> DEBU 79e Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 01:58:52.093 UTC [policies] CommitProposals -> DEBU 79f In commit adding relative sub-policy Orderer/Readers to Channel -orderer.example.com | 2018-01-18 01:58:52.093 UTC [policies] GetPolicy -> DEBU 7a0 Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:52.093 UTC [policies] CommitProposals -> DEBU 7a1 In commit adding relative sub-policy Orderer/Writers to Channel -orderer.example.com | 2018-01-18 01:58:52.093 UTC [policies] GetPolicy -> DEBU 7a2 Returning policy Org2MSP/Admins for evaluation -orderer.example.com | 2018-01-18 01:58:52.093 UTC [policies] CommitProposals -> DEBU 7a3 In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -orderer.example.com | 2018-01-18 01:58:52.093 UTC [policies] GetPolicy -> DEBU 7a4 Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 01:58:52.093 UTC [policies] CommitProposals -> DEBU 7a5 In commit adding relative sub-policy Application/Readers to Channel -orderer.example.com | 2018-01-18 01:58:52.093 UTC [policies] GetPolicy -> DEBU 7a6 Returning policy Org1MSP/Readers for evaluation -orderer.example.com | 2018-01-18 01:58:52.093 UTC [policies] CommitProposals -> DEBU 7a7 In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -orderer.example.com | 2018-01-18 01:58:52.093 UTC [policies] GetPolicy -> DEBU 7a8 Returning policy Org1MSP/Writers for evaluation -orderer.example.com | 2018-01-18 01:58:52.093 UTC [policies] CommitProposals -> DEBU 7a9 In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -orderer.example.com | 2018-01-18 01:58:52.093 UTC [policies] GetPolicy -> DEBU 7aa Returning policy Org2MSP/Readers for evaluation -orderer.example.com | 2018-01-18 01:58:52.094 UTC [policies] CommitProposals -> DEBU 7ab In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -orderer.example.com | 2018-01-18 01:58:52.094 UTC [policies] GetPolicy -> DEBU 7ac Returning policy Org2MSP/Writers for evaluation -orderer.example.com | 2018-01-18 01:58:52.094 UTC [policies] CommitProposals -> DEBU 7ad In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -orderer.example.com | 2018-01-18 01:58:52.094 UTC [policies] GetPolicy -> DEBU 7ae Returning policy Admins for evaluation -orderer.example.com | 2018-01-18 01:58:52.094 UTC [policies] CommitProposals -> DEBU 7af In commit adding relative sub-policy Application/Admins to Channel -orderer.example.com | 2018-01-18 01:58:52.094 UTC [policies] GetPolicy -> DEBU 7b0 Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:52.094 UTC [policies] CommitProposals -> DEBU 7b1 In commit adding relative sub-policy Application/Writers to Channel -orderer.example.com | 2018-01-18 01:58:52.094 UTC [policies] GetPolicy -> DEBU 7b2 Returning policy Org1MSP/Admins for evaluation -orderer.example.com | 2018-01-18 01:58:52.094 UTC [policies] CommitProposals -> DEBU 7b3 In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -orderer.example.com | 2018-01-18 01:58:52.094 UTC [policies] GetPolicy -> DEBU 7b4 Returning policy Admins for evaluation -orderer.example.com | 2018-01-18 01:58:52.094 UTC [policies] GetPolicy -> DEBU 7b5 Returning policy Admins for evaluation -orderer.example.com | 2018-01-18 01:58:52.094 UTC [policies] GetPolicy -> DEBU 7b6 Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 01:58:52.094 UTC [policies] GetPolicy -> DEBU 7b7 Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 01:58:52.094 UTC [policies] GetPolicy -> DEBU 7b8 Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:52.094 UTC [policies] GetPolicy -> DEBU 7b9 Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:52.094 UTC [policies] GetPolicy -> DEBU 7ba Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 01:58:52.094 UTC [policies] CommitProposals -> DEBU 7bb As expected, current configuration has policy '/Channel/Readers' -orderer.example.com | 2018-01-18 01:58:52.094 UTC [policies] GetPolicy -> DEBU 7bc Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:52.094 UTC [policies] CommitProposals -> DEBU 7bd As expected, current configuration has policy '/Channel/Writers' -orderer.example.com | 2018-01-18 01:58:52.094 UTC [policies] GetPolicy -> DEBU 7be Returning policy Application/Readers for evaluation -orderer.example.com | 2018-01-18 01:58:52.095 UTC [policies] CommitProposals -> DEBU 7bf As expected, current configuration has policy '/Channel/Application/Readers' -orderer.example.com | 2018-01-18 01:58:52.095 UTC [policies] GetPolicy -> DEBU 7c0 Returning policy Application/Writers for evaluation -orderer.example.com | 2018-01-18 01:58:52.095 UTC [policies] CommitProposals -> DEBU 7c1 As expected, current configuration has policy '/Channel/Application/Writers' -orderer.example.com | 2018-01-18 01:58:52.095 UTC [policies] GetPolicy -> DEBU 7c2 Returning policy Application/Admins for evaluation -orderer.example.com | 2018-01-18 01:58:52.095 UTC [policies] CommitProposals -> DEBU 7c3 As expected, current configuration has policy '/Channel/Application/Admins' -orderer.example.com | 2018-01-18 01:58:52.095 UTC [policies] GetPolicy -> DEBU 7c4 Returning policy Orderer/BlockValidation for evaluation -orderer.example.com | 2018-01-18 01:58:52.095 UTC [policies] CommitProposals -> DEBU 7c5 As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -orderer.example.com | 2018-01-18 01:58:52.096 UTC [orderer/common/blockcutter] Ordered -> DEBU 7c6 Found message which requested to be isolated, cutting into its own batch -orderer.example.com | 2018-01-18 01:58:52.096 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 7c7 retrieveBlockByNumber() - blockNum = [0] -orderer.example.com | 2018-01-18 01:58:52.096 UTC [fsblkstorage] newBlockfileStream -> DEBU 7c8 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] -orderer.example.com | 2018-01-18 01:58:52.096 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 7c9 Remaining bytes=[9082], Going to peek [8] bytes -orderer.example.com | 2018-01-18 01:58:52.096 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 7ca Returning blockbytes - length=[9080], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -orderer.example.com | 2018-01-18 01:58:52.096 UTC [common/config] NewStandardValues -> DEBU 7cb Initializing protos for *config.ChannelProtos -orderer.example.com | 2018-01-18 01:58:52.096 UTC [common/config] initializeProtosStruct -> DEBU 7cc Processing field: HashingAlgorithm -orderer.example.com | 2018-01-18 01:58:52.096 UTC [common/config] initializeProtosStruct -> DEBU 7cd Processing field: BlockDataHashingStructure -orderer.example.com | 2018-01-18 01:58:52.096 UTC [common/config] initializeProtosStruct -> DEBU 7ce Processing field: OrdererAddresses -orderer.example.com | 2018-01-18 01:58:52.096 UTC [common/config] initializeProtosStruct -> DEBU 7cf Processing field: Consortium -orderer.example.com | 2018-01-18 01:58:52.097 UTC [common/configtx] addToMap -> DEBU 7d0 Adding to config map: [Groups] /Channel -orderer.example.com | 2018-01-18 01:58:52.097 UTC [common/configtx] addToMap -> DEBU 7d1 Adding to config map: [Groups] /Channel/Application -orderer.example.com | 2018-01-18 01:58:52.097 UTC [common/configtx] addToMap -> DEBU 7d2 Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | 2018-01-18 01:58:52.097 UTC [common/configtx] addToMap -> DEBU 7d3 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -orderer.example.com | 2018-01-18 01:58:52.097 UTC [common/configtx] addToMap -> DEBU 7d4 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | 2018-01-18 01:58:52.097 UTC [common/configtx] addToMap -> DEBU 7d5 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | 2018-01-18 01:58:52.098 UTC [common/configtx] addToMap -> DEBU 7d6 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | 2018-01-18 01:58:52.098 UTC [common/configtx] addToMap -> DEBU 7d7 Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | 2018-01-18 01:58:52.098 UTC [common/configtx] addToMap -> DEBU 7d8 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -orderer.example.com | 2018-01-18 01:58:52.098 UTC [common/configtx] addToMap -> DEBU 7d9 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | 2018-01-18 01:58:52.098 UTC [common/configtx] addToMap -> DEBU 7da Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | 2018-01-18 01:58:52.098 UTC [common/configtx] addToMap -> DEBU 7db Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | 2018-01-18 01:58:52.099 UTC [common/configtx] addToMap -> DEBU 7dc Adding to config map: [Policy] /Channel/Application/Admins -orderer.example.com | 2018-01-18 01:58:52.099 UTC [common/configtx] addToMap -> DEBU 7dd Adding to config map: [Policy] /Channel/Application/Writers -orderer.example.com | 2018-01-18 01:58:52.099 UTC [common/configtx] addToMap -> DEBU 7de Adding to config map: [Policy] /Channel/Application/Readers -orderer.example.com | 2018-01-18 01:58:52.099 UTC [common/configtx] addToMap -> DEBU 7df Adding to config map: [Groups] /Channel/Orderer -orderer.example.com | 2018-01-18 01:58:52.099 UTC [common/configtx] addToMap -> DEBU 7e0 Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -orderer.example.com | 2018-01-18 01:58:52.099 UTC [common/configtx] addToMap -> DEBU 7e1 Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -orderer.example.com | 2018-01-18 01:58:52.099 UTC [common/configtx] addToMap -> DEBU 7e2 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -orderer.example.com | 2018-01-18 01:58:52.099 UTC [common/configtx] addToMap -> DEBU 7e3 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | 2018-01-18 01:58:52.099 UTC [common/configtx] addToMap -> DEBU 7e4 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | 2018-01-18 01:58:52.099 UTC [common/configtx] addToMap -> DEBU 7e5 Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -orderer.example.com | 2018-01-18 01:58:52.099 UTC [common/configtx] addToMap -> DEBU 7e6 Adding to config map: [Values] /Channel/Orderer/ConsensusType -orderer.example.com | 2018-01-18 01:58:52.100 UTC [common/configtx] addToMap -> DEBU 7e7 Adding to config map: [Values] /Channel/Orderer/BatchSize -orderer.example.com | 2018-01-18 01:58:52.100 UTC [common/configtx] addToMap -> DEBU 7e8 Adding to config map: [Values] /Channel/Orderer/BatchTimeout -orderer.example.com | 2018-01-18 01:58:52.100 UTC [common/configtx] addToMap -> DEBU 7e9 Adding to config map: [Policy] /Channel/Orderer/BlockValidation -orderer.example.com | 2018-01-18 01:58:52.100 UTC [common/configtx] addToMap -> DEBU 7ea Adding to config map: [Policy] /Channel/Orderer/Readers -orderer.example.com | 2018-01-18 01:58:52.100 UTC [common/configtx] addToMap -> DEBU 7eb Adding to config map: [Policy] /Channel/Orderer/Writers -orderer.example.com | 2018-01-18 01:58:52.100 UTC [common/configtx] addToMap -> DEBU 7ec Adding to config map: [Policy] /Channel/Orderer/Admins -orderer.example.com | 2018-01-18 01:58:52.100 UTC [common/configtx] addToMap -> DEBU 7ed Adding to config map: [Values] /Channel/BlockDataHashingStructure -orderer.example.com | 2018-01-18 01:58:52.100 UTC [common/configtx] addToMap -> DEBU 7ee Adding to config map: [Values] /Channel/Consortium -orderer.example.com | 2018-01-18 01:58:52.100 UTC [common/configtx] addToMap -> DEBU 7ef Adding to config map: [Values] /Channel/OrdererAddresses -orderer.example.com | 2018-01-18 01:58:52.100 UTC [common/configtx] addToMap -> DEBU 7f0 Adding to config map: [Values] /Channel/HashingAlgorithm -orderer.example.com | 2018-01-18 01:58:52.100 UTC [common/configtx] addToMap -> DEBU 7f1 Adding to config map: [Policy] /Channel/Admins -orderer.example.com | 2018-01-18 01:58:52.100 UTC [common/configtx] addToMap -> DEBU 7f2 Adding to config map: [Policy] /Channel/Readers -orderer.example.com | 2018-01-18 01:58:52.100 UTC [common/configtx] addToMap -> DEBU 7f3 Adding to config map: [Policy] /Channel/Writers -orderer.example.com | 2018-01-18 01:58:52.100 UTC [common/configtx] processConfig -> DEBU 7f4 Beginning new config for channel businesschannel -orderer.example.com | 2018-01-18 01:58:52.100 UTC [common/config] NewStandardValues -> DEBU 7f5 Initializing protos for *config.ChannelProtos -orderer.example.com | 2018-01-18 01:58:52.100 UTC [common/config] initializeProtosStruct -> DEBU 7f6 Processing field: HashingAlgorithm -orderer.example.com | 2018-01-18 01:58:52.100 UTC [common/config] initializeProtosStruct -> DEBU 7f7 Processing field: BlockDataHashingStructure -orderer.example.com | 2018-01-18 01:58:52.101 UTC [common/config] initializeProtosStruct -> DEBU 7f8 Processing field: OrdererAddresses -orderer.example.com | 2018-01-18 01:58:52.101 UTC [common/config] initializeProtosStruct -> DEBU 7f9 Processing field: Consortium -orderer.example.com | 2018-01-18 01:58:52.101 UTC [policies] ProposePolicy -> DEBU 7fa Proposed new policy Readers for Channel -orderer.example.com | 2018-01-18 01:58:52.101 UTC [policies] ProposePolicy -> DEBU 7fb Proposed new policy Writers for Channel -orderer.example.com | 2018-01-18 01:58:52.101 UTC [policies] ProposePolicy -> DEBU 7fc Proposed new policy Admins for Channel -orderer.example.com | 2018-01-18 01:58:52.101 UTC [common/config] NewStandardValues -> DEBU 7fd Initializing protos for *struct {} -orderer.example.com | 2018-01-18 01:58:52.101 UTC [policies] ProposePolicy -> DEBU 7fe Proposed new policy Admins for Application -orderer.example.com | 2018-01-18 01:58:52.101 UTC [policies] ProposePolicy -> DEBU 7ff Proposed new policy Writers for Application -orderer.example.com | 2018-01-18 01:58:52.101 UTC [policies] ProposePolicy -> DEBU 800 Proposed new policy Readers for Application -orderer.example.com | 2018-01-18 01:58:52.101 UTC [common/config] NewStandardValues -> DEBU 801 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:52.101 UTC [common/config] initializeProtosStruct -> DEBU 802 Processing field: MSP -orderer.example.com | 2018-01-18 01:58:52.101 UTC [common/config] NewStandardValues -> DEBU 803 Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | 2018-01-18 01:58:52.101 UTC [common/config] initializeProtosStruct -> DEBU 804 Processing field: AnchorPeers -orderer.example.com | 2018-01-18 01:58:52.101 UTC [common/config] NewStandardValues -> DEBU 805 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:52.101 UTC [common/config] initializeProtosStruct -> DEBU 806 Processing field: MSP -orderer.example.com | 2018-01-18 01:58:52.101 UTC [policies] ProposePolicy -> DEBU 807 Proposed new policy Admins for Org1MSP -orderer.example.com | 2018-01-18 01:58:52.101 UTC [policies] ProposePolicy -> DEBU 808 Proposed new policy Readers for Org1MSP -orderer.example.com | 2018-01-18 01:58:52.101 UTC [policies] ProposePolicy -> DEBU 809 Proposed new policy Writers for Org1MSP -orderer.example.com | 2018-01-18 01:58:52.101 UTC [common/config] NewStandardValues -> DEBU 80a Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:52.101 UTC [common/config] initializeProtosStruct -> DEBU 80b Processing field: MSP -orderer.example.com | 2018-01-18 01:58:52.101 UTC [common/config] NewStandardValues -> DEBU 80c Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | 2018-01-18 01:58:52.101 UTC [common/config] initializeProtosStruct -> DEBU 80d Processing field: AnchorPeers -orderer.example.com | 2018-01-18 01:58:52.101 UTC [common/config] NewStandardValues -> DEBU 80e Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:52.101 UTC [common/config] initializeProtosStruct -> DEBU 80f Processing field: MSP -orderer.example.com | 2018-01-18 01:58:52.101 UTC [policies] ProposePolicy -> DEBU 810 Proposed new policy Admins for Org2MSP -orderer.example.com | 2018-01-18 01:58:52.101 UTC [policies] ProposePolicy -> DEBU 811 Proposed new policy Readers for Org2MSP -orderer.example.com | 2018-01-18 01:58:52.101 UTC [policies] ProposePolicy -> DEBU 812 Proposed new policy Writers for Org2MSP -orderer.example.com | 2018-01-18 01:58:52.101 UTC [common/config] NewStandardValues -> DEBU 813 Initializing protos for *config.OrdererProtos -orderer.example.com | 2018-01-18 01:58:52.101 UTC [common/config] initializeProtosStruct -> DEBU 814 Processing field: ConsensusType -orderer.example.com | 2018-01-18 01:58:52.101 UTC [common/config] initializeProtosStruct -> DEBU 815 Processing field: BatchSize -orderer.example.com | 2018-01-18 01:58:52.101 UTC [common/config] initializeProtosStruct -> DEBU 816 Processing field: BatchTimeout -orderer.example.com | 2018-01-18 01:58:52.101 UTC [common/config] initializeProtosStruct -> DEBU 817 Processing field: KafkaBrokers -orderer.example.com | 2018-01-18 01:58:52.101 UTC [common/config] initializeProtosStruct -> DEBU 818 Processing field: ChannelRestrictions -orderer.example.com | 2018-01-18 01:58:52.101 UTC [policies] ProposePolicy -> DEBU 819 Proposed new policy Writers for Orderer -orderer.example.com | 2018-01-18 01:58:52.101 UTC [policies] ProposePolicy -> DEBU 81a Proposed new policy Admins for Orderer -orderer.example.com | 2018-01-18 01:58:52.101 UTC [policies] ProposePolicy -> DEBU 81b Proposed new policy BlockValidation for Orderer -orderer.example.com | 2018-01-18 01:58:52.102 UTC [policies] ProposePolicy -> DEBU 81c Proposed new policy Readers for Orderer -orderer.example.com | 2018-01-18 01:58:52.102 UTC [common/config] NewStandardValues -> DEBU 81d Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:52.102 UTC [common/config] initializeProtosStruct -> DEBU 81e Processing field: MSP -orderer.example.com | 2018-01-18 01:58:52.102 UTC [policies] ProposePolicy -> DEBU 81f Proposed new policy Admins for OrdererOrg -orderer.example.com | 2018-01-18 01:58:52.102 UTC [policies] ProposePolicy -> DEBU 820 Proposed new policy Readers for OrdererOrg -orderer.example.com | 2018-01-18 01:58:52.102 UTC [policies] ProposePolicy -> DEBU 821 Proposed new policy Writers for OrdererOrg -orderer.example.com | 2018-01-18 01:58:52.102 UTC [common/config] Validate -> DEBU 822 Anchor peers for org Org1MSP are -orderer.example.com | 2018-01-18 01:58:52.102 UTC [common/config] validateMSP -> DEBU 823 Setting up MSP for org Org1MSP -orderer.example.com | 2018-01-18 01:58:52.102 UTC [msp] NewBccspMsp -> DEBU 824 Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-18 01:58:52.102 UTC [msp] Setup -> DEBU 825 Setting up MSP instance Org1MSP -orderer.example.com | 2018-01-18 01:58:52.102 UTC [msp/identity] newIdentity -> DEBU 826 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -orderer.example.com | BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf -orderer.example.com | db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx -orderer.example.com | JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi -orderer.example.com | /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ -orderer.example.com | H7n8z1pj5w== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:52.102 UTC [msp/identity] newIdentity -> DEBU 827 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -orderer.example.com | xHTBvxfK6mAzmUitFmY= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:52.103 UTC [msp/identity] newIdentity -> DEBU 828 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -orderer.example.com | xHTBvxfK6mAzmUitFmY= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:52.103 UTC [msp] Validate -> DEBU 829 MSP Org1MSP validating identity -orderer.example.com | 2018-01-18 01:58:52.103 UTC [common/config] Validate -> DEBU 82a Anchor peers for org Org2MSP are -orderer.example.com | 2018-01-18 01:58:52.103 UTC [common/config] validateMSP -> DEBU 82b Setting up MSP for org Org2MSP -orderer.example.com | 2018-01-18 01:58:52.103 UTC [msp] NewBccspMsp -> DEBU 82c Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-18 01:58:52.103 UTC [msp] Setup -> DEBU 82d Setting up MSP instance Org2MSP -orderer.example.com | 2018-01-18 01:58:52.104 UTC [msp/identity] newIdentity -> DEBU 82e Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -orderer.example.com | mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 -orderer.example.com | sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ -orderer.example.com | xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv -orderer.example.com | WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk -orderer.example.com | SCjyRdD3aQ== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:52.104 UTC [msp/identity] newIdentity -> DEBU 82f Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -orderer.example.com | AXYxULZpXYDQXt1KaLI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:52.104 UTC [msp/identity] newIdentity -> DEBU 830 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -orderer.example.com | AXYxULZpXYDQXt1KaLI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:52.105 UTC [msp] Validate -> DEBU 831 MSP Org2MSP validating identity -orderer.example.com | 2018-01-18 01:58:52.105 UTC [common/config] validateMSP -> DEBU 832 Setting up MSP for org OrdererOrg -orderer.example.com | 2018-01-18 01:58:52.105 UTC [msp] NewBccspMsp -> DEBU 833 Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-18 01:58:52.105 UTC [msp] Setup -> DEBU 834 Setting up MSP instance OrdererMSP -orderer.example.com | 2018-01-18 01:58:52.105 UTC [msp/identity] newIdentity -> DEBU 835 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW -orderer.example.com | gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w -orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -orderer.example.com | AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK -orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs -orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:52.106 UTC [msp/identity] newIdentity -> DEBU 836 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:52.106 UTC [msp/identity] newIdentity -> DEBU 837 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:52.106 UTC [msp] Validate -> DEBU 838 MSP OrdererMSP validating identity -orderer.example.com | 2018-01-18 01:58:52.106 UTC [msp] Setup -> DEBU 839 Setting up the MSP manager (3 msps) -orderer.example.com | 2018-01-18 01:58:52.106 UTC [msp] Setup -> DEBU 83a MSP manager setup complete, setup 3 msps -orderer.example.com | 2018-01-18 01:58:52.106 UTC [policies] GetPolicy -> DEBU 83b Returning policy Admins for evaluation -orderer.example.com | 2018-01-18 01:58:52.106 UTC [policies] CommitProposals -> DEBU 83c In commit adding relative sub-policy Org1MSP/Admins to Application -orderer.example.com | 2018-01-18 01:58:52.106 UTC [policies] GetPolicy -> DEBU 83d Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 01:58:52.106 UTC [policies] CommitProposals -> DEBU 83e In commit adding relative sub-policy Org1MSP/Readers to Application -orderer.example.com | 2018-01-18 01:58:52.106 UTC [policies] GetPolicy -> DEBU 83f Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:52.106 UTC [policies] CommitProposals -> DEBU 840 In commit adding relative sub-policy Org1MSP/Writers to Application -orderer.example.com | 2018-01-18 01:58:52.106 UTC [policies] GetPolicy -> DEBU 841 Returning policy Admins for evaluation -orderer.example.com | 2018-01-18 01:58:52.107 UTC [policies] CommitProposals -> DEBU 842 In commit adding relative sub-policy Org2MSP/Admins to Application -orderer.example.com | 2018-01-18 01:58:52.107 UTC [policies] GetPolicy -> DEBU 843 Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 01:58:52.107 UTC [policies] CommitProposals -> DEBU 844 In commit adding relative sub-policy Org2MSP/Readers to Application -orderer.example.com | 2018-01-18 01:58:52.107 UTC [policies] GetPolicy -> DEBU 845 Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:52.107 UTC [policies] CommitProposals -> DEBU 846 In commit adding relative sub-policy Org2MSP/Writers to Application -orderer.example.com | 2018-01-18 01:58:52.107 UTC [policies] GetPolicy -> DEBU 847 Returning policy Admins for evaluation -orderer.example.com | 2018-01-18 01:58:52.107 UTC [policies] GetPolicy -> DEBU 848 Returning policy Admins for evaluation -orderer.example.com | 2018-01-18 01:58:52.107 UTC [policies] GetPolicy -> DEBU 849 Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:52.107 UTC [policies] GetPolicy -> DEBU 84a Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:52.107 UTC [policies] GetPolicy -> DEBU 84b Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 01:58:52.107 UTC [policies] GetPolicy -> DEBU 84c Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 01:58:52.107 UTC [policies] GetPolicy -> DEBU 84d Returning policy Admins for evaluation -orderer.example.com | 2018-01-18 01:58:52.107 UTC [policies] CommitProposals -> DEBU 84e In commit adding relative sub-policy OrdererOrg/Admins to Orderer -orderer.example.com | 2018-01-18 01:58:52.107 UTC [policies] GetPolicy -> DEBU 84f Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 01:58:52.107 UTC [policies] CommitProposals -> DEBU 850 In commit adding relative sub-policy OrdererOrg/Readers to Orderer -orderer.example.com | 2018-01-18 01:58:52.107 UTC [policies] GetPolicy -> DEBU 851 Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:52.107 UTC [policies] CommitProposals -> DEBU 852 In commit adding relative sub-policy OrdererOrg/Writers to Orderer -orderer.example.com | 2018-01-18 01:58:52.107 UTC [policies] GetPolicy -> DEBU 853 Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:52.107 UTC [policies] GetPolicy -> DEBU 854 Returning policy Admins for evaluation -orderer.example.com | 2018-01-18 01:58:52.107 UTC [policies] GetPolicy -> DEBU 855 Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:52.107 UTC [policies] GetPolicy -> DEBU 856 Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 01:58:52.107 UTC [policies] GetPolicy -> DEBU 857 Returning policy Org1MSP/Admins for evaluation -orderer.example.com | 2018-01-18 01:58:52.107 UTC [policies] CommitProposals -> DEBU 858 In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -orderer.example.com | 2018-01-18 01:58:52.107 UTC [policies] GetPolicy -> DEBU 859 Returning policy Org1MSP/Readers for evaluation -orderer.example.com | 2018-01-18 01:58:52.107 UTC [policies] CommitProposals -> DEBU 85a In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -orderer.example.com | 2018-01-18 01:58:52.107 UTC [policies] GetPolicy -> DEBU 85b Returning policy Org2MSP/Admins for evaluation -orderer.example.com | 2018-01-18 01:58:52.107 UTC [policies] CommitProposals -> DEBU 85c In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -orderer.example.com | 2018-01-18 01:58:52.108 UTC [policies] GetPolicy -> DEBU 85d Returning policy Org2MSP/Readers for evaluation -orderer.example.com | 2018-01-18 01:58:52.108 UTC [policies] CommitProposals -> DEBU 85e In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -orderer.example.com | 2018-01-18 01:58:52.108 UTC [policies] GetPolicy -> DEBU 85f Returning policy Org2MSP/Writers for evaluation -orderer.example.com | 2018-01-18 01:58:52.108 UTC [policies] CommitProposals -> DEBU 860 In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -orderer.example.com | 2018-01-18 01:58:52.108 UTC [policies] GetPolicy -> DEBU 861 Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:52.108 UTC [policies] CommitProposals -> DEBU 862 In commit adding relative sub-policy Application/Writers to Channel -orderer.example.com | 2018-01-18 01:58:52.108 UTC [policies] GetPolicy -> DEBU 863 Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 01:58:52.108 UTC [policies] CommitProposals -> DEBU 864 In commit adding relative sub-policy Application/Readers to Channel -orderer.example.com | 2018-01-18 01:58:52.108 UTC [policies] GetPolicy -> DEBU 865 Returning policy Org1MSP/Writers for evaluation -orderer.example.com | 2018-01-18 01:58:52.108 UTC [policies] CommitProposals -> DEBU 866 In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -orderer.example.com | 2018-01-18 01:58:52.108 UTC [policies] GetPolicy -> DEBU 867 Returning policy Admins for evaluation -orderer.example.com | 2018-01-18 01:58:52.108 UTC [policies] CommitProposals -> DEBU 868 In commit adding relative sub-policy Application/Admins to Channel -orderer.example.com | 2018-01-18 01:58:52.108 UTC [policies] GetPolicy -> DEBU 869 Returning policy Admins for evaluation -orderer.example.com | 2018-01-18 01:58:52.108 UTC [policies] CommitProposals -> DEBU 86a In commit adding relative sub-policy Orderer/Admins to Channel -orderer.example.com | 2018-01-18 01:58:52.108 UTC [policies] GetPolicy -> DEBU 86b Returning policy BlockValidation for evaluation -orderer.example.com | 2018-01-18 01:58:52.108 UTC [policies] CommitProposals -> DEBU 86c In commit adding relative sub-policy Orderer/BlockValidation to Channel -orderer.example.com | 2018-01-18 01:58:52.108 UTC [policies] GetPolicy -> DEBU 86d Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 01:58:52.108 UTC [policies] CommitProposals -> DEBU 86e In commit adding relative sub-policy Orderer/Readers to Channel -orderer.example.com | 2018-01-18 01:58:52.108 UTC [policies] GetPolicy -> DEBU 86f Returning policy OrdererOrg/Admins for evaluation -orderer.example.com | 2018-01-18 01:58:52.108 UTC [policies] CommitProposals -> DEBU 870 In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -orderer.example.com | 2018-01-18 01:58:52.108 UTC [policies] GetPolicy -> DEBU 871 Returning policy OrdererOrg/Readers for evaluation -orderer.example.com | 2018-01-18 01:58:52.108 UTC [policies] CommitProposals -> DEBU 872 In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -orderer.example.com | 2018-01-18 01:58:52.108 UTC [policies] GetPolicy -> DEBU 873 Returning policy OrdererOrg/Writers for evaluation -orderer.example.com | 2018-01-18 01:58:52.108 UTC [policies] CommitProposals -> DEBU 874 In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -orderer.example.com | 2018-01-18 01:58:52.108 UTC [policies] GetPolicy -> DEBU 875 Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:52.108 UTC [policies] CommitProposals -> DEBU 876 In commit adding relative sub-policy Orderer/Writers to Channel -orderer.example.com | 2018-01-18 01:58:52.108 UTC [policies] GetPolicy -> DEBU 877 Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 01:58:52.108 UTC [policies] GetPolicy -> DEBU 878 Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 01:58:52.108 UTC [policies] GetPolicy -> DEBU 879 Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:52.108 UTC [policies] GetPolicy -> DEBU 87a Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:52.108 UTC [policies] GetPolicy -> DEBU 87b Returning policy Admins for evaluation -orderer.example.com | 2018-01-18 01:58:52.108 UTC [policies] GetPolicy -> DEBU 87c Returning policy Admins for evaluation -orderer.example.com | 2018-01-18 01:58:52.108 UTC [policies] GetPolicy -> DEBU 87d Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 01:58:52.108 UTC [policies] CommitProposals -> DEBU 87e As expected, current configuration has policy '/Channel/Readers' -orderer.example.com | 2018-01-18 01:58:52.108 UTC [policies] GetPolicy -> DEBU 87f Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:52.108 UTC [policies] CommitProposals -> DEBU 880 As expected, current configuration has policy '/Channel/Writers' -orderer.example.com | 2018-01-18 01:58:52.108 UTC [policies] GetPolicy -> DEBU 881 Returning policy Application/Readers for evaluation -orderer.example.com | 2018-01-18 01:58:52.108 UTC [policies] CommitProposals -> DEBU 882 As expected, current configuration has policy '/Channel/Application/Readers' -orderer.example.com | 2018-01-18 01:58:52.108 UTC [policies] GetPolicy -> DEBU 883 Returning policy Application/Writers for evaluation -orderer.example.com | 2018-01-18 01:58:52.108 UTC [policies] CommitProposals -> DEBU 884 As expected, current configuration has policy '/Channel/Application/Writers' -orderer.example.com | 2018-01-18 01:58:52.108 UTC [policies] GetPolicy -> DEBU 885 Returning policy Application/Admins for evaluation -orderer.example.com | 2018-01-18 01:58:52.109 UTC [policies] CommitProposals -> DEBU 886 As expected, current configuration has policy '/Channel/Application/Admins' -orderer.example.com | 2018-01-18 01:58:52.109 UTC [policies] GetPolicy -> DEBU 887 Returning policy Orderer/BlockValidation for evaluation -orderer.example.com | 2018-01-18 01:58:52.109 UTC [policies] CommitProposals -> DEBU 888 As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -orderer.example.com | 2018-01-18 01:58:52.109 UTC [fsblkstorage] newBlockfileMgr -> DEBU 889 newBlockfileMgr() initializing file-based block storage for ledger: businesschannel -orderer.example.com | 2018-01-18 01:58:52.109 UTC [kvledger.util] CreateDirIfMissing -> DEBU 88a CreateDirIfMissing [/var/hyperledger/production/orderer/chains/businesschannel/] -orderer.example.com | 2018-01-18 01:58:52.109 UTC [kvledger.util] logDirStatus -> DEBU 88b Before creating dir - [/var/hyperledger/production/orderer/chains/businesschannel/] does not exist -orderer.example.com | 2018-01-18 01:58:52.109 UTC [kvledger.util] logDirStatus -> DEBU 88c After creating dir - [/var/hyperledger/production/orderer/chains/businesschannel/] exists -orderer.example.com | 2018-01-18 01:58:52.111 UTC [fsblkstorage] syncCPInfoFromFS -> DEBU 88d Starting checkpoint=latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0] -orderer.example.com | 2018-01-18 01:58:52.111 UTC [fsblkstorage] syncCPInfoFromFS -> DEBU 88e status of file [/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000]: exists=[false], size=[0] -orderer.example.com | 2018-01-18 01:58:52.111 UTC [fsblkstorage] newBlockIndex -> DEBU 88f newBlockIndex() - indexItems:[[BlockNum]] -orderer.example.com | 2018-01-18 01:58:52.111 UTC [fsblkstorage] newBlockfileStream -> DEBU 890 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] -orderer.example.com | 2018-01-18 01:58:52.111 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 891 Finished reading file number [0] -orderer.example.com | 2018-01-18 01:58:52.111 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 892 blockbytes [0] read from file [0] -orderer.example.com | 2018-01-18 01:58:52.113 UTC [fsblkstorage] indexBlock -> DEBU 893 Indexing block [blockNum=0, blockHash=[]byte{0xe1, 0x44, 0x7d, 0x23, 0xdf, 0xa2, 0x20, 0x82, 0xd4, 0xe4, 0x74, 0x4d, 0x77, 0xfd, 0x41, 0x93, 0xb7, 0xdb, 0xc6, 0xb0, 0x34, 0x30, 0xc2, 0xa7, 0xc6, 0x50, 0xfb, 0x2b, 0x1c, 0x26, 0xcf, 0x43} txOffsets= -orderer.example.com | txId= locPointer=offset=38, bytesLength=11891 -orderer.example.com | ] -orderer.example.com | 2018-01-18 01:58:52.113 UTC [fsblkstorage] updateCheckpoint -> DEBU 894 Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[11934], isChainEmpty=[false], lastBlockNumber=[0] -orderer.example.com | 2018-01-18 01:58:52.113 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 895 retrieveBlockByNumber() - blockNum = [0] -orderer.example.com | 2018-01-18 01:58:52.113 UTC [fsblkstorage] newBlockfileStream -> DEBU 896 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] -orderer.example.com | 2018-01-18 01:58:52.113 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 897 Remaining bytes=[11934], Going to peek [8] bytes -orderer.example.com | 2018-01-18 01:58:52.113 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 898 Returning blockbytes - length=[11932], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -orderer.example.com | 2018-01-18 01:58:52.113 UTC [orderer/multichain] newChainSupport -> DEBU 899 [channel: businesschannel] Retrieved metadata for tip of chain (blockNumber=0, lastConfig=0, lastConfigSeq=1): -orderer.example.com | 2018-01-18 01:58:52.114 UTC [orderer/multichain] newChain -> INFO 89a Created and starting new chain businesschannel -orderer.example.com | 2018-01-18 01:58:52.114 UTC [orderer/multichain] addBlockSignature -> DEBU 89b &{ledgerResources:0xc4201e4840 chain:0xc4201e4c60 cutter:0xc4201552c0 filters:0xc4201e48a0 signer:0x1274e88 lastConfig:0 lastConfigSeq:0} -orderer.example.com | 2018-01-18 01:58:52.114 UTC [orderer/multichain] addBlockSignature -> DEBU 89c &{} -orderer.example.com | 2018-01-18 01:58:52.114 UTC [msp] GetLocalMSP -> DEBU 89d Returning existing local MSP -orderer.example.com | 2018-01-18 01:58:52.114 UTC [msp] GetDefaultSigningIdentity -> DEBU 89e Obtaining default signing identity -orderer.example.com | 2018-01-18 01:58:52.114 UTC [msp] GetLocalMSP -> DEBU 89f Returning existing local MSP -orderer.example.com | 2018-01-18 01:58:52.114 UTC [msp] GetDefaultSigningIdentity -> DEBU 8a0 Obtaining default signing identity -orderer.example.com | 2018-01-18 01:58:52.114 UTC [msp/identity] Sign -> DEBU 8a1 Sign: plaintext: 0AFA050A0A4F7264657265724D535012...11C1543A4BB5CABB852456A9329EFA44 -orderer.example.com | 2018-01-18 01:58:52.114 UTC [msp/identity] Sign -> DEBU 8a2 Sign: digest: D65437852D5AAB5A10C170AA03C20FDC59C187AC37989047F521C4F3C195D2D1 -orderer.example.com | 2018-01-18 01:58:52.114 UTC [msp] GetLocalMSP -> DEBU 8a3 Returning existing local MSP -orderer.example.com | 2018-01-18 01:58:52.114 UTC [msp] GetDefaultSigningIdentity -> DEBU 8a4 Obtaining default signing identity -orderer.example.com | 2018-01-18 01:58:52.114 UTC [orderer/multichain] addLastConfigSignature -> DEBU 8a5 [channel: testchainid] About to write block, setting its LAST_CONFIG to 0 -orderer.example.com | 2018-01-18 01:58:52.114 UTC [msp] GetLocalMSP -> DEBU 8a6 Returning existing local MSP -orderer.example.com | 2018-01-18 01:58:52.114 UTC [msp] GetDefaultSigningIdentity -> DEBU 8a7 Obtaining default signing identity -orderer.example.com | 2018-01-18 01:58:52.114 UTC [msp/identity] Sign -> DEBU 8a8 Sign: plaintext: 0AFA050A0A4F7264657265724D535012...11C1543A4BB5CABB852456A9329EFA44 -orderer.example.com | 2018-01-18 01:58:52.114 UTC [msp/identity] Sign -> DEBU 8a9 Sign: digest: B64A3A33F2A08CAE910464B9AC680B88171D595BB231472830977868458CAF55 -orderer.example.com | 2018-01-18 01:58:52.116 UTC [fsblkstorage] indexBlock -> DEBU 8aa Indexing block [blockNum=1, blockHash=[]byte{0xb4, 0x10, 0xcc, 0x24, 0x6c, 0x30, 0xbd, 0xe8, 0xb8, 0x1b, 0x9f, 0x2e, 0xe8, 0x1, 0x61, 0x8d, 0x3b, 0xa2, 0x7e, 0xd4, 0x39, 0xe, 0xae, 0x93, 0xc0, 0x43, 0xfe, 0x2b, 0x65, 0xf6, 0x33, 0x76} txOffsets= -orderer.example.com | txId= locPointer=offset=70, bytesLength=12792 -orderer.example.com | ] -orderer.example.com | 2018-01-18 01:58:52.116 UTC [fsblkstorage] updateCheckpoint -> DEBU 8ab Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[23690], isChainEmpty=[false], lastBlockNumber=[1] -orderer.example.com | 2018-01-18 01:58:52.116 UTC [orderer/multichain] WriteBlock -> DEBU 8ac [channel: testchainid] Wrote block 1 -orderer.example.com | 2018-01-18 01:58:52.242 UTC [policies] GetPolicy -> DEBU 8ad Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 01:58:52.243 UTC [cauthdsl] func1 -> DEBU 8ae 0xc42014b5f0 gate 1516240732243135796 evaluation starts -orderer.example.com | 2018-01-18 01:58:52.243 UTC [cauthdsl] func2 -> DEBU 8af 0xc42014b5f0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-18 01:58:52.243 UTC [cauthdsl] func2 -> DEBU 8b0 0xc42014b5f0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-18 01:58:52.244 UTC [msp/identity] newIdentity -> DEBU 8b1 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -orderer.example.com | xHTBvxfK6mAzmUitFmY= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:52.244 UTC [msp] SatisfiesPrincipal -> DEBU 8b2 Checking if identity satisfies MEMBER role for Org1MSP -orderer.example.com | 2018-01-18 01:58:52.244 UTC [msp] Validate -> DEBU 8b3 MSP Org1MSP validating identity -orderer.example.com | 2018-01-18 01:58:52.244 UTC [cauthdsl] func2 -> DEBU 8b4 0xc42014b5f0 principal matched by identity 0 -orderer.example.com | 2018-01-18 01:58:52.244 UTC [msp/identity] Verify -> DEBU 8b5 Verify: digest = 00000000 e4 ba 00 08 37 34 5e 46 a0 72 72 55 b9 df 77 1f |....74^F.rrU..w.| -orderer.example.com | 00000010 8e 2b 2b 4e f5 97 0f f9 96 6f 7f 32 c2 8a 4c ef |.++N.....o.2..L.| -orderer.example.com | 2018-01-18 01:58:52.244 UTC [msp/identity] Verify -> DEBU 8b6 Verify: sig = 00000000 30 44 02 20 14 80 57 fc 86 f8 a9 9d 3c e0 e3 21 |0D. ..W.....<..!| -orderer.example.com | 00000010 48 61 10 96 ba 97 60 74 f9 61 25 17 80 3c b8 6f |Ha....`t.a%..<.o| -orderer.example.com | 00000020 1c 64 70 54 02 20 58 fa 8b c5 79 95 a2 ab ca be |.dpT. X...y.....| -orderer.example.com | 00000030 17 4c 08 27 36 d5 dc 38 eb d0 05 06 c5 01 e4 b3 |.L.'6..8........| -orderer.example.com | 00000040 dd eb fb 07 43 b3 |....C.| -orderer.example.com | 2018-01-18 01:58:52.244 UTC [cauthdsl] func2 -> DEBU 8b7 0xc42014b5f0 principal evaluation succeeds for identity 0 -orderer.example.com | 2018-01-18 01:58:52.244 UTC [cauthdsl] func1 -> DEBU 8b8 0xc42014b5f0 gate 1516240732243135796 evaluation succeeds -orderer.example.com | 2018-01-18 01:58:52.244 UTC [orderer/common/sigfilter] Apply -> DEBU 8b9 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420a216c0 1 [0xc42014b368 0xc42014b408]}) %!s(*policies.implicitMetaPolicy=&{0xc420a384c0 1 [0xc42014b4a8]})]} -orderer.example.com | 2018-01-18 01:58:52.245 UTC [orderer/common/deliver] Handle -> DEBU 8ba [channel: businesschannel] Received seekInfo (0xc420148c00) start: > stop: > -orderer.example.com | 2018-01-18 01:58:52.245 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 8bb retrieveBlockByNumber() - blockNum = [0] -orderer.example.com | 2018-01-18 01:58:52.245 UTC [fsblkstorage] newBlockfileStream -> DEBU 8bc newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] -orderer.example.com | 2018-01-18 01:58:52.245 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 8bd Remaining bytes=[11934], Going to peek [8] bytes -orderer.example.com | 2018-01-18 01:58:52.245 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 8be Returning blockbytes - length=[11932], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -orderer.example.com | 2018-01-18 01:58:52.245 UTC [orderer/common/deliver] Handle -> DEBU 8bf [channel: businesschannel] Delivering block for (0xc420148c00) -orderer.example.com | 2018-01-18 01:58:52.245 UTC [orderer/common/deliver] Handle -> DEBU 8c0 [channel: businesschannel] Done delivering for (0xc420148c00), waiting for new SeekInfo -orderer.example.com | 2018-01-18 01:58:52.245 UTC [orderer/common/deliver] Handle -> DEBU 8c1 Attempting to read seek info message -orderer.example.com | 2018-01-18 01:58:52.248 UTC [orderer/common/deliver] Handle -> WARN 8c2 Error reading from stream: rpc error: code = Canceled desc = context canceled -orderer.example.com | 2018-01-18 01:58:52.248 UTC [orderer/main] func1 -> DEBU 8c3 Closing Deliver stream -orderer.example.com | 2018-01-18 01:58:53.547 UTC [orderer/main] Deliver -> DEBU 8c4 Starting new Deliver handler -orderer.example.com | 2018-01-18 01:58:53.547 UTC [orderer/common/deliver] Handle -> DEBU 8c5 Starting new deliver loop -orderer.example.com | 2018-01-18 01:58:53.547 UTC [orderer/common/deliver] Handle -> DEBU 8c6 Attempting to read seek info message -orderer.example.com | 2018-01-18 01:58:53.563 UTC [orderer/main] Broadcast -> DEBU 8c7 Starting new Broadcast handler -orderer.example.com | 2018-01-18 01:58:53.563 UTC [orderer/common/broadcast] Handle -> DEBU 8c8 Starting new broadcast loop -orderer.example.com | 2018-01-18 01:58:53.563 UTC [orderer/common/broadcast] Handle -> DEBU 8c9 Preprocessing CONFIG_UPDATE -orderer.example.com | 2018-01-18 01:58:53.563 UTC [orderer/configupdate] Process -> DEBU 8ca Processing channel reconfiguration request for channel businesschannel -orderer.example.com | 2018-01-18 01:58:53.564 UTC [common/configtx] addToMap -> DEBU 8cb Adding to config map: [Groups] /Channel -orderer.example.com | 2018-01-18 01:58:53.564 UTC [common/configtx] addToMap -> DEBU 8cc Adding to config map: [Groups] /Channel/Application -orderer.example.com | 2018-01-18 01:58:53.564 UTC [common/configtx] addToMap -> DEBU 8cd Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | 2018-01-18 01:58:53.566 UTC [common/configtx] addToMap -> DEBU 8ce Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -orderer.example.com | 2018-01-18 01:58:53.566 UTC [common/configtx] addToMap -> DEBU 8cf Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | 2018-01-18 01:58:53.567 UTC [common/configtx] addToMap -> DEBU 8d0 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | 2018-01-18 01:58:53.567 UTC [common/configtx] addToMap -> DEBU 8d1 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | 2018-01-18 01:58:53.567 UTC [common/configtx] addToMap -> DEBU 8d2 Adding to config map: [Groups] /Channel -orderer.example.com | 2018-01-18 01:58:53.568 UTC [common/configtx] addToMap -> DEBU 8d3 Adding to config map: [Groups] /Channel/Application -orderer.example.com | 2018-01-18 01:58:53.568 UTC [common/configtx] addToMap -> DEBU 8d4 Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | 2018-01-18 01:58:53.568 UTC [common/configtx] addToMap -> DEBU 8d5 Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -orderer.example.com | 2018-01-18 01:58:53.568 UTC [common/configtx] addToMap -> DEBU 8d6 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -orderer.example.com | 2018-01-18 01:58:53.568 UTC [common/configtx] addToMap -> DEBU 8d7 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | 2018-01-18 01:58:53.568 UTC [common/configtx] addToMap -> DEBU 8d8 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | 2018-01-18 01:58:53.569 UTC [common/configtx] addToMap -> DEBU 8d9 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | 2018-01-18 01:58:53.570 UTC [policies] GetPolicy -> DEBU 8da Returning policy Admins for evaluation -orderer.example.com | 2018-01-18 01:58:53.570 UTC [cauthdsl] func1 -> DEBU 8db 0xc420026250 gate 1516240733570959052 evaluation starts -orderer.example.com | 2018-01-18 01:58:53.571 UTC [cauthdsl] func2 -> DEBU 8dc 0xc420026250 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-18 01:58:53.571 UTC [cauthdsl] func2 -> DEBU 8dd 0xc420026250 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-18 01:58:53.573 UTC [msp/identity] newIdentity -> DEBU 8de Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -orderer.example.com | xHTBvxfK6mAzmUitFmY= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:53.574 UTC [msp] SatisfiesPrincipal -> DEBU 8df Checking if identity satisfies ADMIN role for Org1MSP -orderer.example.com | 2018-01-18 01:58:53.574 UTC [cauthdsl] func2 -> DEBU 8e0 0xc420026250 principal matched by identity 0 -orderer.example.com | 2018-01-18 01:58:53.574 UTC [msp/identity] Verify -> DEBU 8e1 Verify: digest = 00000000 94 4b 2c 71 ac 2b 83 1b 4e 1d 86 f1 f5 d3 9d 8e |.K,q.+..N.......| -orderer.example.com | 00000010 f3 8e f6 70 4f 34 16 19 7d a9 02 4b 28 a4 53 a3 |...pO4..}..K(.S.| -orderer.example.com | 2018-01-18 01:58:53.574 UTC [msp/identity] Verify -> DEBU 8e2 Verify: sig = 00000000 30 45 02 21 00 f6 c9 e9 b2 4c f2 f4 55 c4 e1 92 |0E.!.....L..U...| -orderer.example.com | 00000010 61 2c 96 22 89 62 9c a3 6f 50 99 f0 ec e3 84 45 |a,.".b..oP.....E| -orderer.example.com | 00000020 1e 9e d9 14 9b 02 20 00 f6 19 bb af 27 1f 30 22 |...... .....'.0"| -orderer.example.com | 00000030 1c 27 43 69 31 bc bd 8c 67 7d 60 ef ed 09 30 ec |.'Ci1...g}`...0.| -orderer.example.com | 00000040 92 99 08 c1 23 97 cd |....#..| -orderer.example.com | 2018-01-18 01:58:53.575 UTC [cauthdsl] func2 -> DEBU 8e3 0xc420026250 principal evaluation succeeds for identity 0 -orderer.example.com | 2018-01-18 01:58:53.575 UTC [cauthdsl] func1 -> DEBU 8e4 0xc420026250 gate 1516240733570959052 evaluation succeeds -orderer.example.com | 2018-01-18 01:58:53.576 UTC [common/configtx] recurseConfigMap -> DEBU 8e5 Setting policy for key Readers to -orderer.example.com | 2018-01-18 01:58:53.576 UTC [common/configtx] recurseConfigMap -> DEBU 8e6 Setting policy for key Writers to -orderer.example.com | 2018-01-18 01:58:53.576 UTC [common/configtx] recurseConfigMap -> DEBU 8e7 Setting policy for key Admins to -orderer.example.com | 2018-01-18 01:58:53.576 UTC [common/configtx] recurseConfigMap -> DEBU 8e8 Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:53.576 UTC [common/configtx] recurseConfigMap -> DEBU 8e9 Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:53.577 UTC [common/configtx] recurseConfigMap -> DEBU 8ea Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:53.577 UTC [common/configtx] recurseConfigMap -> DEBU 8eb Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:53.578 UTC [common/configtx] recurseConfigMap -> DEBU 8ec Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:53.578 UTC [common/configtx] recurseConfigMap -> DEBU 8ed Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:53.578 UTC [common/configtx] recurseConfigMap -> DEBU 8ee Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:53.578 UTC [common/configtx] recurseConfigMap -> DEBU 8ef Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:53.579 UTC [common/configtx] recurseConfigMap -> DEBU 8f0 Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:53.579 UTC [common/configtx] recurseConfigMap -> DEBU 8f1 Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:53.579 UTC [common/configtx] recurseConfigMap -> DEBU 8f2 Setting policy for key BlockValidation to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:53.579 UTC [common/configtx] recurseConfigMap -> DEBU 8f3 Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:53.579 UTC [common/configtx] recurseConfigMap -> DEBU 8f4 Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:53.579 UTC [common/configtx] recurseConfigMap -> DEBU 8f5 Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:53.580 UTC [common/configtx] recurseConfigMap -> DEBU 8f6 Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:53.580 UTC [common/configtx] recurseConfigMap -> DEBU 8f7 Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:53.580 UTC [common/configtx] processConfig -> DEBU 8f8 Beginning new config for channel businesschannel -orderer.example.com | 2018-01-18 01:58:53.580 UTC [common/config] NewStandardValues -> DEBU 8f9 Initializing protos for *config.ChannelProtos -orderer.example.com | 2018-01-18 01:58:53.580 UTC [common/config] initializeProtosStruct -> DEBU 8fa Processing field: HashingAlgorithm -orderer.example.com | 2018-01-18 01:58:53.581 UTC [common/config] initializeProtosStruct -> DEBU 8fb Processing field: BlockDataHashingStructure -orderer.example.com | 2018-01-18 01:58:53.581 UTC [common/config] initializeProtosStruct -> DEBU 8fc Processing field: OrdererAddresses -orderer.example.com | 2018-01-18 01:58:53.581 UTC [common/config] initializeProtosStruct -> DEBU 8fd Processing field: Consortium -orderer.example.com | 2018-01-18 01:58:53.581 UTC [policies] ProposePolicy -> DEBU 8fe Proposed new policy Readers for Channel -orderer.example.com | 2018-01-18 01:58:53.581 UTC [policies] ProposePolicy -> DEBU 8ff Proposed new policy Writers for Channel -orderer.example.com | 2018-01-18 01:58:53.581 UTC [policies] ProposePolicy -> DEBU 900 Proposed new policy Admins for Channel -orderer.example.com | 2018-01-18 01:58:53.581 UTC [common/config] NewStandardValues -> DEBU 901 Initializing protos for *config.OrdererProtos -orderer.example.com | 2018-01-18 01:58:53.581 UTC [common/config] initializeProtosStruct -> DEBU 902 Processing field: ConsensusType -orderer.example.com | 2018-01-18 01:58:53.581 UTC [common/config] initializeProtosStruct -> DEBU 903 Processing field: BatchSize -orderer.example.com | 2018-01-18 01:58:53.581 UTC [common/config] initializeProtosStruct -> DEBU 904 Processing field: BatchTimeout -orderer.example.com | 2018-01-18 01:58:53.581 UTC [common/config] initializeProtosStruct -> DEBU 905 Processing field: KafkaBrokers -orderer.example.com | 2018-01-18 01:58:53.582 UTC [common/config] initializeProtosStruct -> DEBU 906 Processing field: ChannelRestrictions -orderer.example.com | 2018-01-18 01:58:53.582 UTC [policies] ProposePolicy -> DEBU 907 Proposed new policy BlockValidation for Orderer -orderer.example.com | 2018-01-18 01:58:53.582 UTC [policies] ProposePolicy -> DEBU 908 Proposed new policy Readers for Orderer -orderer.example.com | 2018-01-18 01:58:53.582 UTC [policies] ProposePolicy -> DEBU 909 Proposed new policy Writers for Orderer -orderer.example.com | 2018-01-18 01:58:53.582 UTC [policies] ProposePolicy -> DEBU 90a Proposed new policy Admins for Orderer -orderer.example.com | 2018-01-18 01:58:53.582 UTC [common/config] NewStandardValues -> DEBU 90b Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:53.582 UTC [common/config] initializeProtosStruct -> DEBU 90c Processing field: MSP -orderer.example.com | 2018-01-18 01:58:53.582 UTC [policies] ProposePolicy -> DEBU 90d Proposed new policy Admins for OrdererOrg -orderer.example.com | 2018-01-18 01:58:53.582 UTC [policies] ProposePolicy -> DEBU 90e Proposed new policy Readers for OrdererOrg -orderer.example.com | 2018-01-18 01:58:53.582 UTC [policies] ProposePolicy -> DEBU 90f Proposed new policy Writers for OrdererOrg -orderer.example.com | 2018-01-18 01:58:53.582 UTC [common/config] NewStandardValues -> DEBU 910 Initializing protos for *struct {} -orderer.example.com | 2018-01-18 01:58:53.582 UTC [policies] ProposePolicy -> DEBU 911 Proposed new policy Admins for Application -orderer.example.com | 2018-01-18 01:58:53.583 UTC [policies] ProposePolicy -> DEBU 912 Proposed new policy Writers for Application -orderer.example.com | 2018-01-18 01:58:53.583 UTC [policies] ProposePolicy -> DEBU 913 Proposed new policy Readers for Application -orderer.example.com | 2018-01-18 01:58:53.583 UTC [common/config] NewStandardValues -> DEBU 914 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:53.583 UTC [common/config] initializeProtosStruct -> DEBU 915 Processing field: MSP -orderer.example.com | 2018-01-18 01:58:53.583 UTC [common/config] NewStandardValues -> DEBU 916 Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | 2018-01-18 01:58:53.583 UTC [common/config] initializeProtosStruct -> DEBU 917 Processing field: AnchorPeers -orderer.example.com | 2018-01-18 01:58:53.583 UTC [common/config] NewStandardValues -> DEBU 918 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:53.583 UTC [common/config] initializeProtosStruct -> DEBU 919 Processing field: MSP -orderer.example.com | 2018-01-18 01:58:53.583 UTC [policies] ProposePolicy -> DEBU 91a Proposed new policy Writers for Org2MSP -orderer.example.com | 2018-01-18 01:58:53.583 UTC [policies] ProposePolicy -> DEBU 91b Proposed new policy Admins for Org2MSP -orderer.example.com | 2018-01-18 01:58:53.583 UTC [policies] ProposePolicy -> DEBU 91c Proposed new policy Readers for Org2MSP -orderer.example.com | 2018-01-18 01:58:53.584 UTC [common/config] NewStandardValues -> DEBU 91d Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:53.584 UTC [common/config] initializeProtosStruct -> DEBU 91e Processing field: MSP -orderer.example.com | 2018-01-18 01:58:53.584 UTC [common/config] NewStandardValues -> DEBU 91f Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | 2018-01-18 01:58:53.584 UTC [common/config] initializeProtosStruct -> DEBU 920 Processing field: AnchorPeers -orderer.example.com | 2018-01-18 01:58:53.584 UTC [common/config] NewStandardValues -> DEBU 921 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:53.584 UTC [common/config] initializeProtosStruct -> DEBU 922 Processing field: MSP -orderer.example.com | 2018-01-18 01:58:53.584 UTC [policies] ProposePolicy -> DEBU 923 Proposed new policy Writers for Org1MSP -orderer.example.com | 2018-01-18 01:58:53.584 UTC [policies] ProposePolicy -> DEBU 924 Proposed new policy Admins for Org1MSP -orderer.example.com | 2018-01-18 01:58:53.585 UTC [policies] ProposePolicy -> DEBU 925 Proposed new policy Readers for Org1MSP -orderer.example.com | 2018-01-18 01:58:53.585 UTC [common/config] validateMSP -> DEBU 926 Setting up MSP for org OrdererOrg -orderer.example.com | 2018-01-18 01:58:53.585 UTC [msp] NewBccspMsp -> DEBU 927 Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-18 01:58:53.585 UTC [msp] Setup -> DEBU 928 Setting up MSP instance OrdererMSP -orderer.example.com | 2018-01-18 01:58:53.585 UTC [msp/identity] newIdentity -> DEBU 929 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW -orderer.example.com | gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w -orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -orderer.example.com | AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK -orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs -orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:53.586 UTC [msp/identity] newIdentity -> DEBU 92a Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:53.586 UTC [msp/identity] newIdentity -> DEBU 92b Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:53.587 UTC [msp] Validate -> DEBU 92c MSP OrdererMSP validating identity -orderer.example.com | 2018-01-18 01:58:53.587 UTC [common/config] Validate -> DEBU 92d Anchor peers for org Org2MSP are -orderer.example.com | 2018-01-18 01:58:53.587 UTC [common/config] validateMSP -> DEBU 92e Setting up MSP for org Org2MSP -orderer.example.com | 2018-01-18 01:58:53.587 UTC [msp] NewBccspMsp -> DEBU 92f Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-18 01:58:53.588 UTC [msp] Setup -> DEBU 930 Setting up MSP instance Org2MSP -orderer.example.com | 2018-01-18 01:58:53.588 UTC [msp/identity] newIdentity -> DEBU 931 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -orderer.example.com | mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 -orderer.example.com | sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ -orderer.example.com | xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv -orderer.example.com | WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk -orderer.example.com | SCjyRdD3aQ== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:53.589 UTC [msp/identity] newIdentity -> DEBU 932 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -orderer.example.com | AXYxULZpXYDQXt1KaLI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:53.590 UTC [msp/identity] newIdentity -> DEBU 933 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -orderer.example.com | AXYxULZpXYDQXt1KaLI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:53.591 UTC [msp] Validate -> DEBU 934 MSP Org2MSP validating identity -orderer.example.com | 2018-01-18 01:58:53.591 UTC [common/config] Validate -> DEBU 935 Anchor peers for org Org1MSP are anchor_peers: -orderer.example.com | 2018-01-18 01:58:53.591 UTC [common/config] validateMSP -> DEBU 936 Setting up MSP for org Org1MSP -orderer.example.com | 2018-01-18 01:58:53.591 UTC [msp] NewBccspMsp -> DEBU 937 Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-18 01:58:53.591 UTC [msp] Setup -> DEBU 938 Setting up MSP instance Org1MSP -orderer.example.com | 2018-01-18 01:58:53.591 UTC [msp/identity] newIdentity -> DEBU 939 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -orderer.example.com | BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf -orderer.example.com | db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx -orderer.example.com | JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi -orderer.example.com | /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ -orderer.example.com | H7n8z1pj5w== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:53.592 UTC [msp/identity] newIdentity -> DEBU 93a Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -orderer.example.com | xHTBvxfK6mAzmUitFmY= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:53.592 UTC [msp/identity] newIdentity -> DEBU 93b Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -orderer.example.com | xHTBvxfK6mAzmUitFmY= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:53.593 UTC [msp] Validate -> DEBU 93c MSP Org1MSP validating identity -orderer.example.com | 2018-01-18 01:58:53.593 UTC [msp] Setup -> DEBU 93d Setting up the MSP manager (3 msps) -orderer.example.com | 2018-01-18 01:58:53.593 UTC [msp] Setup -> DEBU 93e MSP manager setup complete, setup 3 msps -orderer.example.com | 2018-01-18 01:58:53.593 UTC [msp] GetLocalMSP -> DEBU 93f Returning existing local MSP -orderer.example.com | 2018-01-18 01:58:53.593 UTC [msp] GetDefaultSigningIdentity -> DEBU 940 Obtaining default signing identity -orderer.example.com | 2018-01-18 01:58:53.594 UTC [msp] GetLocalMSP -> DEBU 941 Returning existing local MSP -orderer.example.com | 2018-01-18 01:58:53.594 UTC [msp] GetDefaultSigningIdentity -> DEBU 942 Obtaining default signing identity -orderer.example.com | 2018-01-18 01:58:53.594 UTC [msp/identity] Sign -> DEBU 943 Sign: plaintext: 0AB7060A1B08011A0608DDFEFFD20522...F9C96328AE86ED8EA7FAC2A100F9799A -orderer.example.com | 2018-01-18 01:58:53.595 UTC [msp/identity] Sign -> DEBU 944 Sign: digest: C2128F92D4425D8D71E5C6BD84CDE40AB1A9B39928D653AE8B20779A5401D793 -orderer.example.com | 2018-01-18 01:58:53.595 UTC [orderer/common/broadcast] Handle -> DEBU 945 [channel: businesschannel] Broadcast is filtering message of type CONFIG -orderer.example.com | 2018-01-18 01:58:53.595 UTC [policies] GetPolicy -> DEBU 946 Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:53.595 UTC [cauthdsl] func1 -> DEBU 947 0xc420026620 gate 1516240733595544553 evaluation starts -orderer.example.com | 2018-01-18 01:58:53.595 UTC [cauthdsl] func2 -> DEBU 948 0xc420026620 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-18 01:58:53.595 UTC [cauthdsl] func2 -> DEBU 949 0xc420026620 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-18 01:58:53.596 UTC [msp/identity] newIdentity -> DEBU 94a Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq -orderer.example.com | hkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz -orderer.example.com | MKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw -orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN -orderer.example.com | RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH -orderer.example.com | /4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:53.596 UTC [cauthdsl] func2 -> DEBU 94b 0xc420026620 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -orderer.example.com | 2018-01-18 01:58:53.596 UTC [cauthdsl] func2 -> DEBU 94c 0xc420026620 principal evaluation fails -orderer.example.com | 2018-01-18 01:58:53.596 UTC [cauthdsl] func1 -> DEBU 94d 0xc420026620 gate 1516240733595544553 evaluation fails -orderer.example.com | 2018-01-18 01:58:53.596 UTC [cauthdsl] func1 -> DEBU 94e 0xc420026630 gate 1516240733596836807 evaluation starts -orderer.example.com | 2018-01-18 01:58:53.596 UTC [cauthdsl] func2 -> DEBU 94f 0xc420026630 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-18 01:58:53.597 UTC [cauthdsl] func2 -> DEBU 950 0xc420026630 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-18 01:58:53.597 UTC [msp/identity] newIdentity -> DEBU 951 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq -orderer.example.com | hkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz -orderer.example.com | MKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw -orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN -orderer.example.com | RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH -orderer.example.com | /4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:53.598 UTC [cauthdsl] func2 -> DEBU 952 0xc420026630 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -orderer.example.com | 2018-01-18 01:58:53.598 UTC [cauthdsl] func2 -> DEBU 953 0xc420026630 principal evaluation fails -orderer.example.com | 2018-01-18 01:58:53.598 UTC [cauthdsl] func1 -> DEBU 954 0xc420026630 gate 1516240733596836807 evaluation fails -orderer.example.com | 2018-01-18 01:58:53.598 UTC [cauthdsl] func1 -> DEBU 955 0xc420026640 gate 1516240733598860195 evaluation starts -orderer.example.com | 2018-01-18 01:58:53.599 UTC [cauthdsl] func2 -> DEBU 956 0xc420026640 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-18 01:58:53.599 UTC [cauthdsl] func2 -> DEBU 957 0xc420026640 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-18 01:58:53.600 UTC [msp/identity] newIdentity -> DEBU 958 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq -orderer.example.com | hkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz -orderer.example.com | MKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw -orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN -orderer.example.com | RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH -orderer.example.com | /4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:53.601 UTC [msp] SatisfiesPrincipal -> DEBU 959 Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | 2018-01-18 01:58:53.601 UTC [msp] Validate -> DEBU 95a MSP OrdererMSP validating identity -orderer.example.com | 2018-01-18 01:58:53.602 UTC [cauthdsl] func2 -> DEBU 95b 0xc420026640 principal matched by identity 0 -orderer.example.com | 2018-01-18 01:58:53.602 UTC [msp/identity] Verify -> DEBU 95c Verify: digest = 00000000 c2 12 8f 92 d4 42 5d 8d 71 e5 c6 bd 84 cd e4 0a |.....B].q.......| -orderer.example.com | 00000010 b1 a9 b3 99 28 d6 53 ae 8b 20 77 9a 54 01 d7 93 |....(.S.. w.T...| -orderer.example.com | 2018-01-18 01:58:53.603 UTC [msp/identity] Verify -> DEBU 95d Verify: sig = 00000000 30 44 02 20 73 e0 37 54 28 34 cb 4d 63 55 bc 73 |0D. s.7T(4.McU.s| -orderer.example.com | 00000010 42 97 3e db 4c 3a 70 35 48 7d 71 f3 b8 fc 7f bc |B.>.L:p5H}q.....| -orderer.example.com | 00000020 c9 ef d1 62 02 20 5d 50 3b a6 d5 27 c6 b8 95 39 |...b. ]P;..'...9| -orderer.example.com | 00000030 6a 86 f0 32 df 93 91 a9 3f ef 42 86 a2 0a 7f 4f |j..2....?.B....O| -orderer.example.com | 00000040 12 cf e5 cd b9 91 |......| -orderer.example.com | 2018-01-18 01:58:53.603 UTC [cauthdsl] func2 -> DEBU 95e 0xc420026640 principal evaluation succeeds for identity 0 -orderer.example.com | 2018-01-18 01:58:53.603 UTC [cauthdsl] func1 -> DEBU 95f 0xc420026640 gate 1516240733598860195 evaluation succeeds -orderer.example.com | 2018-01-18 01:58:53.603 UTC [orderer/common/sigfilter] Apply -> DEBU 960 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420a21640 1 [0xc42014b398 0xc42014b430]}) %!s(*policies.implicitMetaPolicy=&{0xc420a38320 1 [0xc42014b4d0]})]} -orderer.example.com | 2018-01-18 01:58:53.604 UTC [common/configtx] addToMap -> DEBU 961 Adding to config map: [Groups] /Channel -orderer.example.com | 2018-01-18 01:58:53.604 UTC [common/configtx] addToMap -> DEBU 962 Adding to config map: [Groups] /Channel/Application -orderer.example.com | 2018-01-18 01:58:53.604 UTC [common/configtx] addToMap -> DEBU 963 Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | 2018-01-18 01:58:53.604 UTC [common/configtx] addToMap -> DEBU 964 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -orderer.example.com | 2018-01-18 01:58:53.605 UTC [common/configtx] addToMap -> DEBU 965 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | 2018-01-18 01:58:53.605 UTC [common/configtx] addToMap -> DEBU 966 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | 2018-01-18 01:58:53.605 UTC [common/configtx] addToMap -> DEBU 967 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | 2018-01-18 01:58:53.605 UTC [common/configtx] addToMap -> DEBU 968 Adding to config map: [Groups] /Channel -orderer.example.com | 2018-01-18 01:58:53.605 UTC [common/configtx] addToMap -> DEBU 969 Adding to config map: [Groups] /Channel/Application -orderer.example.com | 2018-01-18 01:58:53.606 UTC [common/configtx] addToMap -> DEBU 96a Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | 2018-01-18 01:58:53.606 UTC [common/configtx] addToMap -> DEBU 96b Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -orderer.example.com | 2018-01-18 01:58:53.606 UTC [common/configtx] addToMap -> DEBU 96c Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -orderer.example.com | 2018-01-18 01:58:53.606 UTC [common/configtx] addToMap -> DEBU 96d Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | 2018-01-18 01:58:53.606 UTC [common/configtx] addToMap -> DEBU 96e Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | 2018-01-18 01:58:53.606 UTC [common/configtx] addToMap -> DEBU 96f Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | 2018-01-18 01:58:53.606 UTC [policies] GetPolicy -> DEBU 970 Returning policy Admins for evaluation -orderer.example.com | 2018-01-18 01:58:53.606 UTC [cauthdsl] func1 -> DEBU 971 0xc420026c08 gate 1516240733606881882 evaluation starts -orderer.example.com | 2018-01-18 01:58:53.607 UTC [cauthdsl] func2 -> DEBU 972 0xc420026c08 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-18 01:58:53.607 UTC [cauthdsl] func2 -> DEBU 973 0xc420026c08 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-18 01:58:53.607 UTC [msp/identity] newIdentity -> DEBU 974 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -orderer.example.com | xHTBvxfK6mAzmUitFmY= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:53.607 UTC [msp] SatisfiesPrincipal -> DEBU 975 Checking if identity satisfies ADMIN role for Org1MSP -orderer.example.com | 2018-01-18 01:58:53.607 UTC [cauthdsl] func2 -> DEBU 976 0xc420026c08 principal matched by identity 0 -orderer.example.com | 2018-01-18 01:58:53.607 UTC [msp/identity] Verify -> DEBU 977 Verify: digest = 00000000 94 4b 2c 71 ac 2b 83 1b 4e 1d 86 f1 f5 d3 9d 8e |.K,q.+..N.......| -orderer.example.com | 00000010 f3 8e f6 70 4f 34 16 19 7d a9 02 4b 28 a4 53 a3 |...pO4..}..K(.S.| -orderer.example.com | 2018-01-18 01:58:53.607 UTC [msp/identity] Verify -> DEBU 978 Verify: sig = 00000000 30 45 02 21 00 f6 c9 e9 b2 4c f2 f4 55 c4 e1 92 |0E.!.....L..U...| -orderer.example.com | 00000010 61 2c 96 22 89 62 9c a3 6f 50 99 f0 ec e3 84 45 |a,.".b..oP.....E| -orderer.example.com | 00000020 1e 9e d9 14 9b 02 20 00 f6 19 bb af 27 1f 30 22 |...... .....'.0"| -orderer.example.com | 00000030 1c 27 43 69 31 bc bd 8c 67 7d 60 ef ed 09 30 ec |.'Ci1...g}`...0.| -orderer.example.com | 00000040 92 99 08 c1 23 97 cd |....#..| -orderer.example.com | 2018-01-18 01:58:53.608 UTC [cauthdsl] func2 -> DEBU 979 0xc420026c08 principal evaluation succeeds for identity 0 -orderer.example.com | 2018-01-18 01:58:53.608 UTC [cauthdsl] func1 -> DEBU 97a 0xc420026c08 gate 1516240733606881882 evaluation succeeds -orderer.example.com | 2018-01-18 01:58:53.608 UTC [common/configtx] recurseConfigMap -> DEBU 97b Setting policy for key Readers to -orderer.example.com | 2018-01-18 01:58:53.608 UTC [common/configtx] recurseConfigMap -> DEBU 97c Setting policy for key Writers to -orderer.example.com | 2018-01-18 01:58:53.608 UTC [common/configtx] recurseConfigMap -> DEBU 97d Setting policy for key Admins to -orderer.example.com | 2018-01-18 01:58:53.608 UTC [common/configtx] recurseConfigMap -> DEBU 97e Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:53.608 UTC [common/configtx] recurseConfigMap -> DEBU 97f Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:53.608 UTC [common/configtx] recurseConfigMap -> DEBU 980 Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:53.609 UTC [common/configtx] recurseConfigMap -> DEBU 981 Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:53.609 UTC [common/configtx] recurseConfigMap -> DEBU 982 Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:53.609 UTC [common/configtx] recurseConfigMap -> DEBU 983 Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:53.609 UTC [common/configtx] recurseConfigMap -> DEBU 984 Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:53.609 UTC [common/configtx] recurseConfigMap -> DEBU 985 Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:53.609 UTC [common/configtx] recurseConfigMap -> DEBU 986 Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:53.609 UTC [common/configtx] recurseConfigMap -> DEBU 987 Setting policy for key BlockValidation to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:53.609 UTC [common/configtx] recurseConfigMap -> DEBU 988 Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:53.609 UTC [common/configtx] recurseConfigMap -> DEBU 989 Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:53.609 UTC [common/configtx] recurseConfigMap -> DEBU 98a Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:53.609 UTC [common/configtx] recurseConfigMap -> DEBU 98b Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:53.609 UTC [common/configtx] recurseConfigMap -> DEBU 98c Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:53.609 UTC [common/configtx] recurseConfigMap -> DEBU 98d Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:53.609 UTC [common/configtx] processConfig -> DEBU 98e Beginning new config for channel businesschannel -orderer.example.com | 2018-01-18 01:58:53.609 UTC [common/config] NewStandardValues -> DEBU 98f Initializing protos for *config.ChannelProtos -orderer.example.com | 2018-01-18 01:58:53.610 UTC [common/config] initializeProtosStruct -> DEBU 990 Processing field: HashingAlgorithm -orderer.example.com | 2018-01-18 01:58:53.610 UTC [common/config] initializeProtosStruct -> DEBU 991 Processing field: BlockDataHashingStructure -orderer.example.com | 2018-01-18 01:58:53.610 UTC [common/config] initializeProtosStruct -> DEBU 992 Processing field: OrdererAddresses -orderer.example.com | 2018-01-18 01:58:53.610 UTC [common/config] initializeProtosStruct -> DEBU 993 Processing field: Consortium -orderer.example.com | 2018-01-18 01:58:53.610 UTC [policies] ProposePolicy -> DEBU 994 Proposed new policy Readers for Channel -orderer.example.com | 2018-01-18 01:58:53.610 UTC [policies] ProposePolicy -> DEBU 995 Proposed new policy Writers for Channel -orderer.example.com | 2018-01-18 01:58:53.611 UTC [policies] ProposePolicy -> DEBU 996 Proposed new policy Admins for Channel -orderer.example.com | 2018-01-18 01:58:53.611 UTC [common/config] NewStandardValues -> DEBU 997 Initializing protos for *config.OrdererProtos -orderer.example.com | 2018-01-18 01:58:53.611 UTC [common/config] initializeProtosStruct -> DEBU 998 Processing field: ConsensusType -orderer.example.com | 2018-01-18 01:58:53.611 UTC [common/config] initializeProtosStruct -> DEBU 999 Processing field: BatchSize -orderer.example.com | 2018-01-18 01:58:53.611 UTC [common/config] initializeProtosStruct -> DEBU 99a Processing field: BatchTimeout -orderer.example.com | 2018-01-18 01:58:53.612 UTC [common/config] initializeProtosStruct -> DEBU 99b Processing field: KafkaBrokers -orderer.example.com | 2018-01-18 01:58:53.612 UTC [common/config] initializeProtosStruct -> DEBU 99c Processing field: ChannelRestrictions -orderer.example.com | 2018-01-18 01:58:53.612 UTC [policies] ProposePolicy -> DEBU 99d Proposed new policy Readers for Orderer -orderer.example.com | 2018-01-18 01:58:53.612 UTC [policies] ProposePolicy -> DEBU 99e Proposed new policy Writers for Orderer -orderer.example.com | 2018-01-18 01:58:53.612 UTC [policies] ProposePolicy -> DEBU 99f Proposed new policy Admins for Orderer -orderer.example.com | 2018-01-18 01:58:53.612 UTC [policies] ProposePolicy -> DEBU 9a0 Proposed new policy BlockValidation for Orderer -orderer.example.com | 2018-01-18 01:58:53.612 UTC [common/config] NewStandardValues -> DEBU 9a1 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:53.612 UTC [common/config] initializeProtosStruct -> DEBU 9a2 Processing field: MSP -orderer.example.com | 2018-01-18 01:58:53.612 UTC [policies] ProposePolicy -> DEBU 9a3 Proposed new policy Admins for OrdererOrg -orderer.example.com | 2018-01-18 01:58:53.612 UTC [policies] ProposePolicy -> DEBU 9a4 Proposed new policy Readers for OrdererOrg -orderer.example.com | 2018-01-18 01:58:53.613 UTC [policies] ProposePolicy -> DEBU 9a5 Proposed new policy Writers for OrdererOrg -orderer.example.com | 2018-01-18 01:58:53.613 UTC [common/config] NewStandardValues -> DEBU 9a6 Initializing protos for *struct {} -orderer.example.com | 2018-01-18 01:58:53.613 UTC [policies] ProposePolicy -> DEBU 9a7 Proposed new policy Admins for Application -orderer.example.com | 2018-01-18 01:58:53.613 UTC [policies] ProposePolicy -> DEBU 9a8 Proposed new policy Writers for Application -orderer.example.com | 2018-01-18 01:58:53.613 UTC [policies] ProposePolicy -> DEBU 9a9 Proposed new policy Readers for Application -orderer.example.com | 2018-01-18 01:58:53.613 UTC [common/config] NewStandardValues -> DEBU 9aa Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:53.613 UTC [common/config] initializeProtosStruct -> DEBU 9ab Processing field: MSP -orderer.example.com | 2018-01-18 01:58:53.613 UTC [common/config] NewStandardValues -> DEBU 9ac Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | 2018-01-18 01:58:53.613 UTC [common/config] initializeProtosStruct -> DEBU 9ad Processing field: AnchorPeers -orderer.example.com | 2018-01-18 01:58:53.613 UTC [common/config] NewStandardValues -> DEBU 9ae Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:53.613 UTC [common/config] initializeProtosStruct -> DEBU 9af Processing field: MSP -orderer.example.com | 2018-01-18 01:58:53.613 UTC [policies] ProposePolicy -> DEBU 9b0 Proposed new policy Writers for Org1MSP -orderer.example.com | 2018-01-18 01:58:53.614 UTC [policies] ProposePolicy -> DEBU 9b1 Proposed new policy Admins for Org1MSP -orderer.example.com | 2018-01-18 01:58:53.614 UTC [policies] ProposePolicy -> DEBU 9b2 Proposed new policy Readers for Org1MSP -orderer.example.com | 2018-01-18 01:58:53.614 UTC [common/config] NewStandardValues -> DEBU 9b3 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:53.614 UTC [common/config] initializeProtosStruct -> DEBU 9b4 Processing field: MSP -orderer.example.com | 2018-01-18 01:58:53.614 UTC [common/config] NewStandardValues -> DEBU 9b5 Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | 2018-01-18 01:58:53.614 UTC [common/config] initializeProtosStruct -> DEBU 9b6 Processing field: AnchorPeers -orderer.example.com | 2018-01-18 01:58:53.614 UTC [common/config] NewStandardValues -> DEBU 9b7 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:53.614 UTC [common/config] initializeProtosStruct -> DEBU 9b8 Processing field: MSP -orderer.example.com | 2018-01-18 01:58:53.614 UTC [policies] ProposePolicy -> DEBU 9b9 Proposed new policy Writers for Org2MSP -orderer.example.com | 2018-01-18 01:58:53.614 UTC [policies] ProposePolicy -> DEBU 9ba Proposed new policy Admins for Org2MSP -orderer.example.com | 2018-01-18 01:58:53.615 UTC [policies] ProposePolicy -> DEBU 9bb Proposed new policy Readers for Org2MSP -orderer.example.com | 2018-01-18 01:58:53.615 UTC [common/config] validateMSP -> DEBU 9bc Setting up MSP for org OrdererOrg -orderer.example.com | 2018-01-18 01:58:53.615 UTC [msp] NewBccspMsp -> DEBU 9bd Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-18 01:58:53.615 UTC [msp] Setup -> DEBU 9be Setting up MSP instance OrdererMSP -orderer.example.com | 2018-01-18 01:58:53.615 UTC [msp/identity] newIdentity -> DEBU 9bf Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW -orderer.example.com | gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w -orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -orderer.example.com | AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK -orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs -orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:53.616 UTC [msp/identity] newIdentity -> DEBU 9c0 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:53.616 UTC [msp/identity] newIdentity -> DEBU 9c1 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:53.617 UTC [msp] Validate -> DEBU 9c2 MSP OrdererMSP validating identity -orderer.example.com | 2018-01-18 01:58:53.617 UTC [common/config] Validate -> DEBU 9c3 Anchor peers for org Org1MSP are anchor_peers: -orderer.example.com | 2018-01-18 01:58:53.617 UTC [common/config] validateMSP -> DEBU 9c4 Setting up MSP for org Org1MSP -orderer.example.com | 2018-01-18 01:58:53.617 UTC [msp] NewBccspMsp -> DEBU 9c5 Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-18 01:58:53.617 UTC [msp] Setup -> DEBU 9c6 Setting up MSP instance Org1MSP -orderer.example.com | 2018-01-18 01:58:53.617 UTC [msp/identity] newIdentity -> DEBU 9c7 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -orderer.example.com | BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf -orderer.example.com | db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx -orderer.example.com | JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi -orderer.example.com | /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ -orderer.example.com | H7n8z1pj5w== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:53.618 UTC [msp/identity] newIdentity -> DEBU 9c8 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -orderer.example.com | xHTBvxfK6mAzmUitFmY= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:53.619 UTC [msp/identity] newIdentity -> DEBU 9c9 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -orderer.example.com | xHTBvxfK6mAzmUitFmY= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:53.619 UTC [msp] Validate -> DEBU 9ca MSP Org1MSP validating identity -orderer.example.com | 2018-01-18 01:58:53.620 UTC [common/config] Validate -> DEBU 9cb Anchor peers for org Org2MSP are -orderer.example.com | 2018-01-18 01:58:53.620 UTC [common/config] validateMSP -> DEBU 9cc Setting up MSP for org Org2MSP -orderer.example.com | 2018-01-18 01:58:53.620 UTC [msp] NewBccspMsp -> DEBU 9cd Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-18 01:58:53.620 UTC [msp] Setup -> DEBU 9ce Setting up MSP instance Org2MSP -orderer.example.com | 2018-01-18 01:58:53.620 UTC [msp/identity] newIdentity -> DEBU 9cf Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -orderer.example.com | mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 -orderer.example.com | sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ -orderer.example.com | xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv -orderer.example.com | WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk -orderer.example.com | SCjyRdD3aQ== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:53.621 UTC [msp/identity] newIdentity -> DEBU 9d0 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -orderer.example.com | AXYxULZpXYDQXt1KaLI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:53.622 UTC [msp/identity] newIdentity -> DEBU 9d1 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -orderer.example.com | AXYxULZpXYDQXt1KaLI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:53.624 UTC [msp] Validate -> DEBU 9d2 MSP Org2MSP validating identity -orderer.example.com | 2018-01-18 01:58:53.624 UTC [msp] Setup -> DEBU 9d3 Setting up the MSP manager (3 msps) -orderer.example.com | 2018-01-18 01:58:53.625 UTC [msp] Setup -> DEBU 9d4 MSP manager setup complete, setup 3 msps -orderer.example.com | 2018-01-18 01:58:53.626 UTC [policies] GetPolicy -> DEBU 9d5 Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:53.626 UTC [cauthdsl] func1 -> DEBU 9d6 0xc42014a020 gate 1516240733626823106 evaluation starts -orderer.example.com | 2018-01-18 01:58:53.626 UTC [cauthdsl] func2 -> DEBU 9d7 0xc42014a020 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-18 01:58:53.626 UTC [cauthdsl] func2 -> DEBU 9d8 0xc42014a020 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-18 01:58:53.627 UTC [msp/identity] newIdentity -> DEBU 9d9 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq -orderer.example.com | hkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz -orderer.example.com | MKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw -orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN -orderer.example.com | RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH -orderer.example.com | /4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:53.628 UTC [cauthdsl] func2 -> DEBU 9da 0xc42014a020 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -orderer.example.com | 2018-01-18 01:58:53.628 UTC [cauthdsl] func2 -> DEBU 9db 0xc42014a020 principal evaluation fails -orderer.example.com | 2018-01-18 01:58:53.628 UTC [cauthdsl] func1 -> DEBU 9dc 0xc42014a020 gate 1516240733626823106 evaluation fails -orderer.example.com | 2018-01-18 01:58:53.628 UTC [cauthdsl] func1 -> DEBU 9dd 0xc42014a100 gate 1516240733628398018 evaluation starts -orderer.example.com | 2018-01-18 01:58:53.628 UTC [cauthdsl] func2 -> DEBU 9de 0xc42014a100 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-18 01:58:53.628 UTC [cauthdsl] func2 -> DEBU 9df 0xc42014a100 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-18 01:58:53.629 UTC [msp/identity] newIdentity -> DEBU 9e0 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq -orderer.example.com | hkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz -orderer.example.com | MKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw -orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN -orderer.example.com | RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH -orderer.example.com | /4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:53.629 UTC [cauthdsl] func2 -> DEBU 9e1 0xc42014a100 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -orderer.example.com | 2018-01-18 01:58:53.629 UTC [cauthdsl] func2 -> DEBU 9e2 0xc42014a100 principal evaluation fails -orderer.example.com | 2018-01-18 01:58:53.629 UTC [cauthdsl] func1 -> DEBU 9e3 0xc42014a100 gate 1516240733628398018 evaluation fails -orderer.example.com | 2018-01-18 01:58:53.629 UTC [cauthdsl] func1 -> DEBU 9e4 0xc42014a350 gate 1516240733629677079 evaluation starts -orderer.example.com | 2018-01-18 01:58:53.629 UTC [cauthdsl] func2 -> DEBU 9e5 0xc42014a350 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-18 01:58:53.629 UTC [cauthdsl] func2 -> DEBU 9e6 0xc42014a350 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-18 01:58:53.630 UTC [msp/identity] newIdentity -> DEBU 9e7 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq -orderer.example.com | hkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz -orderer.example.com | MKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw -orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN -orderer.example.com | RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH -orderer.example.com | /4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:53.630 UTC [msp] SatisfiesPrincipal -> DEBU 9e8 Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | 2018-01-18 01:58:53.630 UTC [msp] Validate -> DEBU 9e9 MSP OrdererMSP validating identity -orderer.example.com | 2018-01-18 01:58:53.630 UTC [cauthdsl] func2 -> DEBU 9ea 0xc42014a350 principal matched by identity 0 -orderer.example.com | 2018-01-18 01:58:53.630 UTC [msp/identity] Verify -> DEBU 9eb Verify: digest = 00000000 c2 12 8f 92 d4 42 5d 8d 71 e5 c6 bd 84 cd e4 0a |.....B].q.......| -orderer.example.com | 00000010 b1 a9 b3 99 28 d6 53 ae 8b 20 77 9a 54 01 d7 93 |....(.S.. w.T...| -orderer.example.com | 2018-01-18 01:58:53.630 UTC [msp/identity] Verify -> DEBU 9ec Verify: sig = 00000000 30 44 02 20 73 e0 37 54 28 34 cb 4d 63 55 bc 73 |0D. s.7T(4.McU.s| -orderer.example.com | 00000010 42 97 3e db 4c 3a 70 35 48 7d 71 f3 b8 fc 7f bc |B.>.L:p5H}q.....| -orderer.example.com | 00000020 c9 ef d1 62 02 20 5d 50 3b a6 d5 27 c6 b8 95 39 |...b. ]P;..'...9| -orderer.example.com | 00000030 6a 86 f0 32 df 93 91 a9 3f ef 42 86 a2 0a 7f 4f |j..2....?.B....O| -orderer.example.com | 00000040 12 cf e5 cd b9 91 |......| -orderer.example.com | 2018-01-18 01:58:53.631 UTC [cauthdsl] func2 -> DEBU 9ed 0xc42014a350 principal evaluation succeeds for identity 0 -orderer.example.com | 2018-01-18 01:58:53.631 UTC [cauthdsl] func1 -> DEBU 9ee 0xc42014a350 gate 1516240733629677079 evaluation succeeds -orderer.example.com | 2018-01-18 01:58:53.631 UTC [orderer/common/sigfilter] Apply -> DEBU 9ef Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420a21640 1 [0xc42014b398 0xc42014b430]}) %!s(*policies.implicitMetaPolicy=&{0xc420a38320 1 [0xc42014b4d0]})]} -orderer.example.com | 2018-01-18 01:58:53.631 UTC [common/configtx] addToMap -> DEBU 9f0 Adding to config map: [Groups] /Channel -orderer.example.com | 2018-01-18 01:58:53.631 UTC [common/configtx] addToMap -> DEBU 9f1 Adding to config map: [Groups] /Channel/Application -orderer.example.com | 2018-01-18 01:58:53.631 UTC [common/configtx] addToMap -> DEBU 9f2 Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | 2018-01-18 01:58:53.631 UTC [common/configtx] addToMap -> DEBU 9f3 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -orderer.example.com | 2018-01-18 01:58:53.631 UTC [common/configtx] addToMap -> DEBU 9f4 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | 2018-01-18 01:58:53.632 UTC [common/configtx] addToMap -> DEBU 9f5 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | 2018-01-18 01:58:53.632 UTC [common/configtx] addToMap -> DEBU 9f6 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | 2018-01-18 01:58:53.632 UTC [common/configtx] addToMap -> DEBU 9f7 Adding to config map: [Groups] /Channel -orderer.example.com | 2018-01-18 01:58:53.632 UTC [common/configtx] addToMap -> DEBU 9f8 Adding to config map: [Groups] /Channel/Application -orderer.example.com | 2018-01-18 01:58:53.632 UTC [common/configtx] addToMap -> DEBU 9f9 Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | 2018-01-18 01:58:53.632 UTC [common/configtx] addToMap -> DEBU 9fa Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -orderer.example.com | 2018-01-18 01:58:53.633 UTC [common/configtx] addToMap -> DEBU 9fb Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -orderer.example.com | 2018-01-18 01:58:53.633 UTC [common/configtx] addToMap -> DEBU 9fc Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | 2018-01-18 01:58:53.633 UTC [common/configtx] addToMap -> DEBU 9fd Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | 2018-01-18 01:58:53.633 UTC [common/configtx] addToMap -> DEBU 9fe Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | 2018-01-18 01:58:53.633 UTC [policies] GetPolicy -> DEBU 9ff Returning policy Admins for evaluation -orderer.example.com | 2018-01-18 01:58:53.633 UTC [cauthdsl] func1 -> DEBU a00 0xc42014aca8 gate 1516240733633741845 evaluation starts -orderer.example.com | 2018-01-18 01:58:53.633 UTC [cauthdsl] func2 -> DEBU a01 0xc42014aca8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-18 01:58:53.634 UTC [cauthdsl] func2 -> DEBU a02 0xc42014aca8 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-18 01:58:53.634 UTC [msp/identity] newIdentity -> DEBU a03 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -orderer.example.com | xHTBvxfK6mAzmUitFmY= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:53.634 UTC [msp] SatisfiesPrincipal -> DEBU a04 Checking if identity satisfies ADMIN role for Org1MSP -orderer.example.com | 2018-01-18 01:58:53.634 UTC [cauthdsl] func2 -> DEBU a05 0xc42014aca8 principal matched by identity 0 -orderer.example.com | 2018-01-18 01:58:53.635 UTC [msp/identity] Verify -> DEBU a06 Verify: digest = 00000000 94 4b 2c 71 ac 2b 83 1b 4e 1d 86 f1 f5 d3 9d 8e |.K,q.+..N.......| -orderer.example.com | 00000010 f3 8e f6 70 4f 34 16 19 7d a9 02 4b 28 a4 53 a3 |...pO4..}..K(.S.| -orderer.example.com | 2018-01-18 01:58:53.635 UTC [msp/identity] Verify -> DEBU a07 Verify: sig = 00000000 30 45 02 21 00 f6 c9 e9 b2 4c f2 f4 55 c4 e1 92 |0E.!.....L..U...| -orderer.example.com | 00000010 61 2c 96 22 89 62 9c a3 6f 50 99 f0 ec e3 84 45 |a,.".b..oP.....E| -orderer.example.com | 00000020 1e 9e d9 14 9b 02 20 00 f6 19 bb af 27 1f 30 22 |...... .....'.0"| -orderer.example.com | 00000030 1c 27 43 69 31 bc bd 8c 67 7d 60 ef ed 09 30 ec |.'Ci1...g}`...0.| -orderer.example.com | 00000040 92 99 08 c1 23 97 cd |....#..| -orderer.example.com | 2018-01-18 01:58:53.636 UTC [cauthdsl] func2 -> DEBU a08 0xc42014aca8 principal evaluation succeeds for identity 0 -orderer.example.com | 2018-01-18 01:58:53.636 UTC [cauthdsl] func1 -> DEBU a09 0xc42014aca8 gate 1516240733633741845 evaluation succeeds -orderer.example.com | 2018-01-18 01:58:53.637 UTC [common/configtx] recurseConfigMap -> DEBU a0a Setting policy for key Readers to -orderer.example.com | 2018-01-18 01:58:53.637 UTC [common/configtx] recurseConfigMap -> DEBU a0b Setting policy for key Writers to -orderer.example.com | 2018-01-18 01:58:53.637 UTC [common/configtx] recurseConfigMap -> DEBU a0c Setting policy for key Admins to -orderer.example.com | 2018-01-18 01:58:53.637 UTC [common/configtx] recurseConfigMap -> DEBU a0d Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:53.637 UTC [common/configtx] recurseConfigMap -> DEBU a0e Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:53.637 UTC [common/configtx] recurseConfigMap -> DEBU a0f Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:53.638 UTC [common/configtx] recurseConfigMap -> DEBU a10 Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:53.638 UTC [common/configtx] recurseConfigMap -> DEBU a12 Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:53.638 UTC [common/configtx] recurseConfigMap -> DEBU a13 Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:53.638 UTC [common/configtx] recurseConfigMap -> DEBU a14 Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:53.638 UTC [orderer/common/broadcast] Handle -> DEBU a11 [channel: businesschannel] Broadcast has successfully enqueued message of type CONFIG -orderer.example.com | 2018-01-18 01:58:53.639 UTC [common/configtx] recurseConfigMap -> DEBU a15 Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:53.639 UTC [common/configtx] recurseConfigMap -> DEBU a16 Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:53.639 UTC [common/configtx] recurseConfigMap -> DEBU a17 Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:53.639 UTC [common/configtx] recurseConfigMap -> DEBU a18 Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:53.654 UTC [common/configtx] recurseConfigMap -> DEBU a1b Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:53.653 UTC [orderer/common/deliver] Handle -> WARN a19 Error reading from stream: rpc error: code = Canceled desc = context canceled -orderer.example.com | 2018-01-18 01:58:53.659 UTC [orderer/main] func1 -> DEBU a1d Closing Deliver stream -orderer.example.com | 2018-01-18 01:58:53.654 UTC [orderer/common/broadcast] Handle -> WARN a1a Error reading from stream: rpc error: code = Canceled desc = context canceled -orderer.example.com | 2018-01-18 01:58:53.659 UTC [common/configtx] recurseConfigMap -> DEBU a1c Setting policy for key BlockValidation to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:53.660 UTC [orderer/main] func1 -> DEBU a1e Closing Broadcast stream -orderer.example.com | 2018-01-18 01:58:53.660 UTC [common/configtx] recurseConfigMap -> DEBU a1f Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:53.660 UTC [common/configtx] recurseConfigMap -> DEBU a20 Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:53.661 UTC [common/configtx] recurseConfigMap -> DEBU a21 Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:53.661 UTC [common/configtx] processConfig -> DEBU a22 Beginning new config for channel businesschannel -orderer.example.com | 2018-01-18 01:58:53.661 UTC [common/config] NewStandardValues -> DEBU a23 Initializing protos for *config.ChannelProtos -orderer.example.com | 2018-01-18 01:58:53.661 UTC [common/config] initializeProtosStruct -> DEBU a24 Processing field: HashingAlgorithm -orderer.example.com | 2018-01-18 01:58:53.661 UTC [common/config] initializeProtosStruct -> DEBU a25 Processing field: BlockDataHashingStructure -orderer.example.com | 2018-01-18 01:58:53.661 UTC [common/config] initializeProtosStruct -> DEBU a26 Processing field: OrdererAddresses -orderer.example.com | 2018-01-18 01:58:53.661 UTC [common/config] initializeProtosStruct -> DEBU a27 Processing field: Consortium -orderer.example.com | 2018-01-18 01:58:53.661 UTC [policies] ProposePolicy -> DEBU a28 Proposed new policy Admins for Channel -orderer.example.com | 2018-01-18 01:58:53.661 UTC [policies] ProposePolicy -> DEBU a29 Proposed new policy Readers for Channel -orderer.example.com | 2018-01-18 01:58:53.661 UTC [policies] ProposePolicy -> DEBU a2a Proposed new policy Writers for Channel -orderer.example.com | 2018-01-18 01:58:53.661 UTC [common/config] NewStandardValues -> DEBU a2b Initializing protos for *struct {} -orderer.example.com | 2018-01-18 01:58:53.662 UTC [policies] ProposePolicy -> DEBU a2c Proposed new policy Writers for Application -orderer.example.com | 2018-01-18 01:58:53.662 UTC [policies] ProposePolicy -> DEBU a2d Proposed new policy Readers for Application -orderer.example.com | 2018-01-18 01:58:53.662 UTC [policies] ProposePolicy -> DEBU a2e Proposed new policy Admins for Application -orderer.example.com | 2018-01-18 01:58:53.662 UTC [common/config] NewStandardValues -> DEBU a2f Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:53.662 UTC [common/config] initializeProtosStruct -> DEBU a30 Processing field: MSP -orderer.example.com | 2018-01-18 01:58:53.662 UTC [common/config] NewStandardValues -> DEBU a31 Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | 2018-01-18 01:58:53.662 UTC [common/config] initializeProtosStruct -> DEBU a32 Processing field: AnchorPeers -orderer.example.com | 2018-01-18 01:58:53.662 UTC [common/config] NewStandardValues -> DEBU a33 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:53.662 UTC [common/config] initializeProtosStruct -> DEBU a34 Processing field: MSP -orderer.example.com | 2018-01-18 01:58:53.662 UTC [policies] ProposePolicy -> DEBU a35 Proposed new policy Writers for Org2MSP -orderer.example.com | 2018-01-18 01:58:53.663 UTC [policies] ProposePolicy -> DEBU a36 Proposed new policy Admins for Org2MSP -orderer.example.com | 2018-01-18 01:58:53.663 UTC [policies] ProposePolicy -> DEBU a37 Proposed new policy Readers for Org2MSP -orderer.example.com | 2018-01-18 01:58:53.663 UTC [common/config] NewStandardValues -> DEBU a38 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:53.663 UTC [common/config] initializeProtosStruct -> DEBU a39 Processing field: MSP -orderer.example.com | 2018-01-18 01:58:53.663 UTC [common/config] NewStandardValues -> DEBU a3a Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | 2018-01-18 01:58:53.663 UTC [common/config] initializeProtosStruct -> DEBU a3b Processing field: AnchorPeers -orderer.example.com | 2018-01-18 01:58:53.663 UTC [common/config] NewStandardValues -> DEBU a3c Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:53.663 UTC [common/config] initializeProtosStruct -> DEBU a3d Processing field: MSP -orderer.example.com | 2018-01-18 01:58:53.663 UTC [policies] ProposePolicy -> DEBU a3e Proposed new policy Admins for Org1MSP -orderer.example.com | 2018-01-18 01:58:53.664 UTC [policies] ProposePolicy -> DEBU a3f Proposed new policy Readers for Org1MSP -orderer.example.com | 2018-01-18 01:58:53.664 UTC [policies] ProposePolicy -> DEBU a40 Proposed new policy Writers for Org1MSP -orderer.example.com | 2018-01-18 01:58:53.664 UTC [common/config] NewStandardValues -> DEBU a41 Initializing protos for *config.OrdererProtos -orderer.example.com | 2018-01-18 01:58:53.664 UTC [common/config] initializeProtosStruct -> DEBU a42 Processing field: ConsensusType -orderer.example.com | 2018-01-18 01:58:53.665 UTC [common/config] initializeProtosStruct -> DEBU a43 Processing field: BatchSize -orderer.example.com | 2018-01-18 01:58:53.665 UTC [common/config] initializeProtosStruct -> DEBU a44 Processing field: BatchTimeout -orderer.example.com | 2018-01-18 01:58:53.665 UTC [common/config] initializeProtosStruct -> DEBU a45 Processing field: KafkaBrokers -orderer.example.com | 2018-01-18 01:58:53.665 UTC [common/config] initializeProtosStruct -> DEBU a46 Processing field: ChannelRestrictions -orderer.example.com | 2018-01-18 01:58:53.665 UTC [policies] ProposePolicy -> DEBU a47 Proposed new policy Admins for Orderer -orderer.example.com | 2018-01-18 01:58:53.665 UTC [policies] ProposePolicy -> DEBU a48 Proposed new policy BlockValidation for Orderer -orderer.example.com | 2018-01-18 01:58:53.665 UTC [policies] ProposePolicy -> DEBU a49 Proposed new policy Readers for Orderer -orderer.example.com | 2018-01-18 01:58:53.665 UTC [policies] ProposePolicy -> DEBU a4a Proposed new policy Writers for Orderer -orderer.example.com | 2018-01-18 01:58:53.666 UTC [common/config] NewStandardValues -> DEBU a4b Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:53.666 UTC [common/config] initializeProtosStruct -> DEBU a4c Processing field: MSP -orderer.example.com | 2018-01-18 01:58:53.666 UTC [policies] ProposePolicy -> DEBU a4d Proposed new policy Writers for OrdererOrg -orderer.example.com | 2018-01-18 01:58:53.666 UTC [policies] ProposePolicy -> DEBU a4e Proposed new policy Admins for OrdererOrg -orderer.example.com | 2018-01-18 01:58:53.666 UTC [policies] ProposePolicy -> DEBU a4f Proposed new policy Readers for OrdererOrg -orderer.example.com | 2018-01-18 01:58:53.667 UTC [common/config] Validate -> DEBU a50 Anchor peers for org Org2MSP are -orderer.example.com | 2018-01-18 01:58:53.667 UTC [common/config] validateMSP -> DEBU a51 Setting up MSP for org Org2MSP -orderer.example.com | 2018-01-18 01:58:53.667 UTC [msp] NewBccspMsp -> DEBU a52 Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-18 01:58:53.667 UTC [msp] Setup -> DEBU a53 Setting up MSP instance Org2MSP -orderer.example.com | 2018-01-18 01:58:53.675 UTC [msp/identity] newIdentity -> DEBU a54 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -orderer.example.com | mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 -orderer.example.com | sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ -orderer.example.com | xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv -orderer.example.com | WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk -orderer.example.com | SCjyRdD3aQ== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:53.679 UTC [msp/identity] newIdentity -> DEBU a55 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -orderer.example.com | AXYxULZpXYDQXt1KaLI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:53.681 UTC [msp/identity] newIdentity -> DEBU a56 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -orderer.example.com | AXYxULZpXYDQXt1KaLI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:53.683 UTC [msp] Validate -> DEBU a57 MSP Org2MSP validating identity -orderer.example.com | 2018-01-18 01:58:53.684 UTC [common/config] Validate -> DEBU a58 Anchor peers for org Org1MSP are anchor_peers: -orderer.example.com | 2018-01-18 01:58:53.685 UTC [common/config] validateMSP -> DEBU a59 Setting up MSP for org Org1MSP -orderer.example.com | 2018-01-18 01:58:53.685 UTC [msp] NewBccspMsp -> DEBU a5a Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-18 01:58:53.685 UTC [msp] Setup -> DEBU a5b Setting up MSP instance Org1MSP -orderer.example.com | 2018-01-18 01:58:53.687 UTC [msp/identity] newIdentity -> DEBU a5c Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -orderer.example.com | BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf -orderer.example.com | db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx -orderer.example.com | JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi -orderer.example.com | /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ -orderer.example.com | H7n8z1pj5w== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:53.690 UTC [msp/identity] newIdentity -> DEBU a5d Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -orderer.example.com | xHTBvxfK6mAzmUitFmY= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:53.694 UTC [msp/identity] newIdentity -> DEBU a5e Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -orderer.example.com | xHTBvxfK6mAzmUitFmY= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:53.700 UTC [msp] Validate -> DEBU a5f MSP Org1MSP validating identity -orderer.example.com | 2018-01-18 01:58:53.701 UTC [common/config] validateMSP -> DEBU a60 Setting up MSP for org OrdererOrg -orderer.example.com | 2018-01-18 01:58:53.701 UTC [msp] NewBccspMsp -> DEBU a61 Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-18 01:58:53.701 UTC [msp] Setup -> DEBU a62 Setting up MSP instance OrdererMSP -orderer.example.com | 2018-01-18 01:58:53.702 UTC [msp/identity] newIdentity -> DEBU a63 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW -orderer.example.com | gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w -orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -orderer.example.com | AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK -orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs -orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:53.703 UTC [msp/identity] newIdentity -> DEBU a64 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:53.703 UTC [msp/identity] newIdentity -> DEBU a65 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:53.704 UTC [msp] Validate -> DEBU a66 MSP OrdererMSP validating identity -orderer.example.com | 2018-01-18 01:58:53.705 UTC [msp] Setup -> DEBU a67 Setting up the MSP manager (3 msps) -orderer.example.com | 2018-01-18 01:58:53.706 UTC [msp] Setup -> DEBU a68 MSP manager setup complete, setup 3 msps -orderer.example.com | 2018-01-18 01:58:53.706 UTC [orderer/common/blockcutter] Ordered -> DEBU a69 Found message which requested to be isolated, cutting into its own batch -orderer.example.com | 2018-01-18 01:58:53.707 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU a6a retrieveBlockByNumber() - blockNum = [0] -orderer.example.com | 2018-01-18 01:58:53.711 UTC [fsblkstorage] newBlockfileStream -> DEBU a6b newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] -orderer.example.com | 2018-01-18 01:58:53.711 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU a6c Remaining bytes=[11934], Going to peek [8] bytes -orderer.example.com | 2018-01-18 01:58:53.711 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU a6d Returning blockbytes - length=[11932], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -orderer.example.com | 2018-01-18 01:58:53.712 UTC [common/configtx] addToMap -> DEBU a6e Adding to config map: [Groups] /Channel -orderer.example.com | 2018-01-18 01:58:53.712 UTC [common/configtx] addToMap -> DEBU a6f Adding to config map: [Groups] /Channel/Application -orderer.example.com | 2018-01-18 01:58:53.713 UTC [common/configtx] addToMap -> DEBU a70 Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | 2018-01-18 01:58:53.713 UTC [common/configtx] addToMap -> DEBU a71 Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -orderer.example.com | 2018-01-18 01:58:53.713 UTC [common/configtx] addToMap -> DEBU a72 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -orderer.example.com | 2018-01-18 01:58:53.714 UTC [common/configtx] addToMap -> DEBU a73 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | 2018-01-18 01:58:53.716 UTC [common/configtx] addToMap -> DEBU a74 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | 2018-01-18 01:58:53.716 UTC [common/configtx] addToMap -> DEBU a75 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | 2018-01-18 01:58:53.716 UTC [common/configtx] addToMap -> DEBU a76 Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | 2018-01-18 01:58:53.716 UTC [common/configtx] addToMap -> DEBU a77 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -orderer.example.com | 2018-01-18 01:58:53.716 UTC [common/configtx] addToMap -> DEBU a78 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | 2018-01-18 01:58:53.716 UTC [common/configtx] addToMap -> DEBU a79 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | 2018-01-18 01:58:53.716 UTC [common/configtx] addToMap -> DEBU a7a Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | 2018-01-18 01:58:53.717 UTC [common/configtx] addToMap -> DEBU a7b Adding to config map: [Policy] /Channel/Application/Admins -orderer.example.com | 2018-01-18 01:58:53.717 UTC [common/configtx] addToMap -> DEBU a7c Adding to config map: [Policy] /Channel/Application/Writers -orderer.example.com | 2018-01-18 01:58:53.717 UTC [common/configtx] addToMap -> DEBU a7d Adding to config map: [Policy] /Channel/Application/Readers -orderer.example.com | 2018-01-18 01:58:53.717 UTC [common/configtx] addToMap -> DEBU a7e Adding to config map: [Groups] /Channel/Orderer -orderer.example.com | 2018-01-18 01:58:53.718 UTC [common/configtx] addToMap -> DEBU a7f Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -orderer.example.com | 2018-01-18 01:58:53.718 UTC [common/configtx] addToMap -> DEBU a80 Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -orderer.example.com | 2018-01-18 01:58:53.719 UTC [common/configtx] addToMap -> DEBU a81 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | 2018-01-18 01:58:53.719 UTC [common/configtx] addToMap -> DEBU a82 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -orderer.example.com | 2018-01-18 01:58:53.720 UTC [common/configtx] addToMap -> DEBU a83 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | 2018-01-18 01:58:53.720 UTC [common/configtx] addToMap -> DEBU a84 Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -orderer.example.com | 2018-01-18 01:58:53.720 UTC [common/configtx] addToMap -> DEBU a85 Adding to config map: [Values] /Channel/Orderer/ConsensusType -orderer.example.com | 2018-01-18 01:58:53.720 UTC [common/configtx] addToMap -> DEBU a86 Adding to config map: [Values] /Channel/Orderer/BatchSize -orderer.example.com | 2018-01-18 01:58:53.720 UTC [common/configtx] addToMap -> DEBU a87 Adding to config map: [Values] /Channel/Orderer/BatchTimeout -orderer.example.com | 2018-01-18 01:58:53.720 UTC [common/configtx] addToMap -> DEBU a88 Adding to config map: [Policy] /Channel/Orderer/Readers -orderer.example.com | 2018-01-18 01:58:53.720 UTC [common/configtx] addToMap -> DEBU a89 Adding to config map: [Policy] /Channel/Orderer/Writers -orderer.example.com | 2018-01-18 01:58:53.720 UTC [common/configtx] addToMap -> DEBU a8a Adding to config map: [Policy] /Channel/Orderer/Admins -orderer.example.com | 2018-01-18 01:58:53.720 UTC [common/configtx] addToMap -> DEBU a8b Adding to config map: [Policy] /Channel/Orderer/BlockValidation -orderer.example.com | 2018-01-18 01:58:53.721 UTC [common/configtx] addToMap -> DEBU a8c Adding to config map: [Values] /Channel/Consortium -orderer.example.com | 2018-01-18 01:58:53.721 UTC [common/configtx] addToMap -> DEBU a8d Adding to config map: [Values] /Channel/OrdererAddresses -orderer.example.com | 2018-01-18 01:58:53.721 UTC [common/configtx] addToMap -> DEBU a8e Adding to config map: [Values] /Channel/HashingAlgorithm -orderer.example.com | 2018-01-18 01:58:53.721 UTC [common/configtx] addToMap -> DEBU a8f Adding to config map: [Values] /Channel/BlockDataHashingStructure -orderer.example.com | 2018-01-18 01:58:53.721 UTC [common/configtx] addToMap -> DEBU a90 Adding to config map: [Policy] /Channel/Readers -orderer.example.com | 2018-01-18 01:58:53.721 UTC [common/configtx] addToMap -> DEBU a91 Adding to config map: [Policy] /Channel/Writers -orderer.example.com | 2018-01-18 01:58:53.721 UTC [common/configtx] addToMap -> DEBU a92 Adding to config map: [Policy] /Channel/Admins -orderer.example.com | 2018-01-18 01:58:53.721 UTC [common/configtx] addToMap -> DEBU a93 Adding to config map: [Groups] /Channel -orderer.example.com | 2018-01-18 01:58:53.722 UTC [common/configtx] addToMap -> DEBU a94 Adding to config map: [Groups] /Channel/Application -orderer.example.com | 2018-01-18 01:58:53.722 UTC [common/configtx] addToMap -> DEBU a95 Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | 2018-01-18 01:58:53.722 UTC [common/configtx] addToMap -> DEBU a96 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -orderer.example.com | 2018-01-18 01:58:53.722 UTC [common/configtx] addToMap -> DEBU a97 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | 2018-01-18 01:58:53.722 UTC [common/configtx] addToMap -> DEBU a98 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | 2018-01-18 01:58:53.722 UTC [common/configtx] addToMap -> DEBU a99 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | 2018-01-18 01:58:53.722 UTC [common/configtx] addToMap -> DEBU a9a Adding to config map: [Groups] /Channel -orderer.example.com | 2018-01-18 01:58:53.722 UTC [common/configtx] addToMap -> DEBU a9b Adding to config map: [Groups] /Channel/Application -orderer.example.com | 2018-01-18 01:58:53.722 UTC [common/configtx] addToMap -> DEBU a9c Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | 2018-01-18 01:58:53.723 UTC [common/configtx] addToMap -> DEBU a9d Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -orderer.example.com | 2018-01-18 01:58:53.723 UTC [common/configtx] addToMap -> DEBU a9e Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -orderer.example.com | 2018-01-18 01:58:53.723 UTC [common/configtx] addToMap -> DEBU a9f Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | 2018-01-18 01:58:53.723 UTC [common/configtx] addToMap -> DEBU aa0 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | 2018-01-18 01:58:53.723 UTC [common/configtx] addToMap -> DEBU aa1 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | 2018-01-18 01:58:53.723 UTC [policies] GetPolicy -> DEBU aa2 Returning policy Admins for evaluation -orderer.example.com | 2018-01-18 01:58:53.723 UTC [cauthdsl] func1 -> DEBU aa3 0xc4200265b0 gate 1516240733723574007 evaluation starts -orderer.example.com | 2018-01-18 01:58:53.723 UTC [cauthdsl] func2 -> DEBU aa4 0xc4200265b0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-18 01:58:53.723 UTC [cauthdsl] func2 -> DEBU aa5 0xc4200265b0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-18 01:58:53.724 UTC [msp/identity] newIdentity -> DEBU aa6 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -orderer.example.com | xHTBvxfK6mAzmUitFmY= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:53.724 UTC [msp] SatisfiesPrincipal -> DEBU aa7 Checking if identity satisfies ADMIN role for Org1MSP -orderer.example.com | 2018-01-18 01:58:53.724 UTC [cauthdsl] func2 -> DEBU aa8 0xc4200265b0 principal matched by identity 0 -orderer.example.com | 2018-01-18 01:58:53.724 UTC [msp/identity] Verify -> DEBU aa9 Verify: digest = 00000000 94 4b 2c 71 ac 2b 83 1b 4e 1d 86 f1 f5 d3 9d 8e |.K,q.+..N.......| -orderer.example.com | 00000010 f3 8e f6 70 4f 34 16 19 7d a9 02 4b 28 a4 53 a3 |...pO4..}..K(.S.| -orderer.example.com | 2018-01-18 01:58:53.724 UTC [msp/identity] Verify -> DEBU aaa Verify: sig = 00000000 30 45 02 21 00 f6 c9 e9 b2 4c f2 f4 55 c4 e1 92 |0E.!.....L..U...| -orderer.example.com | 00000010 61 2c 96 22 89 62 9c a3 6f 50 99 f0 ec e3 84 45 |a,.".b..oP.....E| -orderer.example.com | 00000020 1e 9e d9 14 9b 02 20 00 f6 19 bb af 27 1f 30 22 |...... .....'.0"| -orderer.example.com | 00000030 1c 27 43 69 31 bc bd 8c 67 7d 60 ef ed 09 30 ec |.'Ci1...g}`...0.| -orderer.example.com | 00000040 92 99 08 c1 23 97 cd |....#..| -orderer.example.com | 2018-01-18 01:58:53.724 UTC [cauthdsl] func2 -> DEBU aab 0xc4200265b0 principal evaluation succeeds for identity 0 -orderer.example.com | 2018-01-18 01:58:53.724 UTC [cauthdsl] func1 -> DEBU aac 0xc4200265b0 gate 1516240733723574007 evaluation succeeds -orderer.example.com | 2018-01-18 01:58:53.725 UTC [common/configtx] recurseConfigMap -> DEBU aad Setting policy for key Readers to -orderer.example.com | 2018-01-18 01:58:53.725 UTC [common/configtx] recurseConfigMap -> DEBU aae Setting policy for key Writers to -orderer.example.com | 2018-01-18 01:58:53.725 UTC [common/configtx] recurseConfigMap -> DEBU aaf Setting policy for key Admins to -orderer.example.com | 2018-01-18 01:58:53.725 UTC [common/configtx] recurseConfigMap -> DEBU ab0 Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:53.725 UTC [common/configtx] recurseConfigMap -> DEBU ab1 Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:53.725 UTC [common/configtx] recurseConfigMap -> DEBU ab2 Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:53.725 UTC [common/configtx] recurseConfigMap -> DEBU ab3 Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:53.725 UTC [common/configtx] recurseConfigMap -> DEBU ab4 Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:53.726 UTC [common/configtx] recurseConfigMap -> DEBU ab5 Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:53.726 UTC [common/configtx] recurseConfigMap -> DEBU ab6 Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:53.726 UTC [common/configtx] recurseConfigMap -> DEBU ab7 Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:53.726 UTC [common/configtx] recurseConfigMap -> DEBU ab8 Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:53.726 UTC [common/configtx] recurseConfigMap -> DEBU ab9 Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:53.727 UTC [common/configtx] recurseConfigMap -> DEBU aba Setting policy for key BlockValidation to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:53.727 UTC [common/configtx] recurseConfigMap -> DEBU abb Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:53.727 UTC [common/configtx] recurseConfigMap -> DEBU abc Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:53.727 UTC [common/configtx] recurseConfigMap -> DEBU abd Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:53.727 UTC [common/configtx] recurseConfigMap -> DEBU abe Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:53.727 UTC [common/configtx] recurseConfigMap -> DEBU abf Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:53.728 UTC [common/configtx] processConfig -> DEBU ac0 Beginning new config for channel businesschannel -orderer.example.com | 2018-01-18 01:58:53.728 UTC [common/config] NewStandardValues -> DEBU ac1 Initializing protos for *config.ChannelProtos -orderer.example.com | 2018-01-18 01:58:53.728 UTC [common/config] initializeProtosStruct -> DEBU ac2 Processing field: HashingAlgorithm -orderer.example.com | 2018-01-18 01:58:53.728 UTC [common/config] initializeProtosStruct -> DEBU ac3 Processing field: BlockDataHashingStructure -orderer.example.com | 2018-01-18 01:58:53.728 UTC [common/config] initializeProtosStruct -> DEBU ac4 Processing field: OrdererAddresses -orderer.example.com | 2018-01-18 01:58:53.728 UTC [common/config] initializeProtosStruct -> DEBU ac5 Processing field: Consortium -orderer.example.com | 2018-01-18 01:58:53.728 UTC [policies] ProposePolicy -> DEBU ac6 Proposed new policy Admins for Channel -orderer.example.com | 2018-01-18 01:58:53.729 UTC [policies] ProposePolicy -> DEBU ac7 Proposed new policy Readers for Channel -orderer.example.com | 2018-01-18 01:58:53.729 UTC [policies] ProposePolicy -> DEBU ac8 Proposed new policy Writers for Channel -orderer.example.com | 2018-01-18 01:58:53.729 UTC [common/config] NewStandardValues -> DEBU ac9 Initializing protos for *struct {} -orderer.example.com | 2018-01-18 01:58:53.729 UTC [policies] ProposePolicy -> DEBU aca Proposed new policy Admins for Application -orderer.example.com | 2018-01-18 01:58:53.729 UTC [policies] ProposePolicy -> DEBU acb Proposed new policy Writers for Application -orderer.example.com | 2018-01-18 01:58:53.729 UTC [policies] ProposePolicy -> DEBU acc Proposed new policy Readers for Application -orderer.example.com | 2018-01-18 01:58:53.729 UTC [common/config] NewStandardValues -> DEBU acd Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:53.730 UTC [common/config] initializeProtosStruct -> DEBU ace Processing field: MSP -orderer.example.com | 2018-01-18 01:58:53.730 UTC [common/config] NewStandardValues -> DEBU acf Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | 2018-01-18 01:58:53.730 UTC [common/config] initializeProtosStruct -> DEBU ad0 Processing field: AnchorPeers -orderer.example.com | 2018-01-18 01:58:53.730 UTC [common/config] NewStandardValues -> DEBU ad1 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:53.730 UTC [common/config] initializeProtosStruct -> DEBU ad2 Processing field: MSP -orderer.example.com | 2018-01-18 01:58:53.730 UTC [policies] ProposePolicy -> DEBU ad3 Proposed new policy Writers for Org2MSP -orderer.example.com | 2018-01-18 01:58:53.730 UTC [policies] ProposePolicy -> DEBU ad4 Proposed new policy Admins for Org2MSP -orderer.example.com | 2018-01-18 01:58:53.730 UTC [policies] ProposePolicy -> DEBU ad5 Proposed new policy Readers for Org2MSP -orderer.example.com | 2018-01-18 01:58:53.730 UTC [common/config] NewStandardValues -> DEBU ad6 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:53.731 UTC [common/config] initializeProtosStruct -> DEBU ad7 Processing field: MSP -orderer.example.com | 2018-01-18 01:58:53.731 UTC [common/config] NewStandardValues -> DEBU ad8 Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | 2018-01-18 01:58:53.731 UTC [common/config] initializeProtosStruct -> DEBU ad9 Processing field: AnchorPeers -orderer.example.com | 2018-01-18 01:58:53.731 UTC [common/config] NewStandardValues -> DEBU ada Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:53.731 UTC [common/config] initializeProtosStruct -> DEBU adb Processing field: MSP -orderer.example.com | 2018-01-18 01:58:53.731 UTC [policies] ProposePolicy -> DEBU adc Proposed new policy Readers for Org1MSP -orderer.example.com | 2018-01-18 01:58:53.731 UTC [policies] ProposePolicy -> DEBU add Proposed new policy Writers for Org1MSP -orderer.example.com | 2018-01-18 01:58:53.731 UTC [policies] ProposePolicy -> DEBU ade Proposed new policy Admins for Org1MSP -orderer.example.com | 2018-01-18 01:58:53.731 UTC [common/config] NewStandardValues -> DEBU adf Initializing protos for *config.OrdererProtos -orderer.example.com | 2018-01-18 01:58:53.731 UTC [common/config] initializeProtosStruct -> DEBU ae0 Processing field: ConsensusType -orderer.example.com | 2018-01-18 01:58:53.731 UTC [common/config] initializeProtosStruct -> DEBU ae1 Processing field: BatchSize -orderer.example.com | 2018-01-18 01:58:53.731 UTC [common/config] initializeProtosStruct -> DEBU ae2 Processing field: BatchTimeout -orderer.example.com | 2018-01-18 01:58:53.732 UTC [common/config] initializeProtosStruct -> DEBU ae3 Processing field: KafkaBrokers -orderer.example.com | 2018-01-18 01:58:53.732 UTC [common/config] initializeProtosStruct -> DEBU ae4 Processing field: ChannelRestrictions -orderer.example.com | 2018-01-18 01:58:53.732 UTC [policies] ProposePolicy -> DEBU ae5 Proposed new policy BlockValidation for Orderer -orderer.example.com | 2018-01-18 01:58:53.732 UTC [policies] ProposePolicy -> DEBU ae6 Proposed new policy Readers for Orderer -orderer.example.com | 2018-01-18 01:58:53.732 UTC [policies] ProposePolicy -> DEBU ae7 Proposed new policy Writers for Orderer -orderer.example.com | 2018-01-18 01:58:53.732 UTC [policies] ProposePolicy -> DEBU ae8 Proposed new policy Admins for Orderer -orderer.example.com | 2018-01-18 01:58:53.732 UTC [common/config] NewStandardValues -> DEBU ae9 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:53.732 UTC [common/config] initializeProtosStruct -> DEBU aea Processing field: MSP -orderer.example.com | 2018-01-18 01:58:53.732 UTC [policies] ProposePolicy -> DEBU aeb Proposed new policy Admins for OrdererOrg -orderer.example.com | 2018-01-18 01:58:53.732 UTC [policies] ProposePolicy -> DEBU aec Proposed new policy Readers for OrdererOrg -orderer.example.com | 2018-01-18 01:58:53.732 UTC [policies] ProposePolicy -> DEBU aed Proposed new policy Writers for OrdererOrg -orderer.example.com | 2018-01-18 01:58:53.733 UTC [common/config] Validate -> DEBU aee Anchor peers for org Org2MSP are -orderer.example.com | 2018-01-18 01:58:53.733 UTC [common/config] validateMSP -> DEBU aef Setting up MSP for org Org2MSP -orderer.example.com | 2018-01-18 01:58:53.733 UTC [msp] NewBccspMsp -> DEBU af0 Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-18 01:58:53.733 UTC [msp] Setup -> DEBU af1 Setting up MSP instance Org2MSP -orderer.example.com | 2018-01-18 01:58:53.733 UTC [msp/identity] newIdentity -> DEBU af2 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -orderer.example.com | mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 -orderer.example.com | sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ -orderer.example.com | xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv -orderer.example.com | WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk -orderer.example.com | SCjyRdD3aQ== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:53.734 UTC [msp/identity] newIdentity -> DEBU af3 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -orderer.example.com | AXYxULZpXYDQXt1KaLI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:53.734 UTC [msp/identity] newIdentity -> DEBU af4 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -orderer.example.com | AXYxULZpXYDQXt1KaLI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:53.735 UTC [msp] Validate -> DEBU af5 MSP Org2MSP validating identity -orderer.example.com | 2018-01-18 01:58:53.735 UTC [common/config] Validate -> DEBU af6 Anchor peers for org Org1MSP are anchor_peers: -orderer.example.com | 2018-01-18 01:58:53.735 UTC [common/config] validateMSP -> DEBU af7 Setting up MSP for org Org1MSP -orderer.example.com | 2018-01-18 01:58:53.735 UTC [msp] NewBccspMsp -> DEBU af8 Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-18 01:58:53.735 UTC [msp] Setup -> DEBU af9 Setting up MSP instance Org1MSP -orderer.example.com | 2018-01-18 01:58:53.735 UTC [msp/identity] newIdentity -> DEBU afa Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -orderer.example.com | BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf -orderer.example.com | db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx -orderer.example.com | JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi -orderer.example.com | /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ -orderer.example.com | H7n8z1pj5w== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:53.736 UTC [msp/identity] newIdentity -> DEBU afb Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -orderer.example.com | xHTBvxfK6mAzmUitFmY= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:53.736 UTC [msp/identity] newIdentity -> DEBU afc Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -orderer.example.com | xHTBvxfK6mAzmUitFmY= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:53.737 UTC [msp] Validate -> DEBU afd MSP Org1MSP validating identity -orderer.example.com | 2018-01-18 01:58:53.737 UTC [common/config] validateMSP -> DEBU afe Setting up MSP for org OrdererOrg -orderer.example.com | 2018-01-18 01:58:53.737 UTC [msp] NewBccspMsp -> DEBU aff Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-18 01:58:53.737 UTC [msp] Setup -> DEBU b00 Setting up MSP instance OrdererMSP -orderer.example.com | 2018-01-18 01:58:53.738 UTC [msp/identity] newIdentity -> DEBU b01 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW -orderer.example.com | gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w -orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -orderer.example.com | AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK -orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs -orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:53.738 UTC [msp/identity] newIdentity -> DEBU b02 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:53.739 UTC [msp/identity] newIdentity -> DEBU b03 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:53.740 UTC [msp] Validate -> DEBU b04 MSP OrdererMSP validating identity -orderer.example.com | 2018-01-18 01:58:53.740 UTC [msp] Setup -> DEBU b05 Setting up the MSP manager (3 msps) -orderer.example.com | 2018-01-18 01:58:53.741 UTC [msp] Setup -> DEBU b06 MSP manager setup complete, setup 3 msps -orderer.example.com | 2018-01-18 01:58:53.741 UTC [policies] GetPolicy -> DEBU b07 Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:53.741 UTC [policies] CommitProposals -> DEBU b08 In commit adding relative sub-policy Org2MSP/Writers to Application -orderer.example.com | 2018-01-18 01:58:53.741 UTC [policies] GetPolicy -> DEBU b09 Returning policy Admins for evaluation -orderer.example.com | 2018-01-18 01:58:53.741 UTC [policies] CommitProposals -> DEBU b0a In commit adding relative sub-policy Org2MSP/Admins to Application -orderer.example.com | 2018-01-18 01:58:53.741 UTC [policies] GetPolicy -> DEBU b0b Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 01:58:53.741 UTC [policies] CommitProposals -> DEBU b0c In commit adding relative sub-policy Org2MSP/Readers to Application -orderer.example.com | 2018-01-18 01:58:53.741 UTC [policies] GetPolicy -> DEBU b0d Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 01:58:53.742 UTC [policies] CommitProposals -> DEBU b0e In commit adding relative sub-policy Org1MSP/Readers to Application -orderer.example.com | 2018-01-18 01:58:53.742 UTC [policies] GetPolicy -> DEBU b0f Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:53.742 UTC [policies] CommitProposals -> DEBU b10 In commit adding relative sub-policy Org1MSP/Writers to Application -orderer.example.com | 2018-01-18 01:58:53.742 UTC [policies] GetPolicy -> DEBU b11 Returning policy Admins for evaluation -orderer.example.com | 2018-01-18 01:58:53.742 UTC [policies] CommitProposals -> DEBU b12 In commit adding relative sub-policy Org1MSP/Admins to Application -orderer.example.com | 2018-01-18 01:58:53.742 UTC [policies] GetPolicy -> DEBU b13 Returning policy Admins for evaluation -orderer.example.com | 2018-01-18 01:58:53.742 UTC [policies] GetPolicy -> DEBU b14 Returning policy Admins for evaluation -orderer.example.com | 2018-01-18 01:58:53.742 UTC [policies] GetPolicy -> DEBU b15 Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:53.742 UTC [policies] GetPolicy -> DEBU b16 Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:53.742 UTC [policies] GetPolicy -> DEBU b17 Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 01:58:53.742 UTC [policies] GetPolicy -> DEBU b18 Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 01:58:53.742 UTC [policies] GetPolicy -> DEBU b19 Returning policy Admins for evaluation -orderer.example.com | 2018-01-18 01:58:53.742 UTC [policies] CommitProposals -> DEBU b1a In commit adding relative sub-policy OrdererOrg/Admins to Orderer -orderer.example.com | 2018-01-18 01:58:53.742 UTC [policies] GetPolicy -> DEBU b1b Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 01:58:53.743 UTC [policies] CommitProposals -> DEBU b1c In commit adding relative sub-policy OrdererOrg/Readers to Orderer -orderer.example.com | 2018-01-18 01:58:53.743 UTC [policies] GetPolicy -> DEBU b1d Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:53.743 UTC [policies] CommitProposals -> DEBU b1e In commit adding relative sub-policy OrdererOrg/Writers to Orderer -orderer.example.com | 2018-01-18 01:58:53.743 UTC [policies] GetPolicy -> DEBU b1f Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:53.743 UTC [policies] GetPolicy -> DEBU b20 Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 01:58:53.743 UTC [policies] GetPolicy -> DEBU b21 Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:53.743 UTC [policies] GetPolicy -> DEBU b22 Returning policy Admins for evaluation -orderer.example.com | 2018-01-18 01:58:53.743 UTC [policies] GetPolicy -> DEBU b23 Returning policy Org1MSP/Readers for evaluation -orderer.example.com | 2018-01-18 01:58:53.743 UTC [policies] CommitProposals -> DEBU b24 In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -orderer.example.com | 2018-01-18 01:58:53.744 UTC [policies] GetPolicy -> DEBU b25 Returning policy Org1MSP/Writers for evaluation -orderer.example.com | 2018-01-18 01:58:53.744 UTC [policies] CommitProposals -> DEBU b26 In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -orderer.example.com | 2018-01-18 01:58:53.744 UTC [policies] GetPolicy -> DEBU b27 Returning policy Org1MSP/Admins for evaluation -orderer.example.com | 2018-01-18 01:58:53.744 UTC [policies] CommitProposals -> DEBU b28 In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -orderer.example.com | 2018-01-18 01:58:53.745 UTC [policies] GetPolicy -> DEBU b29 Returning policy Admins for evaluation -orderer.example.com | 2018-01-18 01:58:53.745 UTC [policies] CommitProposals -> DEBU b2a In commit adding relative sub-policy Application/Admins to Channel -orderer.example.com | 2018-01-18 01:58:53.745 UTC [policies] GetPolicy -> DEBU b2b Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:53.745 UTC [policies] CommitProposals -> DEBU b2c In commit adding relative sub-policy Application/Writers to Channel -orderer.example.com | 2018-01-18 01:58:53.745 UTC [policies] GetPolicy -> DEBU b2d Returning policy Org2MSP/Admins for evaluation -orderer.example.com | 2018-01-18 01:58:53.745 UTC [policies] CommitProposals -> DEBU b2e In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -orderer.example.com | 2018-01-18 01:58:53.745 UTC [policies] GetPolicy -> DEBU b2f Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 01:58:53.745 UTC [policies] CommitProposals -> DEBU b30 In commit adding relative sub-policy Application/Readers to Channel -orderer.example.com | 2018-01-18 01:58:53.745 UTC [policies] GetPolicy -> DEBU b31 Returning policy Org2MSP/Writers for evaluation -orderer.example.com | 2018-01-18 01:58:53.746 UTC [policies] CommitProposals -> DEBU b32 In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -orderer.example.com | 2018-01-18 01:58:53.746 UTC [policies] GetPolicy -> DEBU b33 Returning policy Org2MSP/Readers for evaluation -orderer.example.com | 2018-01-18 01:58:53.746 UTC [policies] CommitProposals -> DEBU b34 In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -orderer.example.com | 2018-01-18 01:58:53.746 UTC [policies] GetPolicy -> DEBU b35 Returning policy BlockValidation for evaluation -orderer.example.com | 2018-01-18 01:58:53.746 UTC [policies] CommitProposals -> DEBU b36 In commit adding relative sub-policy Orderer/BlockValidation to Channel -orderer.example.com | 2018-01-18 01:58:53.746 UTC [policies] GetPolicy -> DEBU b37 Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 01:58:53.746 UTC [policies] CommitProposals -> DEBU b38 In commit adding relative sub-policy Orderer/Readers to Channel -orderer.example.com | 2018-01-18 01:58:53.746 UTC [policies] GetPolicy -> DEBU b39 Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:53.746 UTC [policies] CommitProposals -> DEBU b3a In commit adding relative sub-policy Orderer/Writers to Channel -orderer.example.com | 2018-01-18 01:58:53.746 UTC [policies] GetPolicy -> DEBU b3b Returning policy Admins for evaluation -orderer.example.com | 2018-01-18 01:58:53.746 UTC [policies] CommitProposals -> DEBU b3c In commit adding relative sub-policy Orderer/Admins to Channel -orderer.example.com | 2018-01-18 01:58:53.747 UTC [policies] GetPolicy -> DEBU b3d Returning policy OrdererOrg/Admins for evaluation -orderer.example.com | 2018-01-18 01:58:53.747 UTC [policies] CommitProposals -> DEBU b3e In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -orderer.example.com | 2018-01-18 01:58:53.747 UTC [policies] GetPolicy -> DEBU b3f Returning policy OrdererOrg/Readers for evaluation -orderer.example.com | 2018-01-18 01:58:53.747 UTC [policies] CommitProposals -> DEBU b40 In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -orderer.example.com | 2018-01-18 01:58:53.747 UTC [policies] GetPolicy -> DEBU b41 Returning policy OrdererOrg/Writers for evaluation -orderer.example.com | 2018-01-18 01:58:53.747 UTC [policies] CommitProposals -> DEBU b42 In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -orderer.example.com | 2018-01-18 01:58:53.748 UTC [policies] GetPolicy -> DEBU b43 Returning policy Admins for evaluation -orderer.example.com | 2018-01-18 01:58:53.748 UTC [policies] GetPolicy -> DEBU b44 Returning policy Admins for evaluation -orderer.example.com | 2018-01-18 01:58:53.748 UTC [policies] GetPolicy -> DEBU b45 Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 01:58:53.749 UTC [policies] GetPolicy -> DEBU b46 Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 01:58:53.749 UTC [policies] GetPolicy -> DEBU b47 Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:53.749 UTC [policies] GetPolicy -> DEBU b48 Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:53.749 UTC [policies] GetPolicy -> DEBU b49 Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 01:58:53.749 UTC [policies] CommitProposals -> DEBU b4a As expected, current configuration has policy '/Channel/Readers' -orderer.example.com | 2018-01-18 01:58:53.749 UTC [policies] GetPolicy -> DEBU b4b Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:53.750 UTC [policies] CommitProposals -> DEBU b4c As expected, current configuration has policy '/Channel/Writers' -orderer.example.com | 2018-01-18 01:58:53.750 UTC [policies] GetPolicy -> DEBU b4d Returning policy Application/Readers for evaluation -orderer.example.com | 2018-01-18 01:58:53.750 UTC [policies] CommitProposals -> DEBU b4e As expected, current configuration has policy '/Channel/Application/Readers' -orderer.example.com | 2018-01-18 01:58:53.750 UTC [policies] GetPolicy -> DEBU b4f Returning policy Application/Writers for evaluation -orderer.example.com | 2018-01-18 01:58:53.750 UTC [policies] CommitProposals -> DEBU b50 As expected, current configuration has policy '/Channel/Application/Writers' -orderer.example.com | 2018-01-18 01:58:53.750 UTC [policies] GetPolicy -> DEBU b51 Returning policy Application/Admins for evaluation -orderer.example.com | 2018-01-18 01:58:53.750 UTC [policies] CommitProposals -> DEBU b52 As expected, current configuration has policy '/Channel/Application/Admins' -orderer.example.com | 2018-01-18 01:58:53.750 UTC [policies] GetPolicy -> DEBU b53 Returning policy Orderer/BlockValidation for evaluation -orderer.example.com | 2018-01-18 01:58:53.751 UTC [policies] CommitProposals -> DEBU b54 As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -orderer.example.com | 2018-01-18 01:58:53.751 UTC [orderer/multichain] addBlockSignature -> DEBU b55 &{ledgerResources:0xc420208040 chain:0xc420208da0 cutter:0xc420a51270 filters:0xc4202089e0 signer:0x1274e88 lastConfig:0 lastConfigSeq:1} -orderer.example.com | 2018-01-18 01:58:53.751 UTC [orderer/multichain] addBlockSignature -> DEBU b56 &{} -orderer.example.com | 2018-01-18 01:58:53.751 UTC [msp] GetLocalMSP -> DEBU b57 Returning existing local MSP -orderer.example.com | 2018-01-18 01:58:53.751 UTC [msp] GetDefaultSigningIdentity -> DEBU b58 Obtaining default signing identity -orderer.example.com | 2018-01-18 01:58:53.751 UTC [msp] GetLocalMSP -> DEBU b59 Returning existing local MSP -orderer.example.com | 2018-01-18 01:58:53.751 UTC [msp] GetDefaultSigningIdentity -> DEBU b5a Obtaining default signing identity -orderer.example.com | 2018-01-18 01:58:53.751 UTC [msp/identity] Sign -> DEBU b5b Sign: plaintext: 0AFA050A0A4F7264657265724D535012...693608D493F69064AEB14668166D9DAC -orderer.example.com | 2018-01-18 01:58:53.752 UTC [msp/identity] Sign -> DEBU b5c Sign: digest: D78965F7E24FBC9512660C0E0A429E69F5E26D89599B7FC2A9F7EFA9B27F6E2C -orderer.example.com | 2018-01-18 01:58:53.752 UTC [orderer/multichain] addLastConfigSignature -> DEBU b5d [channel: businesschannel] Detected lastConfigSeq transitioning from 1 to 2, setting lastConfig from 0 to 1 -orderer.example.com | 2018-01-18 01:58:53.752 UTC [msp] GetLocalMSP -> DEBU b5e Returning existing local MSP -orderer.example.com | 2018-01-18 01:58:53.752 UTC [msp] GetDefaultSigningIdentity -> DEBU b5f Obtaining default signing identity -orderer.example.com | 2018-01-18 01:58:53.752 UTC [orderer/multichain] addLastConfigSignature -> DEBU b60 [channel: businesschannel] About to write block, setting its LAST_CONFIG to 1 -orderer.example.com | 2018-01-18 01:58:53.752 UTC [msp] GetLocalMSP -> DEBU b61 Returning existing local MSP -orderer.example.com | 2018-01-18 01:58:53.752 UTC [msp] GetDefaultSigningIdentity -> DEBU b62 Obtaining default signing identity -orderer.example.com | 2018-01-18 01:58:53.752 UTC [msp/identity] Sign -> DEBU b63 Sign: plaintext: 08010AFA050A0A4F7264657265724D53...693608D493F69064AEB14668166D9DAC -orderer.example.com | 2018-01-18 01:58:53.752 UTC [msp/identity] Sign -> DEBU b64 Sign: digest: 3CDA1D1525B950A78AA7DF0F660E0C00285903A0BBBB4A8C35BB4BBE301390E0 -orderer.example.com | 2018-01-18 01:58:53.755 UTC [fsblkstorage] indexBlock -> DEBU b65 Indexing block [blockNum=1, blockHash=[]byte{0xc3, 0xab, 0xaa, 0xb3, 0xa5, 0x22, 0xad, 0x43, 0xc, 0xa3, 0xc5, 0x33, 0x33, 0xd, 0x4f, 0xc2, 0xaa, 0x7, 0xee, 0xbc, 0xcd, 0x3b, 0xac, 0x1a, 0x3, 0xe2, 0x17, 0xb3, 0x1b, 0x87, 0x6d, 0x94} txOffsets= -orderer.example.com | txId= locPointer=offset=70, bytesLength=11913 -orderer.example.com | ] -orderer.example.com | 2018-01-18 01:58:53.755 UTC [fsblkstorage] updateCheckpoint -> DEBU b66 Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[25666], isChainEmpty=[false], lastBlockNumber=[1] -orderer.example.com | 2018-01-18 01:58:53.755 UTC [orderer/multichain] WriteBlock -> DEBU b67 [channel: businesschannel] Wrote block 1 -orderer.example.com | 2018-01-18 01:58:55.781 UTC [orderer/main] Deliver -> DEBU b68 Starting new Deliver handler -orderer.example.com | 2018-01-18 01:58:55.781 UTC [orderer/common/deliver] Handle -> DEBU b69 Starting new deliver loop -orderer.example.com | 2018-01-18 01:58:55.781 UTC [orderer/common/deliver] Handle -> DEBU b6a Attempting to read seek info message -orderer.example.com | 2018-01-18 01:58:55.792 UTC [orderer/main] Broadcast -> DEBU b6b Starting new Broadcast handler -orderer.example.com | 2018-01-18 01:58:55.792 UTC [orderer/common/broadcast] Handle -> DEBU b6c Starting new broadcast loop -orderer.example.com | 2018-01-18 01:58:55.793 UTC [orderer/common/broadcast] Handle -> DEBU b6d Preprocessing CONFIG_UPDATE -orderer.example.com | 2018-01-18 01:58:55.793 UTC [orderer/configupdate] Process -> DEBU b6e Processing channel reconfiguration request for channel businesschannel -orderer.example.com | 2018-01-18 01:58:55.794 UTC [common/configtx] addToMap -> DEBU b6f Adding to config map: [Groups] /Channel -orderer.example.com | 2018-01-18 01:58:55.794 UTC [common/configtx] addToMap -> DEBU b70 Adding to config map: [Groups] /Channel/Application -orderer.example.com | 2018-01-18 01:58:55.794 UTC [common/configtx] addToMap -> DEBU b71 Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | 2018-01-18 01:58:55.794 UTC [common/configtx] addToMap -> DEBU b72 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -orderer.example.com | 2018-01-18 01:58:55.794 UTC [common/configtx] addToMap -> DEBU b73 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | 2018-01-18 01:58:55.795 UTC [common/configtx] addToMap -> DEBU b74 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | 2018-01-18 01:58:55.795 UTC [common/configtx] addToMap -> DEBU b75 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | 2018-01-18 01:58:55.795 UTC [common/configtx] addToMap -> DEBU b76 Adding to config map: [Groups] /Channel -orderer.example.com | 2018-01-18 01:58:55.795 UTC [common/configtx] addToMap -> DEBU b77 Adding to config map: [Groups] /Channel/Application -orderer.example.com | 2018-01-18 01:58:55.796 UTC [common/configtx] addToMap -> DEBU b78 Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | 2018-01-18 01:58:55.796 UTC [common/configtx] addToMap -> DEBU b79 Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers -orderer.example.com | 2018-01-18 01:58:55.796 UTC [common/configtx] addToMap -> DEBU b7a Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -orderer.example.com | 2018-01-18 01:58:55.796 UTC [common/configtx] addToMap -> DEBU b7b Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | 2018-01-18 01:58:55.796 UTC [common/configtx] addToMap -> DEBU b7c Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | 2018-01-18 01:58:55.796 UTC [common/configtx] addToMap -> DEBU b7d Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | 2018-01-18 01:58:55.797 UTC [policies] GetPolicy -> DEBU b7e Returning policy Admins for evaluation -orderer.example.com | 2018-01-18 01:58:55.797 UTC [cauthdsl] func1 -> DEBU b7f 0xc420026af8 gate 1516240735797217166 evaluation starts -orderer.example.com | 2018-01-18 01:58:55.797 UTC [cauthdsl] func2 -> DEBU b80 0xc420026af8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-18 01:58:55.797 UTC [cauthdsl] func2 -> DEBU b81 0xc420026af8 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-18 01:58:55.798 UTC [msp/identity] newIdentity -> DEBU b82 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -orderer.example.com | AXYxULZpXYDQXt1KaLI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:55.798 UTC [msp] SatisfiesPrincipal -> DEBU b83 Checking if identity satisfies ADMIN role for Org2MSP -orderer.example.com | 2018-01-18 01:58:55.798 UTC [cauthdsl] func2 -> DEBU b84 0xc420026af8 principal matched by identity 0 -orderer.example.com | 2018-01-18 01:58:55.799 UTC [msp/identity] Verify -> DEBU b85 Verify: digest = 00000000 9d 72 b7 0e 95 b2 86 89 3a d9 b1 85 95 8f bb d7 |.r......:.......| -orderer.example.com | 00000010 01 5c 09 c4 93 48 4e 4e 33 65 ec 0d 5f d5 63 3d |.\...HNN3e.._.c=| -orderer.example.com | 2018-01-18 01:58:55.799 UTC [msp/identity] Verify -> DEBU b86 Verify: sig = 00000000 30 44 02 20 7b 5b dd e2 f4 f1 0a 0b d0 d4 b9 93 |0D. {[..........| -orderer.example.com | 00000010 d4 7f 21 c4 a4 ad 70 70 9f f3 5c e5 34 49 d3 8f |..!...pp..\.4I..| -orderer.example.com | 00000020 80 7e 20 4b 02 20 47 1a ed e4 2b 82 43 82 8a b4 |.~ K. G...+.C...| -orderer.example.com | 00000030 7e 02 4b 68 89 0c c3 b8 da ec 5f 89 9c 63 95 a2 |~.Kh......_..c..| -orderer.example.com | 00000040 8d 10 f4 ce 7a 7f |....z.| -orderer.example.com | 2018-01-18 01:58:55.800 UTC [cauthdsl] func2 -> DEBU b87 0xc420026af8 principal evaluation succeeds for identity 0 -orderer.example.com | 2018-01-18 01:58:55.800 UTC [cauthdsl] func1 -> DEBU b88 0xc420026af8 gate 1516240735797217166 evaluation succeeds -orderer.example.com | 2018-01-18 01:58:55.801 UTC [common/configtx] recurseConfigMap -> DEBU b89 Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:55.802 UTC [common/configtx] recurseConfigMap -> DEBU b8a Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:55.802 UTC [common/configtx] recurseConfigMap -> DEBU b8b Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:55.802 UTC [common/configtx] recurseConfigMap -> DEBU b8c Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:55.802 UTC [common/configtx] recurseConfigMap -> DEBU b8d Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:55.802 UTC [common/configtx] recurseConfigMap -> DEBU b8e Setting policy for key BlockValidation to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:55.802 UTC [common/configtx] recurseConfigMap -> DEBU b8f Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:55.803 UTC [common/configtx] recurseConfigMap -> DEBU b90 Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:55.803 UTC [common/configtx] recurseConfigMap -> DEBU b91 Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:55.803 UTC [common/configtx] recurseConfigMap -> DEBU b92 Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:55.803 UTC [common/configtx] recurseConfigMap -> DEBU b93 Setting policy for key Writers to -orderer.example.com | 2018-01-18 01:58:55.803 UTC [common/configtx] recurseConfigMap -> DEBU b94 Setting policy for key Admins to -orderer.example.com | 2018-01-18 01:58:55.803 UTC [common/configtx] recurseConfigMap -> DEBU b95 Setting policy for key Readers to -orderer.example.com | 2018-01-18 01:58:55.803 UTC [common/configtx] recurseConfigMap -> DEBU b96 Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:55.804 UTC [common/configtx] recurseConfigMap -> DEBU b97 Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:55.804 UTC [common/configtx] recurseConfigMap -> DEBU b98 Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:55.804 UTC [common/configtx] recurseConfigMap -> DEBU b99 Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:55.804 UTC [common/configtx] recurseConfigMap -> DEBU b9a Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:55.804 UTC [common/configtx] recurseConfigMap -> DEBU b9b Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:55.804 UTC [common/configtx] processConfig -> DEBU b9c Beginning new config for channel businesschannel -orderer.example.com | 2018-01-18 01:58:55.804 UTC [common/config] NewStandardValues -> DEBU b9d Initializing protos for *config.ChannelProtos -orderer.example.com | 2018-01-18 01:58:55.804 UTC [common/config] initializeProtosStruct -> DEBU b9e Processing field: HashingAlgorithm -orderer.example.com | 2018-01-18 01:58:55.804 UTC [common/config] initializeProtosStruct -> DEBU b9f Processing field: BlockDataHashingStructure -orderer.example.com | 2018-01-18 01:58:55.805 UTC [common/config] initializeProtosStruct -> DEBU ba0 Processing field: OrdererAddresses -orderer.example.com | 2018-01-18 01:58:55.805 UTC [common/config] initializeProtosStruct -> DEBU ba1 Processing field: Consortium -orderer.example.com | 2018-01-18 01:58:55.805 UTC [policies] ProposePolicy -> DEBU ba2 Proposed new policy Writers for Channel -orderer.example.com | 2018-01-18 01:58:55.805 UTC [policies] ProposePolicy -> DEBU ba3 Proposed new policy Admins for Channel -orderer.example.com | 2018-01-18 01:58:55.805 UTC [policies] ProposePolicy -> DEBU ba4 Proposed new policy Readers for Channel -orderer.example.com | 2018-01-18 01:58:55.805 UTC [common/config] NewStandardValues -> DEBU ba5 Initializing protos for *config.OrdererProtos -orderer.example.com | 2018-01-18 01:58:55.805 UTC [common/config] initializeProtosStruct -> DEBU ba6 Processing field: ConsensusType -orderer.example.com | 2018-01-18 01:58:55.805 UTC [common/config] initializeProtosStruct -> DEBU ba7 Processing field: BatchSize -orderer.example.com | 2018-01-18 01:58:55.805 UTC [common/config] initializeProtosStruct -> DEBU ba8 Processing field: BatchTimeout -orderer.example.com | 2018-01-18 01:58:55.805 UTC [common/config] initializeProtosStruct -> DEBU ba9 Processing field: KafkaBrokers -orderer.example.com | 2018-01-18 01:58:55.806 UTC [common/config] initializeProtosStruct -> DEBU baa Processing field: ChannelRestrictions -orderer.example.com | 2018-01-18 01:58:55.806 UTC [policies] ProposePolicy -> DEBU bab Proposed new policy BlockValidation for Orderer -orderer.example.com | 2018-01-18 01:58:55.806 UTC [policies] ProposePolicy -> DEBU bac Proposed new policy Readers for Orderer -orderer.example.com | 2018-01-18 01:58:55.806 UTC [policies] ProposePolicy -> DEBU bad Proposed new policy Writers for Orderer -orderer.example.com | 2018-01-18 01:58:55.806 UTC [policies] ProposePolicy -> DEBU bae Proposed new policy Admins for Orderer -orderer.example.com | 2018-01-18 01:58:55.806 UTC [common/config] NewStandardValues -> DEBU baf Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:55.806 UTC [common/config] initializeProtosStruct -> DEBU bb0 Processing field: MSP -orderer.example.com | 2018-01-18 01:58:55.806 UTC [policies] ProposePolicy -> DEBU bb1 Proposed new policy Writers for OrdererOrg -orderer.example.com | 2018-01-18 01:58:55.806 UTC [policies] ProposePolicy -> DEBU bb2 Proposed new policy Admins for OrdererOrg -orderer.example.com | 2018-01-18 01:58:55.807 UTC [policies] ProposePolicy -> DEBU bb3 Proposed new policy Readers for OrdererOrg -orderer.example.com | 2018-01-18 01:58:55.807 UTC [common/config] NewStandardValues -> DEBU bb4 Initializing protos for *struct {} -orderer.example.com | 2018-01-18 01:58:55.807 UTC [policies] ProposePolicy -> DEBU bb5 Proposed new policy Readers for Application -orderer.example.com | 2018-01-18 01:58:55.807 UTC [policies] ProposePolicy -> DEBU bb6 Proposed new policy Admins for Application -orderer.example.com | 2018-01-18 01:58:55.807 UTC [policies] ProposePolicy -> DEBU bb7 Proposed new policy Writers for Application -orderer.example.com | 2018-01-18 01:58:55.807 UTC [common/config] NewStandardValues -> DEBU bb8 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:55.808 UTC [common/config] initializeProtosStruct -> DEBU bb9 Processing field: MSP -orderer.example.com | 2018-01-18 01:58:55.808 UTC [common/config] NewStandardValues -> DEBU bba Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | 2018-01-18 01:58:55.808 UTC [common/config] initializeProtosStruct -> DEBU bbb Processing field: AnchorPeers -orderer.example.com | 2018-01-18 01:58:55.808 UTC [common/config] NewStandardValues -> DEBU bbc Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:55.808 UTC [common/config] initializeProtosStruct -> DEBU bbd Processing field: MSP -orderer.example.com | 2018-01-18 01:58:55.808 UTC [policies] ProposePolicy -> DEBU bbe Proposed new policy Readers for Org2MSP -orderer.example.com | 2018-01-18 01:58:55.808 UTC [policies] ProposePolicy -> DEBU bbf Proposed new policy Writers for Org2MSP -orderer.example.com | 2018-01-18 01:58:55.808 UTC [policies] ProposePolicy -> DEBU bc0 Proposed new policy Admins for Org2MSP -orderer.example.com | 2018-01-18 01:58:55.808 UTC [common/config] NewStandardValues -> DEBU bc1 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:55.808 UTC [common/config] initializeProtosStruct -> DEBU bc2 Processing field: MSP -orderer.example.com | 2018-01-18 01:58:55.808 UTC [common/config] NewStandardValues -> DEBU bc3 Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | 2018-01-18 01:58:55.809 UTC [common/config] initializeProtosStruct -> DEBU bc4 Processing field: AnchorPeers -orderer.example.com | 2018-01-18 01:58:55.809 UTC [common/config] NewStandardValues -> DEBU bc5 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:55.809 UTC [common/config] initializeProtosStruct -> DEBU bc6 Processing field: MSP -orderer.example.com | 2018-01-18 01:58:55.809 UTC [policies] ProposePolicy -> DEBU bc7 Proposed new policy Readers for Org1MSP -orderer.example.com | 2018-01-18 01:58:55.809 UTC [policies] ProposePolicy -> DEBU bc8 Proposed new policy Writers for Org1MSP -orderer.example.com | 2018-01-18 01:58:55.809 UTC [policies] ProposePolicy -> DEBU bc9 Proposed new policy Admins for Org1MSP -orderer.example.com | 2018-01-18 01:58:55.809 UTC [common/config] validateMSP -> DEBU bca Setting up MSP for org OrdererOrg -orderer.example.com | 2018-01-18 01:58:55.809 UTC [msp] NewBccspMsp -> DEBU bcb Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-18 01:58:55.809 UTC [msp] Setup -> DEBU bcc Setting up MSP instance OrdererMSP -orderer.example.com | 2018-01-18 01:58:55.810 UTC [msp/identity] newIdentity -> DEBU bcd Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW -orderer.example.com | gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w -orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -orderer.example.com | AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK -orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs -orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:55.811 UTC [msp/identity] newIdentity -> DEBU bce Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:55.811 UTC [msp/identity] newIdentity -> DEBU bcf Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:55.812 UTC [msp] Validate -> DEBU bd0 MSP OrdererMSP validating identity -orderer.example.com | 2018-01-18 01:58:55.812 UTC [common/config] Validate -> DEBU bd1 Anchor peers for org Org2MSP are anchor_peers: -orderer.example.com | 2018-01-18 01:58:55.812 UTC [common/config] validateMSP -> DEBU bd2 Setting up MSP for org Org2MSP -orderer.example.com | 2018-01-18 01:58:55.812 UTC [msp] NewBccspMsp -> DEBU bd3 Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-18 01:58:55.813 UTC [msp] Setup -> DEBU bd4 Setting up MSP instance Org2MSP -orderer.example.com | 2018-01-18 01:58:55.813 UTC [msp/identity] newIdentity -> DEBU bd5 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -orderer.example.com | mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 -orderer.example.com | sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ -orderer.example.com | xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv -orderer.example.com | WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk -orderer.example.com | SCjyRdD3aQ== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:55.814 UTC [msp/identity] newIdentity -> DEBU bd6 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -orderer.example.com | AXYxULZpXYDQXt1KaLI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:55.814 UTC [msp/identity] newIdentity -> DEBU bd7 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -orderer.example.com | AXYxULZpXYDQXt1KaLI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:55.815 UTC [msp] Validate -> DEBU bd8 MSP Org2MSP validating identity -orderer.example.com | 2018-01-18 01:58:55.815 UTC [common/config] Validate -> DEBU bd9 Anchor peers for org Org1MSP are anchor_peers: -orderer.example.com | 2018-01-18 01:58:55.815 UTC [common/config] validateMSP -> DEBU bda Setting up MSP for org Org1MSP -orderer.example.com | 2018-01-18 01:58:55.815 UTC [msp] NewBccspMsp -> DEBU bdb Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-18 01:58:55.815 UTC [msp] Setup -> DEBU bdc Setting up MSP instance Org1MSP -orderer.example.com | 2018-01-18 01:58:55.816 UTC [msp/identity] newIdentity -> DEBU bdd Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -orderer.example.com | BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf -orderer.example.com | db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx -orderer.example.com | JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi -orderer.example.com | /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ -orderer.example.com | H7n8z1pj5w== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:55.816 UTC [msp/identity] newIdentity -> DEBU bde Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -orderer.example.com | xHTBvxfK6mAzmUitFmY= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:55.817 UTC [msp/identity] newIdentity -> DEBU bdf Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -orderer.example.com | xHTBvxfK6mAzmUitFmY= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:55.817 UTC [msp] Validate -> DEBU be0 MSP Org1MSP validating identity -orderer.example.com | 2018-01-18 01:58:55.817 UTC [msp] Setup -> DEBU be1 Setting up the MSP manager (3 msps) -orderer.example.com | 2018-01-18 01:58:55.817 UTC [msp] Setup -> DEBU be2 MSP manager setup complete, setup 3 msps -orderer.example.com | 2018-01-18 01:58:55.818 UTC [msp] GetLocalMSP -> DEBU be3 Returning existing local MSP -orderer.example.com | 2018-01-18 01:58:55.818 UTC [msp] GetDefaultSigningIdentity -> DEBU be4 Obtaining default signing identity -orderer.example.com | 2018-01-18 01:58:55.818 UTC [msp] GetLocalMSP -> DEBU be5 Returning existing local MSP -orderer.example.com | 2018-01-18 01:58:55.818 UTC [msp] GetDefaultSigningIdentity -> DEBU be6 Obtaining default signing identity -orderer.example.com | 2018-01-18 01:58:55.818 UTC [msp/identity] Sign -> DEBU be7 Sign: plaintext: 0AB7060A1B08011A0608DFFEFFD20522...F63A2AAF72906F5884BA6D9ECF71D6D4 -orderer.example.com | 2018-01-18 01:58:55.818 UTC [msp/identity] Sign -> DEBU be8 Sign: digest: E9115A913330866EBC2F0F17DB1AADA97C1B54F87952E538A63CE8090B5CFA76 -orderer.example.com | 2018-01-18 01:58:55.818 UTC [orderer/common/broadcast] Handle -> DEBU be9 [channel: businesschannel] Broadcast is filtering message of type CONFIG -orderer.example.com | 2018-01-18 01:58:55.819 UTC [policies] GetPolicy -> DEBU bea Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:55.819 UTC [cauthdsl] func1 -> DEBU beb 0xc420026ec8 gate 1516240735819169285 evaluation starts -orderer.example.com | 2018-01-18 01:58:55.819 UTC [cauthdsl] func2 -> DEBU bec 0xc420026ec8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-18 01:58:55.819 UTC [cauthdsl] func2 -> DEBU bed 0xc420026ec8 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-18 01:58:55.819 UTC [msp/identity] newIdentity -> DEBU bee Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq -orderer.example.com | hkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz -orderer.example.com | MKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw -orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN -orderer.example.com | RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH -orderer.example.com | /4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:55.819 UTC [cauthdsl] func2 -> DEBU bef 0xc420026ec8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -orderer.example.com | 2018-01-18 01:58:55.820 UTC [cauthdsl] func2 -> DEBU bf0 0xc420026ec8 principal evaluation fails -orderer.example.com | 2018-01-18 01:58:55.820 UTC [cauthdsl] func1 -> DEBU bf1 0xc420026ec8 gate 1516240735819169285 evaluation fails -orderer.example.com | 2018-01-18 01:58:55.820 UTC [cauthdsl] func1 -> DEBU bf2 0xc420026ed8 gate 1516240735820199170 evaluation starts -orderer.example.com | 2018-01-18 01:58:55.820 UTC [cauthdsl] func2 -> DEBU bf3 0xc420026ed8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-18 01:58:55.820 UTC [cauthdsl] func2 -> DEBU bf4 0xc420026ed8 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-18 01:58:55.820 UTC [msp/identity] newIdentity -> DEBU bf5 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq -orderer.example.com | hkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz -orderer.example.com | MKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw -orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN -orderer.example.com | RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH -orderer.example.com | /4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:55.820 UTC [cauthdsl] func2 -> DEBU bf6 0xc420026ed8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -orderer.example.com | 2018-01-18 01:58:55.820 UTC [cauthdsl] func2 -> DEBU bf7 0xc420026ed8 principal evaluation fails -orderer.example.com | 2018-01-18 01:58:55.821 UTC [cauthdsl] func1 -> DEBU bf8 0xc420026ed8 gate 1516240735820199170 evaluation fails -orderer.example.com | 2018-01-18 01:58:55.821 UTC [cauthdsl] func1 -> DEBU bf9 0xc420026f30 gate 1516240735821181678 evaluation starts -orderer.example.com | 2018-01-18 01:58:55.821 UTC [cauthdsl] func2 -> DEBU bfa 0xc420026f30 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-18 01:58:55.821 UTC [cauthdsl] func2 -> DEBU bfb 0xc420026f30 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-18 01:58:55.821 UTC [msp/identity] newIdentity -> DEBU bfc Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq -orderer.example.com | hkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz -orderer.example.com | MKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw -orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN -orderer.example.com | RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH -orderer.example.com | /4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:55.821 UTC [msp] SatisfiesPrincipal -> DEBU bfd Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | 2018-01-18 01:58:55.822 UTC [msp] Validate -> DEBU bfe MSP OrdererMSP validating identity -orderer.example.com | 2018-01-18 01:58:55.822 UTC [cauthdsl] func2 -> DEBU bff 0xc420026f30 principal matched by identity 0 -orderer.example.com | 2018-01-18 01:58:55.822 UTC [msp/identity] Verify -> DEBU c00 Verify: digest = 00000000 e9 11 5a 91 33 30 86 6e bc 2f 0f 17 db 1a ad a9 |..Z.30.n./......| -orderer.example.com | 00000010 7c 1b 54 f8 79 52 e5 38 a6 3c e8 09 0b 5c fa 76 ||.T.yR.8.<...\.v| -orderer.example.com | 2018-01-18 01:58:55.822 UTC [msp/identity] Verify -> DEBU c01 Verify: sig = 00000000 30 44 02 20 1a 19 ff ce ef 87 b6 2e 8f 69 c8 c9 |0D. .........i..| -orderer.example.com | 00000010 00 a2 99 2e 22 6c 79 bd 68 86 de 91 1e ce 02 ab |...."ly.h.......| -orderer.example.com | 00000020 27 c2 e5 b1 02 20 17 f8 31 ca 60 39 1a 4b 63 e9 |'.... ..1.`9.Kc.| -orderer.example.com | 00000030 70 cd ea 2e fb 71 84 be 00 59 ce e7 38 92 b1 c3 |p....q...Y..8...| -orderer.example.com | 00000040 92 cf 85 2a d9 00 |...*..| -orderer.example.com | 2018-01-18 01:58:55.822 UTC [cauthdsl] func2 -> DEBU c02 0xc420026f30 principal evaluation succeeds for identity 0 -orderer.example.com | 2018-01-18 01:58:55.823 UTC [cauthdsl] func1 -> DEBU c03 0xc420026f30 gate 1516240735821181678 evaluation succeeds -orderer.example.com | 2018-01-18 01:58:55.823 UTC [orderer/common/sigfilter] Apply -> DEBU c04 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420a394a0 1 [0xc420026638 0xc420026700]}) %!s(*policies.implicitMetaPolicy=&{0xc42039e3e0 1 [0xc4200267c8]})]} -orderer.example.com | 2018-01-18 01:58:55.823 UTC [common/configtx] addToMap -> DEBU c05 Adding to config map: [Groups] /Channel -orderer.example.com | 2018-01-18 01:58:55.825 UTC [common/configtx] addToMap -> DEBU c06 Adding to config map: [Groups] /Channel/Application -orderer.example.com | 2018-01-18 01:58:55.825 UTC [common/configtx] addToMap -> DEBU c07 Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | 2018-01-18 01:58:55.826 UTC [common/configtx] addToMap -> DEBU c08 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -orderer.example.com | 2018-01-18 01:58:55.826 UTC [common/configtx] addToMap -> DEBU c09 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | 2018-01-18 01:58:55.826 UTC [common/configtx] addToMap -> DEBU c0a Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | 2018-01-18 01:58:55.827 UTC [common/configtx] addToMap -> DEBU c0b Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | 2018-01-18 01:58:55.827 UTC [common/configtx] addToMap -> DEBU c0c Adding to config map: [Groups] /Channel -orderer.example.com | 2018-01-18 01:58:55.828 UTC [common/configtx] addToMap -> DEBU c0d Adding to config map: [Groups] /Channel/Application -orderer.example.com | 2018-01-18 01:58:55.828 UTC [common/configtx] addToMap -> DEBU c0e Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | 2018-01-18 01:58:55.828 UTC [common/configtx] addToMap -> DEBU c0f Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -orderer.example.com | 2018-01-18 01:58:55.828 UTC [common/configtx] addToMap -> DEBU c10 Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers -orderer.example.com | 2018-01-18 01:58:55.829 UTC [common/configtx] addToMap -> DEBU c11 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | 2018-01-18 01:58:55.829 UTC [common/configtx] addToMap -> DEBU c12 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | 2018-01-18 01:58:55.829 UTC [common/configtx] addToMap -> DEBU c13 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | 2018-01-18 01:58:55.830 UTC [policies] GetPolicy -> DEBU c14 Returning policy Admins for evaluation -orderer.example.com | 2018-01-18 01:58:55.830 UTC [cauthdsl] func1 -> DEBU c15 0xc42014a508 gate 1516240735830233250 evaluation starts -orderer.example.com | 2018-01-18 01:58:55.830 UTC [cauthdsl] func2 -> DEBU c16 0xc42014a508 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-18 01:58:55.830 UTC [cauthdsl] func2 -> DEBU c17 0xc42014a508 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-18 01:58:55.831 UTC [msp/identity] newIdentity -> DEBU c18 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -orderer.example.com | AXYxULZpXYDQXt1KaLI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:55.831 UTC [msp] SatisfiesPrincipal -> DEBU c19 Checking if identity satisfies ADMIN role for Org2MSP -orderer.example.com | 2018-01-18 01:58:55.831 UTC [cauthdsl] func2 -> DEBU c1a 0xc42014a508 principal matched by identity 0 -orderer.example.com | 2018-01-18 01:58:55.831 UTC [msp/identity] Verify -> DEBU c1b Verify: digest = 00000000 9d 72 b7 0e 95 b2 86 89 3a d9 b1 85 95 8f bb d7 |.r......:.......| -orderer.example.com | 00000010 01 5c 09 c4 93 48 4e 4e 33 65 ec 0d 5f d5 63 3d |.\...HNN3e.._.c=| -orderer.example.com | 2018-01-18 01:58:55.831 UTC [msp/identity] Verify -> DEBU c1c Verify: sig = 00000000 30 44 02 20 7b 5b dd e2 f4 f1 0a 0b d0 d4 b9 93 |0D. {[..........| -orderer.example.com | 00000010 d4 7f 21 c4 a4 ad 70 70 9f f3 5c e5 34 49 d3 8f |..!...pp..\.4I..| -orderer.example.com | 00000020 80 7e 20 4b 02 20 47 1a ed e4 2b 82 43 82 8a b4 |.~ K. G...+.C...| -orderer.example.com | 00000030 7e 02 4b 68 89 0c c3 b8 da ec 5f 89 9c 63 95 a2 |~.Kh......_..c..| -orderer.example.com | 00000040 8d 10 f4 ce 7a 7f |....z.| -orderer.example.com | 2018-01-18 01:58:55.831 UTC [cauthdsl] func2 -> DEBU c1d 0xc42014a508 principal evaluation succeeds for identity 0 -orderer.example.com | 2018-01-18 01:58:55.831 UTC [cauthdsl] func1 -> DEBU c1e 0xc42014a508 gate 1516240735830233250 evaluation succeeds -orderer.example.com | 2018-01-18 01:58:55.832 UTC [common/configtx] recurseConfigMap -> DEBU c1f Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:55.832 UTC [common/configtx] recurseConfigMap -> DEBU c20 Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:55.832 UTC [common/configtx] recurseConfigMap -> DEBU c21 Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:55.832 UTC [common/configtx] recurseConfigMap -> DEBU c22 Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:55.832 UTC [common/configtx] recurseConfigMap -> DEBU c23 Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:55.832 UTC [common/configtx] recurseConfigMap -> DEBU c24 Setting policy for key BlockValidation to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:55.832 UTC [common/configtx] recurseConfigMap -> DEBU c25 Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:55.833 UTC [common/configtx] recurseConfigMap -> DEBU c26 Setting policy for key Readers to -orderer.example.com | 2018-01-18 01:58:55.833 UTC [common/configtx] recurseConfigMap -> DEBU c27 Setting policy for key Writers to -orderer.example.com | 2018-01-18 01:58:55.833 UTC [common/configtx] recurseConfigMap -> DEBU c28 Setting policy for key Admins to -orderer.example.com | 2018-01-18 01:58:55.833 UTC [common/configtx] recurseConfigMap -> DEBU c29 Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:55.833 UTC [common/configtx] recurseConfigMap -> DEBU c2a Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:55.833 UTC [common/configtx] recurseConfigMap -> DEBU c2b Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:55.833 UTC [common/configtx] recurseConfigMap -> DEBU c2c Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:55.833 UTC [common/configtx] recurseConfigMap -> DEBU c2d Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:55.833 UTC [common/configtx] recurseConfigMap -> DEBU c2e Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:55.833 UTC [common/configtx] recurseConfigMap -> DEBU c2f Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:55.833 UTC [common/configtx] recurseConfigMap -> DEBU c30 Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:55.833 UTC [common/configtx] recurseConfigMap -> DEBU c31 Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:55.834 UTC [common/configtx] processConfig -> DEBU c32 Beginning new config for channel businesschannel -orderer.example.com | 2018-01-18 01:58:55.834 UTC [common/config] NewStandardValues -> DEBU c33 Initializing protos for *config.ChannelProtos -orderer.example.com | 2018-01-18 01:58:55.834 UTC [common/config] initializeProtosStruct -> DEBU c34 Processing field: HashingAlgorithm -orderer.example.com | 2018-01-18 01:58:55.834 UTC [common/config] initializeProtosStruct -> DEBU c35 Processing field: BlockDataHashingStructure -orderer.example.com | 2018-01-18 01:58:55.834 UTC [common/config] initializeProtosStruct -> DEBU c36 Processing field: OrdererAddresses -orderer.example.com | 2018-01-18 01:58:55.834 UTC [common/config] initializeProtosStruct -> DEBU c37 Processing field: Consortium -orderer.example.com | 2018-01-18 01:58:55.834 UTC [policies] ProposePolicy -> DEBU c38 Proposed new policy Admins for Channel -orderer.example.com | 2018-01-18 01:58:55.834 UTC [policies] ProposePolicy -> DEBU c39 Proposed new policy Readers for Channel -orderer.example.com | 2018-01-18 01:58:55.834 UTC [policies] ProposePolicy -> DEBU c3a Proposed new policy Writers for Channel -orderer.example.com | 2018-01-18 01:58:55.834 UTC [common/config] NewStandardValues -> DEBU c3b Initializing protos for *struct {} -orderer.example.com | 2018-01-18 01:58:55.834 UTC [policies] ProposePolicy -> DEBU c3c Proposed new policy Admins for Application -orderer.example.com | 2018-01-18 01:58:55.834 UTC [policies] ProposePolicy -> DEBU c3d Proposed new policy Writers for Application -orderer.example.com | 2018-01-18 01:58:55.834 UTC [policies] ProposePolicy -> DEBU c3e Proposed new policy Readers for Application -orderer.example.com | 2018-01-18 01:58:55.834 UTC [common/config] NewStandardValues -> DEBU c3f Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:55.834 UTC [common/config] initializeProtosStruct -> DEBU c40 Processing field: MSP -orderer.example.com | 2018-01-18 01:58:55.834 UTC [common/config] NewStandardValues -> DEBU c41 Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | 2018-01-18 01:58:55.834 UTC [common/config] initializeProtosStruct -> DEBU c42 Processing field: AnchorPeers -orderer.example.com | 2018-01-18 01:58:55.834 UTC [common/config] NewStandardValues -> DEBU c43 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:55.834 UTC [common/config] initializeProtosStruct -> DEBU c44 Processing field: MSP -orderer.example.com | 2018-01-18 01:58:55.834 UTC [policies] ProposePolicy -> DEBU c45 Proposed new policy Readers for Org1MSP -orderer.example.com | 2018-01-18 01:58:55.835 UTC [policies] ProposePolicy -> DEBU c46 Proposed new policy Writers for Org1MSP -orderer.example.com | 2018-01-18 01:58:55.835 UTC [policies] ProposePolicy -> DEBU c47 Proposed new policy Admins for Org1MSP -orderer.example.com | 2018-01-18 01:58:55.835 UTC [common/config] NewStandardValues -> DEBU c48 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:55.835 UTC [common/config] initializeProtosStruct -> DEBU c49 Processing field: MSP -orderer.example.com | 2018-01-18 01:58:55.835 UTC [common/config] NewStandardValues -> DEBU c4a Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | 2018-01-18 01:58:55.835 UTC [common/config] initializeProtosStruct -> DEBU c4b Processing field: AnchorPeers -orderer.example.com | 2018-01-18 01:58:55.835 UTC [common/config] NewStandardValues -> DEBU c4c Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:55.835 UTC [common/config] initializeProtosStruct -> DEBU c4d Processing field: MSP -orderer.example.com | 2018-01-18 01:58:55.835 UTC [policies] ProposePolicy -> DEBU c4e Proposed new policy Readers for Org2MSP -orderer.example.com | 2018-01-18 01:58:55.835 UTC [policies] ProposePolicy -> DEBU c4f Proposed new policy Writers for Org2MSP -orderer.example.com | 2018-01-18 01:58:55.835 UTC [policies] ProposePolicy -> DEBU c50 Proposed new policy Admins for Org2MSP -orderer.example.com | 2018-01-18 01:58:55.835 UTC [common/config] NewStandardValues -> DEBU c51 Initializing protos for *config.OrdererProtos -orderer.example.com | 2018-01-18 01:58:55.835 UTC [common/config] initializeProtosStruct -> DEBU c52 Processing field: ConsensusType -orderer.example.com | 2018-01-18 01:58:55.835 UTC [common/config] initializeProtosStruct -> DEBU c53 Processing field: BatchSize -orderer.example.com | 2018-01-18 01:58:55.835 UTC [common/config] initializeProtosStruct -> DEBU c54 Processing field: BatchTimeout -orderer.example.com | 2018-01-18 01:58:55.835 UTC [common/config] initializeProtosStruct -> DEBU c55 Processing field: KafkaBrokers -orderer.example.com | 2018-01-18 01:58:55.835 UTC [common/config] initializeProtosStruct -> DEBU c56 Processing field: ChannelRestrictions -orderer.example.com | 2018-01-18 01:58:55.835 UTC [policies] ProposePolicy -> DEBU c57 Proposed new policy Writers for Orderer -orderer.example.com | 2018-01-18 01:58:55.835 UTC [policies] ProposePolicy -> DEBU c58 Proposed new policy Admins for Orderer -orderer.example.com | 2018-01-18 01:58:55.835 UTC [policies] ProposePolicy -> DEBU c59 Proposed new policy BlockValidation for Orderer -orderer.example.com | 2018-01-18 01:58:55.835 UTC [policies] ProposePolicy -> DEBU c5a Proposed new policy Readers for Orderer -orderer.example.com | 2018-01-18 01:58:55.835 UTC [common/config] NewStandardValues -> DEBU c5b Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:55.835 UTC [common/config] initializeProtosStruct -> DEBU c5c Processing field: MSP -orderer.example.com | 2018-01-18 01:58:55.835 UTC [policies] ProposePolicy -> DEBU c5d Proposed new policy Admins for OrdererOrg -orderer.example.com | 2018-01-18 01:58:55.835 UTC [policies] ProposePolicy -> DEBU c5e Proposed new policy Readers for OrdererOrg -orderer.example.com | 2018-01-18 01:58:55.835 UTC [policies] ProposePolicy -> DEBU c5f Proposed new policy Writers for OrdererOrg -orderer.example.com | 2018-01-18 01:58:55.836 UTC [common/config] Validate -> DEBU c60 Anchor peers for org Org1MSP are anchor_peers: -orderer.example.com | 2018-01-18 01:58:55.836 UTC [common/config] validateMSP -> DEBU c61 Setting up MSP for org Org1MSP -orderer.example.com | 2018-01-18 01:58:55.836 UTC [msp] NewBccspMsp -> DEBU c62 Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-18 01:58:55.836 UTC [msp] Setup -> DEBU c63 Setting up MSP instance Org1MSP -orderer.example.com | 2018-01-18 01:58:55.836 UTC [msp/identity] newIdentity -> DEBU c64 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -orderer.example.com | BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf -orderer.example.com | db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx -orderer.example.com | JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi -orderer.example.com | /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ -orderer.example.com | H7n8z1pj5w== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:55.836 UTC [msp/identity] newIdentity -> DEBU c65 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -orderer.example.com | xHTBvxfK6mAzmUitFmY= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:55.837 UTC [msp/identity] newIdentity -> DEBU c66 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -orderer.example.com | xHTBvxfK6mAzmUitFmY= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:55.838 UTC [msp] Validate -> DEBU c67 MSP Org1MSP validating identity -orderer.example.com | 2018-01-18 01:58:55.838 UTC [common/config] Validate -> DEBU c68 Anchor peers for org Org2MSP are anchor_peers: -orderer.example.com | 2018-01-18 01:58:55.838 UTC [common/config] validateMSP -> DEBU c69 Setting up MSP for org Org2MSP -orderer.example.com | 2018-01-18 01:58:55.838 UTC [msp] NewBccspMsp -> DEBU c6a Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-18 01:58:55.838 UTC [msp] Setup -> DEBU c6b Setting up MSP instance Org2MSP -orderer.example.com | 2018-01-18 01:58:55.838 UTC [msp/identity] newIdentity -> DEBU c6c Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -orderer.example.com | mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 -orderer.example.com | sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ -orderer.example.com | xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv -orderer.example.com | WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk -orderer.example.com | SCjyRdD3aQ== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:55.839 UTC [msp/identity] newIdentity -> DEBU c6d Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -orderer.example.com | AXYxULZpXYDQXt1KaLI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:55.839 UTC [msp/identity] newIdentity -> DEBU c6e Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -orderer.example.com | AXYxULZpXYDQXt1KaLI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:55.840 UTC [msp] Validate -> DEBU c6f MSP Org2MSP validating identity -orderer.example.com | 2018-01-18 01:58:55.840 UTC [common/config] validateMSP -> DEBU c70 Setting up MSP for org OrdererOrg -orderer.example.com | 2018-01-18 01:58:55.840 UTC [msp] NewBccspMsp -> DEBU c71 Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-18 01:58:55.840 UTC [msp] Setup -> DEBU c72 Setting up MSP instance OrdererMSP -orderer.example.com | 2018-01-18 01:58:55.840 UTC [msp/identity] newIdentity -> DEBU c73 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW -orderer.example.com | gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w -orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -orderer.example.com | AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK -orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs -orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:55.841 UTC [msp/identity] newIdentity -> DEBU c74 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:55.841 UTC [msp/identity] newIdentity -> DEBU c75 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:55.842 UTC [msp] Validate -> DEBU c76 MSP OrdererMSP validating identity -orderer.example.com | 2018-01-18 01:58:55.842 UTC [msp] Setup -> DEBU c77 Setting up the MSP manager (3 msps) -orderer.example.com | 2018-01-18 01:58:55.842 UTC [msp] Setup -> DEBU c78 MSP manager setup complete, setup 3 msps -orderer.example.com | 2018-01-18 01:58:55.842 UTC [orderer/common/broadcast] Handle -> DEBU c79 [channel: businesschannel] Broadcast has successfully enqueued message of type CONFIG -orderer.example.com | 2018-01-18 01:58:55.843 UTC [policies] GetPolicy -> DEBU c7a Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:55.843 UTC [cauthdsl] func1 -> DEBU c7b 0xc42014aab8 gate 1516240735843201962 evaluation starts -orderer.example.com | 2018-01-18 01:58:55.843 UTC [cauthdsl] func2 -> DEBU c7c 0xc42014aab8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-18 01:58:55.843 UTC [cauthdsl] func2 -> DEBU c7d 0xc42014aab8 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-18 01:58:55.843 UTC [msp/identity] newIdentity -> DEBU c7e Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq -orderer.example.com | hkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz -orderer.example.com | MKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw -orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN -orderer.example.com | RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH -orderer.example.com | /4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:55.844 UTC [cauthdsl] func2 -> DEBU c7f 0xc42014aab8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -orderer.example.com | 2018-01-18 01:58:55.844 UTC [cauthdsl] func2 -> DEBU c80 0xc42014aab8 principal evaluation fails -orderer.example.com | 2018-01-18 01:58:55.844 UTC [cauthdsl] func1 -> DEBU c81 0xc42014aab8 gate 1516240735843201962 evaluation fails -orderer.example.com | 2018-01-18 01:58:55.844 UTC [cauthdsl] func1 -> DEBU c82 0xc42014aac8 gate 1516240735844536995 evaluation starts -orderer.example.com | 2018-01-18 01:58:55.844 UTC [cauthdsl] func2 -> DEBU c83 0xc42014aac8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-18 01:58:55.844 UTC [cauthdsl] func2 -> DEBU c84 0xc42014aac8 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-18 01:58:55.844 UTC [msp/identity] newIdentity -> DEBU c85 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq -orderer.example.com | hkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz -orderer.example.com | MKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw -orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN -orderer.example.com | RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH -orderer.example.com | /4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:55.845 UTC [cauthdsl] func2 -> DEBU c86 0xc42014aac8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -orderer.example.com | 2018-01-18 01:58:55.845 UTC [cauthdsl] func2 -> DEBU c87 0xc42014aac8 principal evaluation fails -orderer.example.com | 2018-01-18 01:58:55.845 UTC [cauthdsl] func1 -> DEBU c88 0xc42014aac8 gate 1516240735844536995 evaluation fails -orderer.example.com | 2018-01-18 01:58:55.845 UTC [cauthdsl] func1 -> DEBU c89 0xc42014aad8 gate 1516240735845413356 evaluation starts -orderer.example.com | 2018-01-18 01:58:55.845 UTC [cauthdsl] func2 -> DEBU c8a 0xc42014aad8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-18 01:58:55.845 UTC [cauthdsl] func2 -> DEBU c8b 0xc42014aad8 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-18 01:58:55.845 UTC [msp/identity] newIdentity -> DEBU c8c Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq -orderer.example.com | hkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz -orderer.example.com | MKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw -orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN -orderer.example.com | RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH -orderer.example.com | /4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:55.845 UTC [msp] SatisfiesPrincipal -> DEBU c8d Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | 2018-01-18 01:58:55.845 UTC [msp] Validate -> DEBU c8e MSP OrdererMSP validating identity -orderer.example.com | 2018-01-18 01:58:55.845 UTC [cauthdsl] func2 -> DEBU c8f 0xc42014aad8 principal matched by identity 0 -orderer.example.com | 2018-01-18 01:58:55.845 UTC [msp/identity] Verify -> DEBU c90 Verify: digest = 00000000 e9 11 5a 91 33 30 86 6e bc 2f 0f 17 db 1a ad a9 |..Z.30.n./......| -orderer.example.com | 00000010 7c 1b 54 f8 79 52 e5 38 a6 3c e8 09 0b 5c fa 76 ||.T.yR.8.<...\.v| -orderer.example.com | 2018-01-18 01:58:55.847 UTC [orderer/common/broadcast] Handle -> WARN c92 Error reading from stream: rpc error: code = Canceled desc = context canceled -orderer.example.com | 2018-01-18 01:58:55.847 UTC [orderer/main] func1 -> DEBU c93 Closing Broadcast stream -orderer.example.com | 2018-01-18 01:58:55.847 UTC [orderer/common/deliver] Handle -> WARN c94 Error reading from stream: rpc error: code = Canceled desc = context canceled -orderer.example.com | 2018-01-18 01:58:55.845 UTC [msp/identity] Verify -> DEBU c91 Verify: sig = 00000000 30 44 02 20 1a 19 ff ce ef 87 b6 2e 8f 69 c8 c9 |0D. .........i..| -orderer.example.com | 00000010 00 a2 99 2e 22 6c 79 bd 68 86 de 91 1e ce 02 ab |...."ly.h.......| -orderer.example.com | 00000020 27 c2 e5 b1 02 20 17 f8 31 ca 60 39 1a 4b 63 e9 |'.... ..1.`9.Kc.| -orderer.example.com | 00000030 70 cd ea 2e fb 71 84 be 00 59 ce e7 38 92 b1 c3 |p....q...Y..8...| -orderer.example.com | 00000040 92 cf 85 2a d9 00 |...*..| -orderer.example.com | 2018-01-18 01:58:55.848 UTC [orderer/main] func1 -> DEBU c95 Closing Deliver stream -orderer.example.com | 2018-01-18 01:58:55.849 UTC [cauthdsl] func2 -> DEBU c96 0xc42014aad8 principal evaluation succeeds for identity 0 -orderer.example.com | 2018-01-18 01:58:55.849 UTC [cauthdsl] func1 -> DEBU c97 0xc42014aad8 gate 1516240735845413356 evaluation succeeds -orderer.example.com | 2018-01-18 01:58:55.849 UTC [orderer/common/sigfilter] Apply -> DEBU c98 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420a394a0 1 [0xc420026638 0xc420026700]}) %!s(*policies.implicitMetaPolicy=&{0xc42039e3e0 1 [0xc4200267c8]})]} -orderer.example.com | 2018-01-18 01:58:55.850 UTC [common/configtx] addToMap -> DEBU c99 Adding to config map: [Groups] /Channel -orderer.example.com | 2018-01-18 01:58:55.850 UTC [common/configtx] addToMap -> DEBU c9a Adding to config map: [Groups] /Channel/Application -orderer.example.com | 2018-01-18 01:58:55.851 UTC [common/configtx] addToMap -> DEBU c9b Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | 2018-01-18 01:58:55.851 UTC [common/configtx] addToMap -> DEBU c9c Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -orderer.example.com | 2018-01-18 01:58:55.851 UTC [common/configtx] addToMap -> DEBU c9d Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | 2018-01-18 01:58:55.851 UTC [common/configtx] addToMap -> DEBU c9e Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | 2018-01-18 01:58:55.852 UTC [common/configtx] addToMap -> DEBU c9f Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | 2018-01-18 01:58:55.852 UTC [common/configtx] addToMap -> DEBU ca0 Adding to config map: [Groups] /Channel -orderer.example.com | 2018-01-18 01:58:55.852 UTC [common/configtx] addToMap -> DEBU ca1 Adding to config map: [Groups] /Channel/Application -orderer.example.com | 2018-01-18 01:58:55.852 UTC [common/configtx] addToMap -> DEBU ca2 Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | 2018-01-18 01:58:55.852 UTC [common/configtx] addToMap -> DEBU ca3 Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers -orderer.example.com | 2018-01-18 01:58:55.853 UTC [common/configtx] addToMap -> DEBU ca4 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -orderer.example.com | 2018-01-18 01:58:55.853 UTC [common/configtx] addToMap -> DEBU ca5 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | 2018-01-18 01:58:55.853 UTC [common/configtx] addToMap -> DEBU ca6 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | 2018-01-18 01:58:55.853 UTC [common/configtx] addToMap -> DEBU ca7 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | 2018-01-18 01:58:55.854 UTC [policies] GetPolicy -> DEBU ca8 Returning policy Admins for evaluation -orderer.example.com | 2018-01-18 01:58:55.854 UTC [cauthdsl] func1 -> DEBU ca9 0xc42014b0b8 gate 1516240735854297612 evaluation starts -orderer.example.com | 2018-01-18 01:58:55.854 UTC [cauthdsl] func2 -> DEBU caa 0xc42014b0b8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-18 01:58:55.854 UTC [cauthdsl] func2 -> DEBU cab 0xc42014b0b8 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-18 01:58:55.854 UTC [msp/identity] newIdentity -> DEBU cac Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -orderer.example.com | AXYxULZpXYDQXt1KaLI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:55.855 UTC [msp] SatisfiesPrincipal -> DEBU cad Checking if identity satisfies ADMIN role for Org2MSP -orderer.example.com | 2018-01-18 01:58:55.855 UTC [cauthdsl] func2 -> DEBU cae 0xc42014b0b8 principal matched by identity 0 -orderer.example.com | 2018-01-18 01:58:55.855 UTC [msp/identity] Verify -> DEBU caf Verify: digest = 00000000 9d 72 b7 0e 95 b2 86 89 3a d9 b1 85 95 8f bb d7 |.r......:.......| -orderer.example.com | 00000010 01 5c 09 c4 93 48 4e 4e 33 65 ec 0d 5f d5 63 3d |.\...HNN3e.._.c=| -orderer.example.com | 2018-01-18 01:58:55.855 UTC [msp/identity] Verify -> DEBU cb0 Verify: sig = 00000000 30 44 02 20 7b 5b dd e2 f4 f1 0a 0b d0 d4 b9 93 |0D. {[..........| -orderer.example.com | 00000010 d4 7f 21 c4 a4 ad 70 70 9f f3 5c e5 34 49 d3 8f |..!...pp..\.4I..| -orderer.example.com | 00000020 80 7e 20 4b 02 20 47 1a ed e4 2b 82 43 82 8a b4 |.~ K. G...+.C...| -orderer.example.com | 00000030 7e 02 4b 68 89 0c c3 b8 da ec 5f 89 9c 63 95 a2 |~.Kh......_..c..| -orderer.example.com | 00000040 8d 10 f4 ce 7a 7f |....z.| -orderer.example.com | 2018-01-18 01:58:55.855 UTC [cauthdsl] func2 -> DEBU cb1 0xc42014b0b8 principal evaluation succeeds for identity 0 -orderer.example.com | 2018-01-18 01:58:55.855 UTC [cauthdsl] func1 -> DEBU cb2 0xc42014b0b8 gate 1516240735854297612 evaluation succeeds -orderer.example.com | 2018-01-18 01:58:55.856 UTC [common/configtx] recurseConfigMap -> DEBU cb3 Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:55.856 UTC [common/configtx] recurseConfigMap -> DEBU cb4 Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:55.856 UTC [common/configtx] recurseConfigMap -> DEBU cb5 Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:55.856 UTC [common/configtx] recurseConfigMap -> DEBU cb6 Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:55.856 UTC [common/configtx] recurseConfigMap -> DEBU cb7 Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:55.856 UTC [common/configtx] recurseConfigMap -> DEBU cb8 Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:55.856 UTC [common/configtx] recurseConfigMap -> DEBU cb9 Setting policy for key BlockValidation to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:55.856 UTC [common/configtx] recurseConfigMap -> DEBU cba Setting policy for key Writers to -orderer.example.com | 2018-01-18 01:58:55.856 UTC [common/configtx] recurseConfigMap -> DEBU cbb Setting policy for key Admins to -orderer.example.com | 2018-01-18 01:58:55.856 UTC [common/configtx] recurseConfigMap -> DEBU cbc Setting policy for key Readers to -orderer.example.com | 2018-01-18 01:58:55.856 UTC [common/configtx] recurseConfigMap -> DEBU cbd Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:55.856 UTC [common/configtx] recurseConfigMap -> DEBU cbe Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:55.856 UTC [common/configtx] recurseConfigMap -> DEBU cbf Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:55.856 UTC [common/configtx] recurseConfigMap -> DEBU cc0 Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:55.856 UTC [common/configtx] recurseConfigMap -> DEBU cc1 Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:55.857 UTC [common/configtx] recurseConfigMap -> DEBU cc2 Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:55.857 UTC [common/configtx] recurseConfigMap -> DEBU cc3 Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:55.857 UTC [common/configtx] recurseConfigMap -> DEBU cc4 Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:55.857 UTC [common/configtx] recurseConfigMap -> DEBU cc5 Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:55.857 UTC [common/configtx] processConfig -> DEBU cc6 Beginning new config for channel businesschannel -orderer.example.com | 2018-01-18 01:58:55.857 UTC [common/config] NewStandardValues -> DEBU cc7 Initializing protos for *config.ChannelProtos -orderer.example.com | 2018-01-18 01:58:55.857 UTC [common/config] initializeProtosStruct -> DEBU cc8 Processing field: HashingAlgorithm -orderer.example.com | 2018-01-18 01:58:55.857 UTC [common/config] initializeProtosStruct -> DEBU cc9 Processing field: BlockDataHashingStructure -orderer.example.com | 2018-01-18 01:58:55.857 UTC [common/config] initializeProtosStruct -> DEBU cca Processing field: OrdererAddresses -orderer.example.com | 2018-01-18 01:58:55.857 UTC [common/config] initializeProtosStruct -> DEBU ccb Processing field: Consortium -orderer.example.com | 2018-01-18 01:58:55.857 UTC [policies] ProposePolicy -> DEBU ccc Proposed new policy Admins for Channel -orderer.example.com | 2018-01-18 01:58:55.857 UTC [policies] ProposePolicy -> DEBU ccd Proposed new policy Readers for Channel -orderer.example.com | 2018-01-18 01:58:55.857 UTC [policies] ProposePolicy -> DEBU cce Proposed new policy Writers for Channel -orderer.example.com | 2018-01-18 01:58:55.858 UTC [common/config] NewStandardValues -> DEBU ccf Initializing protos for *config.OrdererProtos -orderer.example.com | 2018-01-18 01:58:55.858 UTC [common/config] initializeProtosStruct -> DEBU cd0 Processing field: ConsensusType -orderer.example.com | 2018-01-18 01:58:55.858 UTC [common/config] initializeProtosStruct -> DEBU cd1 Processing field: BatchSize -orderer.example.com | 2018-01-18 01:58:55.858 UTC [common/config] initializeProtosStruct -> DEBU cd2 Processing field: BatchTimeout -orderer.example.com | 2018-01-18 01:58:55.858 UTC [common/config] initializeProtosStruct -> DEBU cd3 Processing field: KafkaBrokers -orderer.example.com | 2018-01-18 01:58:55.858 UTC [common/config] initializeProtosStruct -> DEBU cd4 Processing field: ChannelRestrictions -orderer.example.com | 2018-01-18 01:58:55.858 UTC [policies] ProposePolicy -> DEBU cd5 Proposed new policy Admins for Orderer -orderer.example.com | 2018-01-18 01:58:55.858 UTC [policies] ProposePolicy -> DEBU cd6 Proposed new policy BlockValidation for Orderer -orderer.example.com | 2018-01-18 01:58:55.858 UTC [policies] ProposePolicy -> DEBU cd7 Proposed new policy Readers for Orderer -orderer.example.com | 2018-01-18 01:58:55.858 UTC [policies] ProposePolicy -> DEBU cd8 Proposed new policy Writers for Orderer -orderer.example.com | 2018-01-18 01:58:55.858 UTC [common/config] NewStandardValues -> DEBU cd9 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:55.858 UTC [common/config] initializeProtosStruct -> DEBU cda Processing field: MSP -orderer.example.com | 2018-01-18 01:58:55.858 UTC [policies] ProposePolicy -> DEBU cdb Proposed new policy Admins for OrdererOrg -orderer.example.com | 2018-01-18 01:58:55.858 UTC [policies] ProposePolicy -> DEBU cdc Proposed new policy Readers for OrdererOrg -orderer.example.com | 2018-01-18 01:58:55.858 UTC [policies] ProposePolicy -> DEBU cdd Proposed new policy Writers for OrdererOrg -orderer.example.com | 2018-01-18 01:58:55.858 UTC [common/config] NewStandardValues -> DEBU cde Initializing protos for *struct {} -orderer.example.com | 2018-01-18 01:58:55.858 UTC [policies] ProposePolicy -> DEBU cdf Proposed new policy Admins for Application -orderer.example.com | 2018-01-18 01:58:55.858 UTC [policies] ProposePolicy -> DEBU ce0 Proposed new policy Writers for Application -orderer.example.com | 2018-01-18 01:58:55.858 UTC [policies] ProposePolicy -> DEBU ce1 Proposed new policy Readers for Application -orderer.example.com | 2018-01-18 01:58:55.858 UTC [common/config] NewStandardValues -> DEBU ce2 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:55.859 UTC [common/config] initializeProtosStruct -> DEBU ce3 Processing field: MSP -orderer.example.com | 2018-01-18 01:58:55.859 UTC [common/config] NewStandardValues -> DEBU ce4 Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | 2018-01-18 01:58:55.859 UTC [common/config] initializeProtosStruct -> DEBU ce5 Processing field: AnchorPeers -orderer.example.com | 2018-01-18 01:58:55.859 UTC [common/config] NewStandardValues -> DEBU ce6 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:55.859 UTC [common/config] initializeProtosStruct -> DEBU ce7 Processing field: MSP -orderer.example.com | 2018-01-18 01:58:55.859 UTC [policies] ProposePolicy -> DEBU ce8 Proposed new policy Readers for Org2MSP -orderer.example.com | 2018-01-18 01:58:55.859 UTC [policies] ProposePolicy -> DEBU ce9 Proposed new policy Writers for Org2MSP -orderer.example.com | 2018-01-18 01:58:55.859 UTC [policies] ProposePolicy -> DEBU cea Proposed new policy Admins for Org2MSP -orderer.example.com | 2018-01-18 01:58:55.859 UTC [common/config] NewStandardValues -> DEBU ceb Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:55.859 UTC [common/config] initializeProtosStruct -> DEBU cec Processing field: MSP -orderer.example.com | 2018-01-18 01:58:55.859 UTC [common/config] NewStandardValues -> DEBU ced Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | 2018-01-18 01:58:55.859 UTC [common/config] initializeProtosStruct -> DEBU cee Processing field: AnchorPeers -orderer.example.com | 2018-01-18 01:58:55.859 UTC [common/config] NewStandardValues -> DEBU cef Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:55.859 UTC [common/config] initializeProtosStruct -> DEBU cf0 Processing field: MSP -orderer.example.com | 2018-01-18 01:58:55.859 UTC [policies] ProposePolicy -> DEBU cf1 Proposed new policy Admins for Org1MSP -orderer.example.com | 2018-01-18 01:58:55.859 UTC [policies] ProposePolicy -> DEBU cf2 Proposed new policy Readers for Org1MSP -orderer.example.com | 2018-01-18 01:58:55.859 UTC [policies] ProposePolicy -> DEBU cf3 Proposed new policy Writers for Org1MSP -orderer.example.com | 2018-01-18 01:58:55.859 UTC [common/config] validateMSP -> DEBU cf4 Setting up MSP for org OrdererOrg -orderer.example.com | 2018-01-18 01:58:55.859 UTC [msp] NewBccspMsp -> DEBU cf5 Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-18 01:58:55.859 UTC [msp] Setup -> DEBU cf6 Setting up MSP instance OrdererMSP -orderer.example.com | 2018-01-18 01:58:55.860 UTC [msp/identity] newIdentity -> DEBU cf7 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW -orderer.example.com | gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w -orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -orderer.example.com | AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK -orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs -orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:55.860 UTC [msp/identity] newIdentity -> DEBU cf8 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:55.860 UTC [msp/identity] newIdentity -> DEBU cf9 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:55.861 UTC [msp] Validate -> DEBU cfa MSP OrdererMSP validating identity -orderer.example.com | 2018-01-18 01:58:55.861 UTC [common/config] Validate -> DEBU cfb Anchor peers for org Org2MSP are anchor_peers: -orderer.example.com | 2018-01-18 01:58:55.861 UTC [common/config] validateMSP -> DEBU cfc Setting up MSP for org Org2MSP -orderer.example.com | 2018-01-18 01:58:55.861 UTC [msp] NewBccspMsp -> DEBU cfd Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-18 01:58:55.861 UTC [msp] Setup -> DEBU cfe Setting up MSP instance Org2MSP -orderer.example.com | 2018-01-18 01:58:55.862 UTC [msp/identity] newIdentity -> DEBU cff Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -orderer.example.com | mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 -orderer.example.com | sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ -orderer.example.com | xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv -orderer.example.com | WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk -orderer.example.com | SCjyRdD3aQ== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:55.862 UTC [msp/identity] newIdentity -> DEBU d00 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -orderer.example.com | AXYxULZpXYDQXt1KaLI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:55.863 UTC [msp/identity] newIdentity -> DEBU d01 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -orderer.example.com | AXYxULZpXYDQXt1KaLI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:55.864 UTC [msp] Validate -> DEBU d02 MSP Org2MSP validating identity -orderer.example.com | 2018-01-18 01:58:55.865 UTC [common/config] Validate -> DEBU d03 Anchor peers for org Org1MSP are anchor_peers: -orderer.example.com | 2018-01-18 01:58:55.865 UTC [common/config] validateMSP -> DEBU d04 Setting up MSP for org Org1MSP -orderer.example.com | 2018-01-18 01:58:55.865 UTC [msp] NewBccspMsp -> DEBU d05 Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-18 01:58:55.865 UTC [msp] Setup -> DEBU d06 Setting up MSP instance Org1MSP -orderer.example.com | 2018-01-18 01:58:55.865 UTC [msp/identity] newIdentity -> DEBU d07 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -orderer.example.com | BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf -orderer.example.com | db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx -orderer.example.com | JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi -orderer.example.com | /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ -orderer.example.com | H7n8z1pj5w== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:55.866 UTC [msp/identity] newIdentity -> DEBU d08 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -orderer.example.com | xHTBvxfK6mAzmUitFmY= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:55.866 UTC [msp/identity] newIdentity -> DEBU d09 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -orderer.example.com | xHTBvxfK6mAzmUitFmY= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:55.867 UTC [msp] Validate -> DEBU d0a MSP Org1MSP validating identity -orderer.example.com | 2018-01-18 01:58:55.867 UTC [msp] Setup -> DEBU d0b Setting up the MSP manager (3 msps) -orderer.example.com | 2018-01-18 01:58:55.867 UTC [msp] Setup -> DEBU d0c MSP manager setup complete, setup 3 msps -orderer.example.com | 2018-01-18 01:58:55.868 UTC [orderer/common/blockcutter] Ordered -> DEBU d0d Found message which requested to be isolated, cutting into its own batch -orderer.example.com | 2018-01-18 01:58:55.868 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU d0e retrieveBlockByNumber() - blockNum = [1] -orderer.example.com | 2018-01-18 01:58:55.868 UTC [fsblkstorage] newBlockfileStream -> DEBU d0f newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[11934] -orderer.example.com | 2018-01-18 01:58:55.868 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU d10 Remaining bytes=[13732], Going to peek [8] bytes -orderer.example.com | 2018-01-18 01:58:55.868 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU d11 Returning blockbytes - length=[13730], placementInfo={fileNum=[0], startOffset=[11934], bytesOffset=[11936]} -orderer.example.com | 2018-01-18 01:58:55.868 UTC [common/configtx] addToMap -> DEBU d12 Adding to config map: [Groups] /Channel -orderer.example.com | 2018-01-18 01:58:55.868 UTC [common/configtx] addToMap -> DEBU d13 Adding to config map: [Groups] /Channel/Orderer -orderer.example.com | 2018-01-18 01:58:55.868 UTC [common/configtx] addToMap -> DEBU d14 Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -orderer.example.com | 2018-01-18 01:58:55.868 UTC [common/configtx] addToMap -> DEBU d15 Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -orderer.example.com | 2018-01-18 01:58:55.868 UTC [common/configtx] addToMap -> DEBU d16 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -orderer.example.com | 2018-01-18 01:58:55.869 UTC [common/configtx] addToMap -> DEBU d17 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | 2018-01-18 01:58:55.869 UTC [common/configtx] addToMap -> DEBU d18 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | 2018-01-18 01:58:55.869 UTC [common/configtx] addToMap -> DEBU d19 Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -orderer.example.com | 2018-01-18 01:58:55.869 UTC [common/configtx] addToMap -> DEBU d1a Adding to config map: [Values] /Channel/Orderer/ConsensusType -orderer.example.com | 2018-01-18 01:58:55.869 UTC [common/configtx] addToMap -> DEBU d1b Adding to config map: [Values] /Channel/Orderer/BatchSize -orderer.example.com | 2018-01-18 01:58:55.869 UTC [common/configtx] addToMap -> DEBU d1c Adding to config map: [Values] /Channel/Orderer/BatchTimeout -orderer.example.com | 2018-01-18 01:58:55.869 UTC [common/configtx] addToMap -> DEBU d1d Adding to config map: [Policy] /Channel/Orderer/Admins -orderer.example.com | 2018-01-18 01:58:55.869 UTC [common/configtx] addToMap -> DEBU d1e Adding to config map: [Policy] /Channel/Orderer/BlockValidation -orderer.example.com | 2018-01-18 01:58:55.869 UTC [common/configtx] addToMap -> DEBU d1f Adding to config map: [Policy] /Channel/Orderer/Readers -orderer.example.com | 2018-01-18 01:58:55.869 UTC [common/configtx] addToMap -> DEBU d20 Adding to config map: [Policy] /Channel/Orderer/Writers -orderer.example.com | 2018-01-18 01:58:55.869 UTC [common/configtx] addToMap -> DEBU d21 Adding to config map: [Groups] /Channel/Application -orderer.example.com | 2018-01-18 01:58:55.869 UTC [common/configtx] addToMap -> DEBU d22 Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | 2018-01-18 01:58:55.869 UTC [common/configtx] addToMap -> DEBU d23 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -orderer.example.com | 2018-01-18 01:58:55.869 UTC [common/configtx] addToMap -> DEBU d24 Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -orderer.example.com | 2018-01-18 01:58:55.869 UTC [common/configtx] addToMap -> DEBU d25 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | 2018-01-18 01:58:55.869 UTC [common/configtx] addToMap -> DEBU d26 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | 2018-01-18 01:58:55.870 UTC [common/configtx] addToMap -> DEBU d27 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | 2018-01-18 01:58:55.870 UTC [common/configtx] addToMap -> DEBU d28 Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | 2018-01-18 01:58:55.870 UTC [common/configtx] addToMap -> DEBU d29 Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers -orderer.example.com | 2018-01-18 01:58:55.870 UTC [common/configtx] addToMap -> DEBU d2a Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -orderer.example.com | 2018-01-18 01:58:55.870 UTC [common/configtx] addToMap -> DEBU d2b Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | 2018-01-18 01:58:55.870 UTC [common/configtx] addToMap -> DEBU d2c Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | 2018-01-18 01:58:55.870 UTC [common/configtx] addToMap -> DEBU d2d Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | 2018-01-18 01:58:55.870 UTC [common/configtx] addToMap -> DEBU d2e Adding to config map: [Policy] /Channel/Application/Readers -orderer.example.com | 2018-01-18 01:58:55.870 UTC [common/configtx] addToMap -> DEBU d2f Adding to config map: [Policy] /Channel/Application/Admins -orderer.example.com | 2018-01-18 01:58:55.870 UTC [common/configtx] addToMap -> DEBU d30 Adding to config map: [Policy] /Channel/Application/Writers -orderer.example.com | 2018-01-18 01:58:55.870 UTC [common/configtx] addToMap -> DEBU d31 Adding to config map: [Values] /Channel/OrdererAddresses -orderer.example.com | 2018-01-18 01:58:55.870 UTC [common/configtx] addToMap -> DEBU d32 Adding to config map: [Values] /Channel/HashingAlgorithm -orderer.example.com | 2018-01-18 01:58:55.871 UTC [common/configtx] addToMap -> DEBU d33 Adding to config map: [Values] /Channel/BlockDataHashingStructure -orderer.example.com | 2018-01-18 01:58:55.871 UTC [common/configtx] addToMap -> DEBU d34 Adding to config map: [Values] /Channel/Consortium -orderer.example.com | 2018-01-18 01:58:55.871 UTC [common/configtx] addToMap -> DEBU d35 Adding to config map: [Policy] /Channel/Writers -orderer.example.com | 2018-01-18 01:58:55.871 UTC [common/configtx] addToMap -> DEBU d36 Adding to config map: [Policy] /Channel/Admins -orderer.example.com | 2018-01-18 01:58:55.871 UTC [common/configtx] addToMap -> DEBU d37 Adding to config map: [Policy] /Channel/Readers -orderer.example.com | 2018-01-18 01:58:55.871 UTC [common/configtx] addToMap -> DEBU d38 Adding to config map: [Groups] /Channel -orderer.example.com | 2018-01-18 01:58:55.871 UTC [common/configtx] addToMap -> DEBU d39 Adding to config map: [Groups] /Channel/Application -orderer.example.com | 2018-01-18 01:58:55.871 UTC [common/configtx] addToMap -> DEBU d3a Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | 2018-01-18 01:58:55.871 UTC [common/configtx] addToMap -> DEBU d3b Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -orderer.example.com | 2018-01-18 01:58:55.871 UTC [common/configtx] addToMap -> DEBU d3c Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | 2018-01-18 01:58:55.871 UTC [common/configtx] addToMap -> DEBU d3d Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | 2018-01-18 01:58:55.871 UTC [common/configtx] addToMap -> DEBU d3e Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | 2018-01-18 01:58:55.871 UTC [common/configtx] addToMap -> DEBU d3f Adding to config map: [Groups] /Channel -orderer.example.com | 2018-01-18 01:58:55.871 UTC [common/configtx] addToMap -> DEBU d40 Adding to config map: [Groups] /Channel/Application -orderer.example.com | 2018-01-18 01:58:55.872 UTC [common/configtx] addToMap -> DEBU d41 Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | 2018-01-18 01:58:55.872 UTC [common/configtx] addToMap -> DEBU d42 Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers -orderer.example.com | 2018-01-18 01:58:55.878 UTC [common/configtx] addToMap -> DEBU d43 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -orderer.example.com | 2018-01-18 01:58:55.878 UTC [common/configtx] addToMap -> DEBU d44 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | 2018-01-18 01:58:55.878 UTC [common/configtx] addToMap -> DEBU d45 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | 2018-01-18 01:58:55.878 UTC [common/configtx] addToMap -> DEBU d46 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | 2018-01-18 01:58:55.879 UTC [policies] GetPolicy -> DEBU d47 Returning policy Admins for evaluation -orderer.example.com | 2018-01-18 01:58:55.879 UTC [cauthdsl] func1 -> DEBU d48 0xc42014b890 gate 1516240735879598755 evaluation starts -orderer.example.com | 2018-01-18 01:58:55.879 UTC [cauthdsl] func2 -> DEBU d49 0xc42014b890 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-18 01:58:55.879 UTC [cauthdsl] func2 -> DEBU d4a 0xc42014b890 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-18 01:58:55.880 UTC [msp/identity] newIdentity -> DEBU d4b Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -orderer.example.com | AXYxULZpXYDQXt1KaLI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:55.880 UTC [msp] SatisfiesPrincipal -> DEBU d4c Checking if identity satisfies ADMIN role for Org2MSP -orderer.example.com | 2018-01-18 01:58:55.880 UTC [cauthdsl] func2 -> DEBU d4d 0xc42014b890 principal matched by identity 0 -orderer.example.com | 2018-01-18 01:58:55.880 UTC [msp/identity] Verify -> DEBU d4e Verify: digest = 00000000 9d 72 b7 0e 95 b2 86 89 3a d9 b1 85 95 8f bb d7 |.r......:.......| -orderer.example.com | 00000010 01 5c 09 c4 93 48 4e 4e 33 65 ec 0d 5f d5 63 3d |.\...HNN3e.._.c=| -orderer.example.com | 2018-01-18 01:58:55.880 UTC [msp/identity] Verify -> DEBU d4f Verify: sig = 00000000 30 44 02 20 7b 5b dd e2 f4 f1 0a 0b d0 d4 b9 93 |0D. {[..........| -orderer.example.com | 00000010 d4 7f 21 c4 a4 ad 70 70 9f f3 5c e5 34 49 d3 8f |..!...pp..\.4I..| -orderer.example.com | 00000020 80 7e 20 4b 02 20 47 1a ed e4 2b 82 43 82 8a b4 |.~ K. G...+.C...| -orderer.example.com | 00000030 7e 02 4b 68 89 0c c3 b8 da ec 5f 89 9c 63 95 a2 |~.Kh......_..c..| -orderer.example.com | 00000040 8d 10 f4 ce 7a 7f |....z.| -orderer.example.com | 2018-01-18 01:58:55.881 UTC [cauthdsl] func2 -> DEBU d50 0xc42014b890 principal evaluation succeeds for identity 0 -orderer.example.com | 2018-01-18 01:58:55.881 UTC [cauthdsl] func1 -> DEBU d51 0xc42014b890 gate 1516240735879598755 evaluation succeeds -orderer.example.com | 2018-01-18 01:58:55.885 UTC [common/configtx] recurseConfigMap -> DEBU d52 Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:55.885 UTC [common/configtx] recurseConfigMap -> DEBU d53 Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:55.894 UTC [common/configtx] recurseConfigMap -> DEBU d54 Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:55.895 UTC [common/configtx] recurseConfigMap -> DEBU d55 Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:55.895 UTC [common/configtx] recurseConfigMap -> DEBU d56 Setting policy for key BlockValidation to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:55.895 UTC [common/configtx] recurseConfigMap -> DEBU d57 Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:55.895 UTC [common/configtx] recurseConfigMap -> DEBU d58 Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:55.895 UTC [common/configtx] recurseConfigMap -> DEBU d59 Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:55.896 UTC [common/configtx] recurseConfigMap -> DEBU d5a Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:55.896 UTC [common/configtx] recurseConfigMap -> DEBU d5b Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:55.897 UTC [common/configtx] recurseConfigMap -> DEBU d5c Setting policy for key Readers to -orderer.example.com | 2018-01-18 01:58:55.898 UTC [common/configtx] recurseConfigMap -> DEBU d5d Setting policy for key Writers to -orderer.example.com | 2018-01-18 01:58:55.901 UTC [common/configtx] recurseConfigMap -> DEBU d5e Setting policy for key Admins to -orderer.example.com | 2018-01-18 01:58:55.901 UTC [common/configtx] recurseConfigMap -> DEBU d5f Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:55.902 UTC [common/configtx] recurseConfigMap -> DEBU d60 Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:55.902 UTC [common/configtx] recurseConfigMap -> DEBU d61 Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:55.902 UTC [common/configtx] recurseConfigMap -> DEBU d62 Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:55.903 UTC [common/configtx] recurseConfigMap -> DEBU d63 Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:55.903 UTC [common/configtx] recurseConfigMap -> DEBU d64 Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-18 01:58:55.903 UTC [common/configtx] processConfig -> DEBU d65 Beginning new config for channel businesschannel -orderer.example.com | 2018-01-18 01:58:55.903 UTC [common/config] NewStandardValues -> DEBU d66 Initializing protos for *config.ChannelProtos -orderer.example.com | 2018-01-18 01:58:55.904 UTC [common/config] initializeProtosStruct -> DEBU d67 Processing field: HashingAlgorithm -orderer.example.com | 2018-01-18 01:58:55.904 UTC [common/config] initializeProtosStruct -> DEBU d68 Processing field: BlockDataHashingStructure -orderer.example.com | 2018-01-18 01:58:55.905 UTC [common/config] initializeProtosStruct -> DEBU d69 Processing field: OrdererAddresses -orderer.example.com | 2018-01-18 01:58:55.905 UTC [common/config] initializeProtosStruct -> DEBU d6a Processing field: Consortium -orderer.example.com | 2018-01-18 01:58:55.906 UTC [policies] ProposePolicy -> DEBU d6b Proposed new policy Admins for Channel -orderer.example.com | 2018-01-18 01:58:55.906 UTC [policies] ProposePolicy -> DEBU d6c Proposed new policy Readers for Channel -orderer.example.com | 2018-01-18 01:58:55.906 UTC [policies] ProposePolicy -> DEBU d6d Proposed new policy Writers for Channel -orderer.example.com | 2018-01-18 01:58:55.906 UTC [common/config] NewStandardValues -> DEBU d6e Initializing protos for *config.OrdererProtos -orderer.example.com | 2018-01-18 01:58:55.906 UTC [common/config] initializeProtosStruct -> DEBU d6f Processing field: ConsensusType -orderer.example.com | 2018-01-18 01:58:55.906 UTC [common/config] initializeProtosStruct -> DEBU d70 Processing field: BatchSize -orderer.example.com | 2018-01-18 01:58:55.906 UTC [common/config] initializeProtosStruct -> DEBU d71 Processing field: BatchTimeout -orderer.example.com | 2018-01-18 01:58:55.907 UTC [common/config] initializeProtosStruct -> DEBU d72 Processing field: KafkaBrokers -orderer.example.com | 2018-01-18 01:58:55.907 UTC [common/config] initializeProtosStruct -> DEBU d73 Processing field: ChannelRestrictions -orderer.example.com | 2018-01-18 01:58:55.907 UTC [policies] ProposePolicy -> DEBU d74 Proposed new policy Writers for Orderer -orderer.example.com | 2018-01-18 01:58:55.907 UTC [policies] ProposePolicy -> DEBU d75 Proposed new policy Admins for Orderer -orderer.example.com | 2018-01-18 01:58:55.907 UTC [policies] ProposePolicy -> DEBU d76 Proposed new policy BlockValidation for Orderer -orderer.example.com | 2018-01-18 01:58:55.907 UTC [policies] ProposePolicy -> DEBU d77 Proposed new policy Readers for Orderer -orderer.example.com | 2018-01-18 01:58:55.907 UTC [common/config] NewStandardValues -> DEBU d78 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:55.907 UTC [common/config] initializeProtosStruct -> DEBU d79 Processing field: MSP -orderer.example.com | 2018-01-18 01:58:55.907 UTC [policies] ProposePolicy -> DEBU d7a Proposed new policy Writers for OrdererOrg -orderer.example.com | 2018-01-18 01:58:55.907 UTC [policies] ProposePolicy -> DEBU d7b Proposed new policy Admins for OrdererOrg -orderer.example.com | 2018-01-18 01:58:55.907 UTC [policies] ProposePolicy -> DEBU d7c Proposed new policy Readers for OrdererOrg -orderer.example.com | 2018-01-18 01:58:55.907 UTC [common/config] NewStandardValues -> DEBU d7d Initializing protos for *struct {} -orderer.example.com | 2018-01-18 01:58:55.907 UTC [policies] ProposePolicy -> DEBU d7e Proposed new policy Admins for Application -orderer.example.com | 2018-01-18 01:58:55.908 UTC [policies] ProposePolicy -> DEBU d7f Proposed new policy Writers for Application -orderer.example.com | 2018-01-18 01:58:55.908 UTC [policies] ProposePolicy -> DEBU d80 Proposed new policy Readers for Application -orderer.example.com | 2018-01-18 01:58:55.908 UTC [common/config] NewStandardValues -> DEBU d81 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:55.908 UTC [common/config] initializeProtosStruct -> DEBU d82 Processing field: MSP -orderer.example.com | 2018-01-18 01:58:55.908 UTC [common/config] NewStandardValues -> DEBU d83 Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | 2018-01-18 01:58:55.908 UTC [common/config] initializeProtosStruct -> DEBU d84 Processing field: AnchorPeers -orderer.example.com | 2018-01-18 01:58:55.908 UTC [common/config] NewStandardValues -> DEBU d85 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:55.908 UTC [common/config] initializeProtosStruct -> DEBU d86 Processing field: MSP -orderer.example.com | 2018-01-18 01:58:55.908 UTC [policies] ProposePolicy -> DEBU d87 Proposed new policy Admins for Org1MSP -orderer.example.com | 2018-01-18 01:58:55.908 UTC [policies] ProposePolicy -> DEBU d88 Proposed new policy Readers for Org1MSP -orderer.example.com | 2018-01-18 01:58:55.908 UTC [policies] ProposePolicy -> DEBU d89 Proposed new policy Writers for Org1MSP -orderer.example.com | 2018-01-18 01:58:55.908 UTC [common/config] NewStandardValues -> DEBU d8a Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:55.908 UTC [common/config] initializeProtosStruct -> DEBU d8b Processing field: MSP -orderer.example.com | 2018-01-18 01:58:55.908 UTC [common/config] NewStandardValues -> DEBU d8c Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | 2018-01-18 01:58:55.908 UTC [common/config] initializeProtosStruct -> DEBU d8d Processing field: AnchorPeers -orderer.example.com | 2018-01-18 01:58:55.908 UTC [common/config] NewStandardValues -> DEBU d8e Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-18 01:58:55.908 UTC [common/config] initializeProtosStruct -> DEBU d8f Processing field: MSP -orderer.example.com | 2018-01-18 01:58:55.908 UTC [policies] ProposePolicy -> DEBU d90 Proposed new policy Readers for Org2MSP -orderer.example.com | 2018-01-18 01:58:55.908 UTC [policies] ProposePolicy -> DEBU d91 Proposed new policy Writers for Org2MSP -orderer.example.com | 2018-01-18 01:58:55.908 UTC [policies] ProposePolicy -> DEBU d92 Proposed new policy Admins for Org2MSP -orderer.example.com | 2018-01-18 01:58:55.908 UTC [common/config] validateMSP -> DEBU d93 Setting up MSP for org OrdererOrg -orderer.example.com | 2018-01-18 01:58:55.909 UTC [msp] NewBccspMsp -> DEBU d94 Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-18 01:58:55.909 UTC [msp] Setup -> DEBU d95 Setting up MSP instance OrdererMSP -orderer.example.com | 2018-01-18 01:58:55.909 UTC [msp/identity] newIdentity -> DEBU d96 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW -orderer.example.com | gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w -orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -orderer.example.com | AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK -orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs -orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:55.909 UTC [msp/identity] newIdentity -> DEBU d97 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:55.910 UTC [msp/identity] newIdentity -> DEBU d98 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:55.911 UTC [msp] Validate -> DEBU d99 MSP OrdererMSP validating identity -orderer.example.com | 2018-01-18 01:58:55.912 UTC [common/config] Validate -> DEBU d9a Anchor peers for org Org1MSP are anchor_peers: -orderer.example.com | 2018-01-18 01:58:55.912 UTC [common/config] validateMSP -> DEBU d9b Setting up MSP for org Org1MSP -orderer.example.com | 2018-01-18 01:58:55.912 UTC [msp] NewBccspMsp -> DEBU d9c Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-18 01:58:55.912 UTC [msp] Setup -> DEBU d9d Setting up MSP instance Org1MSP -orderer.example.com | 2018-01-18 01:58:55.912 UTC [msp/identity] newIdentity -> DEBU d9e Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -orderer.example.com | BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf -orderer.example.com | db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx -orderer.example.com | JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi -orderer.example.com | /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ -orderer.example.com | H7n8z1pj5w== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:55.913 UTC [msp/identity] newIdentity -> DEBU d9f Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -orderer.example.com | xHTBvxfK6mAzmUitFmY= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:55.913 UTC [msp/identity] newIdentity -> DEBU da0 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -orderer.example.com | xHTBvxfK6mAzmUitFmY= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:55.914 UTC [msp] Validate -> DEBU da1 MSP Org1MSP validating identity -orderer.example.com | 2018-01-18 01:58:55.914 UTC [common/config] Validate -> DEBU da2 Anchor peers for org Org2MSP are anchor_peers: -orderer.example.com | 2018-01-18 01:58:55.914 UTC [common/config] validateMSP -> DEBU da3 Setting up MSP for org Org2MSP -orderer.example.com | 2018-01-18 01:58:55.914 UTC [msp] NewBccspMsp -> DEBU da4 Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-18 01:58:55.915 UTC [msp] Setup -> DEBU da5 Setting up MSP instance Org2MSP -orderer.example.com | 2018-01-18 01:58:55.915 UTC [msp/identity] newIdentity -> DEBU da6 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -orderer.example.com | mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 -orderer.example.com | sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ -orderer.example.com | xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv -orderer.example.com | WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk -orderer.example.com | SCjyRdD3aQ== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:55.916 UTC [msp/identity] newIdentity -> DEBU da7 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -orderer.example.com | AXYxULZpXYDQXt1KaLI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:55.916 UTC [msp/identity] newIdentity -> DEBU da8 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -orderer.example.com | AXYxULZpXYDQXt1KaLI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:55.917 UTC [msp] Validate -> DEBU da9 MSP Org2MSP validating identity -orderer.example.com | 2018-01-18 01:58:55.917 UTC [msp] Setup -> DEBU daa Setting up the MSP manager (3 msps) -orderer.example.com | 2018-01-18 01:58:55.917 UTC [msp] Setup -> DEBU dab MSP manager setup complete, setup 3 msps -orderer.example.com | 2018-01-18 01:58:55.917 UTC [policies] GetPolicy -> DEBU dac Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:55.917 UTC [policies] CommitProposals -> DEBU dad In commit adding relative sub-policy OrdererOrg/Writers to Orderer -orderer.example.com | 2018-01-18 01:58:55.917 UTC [policies] GetPolicy -> DEBU dae Returning policy Admins for evaluation -orderer.example.com | 2018-01-18 01:58:55.917 UTC [policies] CommitProposals -> DEBU daf In commit adding relative sub-policy OrdererOrg/Admins to Orderer -orderer.example.com | 2018-01-18 01:58:55.917 UTC [policies] GetPolicy -> DEBU db0 Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 01:58:55.917 UTC [policies] CommitProposals -> DEBU db1 In commit adding relative sub-policy OrdererOrg/Readers to Orderer -orderer.example.com | 2018-01-18 01:58:55.917 UTC [policies] GetPolicy -> DEBU db2 Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:55.917 UTC [policies] GetPolicy -> DEBU db3 Returning policy Admins for evaluation -orderer.example.com | 2018-01-18 01:58:55.917 UTC [policies] GetPolicy -> DEBU db4 Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:55.917 UTC [policies] GetPolicy -> DEBU db5 Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 01:58:55.917 UTC [policies] GetPolicy -> DEBU db6 Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:55.917 UTC [policies] CommitProposals -> DEBU db7 In commit adding relative sub-policy Org1MSP/Writers to Application -orderer.example.com | 2018-01-18 01:58:55.918 UTC [policies] GetPolicy -> DEBU db8 Returning policy Admins for evaluation -orderer.example.com | 2018-01-18 01:58:55.918 UTC [policies] CommitProposals -> DEBU db9 In commit adding relative sub-policy Org1MSP/Admins to Application -orderer.example.com | 2018-01-18 01:58:55.918 UTC [policies] GetPolicy -> DEBU dba Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 01:58:55.918 UTC [policies] CommitProposals -> DEBU dbb In commit adding relative sub-policy Org1MSP/Readers to Application -orderer.example.com | 2018-01-18 01:58:55.918 UTC [policies] GetPolicy -> DEBU dbc Returning policy Admins for evaluation -orderer.example.com | 2018-01-18 01:58:55.918 UTC [policies] CommitProposals -> DEBU dbd In commit adding relative sub-policy Org2MSP/Admins to Application -orderer.example.com | 2018-01-18 01:58:55.918 UTC [policies] GetPolicy -> DEBU dbe Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 01:58:55.918 UTC [policies] CommitProposals -> DEBU dbf In commit adding relative sub-policy Org2MSP/Readers to Application -orderer.example.com | 2018-01-18 01:58:55.918 UTC [policies] GetPolicy -> DEBU dc0 Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:55.918 UTC [policies] CommitProposals -> DEBU dc1 In commit adding relative sub-policy Org2MSP/Writers to Application -orderer.example.com | 2018-01-18 01:58:55.918 UTC [policies] GetPolicy -> DEBU dc2 Returning policy Admins for evaluation -orderer.example.com | 2018-01-18 01:58:55.918 UTC [policies] GetPolicy -> DEBU dc3 Returning policy Admins for evaluation -orderer.example.com | 2018-01-18 01:58:55.918 UTC [policies] GetPolicy -> DEBU dc4 Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:55.918 UTC [policies] GetPolicy -> DEBU dc5 Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:55.918 UTC [policies] GetPolicy -> DEBU dc6 Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 01:58:55.918 UTC [policies] GetPolicy -> DEBU dc7 Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 01:58:55.918 UTC [policies] GetPolicy -> DEBU dc8 Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:55.918 UTC [policies] CommitProposals -> DEBU dc9 In commit adding relative sub-policy Orderer/Writers to Channel -orderer.example.com | 2018-01-18 01:58:55.918 UTC [policies] GetPolicy -> DEBU dca Returning policy Admins for evaluation -orderer.example.com | 2018-01-18 01:58:55.918 UTC [policies] CommitProposals -> DEBU dcb In commit adding relative sub-policy Orderer/Admins to Channel -orderer.example.com | 2018-01-18 01:58:55.918 UTC [policies] GetPolicy -> DEBU dcc Returning policy BlockValidation for evaluation -orderer.example.com | 2018-01-18 01:58:55.918 UTC [policies] CommitProposals -> DEBU dcd In commit adding relative sub-policy Orderer/BlockValidation to Channel -orderer.example.com | 2018-01-18 01:58:55.918 UTC [policies] GetPolicy -> DEBU dce Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 01:58:55.918 UTC [policies] CommitProposals -> DEBU dcf In commit adding relative sub-policy Orderer/Readers to Channel -orderer.example.com | 2018-01-18 01:58:55.919 UTC [policies] GetPolicy -> DEBU dd0 Returning policy OrdererOrg/Writers for evaluation -orderer.example.com | 2018-01-18 01:58:55.919 UTC [policies] CommitProposals -> DEBU dd1 In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -orderer.example.com | 2018-01-18 01:58:55.919 UTC [policies] GetPolicy -> DEBU dd2 Returning policy OrdererOrg/Admins for evaluation -orderer.example.com | 2018-01-18 01:58:55.919 UTC [policies] CommitProposals -> DEBU dd3 In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -orderer.example.com | 2018-01-18 01:58:55.919 UTC [policies] GetPolicy -> DEBU dd4 Returning policy OrdererOrg/Readers for evaluation -orderer.example.com | 2018-01-18 01:58:55.919 UTC [policies] CommitProposals -> DEBU dd5 In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -orderer.example.com | 2018-01-18 01:58:55.919 UTC [policies] GetPolicy -> DEBU dd6 Returning policy Org2MSP/Admins for evaluation -orderer.example.com | 2018-01-18 01:58:55.919 UTC [policies] CommitProposals -> DEBU dd7 In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -orderer.example.com | 2018-01-18 01:58:55.919 UTC [policies] GetPolicy -> DEBU dd8 Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:55.919 UTC [policies] CommitProposals -> DEBU dd9 In commit adding relative sub-policy Application/Writers to Channel -orderer.example.com | 2018-01-18 01:58:55.919 UTC [policies] GetPolicy -> DEBU dda Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 01:58:55.919 UTC [policies] CommitProposals -> DEBU ddb In commit adding relative sub-policy Application/Readers to Channel -orderer.example.com | 2018-01-18 01:58:55.919 UTC [policies] GetPolicy -> DEBU ddc Returning policy Org1MSP/Writers for evaluation -orderer.example.com | 2018-01-18 01:58:55.919 UTC [policies] CommitProposals -> DEBU ddd In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -orderer.example.com | 2018-01-18 01:58:55.919 UTC [policies] GetPolicy -> DEBU dde Returning policy Org1MSP/Admins for evaluation -orderer.example.com | 2018-01-18 01:58:55.919 UTC [policies] CommitProposals -> DEBU ddf In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -orderer.example.com | 2018-01-18 01:58:55.919 UTC [policies] GetPolicy -> DEBU de0 Returning policy Org1MSP/Readers for evaluation -orderer.example.com | 2018-01-18 01:58:55.919 UTC [policies] CommitProposals -> DEBU de1 In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -orderer.example.com | 2018-01-18 01:58:55.919 UTC [policies] GetPolicy -> DEBU de2 Returning policy Org2MSP/Readers for evaluation -orderer.example.com | 2018-01-18 01:58:55.919 UTC [policies] CommitProposals -> DEBU de3 In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -orderer.example.com | 2018-01-18 01:58:55.919 UTC [policies] GetPolicy -> DEBU de4 Returning policy Org2MSP/Writers for evaluation -orderer.example.com | 2018-01-18 01:58:55.919 UTC [policies] CommitProposals -> DEBU de5 In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -orderer.example.com | 2018-01-18 01:58:55.919 UTC [policies] GetPolicy -> DEBU de6 Returning policy Admins for evaluation -orderer.example.com | 2018-01-18 01:58:55.919 UTC [policies] CommitProposals -> DEBU de7 In commit adding relative sub-policy Application/Admins to Channel -orderer.example.com | 2018-01-18 01:58:55.920 UTC [policies] GetPolicy -> DEBU de8 Returning policy Admins for evaluation -orderer.example.com | 2018-01-18 01:58:55.920 UTC [policies] GetPolicy -> DEBU de9 Returning policy Admins for evaluation -orderer.example.com | 2018-01-18 01:58:55.920 UTC [policies] GetPolicy -> DEBU dea Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 01:58:55.920 UTC [policies] GetPolicy -> DEBU deb Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 01:58:55.920 UTC [policies] GetPolicy -> DEBU dec Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:55.920 UTC [policies] GetPolicy -> DEBU ded Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:55.920 UTC [policies] GetPolicy -> DEBU dee Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 01:58:55.920 UTC [policies] CommitProposals -> DEBU def As expected, current configuration has policy '/Channel/Readers' -orderer.example.com | 2018-01-18 01:58:55.920 UTC [policies] GetPolicy -> DEBU df0 Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:58:55.920 UTC [policies] CommitProposals -> DEBU df1 As expected, current configuration has policy '/Channel/Writers' -orderer.example.com | 2018-01-18 01:58:55.920 UTC [policies] GetPolicy -> DEBU df2 Returning policy Application/Readers for evaluation -orderer.example.com | 2018-01-18 01:58:55.920 UTC [policies] CommitProposals -> DEBU df3 As expected, current configuration has policy '/Channel/Application/Readers' -orderer.example.com | 2018-01-18 01:58:55.920 UTC [policies] GetPolicy -> DEBU df4 Returning policy Application/Writers for evaluation -orderer.example.com | 2018-01-18 01:58:55.920 UTC [policies] CommitProposals -> DEBU df5 As expected, current configuration has policy '/Channel/Application/Writers' -orderer.example.com | 2018-01-18 01:58:55.920 UTC [policies] GetPolicy -> DEBU df6 Returning policy Application/Admins for evaluation -orderer.example.com | 2018-01-18 01:58:55.920 UTC [policies] CommitProposals -> DEBU df7 As expected, current configuration has policy '/Channel/Application/Admins' -orderer.example.com | 2018-01-18 01:58:55.920 UTC [policies] GetPolicy -> DEBU df8 Returning policy Orderer/BlockValidation for evaluation -orderer.example.com | 2018-01-18 01:58:55.920 UTC [policies] CommitProposals -> DEBU df9 As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -orderer.example.com | 2018-01-18 01:58:55.920 UTC [orderer/multichain] addBlockSignature -> DEBU dfa &{ledgerResources:0xc420208040 chain:0xc420208da0 cutter:0xc420a51270 filters:0xc4202089e0 signer:0x1274e88 lastConfig:1 lastConfigSeq:2} -orderer.example.com | 2018-01-18 01:58:55.920 UTC [orderer/multichain] addBlockSignature -> DEBU dfb &{} -orderer.example.com | 2018-01-18 01:58:55.920 UTC [msp] GetLocalMSP -> DEBU dfc Returning existing local MSP -orderer.example.com | 2018-01-18 01:58:55.920 UTC [msp] GetDefaultSigningIdentity -> DEBU dfd Obtaining default signing identity -orderer.example.com | 2018-01-18 01:58:55.921 UTC [msp] GetLocalMSP -> DEBU dfe Returning existing local MSP -orderer.example.com | 2018-01-18 01:58:55.921 UTC [msp] GetDefaultSigningIdentity -> DEBU dff Obtaining default signing identity -orderer.example.com | 2018-01-18 01:58:55.921 UTC [msp/identity] Sign -> DEBU e00 Sign: plaintext: 0AFA050A0A4F7264657265724D535012...420A7B9644DC6A15942E833CA656F472 -orderer.example.com | 2018-01-18 01:58:55.921 UTC [msp/identity] Sign -> DEBU e01 Sign: digest: 2600073B4B70B12F6540260C3F8D9C61B604A8B1AF79943307DBB15862D0F676 -orderer.example.com | 2018-01-18 01:58:55.921 UTC [orderer/multichain] addLastConfigSignature -> DEBU e02 [channel: businesschannel] Detected lastConfigSeq transitioning from 2 to 3, setting lastConfig from 1 to 2 -orderer.example.com | 2018-01-18 01:58:55.921 UTC [msp] GetLocalMSP -> DEBU e03 Returning existing local MSP -orderer.example.com | 2018-01-18 01:58:55.921 UTC [msp] GetDefaultSigningIdentity -> DEBU e04 Obtaining default signing identity -orderer.example.com | 2018-01-18 01:58:55.921 UTC [orderer/multichain] addLastConfigSignature -> DEBU e05 [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 -orderer.example.com | 2018-01-18 01:58:55.921 UTC [msp] GetLocalMSP -> DEBU e06 Returning existing local MSP -orderer.example.com | 2018-01-18 01:58:55.921 UTC [msp] GetDefaultSigningIdentity -> DEBU e07 Obtaining default signing identity -orderer.example.com | 2018-01-18 01:58:55.921 UTC [msp/identity] Sign -> DEBU e08 Sign: plaintext: 08020AFA050A0A4F7264657265724D53...420A7B9644DC6A15942E833CA656F472 -orderer.example.com | 2018-01-18 01:58:55.921 UTC [msp/identity] Sign -> DEBU e09 Sign: digest: 29EE8CEF8F3642B6DADA4AEF5697CD8C91AC9D31716DBBBF033ADAA61AEE158F -orderer.example.com | 2018-01-18 01:58:55.924 UTC [fsblkstorage] indexBlock -> DEBU e0a Indexing block [blockNum=2, blockHash=[]byte{0x5b, 0x7c, 0x4e, 0xf2, 0x74, 0xb6, 0x7f, 0xc2, 0x96, 0x1b, 0xb2, 0x5a, 0xd4, 0x86, 0x64, 0x1e, 0xc, 0x21, 0xb0, 0xdd, 0x91, 0xb8, 0xb5, 0x9d, 0x7f, 0x79, 0xeb, 0xbd, 0x3a, 0x97, 0xb8, 0xa1} txOffsets= -orderer.example.com | txId= locPointer=offset=70, bytesLength=11970 -orderer.example.com | ] -orderer.example.com | 2018-01-18 01:58:55.924 UTC [fsblkstorage] updateCheckpoint -> DEBU e0b Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[39456], isChainEmpty=[false], lastBlockNumber=[2] -orderer.example.com | 2018-01-18 01:58:55.924 UTC [orderer/multichain] WriteBlock -> DEBU e0c [channel: businesschannel] Wrote block 2 -orderer.example.com | 2018-01-18 01:58:58.634 UTC [orderer/main] Deliver -> DEBU e0d Starting new Deliver handler -orderer.example.com | 2018-01-18 01:58:58.634 UTC [orderer/common/deliver] Handle -> DEBU e0e Starting new deliver loop -orderer.example.com | 2018-01-18 01:58:58.634 UTC [orderer/common/deliver] Handle -> DEBU e0f Attempting to read seek info message -orderer.example.com | 2018-01-18 01:58:58.635 UTC [policies] GetPolicy -> DEBU e10 Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 01:58:58.635 UTC [cauthdsl] func1 -> DEBU e11 0xc42014a9b0 gate 1516240738635379475 evaluation starts -orderer.example.com | 2018-01-18 01:58:58.635 UTC [cauthdsl] func2 -> DEBU e12 0xc42014a9b0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-18 01:58:58.635 UTC [cauthdsl] func2 -> DEBU e13 0xc42014a9b0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414c77306a542f4649616e4d78506736773275554d536f77436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a417562334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424b71666457462f6f592b32796d716a6b2b416c424e2b524254687850702f6b0a6c552b42686d474172706e6c474e643769543670696c2f69534474664135785a397765354e496654656846716d5a63493667314e3137326a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413063414d45514349414c534a7147630a76645a48434a305265635651325264746b646e6f6b353770363858466c524279326c34784169414a53365a32797879456c4275625049304d426e2f2f5873396c0a30356e304d624c772f55673365674a334a413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-18 01:58:58.636 UTC [msp/identity] newIdentity -> DEBU e14 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAcCgAwIBAgIRALw0jT/FIanMxPg6w2uUMSowCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABKqfdWF/oY+2ymqjk+AlBN+RBThxPp/k -orderer.example.com | lU+BhmGArpnlGNd7iT6pil/iSDtfA5xZ9we5NIfTehFqmZcI6g1N172jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIALSJqGc -orderer.example.com | vdZHCJ0RecVQ2Rdtkdnok57p68XFlRBy2l4xAiAJS6Z2yxyElBubPI0MBn//Xs9l -orderer.example.com | 05n0MbLw/Ug3egJ3JA== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:58.636 UTC [cauthdsl] func2 -> DEBU e15 0xc42014a9b0 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -orderer.example.com | 2018-01-18 01:58:58.636 UTC [cauthdsl] func2 -> DEBU e16 0xc42014a9b0 principal evaluation fails -orderer.example.com | 2018-01-18 01:58:58.636 UTC [cauthdsl] func1 -> DEBU e17 0xc42014a9b0 gate 1516240738635379475 evaluation fails -orderer.example.com | 2018-01-18 01:58:58.636 UTC [cauthdsl] func1 -> DEBU e18 0xc42014a9c0 gate 1516240738636937796 evaluation starts -orderer.example.com | 2018-01-18 01:58:58.637 UTC [cauthdsl] func2 -> DEBU e19 0xc42014a9c0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-18 01:58:58.637 UTC [cauthdsl] func2 -> DEBU e1a 0xc42014a9c0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414c77306a542f4649616e4d78506736773275554d536f77436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a417562334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424b71666457462f6f592b32796d716a6b2b416c424e2b524254687850702f6b0a6c552b42686d474172706e6c474e643769543670696c2f69534474664135785a397765354e496654656846716d5a63493667314e3137326a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413063414d45514349414c534a7147630a76645a48434a305265635651325264746b646e6f6b353770363858466c524279326c34784169414a53365a32797879456c4275625049304d426e2f2f5873396c0a30356e304d624c772f55673365674a334a413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-18 01:58:58.637 UTC [msp/identity] newIdentity -> DEBU e1b Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAcCgAwIBAgIRALw0jT/FIanMxPg6w2uUMSowCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABKqfdWF/oY+2ymqjk+AlBN+RBThxPp/k -orderer.example.com | lU+BhmGArpnlGNd7iT6pil/iSDtfA5xZ9we5NIfTehFqmZcI6g1N172jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIALSJqGc -orderer.example.com | vdZHCJ0RecVQ2Rdtkdnok57p68XFlRBy2l4xAiAJS6Z2yxyElBubPI0MBn//Xs9l -orderer.example.com | 05n0MbLw/Ug3egJ3JA== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:58.638 UTC [msp] SatisfiesPrincipal -> DEBU e1c Checking if identity satisfies MEMBER role for Org1MSP -orderer.example.com | 2018-01-18 01:58:58.638 UTC [msp] Validate -> DEBU e1d MSP Org1MSP validating identity -orderer.example.com | 2018-01-18 01:58:58.638 UTC [cauthdsl] func2 -> DEBU e1e 0xc42014a9c0 principal matched by identity 0 -orderer.example.com | 2018-01-18 01:58:58.638 UTC [msp/identity] Verify -> DEBU e1f Verify: digest = 00000000 bc 0f 9e a6 bc 5b 32 af 7c f0 15 c4 b1 f7 4a 25 |.....[2.|.....J%| -orderer.example.com | 00000010 62 f8 d9 04 99 17 31 28 e5 9d 3a 81 83 7d 64 5f |b.....1(..:..}d_| -orderer.example.com | 2018-01-18 01:58:58.639 UTC [msp/identity] Verify -> DEBU e20 Verify: sig = 00000000 30 45 02 21 00 ea e7 60 b2 0d f2 ee e1 c7 93 60 |0E.!...`.......`| -orderer.example.com | 00000010 9b 41 b9 e8 2e 28 d3 b8 e4 f1 1e c6 13 51 c2 35 |.A...(.......Q.5| -orderer.example.com | 00000020 14 44 9d 77 4b 02 20 56 07 b0 7c a8 02 4b c8 22 |.D.wK. V..|..K."| -orderer.example.com | 00000030 34 6e 2a a4 db 2f 53 01 66 b3 12 56 66 dc 1f e8 |4n*../S.f..Vf...| -orderer.example.com | 00000040 39 55 f5 fa 1b bc dd |9U.....| -orderer.example.com | 2018-01-18 01:58:58.639 UTC [cauthdsl] func2 -> DEBU e21 0xc42014a9c0 principal evaluation succeeds for identity 0 -orderer.example.com | 2018-01-18 01:58:58.639 UTC [cauthdsl] func1 -> DEBU e22 0xc42014a9c0 gate 1516240738636937796 evaluation succeeds -orderer.example.com | 2018-01-18 01:58:58.640 UTC [orderer/common/sigfilter] Apply -> DEBU e23 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420291360 1 [0xc42014a4b8]}) %!s(*policies.implicitMetaPolicy=&{0xc4202918c0 1 [0xc42014a548 0xc42014a820]})]} -orderer.example.com | 2018-01-18 01:58:58.640 UTC [orderer/common/deliver] Handle -> DEBU e24 [channel: businesschannel] Received seekInfo (0xc42022a4a0) start: > stop: > -orderer.example.com | 2018-01-18 01:58:58.640 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU e25 retrieveBlockByNumber() - blockNum = [1] -orderer.example.com | 2018-01-18 01:58:58.640 UTC [fsblkstorage] newBlockfileStream -> DEBU e26 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[11934] -orderer.example.com | 2018-01-18 01:58:58.641 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e27 Remaining bytes=[27522], Going to peek [8] bytes -orderer.example.com | 2018-01-18 01:58:58.641 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e28 Returning blockbytes - length=[13730], placementInfo={fileNum=[0], startOffset=[11934], bytesOffset=[11936]} -orderer.example.com | 2018-01-18 01:58:58.641 UTC [orderer/common/deliver] Handle -> DEBU e29 [channel: businesschannel] Delivering block for (0xc42022a4a0) -orderer.example.com | 2018-01-18 01:58:58.641 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU e2a retrieveBlockByNumber() - blockNum = [2] -orderer.example.com | 2018-01-18 01:58:58.642 UTC [fsblkstorage] newBlockfileStream -> DEBU e2b newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[25666] -orderer.example.com | 2018-01-18 01:58:58.642 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e2c Remaining bytes=[13790], Going to peek [8] bytes -orderer.example.com | 2018-01-18 01:58:58.642 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e2d Returning blockbytes - length=[13788], placementInfo={fileNum=[0], startOffset=[25666], bytesOffset=[25668]} -orderer.example.com | 2018-01-18 01:58:58.642 UTC [orderer/common/deliver] Handle -> DEBU e2e [channel: businesschannel] Delivering block for (0xc42022a4a0) -orderer.example.com | 2018-01-18 01:58:59.040 UTC [orderer/main] Deliver -> DEBU e2f Starting new Deliver handler -orderer.example.com | 2018-01-18 01:58:59.040 UTC [orderer/common/deliver] Handle -> DEBU e30 Starting new deliver loop -orderer.example.com | 2018-01-18 01:58:59.040 UTC [orderer/common/deliver] Handle -> DEBU e31 Attempting to read seek info message -orderer.example.com | 2018-01-18 01:58:59.044 UTC [policies] GetPolicy -> DEBU e32 Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 01:58:59.044 UTC [cauthdsl] func1 -> DEBU e33 0xc42014aa20 gate 1516240739044738593 evaluation starts -orderer.example.com | 2018-01-18 01:58:59.044 UTC [cauthdsl] func2 -> DEBU e34 0xc42014aa20 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-18 01:58:59.044 UTC [cauthdsl] func2 -> DEBU e35 0xc42014aa20 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952415077537a796731505072436556685271446f3449526377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a417562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d343941774548413049414248494f3843636b4e3548675931692f376730494a647a6b31373245327834440a6c45796d73507842544336534d78324837366779415a626155484c7a444f633033575875784e6d2f35434562305043756734674c6d59716a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495144754d4344310a63427a353934367a51536178435875616e626c7676506d446f34454a6a33664e3154546c347749674b364f4a4e6f693555594668762f43577448767238364a550a437037666f70594c415230435579772b58796b3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-18 01:58:59.045 UTC [msp/identity] newIdentity -> DEBU e36 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAPwSzyg1PPrCeVhRqDo4IRcwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABHIO8CckN5HgY1i/7g0IJdzk172E2x4D -orderer.example.com | lEymsPxBTC6SMx2H76gyAZbaUHLzDOc03WXuxNm/5CEb0PCug4gLmYqjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQDuMCD1 -orderer.example.com | cBz5946zQSaxCXuanblvvPmDo4EJj3fN1TTl4wIgK6OJNoi5UYFhv/CWtHvr86JU -orderer.example.com | Cp7fopYLAR0CUyw+Xyk= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:59.045 UTC [cauthdsl] func2 -> DEBU e37 0xc42014aa20 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) -orderer.example.com | 2018-01-18 01:58:59.045 UTC [cauthdsl] func2 -> DEBU e38 0xc42014aa20 principal evaluation fails -orderer.example.com | 2018-01-18 01:58:59.045 UTC [cauthdsl] func1 -> DEBU e39 0xc42014aa20 gate 1516240739044738593 evaluation fails -orderer.example.com | 2018-01-18 01:58:59.045 UTC [cauthdsl] func1 -> DEBU e3a 0xc42014aa30 gate 1516240739045641442 evaluation starts -orderer.example.com | 2018-01-18 01:58:59.045 UTC [cauthdsl] func2 -> DEBU e3b 0xc42014aa30 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-18 01:58:59.045 UTC [cauthdsl] func2 -> DEBU e3c 0xc42014aa30 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952415077537a796731505072436556685271446f3449526377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a417562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d343941774548413049414248494f3843636b4e3548675931692f376730494a647a6b31373245327834440a6c45796d73507842544336534d78324837366779415a626155484c7a444f633033575875784e6d2f35434562305043756734674c6d59716a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495144754d4344310a63427a353934367a51536178435875616e626c7676506d446f34454a6a33664e3154546c347749674b364f4a4e6f693555594668762f43577448767238364a550a437037666f70594c415230435579772b58796b3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-18 01:58:59.046 UTC [msp/identity] newIdentity -> DEBU e3d Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAPwSzyg1PPrCeVhRqDo4IRcwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABHIO8CckN5HgY1i/7g0IJdzk172E2x4D -orderer.example.com | lEymsPxBTC6SMx2H76gyAZbaUHLzDOc03WXuxNm/5CEb0PCug4gLmYqjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQDuMCD1 -orderer.example.com | cBz5946zQSaxCXuanblvvPmDo4EJj3fN1TTl4wIgK6OJNoi5UYFhv/CWtHvr86JU -orderer.example.com | Cp7fopYLAR0CUyw+Xyk= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:59.047 UTC [cauthdsl] func2 -> DEBU e3e 0xc42014aa30 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got Org2MSP) -orderer.example.com | 2018-01-18 01:58:59.047 UTC [cauthdsl] func2 -> DEBU e3f 0xc42014aa30 principal evaluation fails -orderer.example.com | 2018-01-18 01:58:59.047 UTC [cauthdsl] func1 -> DEBU e40 0xc42014aa30 gate 1516240739045641442 evaluation fails -orderer.example.com | 2018-01-18 01:58:59.047 UTC [cauthdsl] func1 -> DEBU e41 0xc42014aa40 gate 1516240739047993165 evaluation starts -orderer.example.com | 2018-01-18 01:58:59.048 UTC [cauthdsl] func2 -> DEBU e42 0xc42014aa40 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-18 01:58:59.048 UTC [cauthdsl] func2 -> DEBU e43 0xc42014aa40 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952415077537a796731505072436556685271446f3449526377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a417562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d343941774548413049414248494f3843636b4e3548675931692f376730494a647a6b31373245327834440a6c45796d73507842544336534d78324837366779415a626155484c7a444f633033575875784e6d2f35434562305043756734674c6d59716a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495144754d4344310a63427a353934367a51536178435875616e626c7676506d446f34454a6a33664e3154546c347749674b364f4a4e6f693555594668762f43577448767238364a550a437037666f70594c415230435579772b58796b3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-18 01:58:59.048 UTC [msp/identity] newIdentity -> DEBU e44 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAPwSzyg1PPrCeVhRqDo4IRcwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABHIO8CckN5HgY1i/7g0IJdzk172E2x4D -orderer.example.com | lEymsPxBTC6SMx2H76gyAZbaUHLzDOc03WXuxNm/5CEb0PCug4gLmYqjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQDuMCD1 -orderer.example.com | cBz5946zQSaxCXuanblvvPmDo4EJj3fN1TTl4wIgK6OJNoi5UYFhv/CWtHvr86JU -orderer.example.com | Cp7fopYLAR0CUyw+Xyk= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:58:59.049 UTC [msp] SatisfiesPrincipal -> DEBU e45 Checking if identity satisfies MEMBER role for Org2MSP -orderer.example.com | 2018-01-18 01:58:59.049 UTC [msp] Validate -> DEBU e46 MSP Org2MSP validating identity -orderer.example.com | 2018-01-18 01:58:59.049 UTC [cauthdsl] func2 -> DEBU e47 0xc42014aa40 principal matched by identity 0 -orderer.example.com | 2018-01-18 01:58:59.049 UTC [msp/identity] Verify -> DEBU e48 Verify: digest = 00000000 ea c4 06 18 48 22 ec 68 dc ce 7a 71 6e 5a 69 f0 |....H".h..zqnZi.| -orderer.example.com | 00000010 be f5 79 4a 09 68 dc 85 50 9b 7a 9a 26 49 51 26 |..yJ.h..P.z.&IQ&| -orderer.example.com | 2018-01-18 01:58:59.049 UTC [msp/identity] Verify -> DEBU e49 Verify: sig = 00000000 30 44 02 20 79 58 49 96 73 76 cf 6d 19 ac b3 84 |0D. yXI.sv.m....| -orderer.example.com | 00000010 69 a8 78 a0 f8 2f ee 5e e6 ab db d1 5b 5c 2b e4 |i.x../.^....[\+.| -orderer.example.com | 00000020 c5 c2 00 c8 02 20 7c ff d4 2d 76 5a 41 3c f0 4c |..... |..-vZA<.L| -orderer.example.com | 00000030 4c fb 21 25 f9 99 56 db 9e 1b a3 ce 4c 43 ae c1 |L.!%..V.....LC..| -orderer.example.com | 00000040 2e 28 2f 47 11 90 |.(/G..| -orderer.example.com | 2018-01-18 01:58:59.050 UTC [cauthdsl] func2 -> DEBU e4a 0xc42014aa40 principal evaluation succeeds for identity 0 -orderer.example.com | 2018-01-18 01:58:59.051 UTC [cauthdsl] func1 -> DEBU e4b 0xc42014aa40 gate 1516240739047993165 evaluation succeeds -orderer.example.com | 2018-01-18 01:58:59.051 UTC [orderer/common/sigfilter] Apply -> DEBU e4c Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420291360 1 [0xc42014a4b8]}) %!s(*policies.implicitMetaPolicy=&{0xc4202918c0 1 [0xc42014a548 0xc42014a820]})]} -orderer.example.com | 2018-01-18 01:58:59.052 UTC [orderer/common/deliver] Handle -> DEBU e4d [channel: businesschannel] Received seekInfo (0xc4208701a0) start: > stop: > -orderer.example.com | 2018-01-18 01:58:59.052 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU e4e retrieveBlockByNumber() - blockNum = [1] -orderer.example.com | 2018-01-18 01:58:59.053 UTC [fsblkstorage] newBlockfileStream -> DEBU e4f newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[11934] -orderer.example.com | 2018-01-18 01:58:59.053 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e50 Remaining bytes=[27522], Going to peek [8] bytes -orderer.example.com | 2018-01-18 01:58:59.054 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e51 Returning blockbytes - length=[13730], placementInfo={fileNum=[0], startOffset=[11934], bytesOffset=[11936]} -orderer.example.com | 2018-01-18 01:58:59.054 UTC [orderer/common/deliver] Handle -> DEBU e52 [channel: businesschannel] Delivering block for (0xc4208701a0) -orderer.example.com | 2018-01-18 01:58:59.055 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU e53 retrieveBlockByNumber() - blockNum = [2] -orderer.example.com | 2018-01-18 01:58:59.055 UTC [fsblkstorage] newBlockfileStream -> DEBU e54 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[25666] -orderer.example.com | 2018-01-18 01:58:59.055 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e55 Remaining bytes=[13790], Going to peek [8] bytes -orderer.example.com | 2018-01-18 01:58:59.055 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e56 Returning blockbytes - length=[13788], placementInfo={fileNum=[0], startOffset=[25666], bytesOffset=[25668]} -orderer.example.com | 2018-01-18 01:58:59.056 UTC [orderer/common/deliver] Handle -> DEBU e57 [channel: businesschannel] Delivering block for (0xc4208701a0) -orderer.example.com | 2018-01-18 01:59:01.306 UTC [orderer/main] Broadcast -> DEBU e58 Starting new Broadcast handler -orderer.example.com | 2018-01-18 01:59:01.306 UTC [orderer/common/broadcast] Handle -> DEBU e59 Starting new broadcast loop -orderer.example.com | 2018-01-18 01:59:25.594 UTC [orderer/common/broadcast] Handle -> DEBU e5a [channel: businesschannel] Broadcast is filtering message of type ENDORSER_TRANSACTION -orderer.example.com | 2018-01-18 01:59:25.595 UTC [policies] GetPolicy -> DEBU e5b Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:59:25.595 UTC [cauthdsl] func1 -> DEBU e5c 0xc42014aaa0 gate 1516240765595262990 evaluation starts -orderer.example.com | 2018-01-18 01:59:25.595 UTC [cauthdsl] func2 -> DEBU e5d 0xc42014aaa0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-18 01:59:25.595 UTC [cauthdsl] func2 -> DEBU e5e 0xc42014aaa0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-18 01:59:25.596 UTC [msp/identity] newIdentity -> DEBU e5f Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -orderer.example.com | xHTBvxfK6mAzmUitFmY= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:59:25.596 UTC [cauthdsl] func2 -> DEBU e60 0xc42014aaa0 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -orderer.example.com | 2018-01-18 01:59:25.596 UTC [cauthdsl] func2 -> DEBU e61 0xc42014aaa0 principal evaluation fails -orderer.example.com | 2018-01-18 01:59:25.596 UTC [cauthdsl] func1 -> DEBU e62 0xc42014aaa0 gate 1516240765595262990 evaluation fails -orderer.example.com | 2018-01-18 01:59:25.596 UTC [cauthdsl] func1 -> DEBU e63 0xc42014aab0 gate 1516240765596881880 evaluation starts -orderer.example.com | 2018-01-18 01:59:25.596 UTC [cauthdsl] func2 -> DEBU e64 0xc42014aab0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-18 01:59:25.596 UTC [cauthdsl] func2 -> DEBU e65 0xc42014aab0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-18 01:59:25.597 UTC [msp/identity] newIdentity -> DEBU e66 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -orderer.example.com | xHTBvxfK6mAzmUitFmY= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:59:25.597 UTC [msp] SatisfiesPrincipal -> DEBU e67 Checking if identity satisfies MEMBER role for Org1MSP -orderer.example.com | 2018-01-18 01:59:25.597 UTC [msp] Validate -> DEBU e68 MSP Org1MSP validating identity -orderer.example.com | 2018-01-18 01:59:25.598 UTC [cauthdsl] func2 -> DEBU e69 0xc42014aab0 principal matched by identity 0 -orderer.example.com | 2018-01-18 01:59:25.598 UTC [msp/identity] Verify -> DEBU e6a Verify: digest = 00000000 64 dd 1a f0 49 32 55 a2 70 d1 85 cd 58 17 6d 69 |d...I2U.p...X.mi| -orderer.example.com | 00000010 27 ed c6 1b f9 41 c2 6f 3e 1b f6 b7 47 b9 89 9c |'....A.o>...G...| -orderer.example.com | 2018-01-18 01:59:25.598 UTC [msp/identity] Verify -> DEBU e6b Verify: sig = 00000000 30 45 02 21 00 91 3f 53 6e 5a 85 d7 5d 56 48 ee |0E.!..?SnZ..]VH.| -orderer.example.com | 00000010 17 5a 33 a7 f0 68 ba 62 dd 2b c2 ff b9 66 0d 0e |.Z3..h.b.+...f..| -orderer.example.com | 00000020 6e 75 cb d7 37 02 20 37 14 28 d4 64 aa 91 f1 73 |nu..7. 7.(.d...s| -orderer.example.com | 00000030 af 82 d7 43 0e 1d 93 78 66 01 9e c6 25 f7 ed 72 |...C...xf...%..r| -orderer.example.com | 00000040 4d e8 33 c9 bb bc 92 |M.3....| -orderer.example.com | 2018-01-18 01:59:25.598 UTC [cauthdsl] func2 -> DEBU e6c 0xc42014aab0 principal evaluation succeeds for identity 0 -orderer.example.com | 2018-01-18 01:59:25.598 UTC [cauthdsl] func1 -> DEBU e6d 0xc42014aab0 gate 1516240765596881880 evaluation succeeds -orderer.example.com | 2018-01-18 01:59:25.598 UTC [orderer/common/sigfilter] Apply -> DEBU e6e Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4202911c0 1 [0xc42014a3a8]}) %!s(*policies.implicitMetaPolicy=&{0xc420291840 1 [0xc42014a5f0 0xc42014a878]})]} -orderer.example.com | 2018-01-18 01:59:25.598 UTC [orderer/common/broadcast] Handle -> DEBU e6f [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION -orderer.example.com | 2018-01-18 01:59:25.599 UTC [policies] GetPolicy -> DEBU e70 Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:59:25.599 UTC [cauthdsl] func1 -> DEBU e71 0xc42014aac8 gate 1516240765599119561 evaluation starts -orderer.example.com | 2018-01-18 01:59:25.599 UTC [cauthdsl] func2 -> DEBU e72 0xc42014aac8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-18 01:59:25.599 UTC [cauthdsl] func2 -> DEBU e73 0xc42014aac8 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-18 01:59:25.599 UTC [msp/identity] newIdentity -> DEBU e74 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -orderer.example.com | xHTBvxfK6mAzmUitFmY= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:59:25.600 UTC [cauthdsl] func2 -> DEBU e75 0xc42014aac8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -orderer.example.com | 2018-01-18 01:59:25.601 UTC [cauthdsl] func2 -> DEBU e76 0xc42014aac8 principal evaluation fails -orderer.example.com | 2018-01-18 01:59:25.601 UTC [cauthdsl] func1 -> DEBU e77 0xc42014aac8 gate 1516240765599119561 evaluation fails -orderer.example.com | 2018-01-18 01:59:25.601 UTC [cauthdsl] func1 -> DEBU e78 0xc42014aad8 gate 1516240765601876982 evaluation starts -orderer.example.com | 2018-01-18 01:59:25.601 UTC [cauthdsl] func2 -> DEBU e79 0xc42014aad8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-18 01:59:25.602 UTC [cauthdsl] func2 -> DEBU e7a 0xc42014aad8 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-18 01:59:25.602 UTC [msp/identity] newIdentity -> DEBU e7b Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -orderer.example.com | xHTBvxfK6mAzmUitFmY= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:59:25.603 UTC [orderer/common/broadcast] Handle -> WARN e7c Error reading from stream: rpc error: code = Canceled desc = context canceled -orderer.example.com | 2018-01-18 01:59:25.603 UTC [orderer/main] func1 -> DEBU e7d Closing Broadcast stream -orderer.example.com | 2018-01-18 01:59:25.606 UTC [msp] SatisfiesPrincipal -> DEBU e7e Checking if identity satisfies MEMBER role for Org1MSP -orderer.example.com | 2018-01-18 01:59:25.606 UTC [msp] Validate -> DEBU e7f MSP Org1MSP validating identity -orderer.example.com | 2018-01-18 01:59:25.606 UTC [cauthdsl] func2 -> DEBU e80 0xc42014aad8 principal matched by identity 0 -orderer.example.com | 2018-01-18 01:59:25.608 UTC [msp/identity] Verify -> DEBU e81 Verify: digest = 00000000 64 dd 1a f0 49 32 55 a2 70 d1 85 cd 58 17 6d 69 |d...I2U.p...X.mi| -orderer.example.com | 00000010 27 ed c6 1b f9 41 c2 6f 3e 1b f6 b7 47 b9 89 9c |'....A.o>...G...| -orderer.example.com | 2018-01-18 01:59:25.608 UTC [msp/identity] Verify -> DEBU e82 Verify: sig = 00000000 30 45 02 21 00 91 3f 53 6e 5a 85 d7 5d 56 48 ee |0E.!..?SnZ..]VH.| -orderer.example.com | 00000010 17 5a 33 a7 f0 68 ba 62 dd 2b c2 ff b9 66 0d 0e |.Z3..h.b.+...f..| -orderer.example.com | 00000020 6e 75 cb d7 37 02 20 37 14 28 d4 64 aa 91 f1 73 |nu..7. 7.(.d...s| -orderer.example.com | 00000030 af 82 d7 43 0e 1d 93 78 66 01 9e c6 25 f7 ed 72 |...C...xf...%..r| -orderer.example.com | 00000040 4d e8 33 c9 bb bc 92 |M.3....| -orderer.example.com | 2018-01-18 01:59:25.610 UTC [cauthdsl] func2 -> DEBU e83 0xc42014aad8 principal evaluation succeeds for identity 0 -orderer.example.com | 2018-01-18 01:59:25.611 UTC [cauthdsl] func1 -> DEBU e84 0xc42014aad8 gate 1516240765601876982 evaluation succeeds -orderer.example.com | 2018-01-18 01:59:25.611 UTC [orderer/common/sigfilter] Apply -> DEBU e85 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4202911c0 1 [0xc42014a3a8]}) %!s(*policies.implicitMetaPolicy=&{0xc420291840 1 [0xc42014a5f0 0xc42014a878]})]} -orderer.example.com | 2018-01-18 01:59:25.612 UTC [orderer/common/blockcutter] Ordered -> DEBU e86 Enqueuing message into batch -orderer.example.com | 2018-01-18 01:59:25.907 UTC [orderer/main] Broadcast -> DEBU e87 Starting new Broadcast handler -orderer.example.com | 2018-01-18 01:59:25.908 UTC [orderer/common/broadcast] Handle -> DEBU e88 Starting new broadcast loop -orderer.example.com | 2018-01-18 01:59:27.613 UTC [orderer/solo] main -> DEBU e89 Batch timer expired, creating block -orderer.example.com | 2018-01-18 01:59:27.613 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU e8a retrieveBlockByNumber() - blockNum = [2] -orderer.example.com | 2018-01-18 01:59:27.613 UTC [fsblkstorage] newBlockfileStream -> DEBU e8b newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[25666] -orderer.example.com | 2018-01-18 01:59:27.614 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e8c Remaining bytes=[13790], Going to peek [8] bytes -orderer.example.com | 2018-01-18 01:59:27.614 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e8d Returning blockbytes - length=[13788], placementInfo={fileNum=[0], startOffset=[25666], bytesOffset=[25668]} -orderer.example.com | 2018-01-18 01:59:27.614 UTC [orderer/multichain] addBlockSignature -> DEBU e8e &{ledgerResources:0xc420208040 chain:0xc420208da0 cutter:0xc420a51270 filters:0xc4202089e0 signer:0x1274e88 lastConfig:2 lastConfigSeq:3} -orderer.example.com | 2018-01-18 01:59:27.614 UTC [orderer/multichain] addBlockSignature -> DEBU e8f &{} -orderer.example.com | 2018-01-18 01:59:27.614 UTC [msp] GetLocalMSP -> DEBU e90 Returning existing local MSP -orderer.example.com | 2018-01-18 01:59:27.615 UTC [msp] GetDefaultSigningIdentity -> DEBU e91 Obtaining default signing identity -orderer.example.com | 2018-01-18 01:59:27.615 UTC [msp] GetLocalMSP -> DEBU e92 Returning existing local MSP -orderer.example.com | 2018-01-18 01:59:27.615 UTC [msp] GetDefaultSigningIdentity -> DEBU e93 Obtaining default signing identity -orderer.example.com | 2018-01-18 01:59:27.615 UTC [msp/identity] Sign -> DEBU e94 Sign: plaintext: 0AFA050A0A4F7264657265724D535012...093D89017A38B39B5BB88D1158E83F69 -orderer.example.com | 2018-01-18 01:59:27.615 UTC [msp/identity] Sign -> DEBU e95 Sign: digest: A1D50574B4BF0991C80A2A29C8C75F47A6E909C349B61FEE196CBC35A6AE0CBD -orderer.example.com | 2018-01-18 01:59:27.616 UTC [msp] GetLocalMSP -> DEBU e96 Returning existing local MSP -orderer.example.com | 2018-01-18 01:59:27.616 UTC [msp] GetDefaultSigningIdentity -> DEBU e97 Obtaining default signing identity -orderer.example.com | 2018-01-18 01:59:27.616 UTC [orderer/multichain] addLastConfigSignature -> DEBU e98 [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 -orderer.example.com | 2018-01-18 01:59:27.616 UTC [msp] GetLocalMSP -> DEBU e99 Returning existing local MSP -orderer.example.com | 2018-01-18 01:59:27.616 UTC [msp] GetDefaultSigningIdentity -> DEBU e9a Obtaining default signing identity -orderer.example.com | 2018-01-18 01:59:27.616 UTC [msp/identity] Sign -> DEBU e9b Sign: plaintext: 08020AFA050A0A4F7264657265724D53...093D89017A38B39B5BB88D1158E83F69 -orderer.example.com | 2018-01-18 01:59:27.616 UTC [msp/identity] Sign -> DEBU e9c Sign: digest: 3562A7B51449EA2EC8B21F41866EEFB1081293B996B5041656F6AFC98FDA5037 -orderer.example.com | 2018-01-18 01:59:27.623 UTC [fsblkstorage] indexBlock -> DEBU e9d Indexing block [blockNum=3, blockHash=[]byte{0x97, 0xe, 0xbe, 0xd9, 0x27, 0xde, 0xad, 0x13, 0x22, 0x1c, 0xcb, 0xdd, 0x26, 0x3a, 0xf8, 0x99, 0xca, 0x2c, 0x54, 0x92, 0x33, 0x30, 0x7d, 0x62, 0xca, 0x6a, 0xf9, 0x20, 0xf, 0xe3, 0x82, 0xcd} txOffsets= -orderer.example.com | txId=ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824 locPointer=offset=70, bytesLength=3395 -orderer.example.com | ] -orderer.example.com | 2018-01-18 01:59:27.623 UTC [fsblkstorage] updateCheckpoint -> DEBU e9e Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[44671], isChainEmpty=[false], lastBlockNumber=[3] -orderer.example.com | 2018-01-18 01:59:27.623 UTC [orderer/multichain] WriteBlock -> DEBU e9f [channel: businesschannel] Wrote block 3 -orderer.example.com | 2018-01-18 01:59:27.624 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU ea1 retrieveBlockByNumber() - blockNum = [3] -orderer.example.com | 2018-01-18 01:59:27.623 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU ea0 retrieveBlockByNumber() - blockNum = [3] -orderer.example.com | 2018-01-18 01:59:27.624 UTC [fsblkstorage] newBlockfileStream -> DEBU ea3 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[39456] -orderer.example.com | 2018-01-18 01:59:27.624 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU ea4 Remaining bytes=[5215], Going to peek [8] bytes -orderer.example.com | 2018-01-18 01:59:27.624 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU ea5 Returning blockbytes - length=[5213], placementInfo={fileNum=[0], startOffset=[39456], bytesOffset=[39458]} -orderer.example.com | 2018-01-18 01:59:27.624 UTC [orderer/common/deliver] Handle -> DEBU ea6 [channel: businesschannel] Delivering block for (0xc4208701a0) -orderer.example.com | 2018-01-18 01:59:27.624 UTC [fsblkstorage] newBlockfileStream -> DEBU ea2 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[39456] -orderer.example.com | 2018-01-18 01:59:27.624 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU ea7 Remaining bytes=[5215], Going to peek [8] bytes -orderer.example.com | 2018-01-18 01:59:27.625 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU ea8 Returning blockbytes - length=[5213], placementInfo={fileNum=[0], startOffset=[39456], bytesOffset=[39458]} -orderer.example.com | 2018-01-18 01:59:27.625 UTC [orderer/common/deliver] Handle -> DEBU ea9 [channel: businesschannel] Delivering block for (0xc42022a4a0) -orderer.example.com | 2018-01-18 01:59:46.173 UTC [orderer/common/broadcast] Handle -> DEBU eaa [channel: businesschannel] Broadcast is filtering message of type ENDORSER_TRANSACTION -orderer.example.com | 2018-01-18 01:59:46.173 UTC [policies] GetPolicy -> DEBU eab Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:59:46.173 UTC [cauthdsl] func1 -> DEBU eac 0xc4200260a8 gate 1516240786173543803 evaluation starts -orderer.example.com | 2018-01-18 01:59:46.173 UTC [cauthdsl] func2 -> DEBU ead 0xc4200260a8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-18 01:59:46.173 UTC [cauthdsl] func2 -> DEBU eae 0xc4200260a8 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-18 01:59:46.174 UTC [msp/identity] newIdentity -> DEBU eaf Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -orderer.example.com | AXYxULZpXYDQXt1KaLI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:59:46.174 UTC [cauthdsl] func2 -> DEBU eb0 0xc4200260a8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) -orderer.example.com | 2018-01-18 01:59:46.174 UTC [cauthdsl] func2 -> DEBU eb1 0xc4200260a8 principal evaluation fails -orderer.example.com | 2018-01-18 01:59:46.174 UTC [cauthdsl] func1 -> DEBU eb2 0xc4200260a8 gate 1516240786173543803 evaluation fails -orderer.example.com | 2018-01-18 01:59:46.174 UTC [cauthdsl] func1 -> DEBU eb3 0xc420026168 gate 1516240786174653747 evaluation starts -orderer.example.com | 2018-01-18 01:59:46.174 UTC [cauthdsl] func2 -> DEBU eb4 0xc420026168 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-18 01:59:46.174 UTC [cauthdsl] func2 -> DEBU eb5 0xc420026168 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-18 01:59:46.175 UTC [msp/identity] newIdentity -> DEBU eb6 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -orderer.example.com | AXYxULZpXYDQXt1KaLI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:59:46.175 UTC [cauthdsl] func2 -> DEBU eb7 0xc420026168 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got Org2MSP) -orderer.example.com | 2018-01-18 01:59:46.176 UTC [cauthdsl] func2 -> DEBU eb8 0xc420026168 principal evaluation fails -orderer.example.com | 2018-01-18 01:59:46.176 UTC [cauthdsl] func1 -> DEBU eb9 0xc420026168 gate 1516240786174653747 evaluation fails -orderer.example.com | 2018-01-18 01:59:46.176 UTC [cauthdsl] func1 -> DEBU eba 0xc4200261f8 gate 1516240786176752098 evaluation starts -orderer.example.com | 2018-01-18 01:59:46.176 UTC [cauthdsl] func2 -> DEBU ebb 0xc4200261f8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-18 01:59:46.177 UTC [cauthdsl] func2 -> DEBU ebc 0xc4200261f8 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-18 01:59:46.177 UTC [msp/identity] newIdentity -> DEBU ebd Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -orderer.example.com | AXYxULZpXYDQXt1KaLI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:59:46.178 UTC [msp] SatisfiesPrincipal -> DEBU ebe Checking if identity satisfies MEMBER role for Org2MSP -orderer.example.com | 2018-01-18 01:59:46.178 UTC [msp] Validate -> DEBU ebf MSP Org2MSP validating identity -orderer.example.com | 2018-01-18 01:59:46.178 UTC [cauthdsl] func2 -> DEBU ec0 0xc4200261f8 principal matched by identity 0 -orderer.example.com | 2018-01-18 01:59:46.178 UTC [msp/identity] Verify -> DEBU ec1 Verify: digest = 00000000 8c e3 dd 13 52 02 29 6b 7a b0 c2 58 92 56 63 ec |....R.)kz..X.Vc.| -orderer.example.com | 00000010 85 63 36 bb fc 7a 28 52 ec b4 7a f4 20 27 f2 05 |.c6..z(R..z. '..| -orderer.example.com | 2018-01-18 01:59:46.178 UTC [msp/identity] Verify -> DEBU ec2 Verify: sig = 00000000 30 45 02 21 00 d8 96 15 30 ad d6 fc 5b 8d 1f 09 |0E.!....0...[...| -orderer.example.com | 00000010 3a ee 80 2b b9 e5 46 76 42 80 66 82 cb 64 46 41 |:..+..FvB.f..dFA| -orderer.example.com | 00000020 05 2c 75 c9 67 02 20 60 bd 82 5c 6d da b3 c7 f8 |.,u.g. `..\m....| -orderer.example.com | 00000030 97 3a 78 62 8a 1c 95 d4 d0 5b 6b 59 77 cc a2 22 |.:xb.....[kYw.."| -orderer.example.com | 00000040 a8 0d 36 b5 ad aa fc |..6....| -orderer.example.com | 2018-01-18 01:59:46.179 UTC [cauthdsl] func2 -> DEBU ec3 0xc4200261f8 principal evaluation succeeds for identity 0 -orderer.example.com | 2018-01-18 01:59:46.179 UTC [cauthdsl] func1 -> DEBU ec4 0xc4200261f8 gate 1516240786176752098 evaluation succeeds -orderer.example.com | 2018-01-18 01:59:46.179 UTC [orderer/common/sigfilter] Apply -> DEBU ec5 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4202911c0 1 [0xc42014a3a8]}) %!s(*policies.implicitMetaPolicy=&{0xc420291840 1 [0xc42014a5f0 0xc42014a878]})]} -orderer.example.com | 2018-01-18 01:59:46.179 UTC [policies] GetPolicy -> DEBU ec6 Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 01:59:46.179 UTC [cauthdsl] func1 -> DEBU ec7 0xc42014ab18 gate 1516240786179651047 evaluation starts -orderer.example.com | 2018-01-18 01:59:46.179 UTC [cauthdsl] func2 -> DEBU ec8 0xc42014ab18 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-18 01:59:46.179 UTC [cauthdsl] func2 -> DEBU ec9 0xc42014ab18 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-18 01:59:46.179 UTC [msp/identity] newIdentity -> DEBU eca Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -orderer.example.com | AXYxULZpXYDQXt1KaLI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:59:46.180 UTC [cauthdsl] func2 -> DEBU ecb 0xc42014ab18 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) -orderer.example.com | 2018-01-18 01:59:46.180 UTC [cauthdsl] func2 -> DEBU ecc 0xc42014ab18 principal evaluation fails -orderer.example.com | 2018-01-18 01:59:46.180 UTC [cauthdsl] func1 -> DEBU ecd 0xc42014ab18 gate 1516240786179651047 evaluation fails -orderer.example.com | 2018-01-18 01:59:46.180 UTC [cauthdsl] func1 -> DEBU ece 0xc42014ab28 gate 1516240786180450148 evaluation starts -orderer.example.com | 2018-01-18 01:59:46.180 UTC [cauthdsl] func2 -> DEBU ecf 0xc42014ab28 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-18 01:59:46.180 UTC [cauthdsl] func2 -> DEBU ed0 0xc42014ab28 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-18 01:59:46.180 UTC [msp/identity] newIdentity -> DEBU ed1 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -orderer.example.com | AXYxULZpXYDQXt1KaLI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:59:46.181 UTC [cauthdsl] func2 -> DEBU ed2 0xc42014ab28 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got Org2MSP) -orderer.example.com | 2018-01-18 01:59:46.181 UTC [cauthdsl] func2 -> DEBU ed3 0xc42014ab28 principal evaluation fails -orderer.example.com | 2018-01-18 01:59:46.181 UTC [cauthdsl] func1 -> DEBU ed4 0xc42014ab28 gate 1516240786180450148 evaluation fails -orderer.example.com | 2018-01-18 01:59:46.181 UTC [cauthdsl] func1 -> DEBU ed5 0xc42014ab38 gate 1516240786181298923 evaluation starts -orderer.example.com | 2018-01-18 01:59:46.181 UTC [cauthdsl] func2 -> DEBU ed6 0xc42014ab38 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-18 01:59:46.181 UTC [cauthdsl] func2 -> DEBU ed7 0xc42014ab38 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-18 01:59:46.181 UTC [msp/identity] newIdentity -> DEBU ed8 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -orderer.example.com | AXYxULZpXYDQXt1KaLI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 01:59:46.181 UTC [msp] SatisfiesPrincipal -> DEBU ed9 Checking if identity satisfies MEMBER role for Org2MSP -orderer.example.com | 2018-01-18 01:59:46.181 UTC [msp] Validate -> DEBU eda MSP Org2MSP validating identity -orderer.example.com | 2018-01-18 01:59:46.182 UTC [cauthdsl] func2 -> DEBU edb 0xc42014ab38 principal matched by identity 0 -orderer.example.com | 2018-01-18 01:59:46.182 UTC [msp/identity] Verify -> DEBU edc Verify: digest = 00000000 8c e3 dd 13 52 02 29 6b 7a b0 c2 58 92 56 63 ec |....R.)kz..X.Vc.| -orderer.example.com | 00000010 85 63 36 bb fc 7a 28 52 ec b4 7a f4 20 27 f2 05 |.c6..z(R..z. '..| -orderer.example.com | 2018-01-18 01:59:46.182 UTC [msp/identity] Verify -> DEBU edd Verify: sig = 00000000 30 45 02 21 00 d8 96 15 30 ad d6 fc 5b 8d 1f 09 |0E.!....0...[...| -orderer.example.com | 00000010 3a ee 80 2b b9 e5 46 76 42 80 66 82 cb 64 46 41 |:..+..FvB.f..dFA| -orderer.example.com | 00000020 05 2c 75 c9 67 02 20 60 bd 82 5c 6d da b3 c7 f8 |.,u.g. `..\m....| -orderer.example.com | 00000030 97 3a 78 62 8a 1c 95 d4 d0 5b 6b 59 77 cc a2 22 |.:xb.....[kYw.."| -orderer.example.com | 00000040 a8 0d 36 b5 ad aa fc |..6....| -orderer.example.com | 2018-01-18 01:59:46.182 UTC [cauthdsl] func2 -> DEBU ede 0xc42014ab38 principal evaluation succeeds for identity 0 -orderer.example.com | 2018-01-18 01:59:46.182 UTC [cauthdsl] func1 -> DEBU edf 0xc42014ab38 gate 1516240786181298923 evaluation succeeds -orderer.example.com | 2018-01-18 01:59:46.182 UTC [orderer/common/sigfilter] Apply -> DEBU ee0 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4202911c0 1 [0xc42014a3a8]}) %!s(*policies.implicitMetaPolicy=&{0xc420291840 1 [0xc42014a5f0 0xc42014a878]})]} -orderer.example.com | 2018-01-18 01:59:46.182 UTC [orderer/common/blockcutter] Ordered -> DEBU ee1 Enqueuing message into batch -orderer.example.com | 2018-01-18 01:59:46.182 UTC [orderer/common/broadcast] Handle -> DEBU ee2 [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION -orderer.example.com | 2018-01-18 01:59:46.183 UTC [orderer/common/broadcast] Handle -> WARN ee3 Error reading from stream: rpc error: code = Canceled desc = context canceled -orderer.example.com | 2018-01-18 01:59:46.184 UTC [orderer/main] func1 -> DEBU ee4 Closing Broadcast stream -orderer.example.com | 2018-01-18 01:59:48.183 UTC [orderer/solo] main -> DEBU ee5 Batch timer expired, creating block -orderer.example.com | 2018-01-18 01:59:48.183 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU ee6 retrieveBlockByNumber() - blockNum = [3] -orderer.example.com | 2018-01-18 01:59:48.183 UTC [fsblkstorage] newBlockfileStream -> DEBU ee7 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[39456] -orderer.example.com | 2018-01-18 01:59:48.183 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU ee8 Remaining bytes=[5215], Going to peek [8] bytes -orderer.example.com | 2018-01-18 01:59:48.183 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU ee9 Returning blockbytes - length=[5213], placementInfo={fileNum=[0], startOffset=[39456], bytesOffset=[39458]} -orderer.example.com | 2018-01-18 01:59:48.184 UTC [orderer/multichain] addBlockSignature -> DEBU eea &{ledgerResources:0xc420208040 chain:0xc420208da0 cutter:0xc420a51270 filters:0xc4202089e0 signer:0x1274e88 lastConfig:2 lastConfigSeq:3} -orderer.example.com | 2018-01-18 01:59:48.184 UTC [orderer/multichain] addBlockSignature -> DEBU eeb &{} -orderer.example.com | 2018-01-18 01:59:48.184 UTC [msp] GetLocalMSP -> DEBU eec Returning existing local MSP -orderer.example.com | 2018-01-18 01:59:48.184 UTC [msp] GetDefaultSigningIdentity -> DEBU eed Obtaining default signing identity -orderer.example.com | 2018-01-18 01:59:48.184 UTC [msp] GetLocalMSP -> DEBU eee Returning existing local MSP -orderer.example.com | 2018-01-18 01:59:48.184 UTC [msp] GetDefaultSigningIdentity -> DEBU eef Obtaining default signing identity -orderer.example.com | 2018-01-18 01:59:48.184 UTC [msp/identity] Sign -> DEBU ef0 Sign: plaintext: 0AFA050A0A4F7264657265724D535012...3735B56DC62A2CCCB5080A8B6EF4E8DA -orderer.example.com | 2018-01-18 01:59:48.184 UTC [msp/identity] Sign -> DEBU ef1 Sign: digest: 8B938DD8A2AB2424E817CBACB3749BEC57D8F3E91A2D16213AD6EEDFECB83DE8 -orderer.example.com | 2018-01-18 01:59:48.185 UTC [msp] GetLocalMSP -> DEBU ef2 Returning existing local MSP -orderer.example.com | 2018-01-18 01:59:48.185 UTC [msp] GetDefaultSigningIdentity -> DEBU ef3 Obtaining default signing identity -orderer.example.com | 2018-01-18 01:59:48.185 UTC [orderer/multichain] addLastConfigSignature -> DEBU ef4 [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 -orderer.example.com | 2018-01-18 01:59:48.185 UTC [msp] GetLocalMSP -> DEBU ef5 Returning existing local MSP -orderer.example.com | 2018-01-18 01:59:48.185 UTC [msp] GetDefaultSigningIdentity -> DEBU ef6 Obtaining default signing identity -orderer.example.com | 2018-01-18 01:59:48.185 UTC [msp/identity] Sign -> DEBU ef7 Sign: plaintext: 08020AFA050A0A4F7264657265724D53...3735B56DC62A2CCCB5080A8B6EF4E8DA -orderer.example.com | 2018-01-18 01:59:48.185 UTC [msp/identity] Sign -> DEBU ef8 Sign: digest: D7E97D05D33C08C91A2092B621DD6386B7B08D645448C25CB415FD00AC269E2F -orderer.example.com | 2018-01-18 01:59:48.188 UTC [fsblkstorage] indexBlock -> DEBU ef9 Indexing block [blockNum=4, blockHash=[]byte{0xa9, 0xa2, 0x5c, 0x6d, 0x32, 0x6, 0xa0, 0x2d, 0x65, 0xc3, 0x6e, 0x5b, 0xf7, 0xb7, 0x4f, 0x48, 0x2d, 0xb5, 0x26, 0x88, 0xf4, 0x50, 0x7e, 0x26, 0xb8, 0xd0, 0xfe, 0x2f, 0x87, 0xde, 0x87, 0x83} txOffsets= -orderer.example.com | txId=544f379dda618ff2c82301cddc728a5ab3076d114052fb463df7e9d6c1ede6fd locPointer=offset=70, bytesLength=3394 -orderer.example.com | ] -orderer.example.com | 2018-01-18 01:59:48.189 UTC [fsblkstorage] updateCheckpoint -> DEBU efa Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[49886], isChainEmpty=[false], lastBlockNumber=[4] -orderer.example.com | 2018-01-18 01:59:48.189 UTC [orderer/multichain] WriteBlock -> DEBU efb [channel: businesschannel] Wrote block 4 -orderer.example.com | 2018-01-18 01:59:48.189 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU efd retrieveBlockByNumber() - blockNum = [4] -orderer.example.com | 2018-01-18 01:59:48.189 UTC [fsblkstorage] newBlockfileStream -> DEBU efe newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[44671] -orderer.example.com | 2018-01-18 01:59:48.189 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU eff Remaining bytes=[5215], Going to peek [8] bytes -orderer.example.com | 2018-01-18 01:59:48.189 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f00 Returning blockbytes - length=[5213], placementInfo={fileNum=[0], startOffset=[44671], bytesOffset=[44673]} -orderer.example.com | 2018-01-18 01:59:48.190 UTC [orderer/common/deliver] Handle -> DEBU f01 [channel: businesschannel] Delivering block for (0xc42022a4a0) -orderer.example.com | 2018-01-18 01:59:48.189 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU efc retrieveBlockByNumber() - blockNum = [4] -orderer.example.com | 2018-01-18 01:59:48.190 UTC [fsblkstorage] newBlockfileStream -> DEBU f02 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[44671] -orderer.example.com | 2018-01-18 01:59:48.191 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f03 Remaining bytes=[5215], Going to peek [8] bytes -orderer.example.com | 2018-01-18 01:59:48.191 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f04 Returning blockbytes - length=[5213], placementInfo={fileNum=[0], startOffset=[44671], bytesOffset=[44673]} -orderer.example.com | 2018-01-18 01:59:48.191 UTC [orderer/common/deliver] Handle -> DEBU f05 [channel: businesschannel] Delivering block for (0xc4208701a0) -orderer.example.com | 2018-01-18 02:00:09.277 UTC [orderer/main] Broadcast -> DEBU f06 Starting new Broadcast handler -orderer.example.com | 2018-01-18 02:00:09.277 UTC [orderer/common/broadcast] Handle -> DEBU f07 Starting new broadcast loop -orderer.example.com | 2018-01-18 02:00:09.301 UTC [orderer/common/broadcast] Handle -> DEBU f08 [channel: businesschannel] Broadcast is filtering message of type ENDORSER_TRANSACTION -orderer.example.com | 2018-01-18 02:00:09.301 UTC [policies] GetPolicy -> DEBU f09 Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 02:00:09.301 UTC [cauthdsl] func1 -> DEBU f0a 0xc42014ab78 gate 1516240809301525227 evaluation starts -orderer.example.com | 2018-01-18 02:00:09.301 UTC [cauthdsl] func2 -> DEBU f0b 0xc42014ab78 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-18 02:00:09.301 UTC [cauthdsl] func2 -> DEBU f0c 0xc42014ab78 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-18 02:00:09.302 UTC [msp/identity] newIdentity -> DEBU f0d Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -orderer.example.com | xHTBvxfK6mAzmUitFmY= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 02:00:09.302 UTC [cauthdsl] func2 -> DEBU f0e 0xc42014ab78 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -orderer.example.com | 2018-01-18 02:00:09.302 UTC [cauthdsl] func2 -> DEBU f0f 0xc42014ab78 principal evaluation fails -orderer.example.com | 2018-01-18 02:00:09.302 UTC [cauthdsl] func1 -> DEBU f10 0xc42014ab78 gate 1516240809301525227 evaluation fails -orderer.example.com | 2018-01-18 02:00:09.302 UTC [cauthdsl] func1 -> DEBU f11 0xc42014ab88 gate 1516240809302659660 evaluation starts -orderer.example.com | 2018-01-18 02:00:09.302 UTC [cauthdsl] func2 -> DEBU f12 0xc42014ab88 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-18 02:00:09.302 UTC [cauthdsl] func2 -> DEBU f13 0xc42014ab88 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-18 02:00:09.303 UTC [msp/identity] newIdentity -> DEBU f14 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -orderer.example.com | xHTBvxfK6mAzmUitFmY= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 02:00:09.303 UTC [msp] SatisfiesPrincipal -> DEBU f15 Checking if identity satisfies MEMBER role for Org1MSP -orderer.example.com | 2018-01-18 02:00:09.303 UTC [msp] Validate -> DEBU f16 MSP Org1MSP validating identity -orderer.example.com | 2018-01-18 02:00:09.303 UTC [cauthdsl] func2 -> DEBU f17 0xc42014ab88 principal matched by identity 0 -orderer.example.com | 2018-01-18 02:00:09.303 UTC [msp/identity] Verify -> DEBU f18 Verify: digest = 00000000 96 19 82 b0 1b 1a 93 1b 3d 3e e0 a8 79 46 e4 3a |........=>..yF.:| -orderer.example.com | 00000010 f1 cf d7 e3 5b 10 7a b2 c4 12 37 e6 82 85 64 1a |....[.z...7...d.| -orderer.example.com | 2018-01-18 02:00:09.303 UTC [msp/identity] Verify -> DEBU f19 Verify: sig = 00000000 30 45 02 21 00 97 aa 92 1b a1 52 43 4a 9f 30 36 |0E.!......RCJ.06| -orderer.example.com | 00000010 ae 07 d0 26 0f c9 ca 95 f5 7f 64 a6 fa 13 d8 25 |...&......d....%| -orderer.example.com | 00000020 01 fa f0 84 8f 02 20 3b 8f 60 cf 38 b2 c3 12 0c |...... ;.`.8....| -orderer.example.com | 00000030 81 7f 0c e7 ca 92 c9 fe 1e b4 fb ad 1c d8 13 f3 |................| -orderer.example.com | 00000040 ff 74 37 7f 36 eb 12 |.t7.6..| -orderer.example.com | 2018-01-18 02:00:09.304 UTC [cauthdsl] func2 -> DEBU f1a 0xc42014ab88 principal evaluation succeeds for identity 0 -orderer.example.com | 2018-01-18 02:00:09.304 UTC [cauthdsl] func1 -> DEBU f1b 0xc42014ab88 gate 1516240809302659660 evaluation succeeds -orderer.example.com | 2018-01-18 02:00:09.304 UTC [orderer/common/sigfilter] Apply -> DEBU f1c Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4202911c0 1 [0xc42014a3a8]}) %!s(*policies.implicitMetaPolicy=&{0xc420291840 1 [0xc42014a5f0 0xc42014a878]})]} -orderer.example.com | 2018-01-18 02:00:09.304 UTC [orderer/common/broadcast] Handle -> DEBU f1d [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION -orderer.example.com | 2018-01-18 02:00:09.304 UTC [policies] GetPolicy -> DEBU f1e Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 02:00:09.304 UTC [cauthdsl] func1 -> DEBU f1f 0xc420026260 gate 1516240809304605586 evaluation starts -orderer.example.com | 2018-01-18 02:00:09.304 UTC [cauthdsl] func2 -> DEBU f20 0xc420026260 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-18 02:00:09.304 UTC [cauthdsl] func2 -> DEBU f21 0xc420026260 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-18 02:00:09.305 UTC [msp/identity] newIdentity -> DEBU f22 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -orderer.example.com | xHTBvxfK6mAzmUitFmY= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 02:00:09.305 UTC [cauthdsl] func2 -> DEBU f23 0xc420026260 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -orderer.example.com | 2018-01-18 02:00:09.305 UTC [cauthdsl] func2 -> DEBU f24 0xc420026260 principal evaluation fails -orderer.example.com | 2018-01-18 02:00:09.305 UTC [cauthdsl] func1 -> DEBU f25 0xc420026260 gate 1516240809304605586 evaluation fails -orderer.example.com | 2018-01-18 02:00:09.306 UTC [cauthdsl] func1 -> DEBU f26 0xc420026270 gate 1516240809305997390 evaluation starts -orderer.example.com | 2018-01-18 02:00:09.306 UTC [cauthdsl] func2 -> DEBU f27 0xc420026270 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-18 02:00:09.306 UTC [cauthdsl] func2 -> DEBU f28 0xc420026270 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-18 02:00:09.306 UTC [msp/identity] newIdentity -> DEBU f29 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -orderer.example.com | xHTBvxfK6mAzmUitFmY= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 02:00:09.307 UTC [msp] SatisfiesPrincipal -> DEBU f2a Checking if identity satisfies MEMBER role for Org1MSP -orderer.example.com | 2018-01-18 02:00:09.307 UTC [msp] Validate -> DEBU f2b MSP Org1MSP validating identity -orderer.example.com | 2018-01-18 02:00:09.307 UTC [cauthdsl] func2 -> DEBU f2c 0xc420026270 principal matched by identity 0 -orderer.example.com | 2018-01-18 02:00:09.307 UTC [msp/identity] Verify -> DEBU f2d Verify: digest = 00000000 96 19 82 b0 1b 1a 93 1b 3d 3e e0 a8 79 46 e4 3a |........=>..yF.:| -orderer.example.com | 00000010 f1 cf d7 e3 5b 10 7a b2 c4 12 37 e6 82 85 64 1a |....[.z...7...d.| -orderer.example.com | 2018-01-18 02:00:09.307 UTC [msp/identity] Verify -> DEBU f2e Verify: sig = 00000000 30 45 02 21 00 97 aa 92 1b a1 52 43 4a 9f 30 36 |0E.!......RCJ.06| -orderer.example.com | 00000010 ae 07 d0 26 0f c9 ca 95 f5 7f 64 a6 fa 13 d8 25 |...&......d....%| -orderer.example.com | 00000020 01 fa f0 84 8f 02 20 3b 8f 60 cf 38 b2 c3 12 0c |...... ;.`.8....| -orderer.example.com | 00000030 81 7f 0c e7 ca 92 c9 fe 1e b4 fb ad 1c d8 13 f3 |................| -orderer.example.com | 00000040 ff 74 37 7f 36 eb 12 |.t7.6..| -orderer.example.com | 2018-01-18 02:00:09.308 UTC [cauthdsl] func2 -> DEBU f2f 0xc420026270 principal evaluation succeeds for identity 0 -orderer.example.com | 2018-01-18 02:00:09.308 UTC [cauthdsl] func1 -> DEBU f30 0xc420026270 gate 1516240809305997390 evaluation succeeds -orderer.example.com | 2018-01-18 02:00:09.308 UTC [orderer/common/sigfilter] Apply -> DEBU f31 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4202911c0 1 [0xc42014a3a8]}) %!s(*policies.implicitMetaPolicy=&{0xc420291840 1 [0xc42014a5f0 0xc42014a878]})]} -orderer.example.com | 2018-01-18 02:00:09.308 UTC [orderer/common/blockcutter] Ordered -> DEBU f32 Enqueuing message into batch -orderer.example.com | 2018-01-18 02:00:09.309 UTC [orderer/common/broadcast] Handle -> WARN f33 Error reading from stream: rpc error: code = Canceled desc = context canceled -orderer.example.com | 2018-01-18 02:00:09.309 UTC [orderer/main] func1 -> DEBU f34 Closing Broadcast stream -orderer.example.com | 2018-01-18 02:00:11.308 UTC [orderer/solo] main -> DEBU f35 Batch timer expired, creating block -orderer.example.com | 2018-01-18 02:00:11.309 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU f36 retrieveBlockByNumber() - blockNum = [4] -orderer.example.com | 2018-01-18 02:00:11.309 UTC [fsblkstorage] newBlockfileStream -> DEBU f37 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[44671] -orderer.example.com | 2018-01-18 02:00:11.310 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f38 Remaining bytes=[5215], Going to peek [8] bytes -orderer.example.com | 2018-01-18 02:00:11.310 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f39 Returning blockbytes - length=[5213], placementInfo={fileNum=[0], startOffset=[44671], bytesOffset=[44673]} -orderer.example.com | 2018-01-18 02:00:11.310 UTC [orderer/multichain] addBlockSignature -> DEBU f3a &{ledgerResources:0xc420208040 chain:0xc420208da0 cutter:0xc420a51270 filters:0xc4202089e0 signer:0x1274e88 lastConfig:2 lastConfigSeq:3} -orderer.example.com | 2018-01-18 02:00:11.310 UTC [orderer/multichain] addBlockSignature -> DEBU f3b &{} -orderer.example.com | 2018-01-18 02:00:11.310 UTC [msp] GetLocalMSP -> DEBU f3c Returning existing local MSP -orderer.example.com | 2018-01-18 02:00:11.310 UTC [msp] GetDefaultSigningIdentity -> DEBU f3d Obtaining default signing identity -orderer.example.com | 2018-01-18 02:00:11.311 UTC [msp] GetLocalMSP -> DEBU f3e Returning existing local MSP -orderer.example.com | 2018-01-18 02:00:11.311 UTC [msp] GetDefaultSigningIdentity -> DEBU f3f Obtaining default signing identity -orderer.example.com | 2018-01-18 02:00:11.311 UTC [msp/identity] Sign -> DEBU f40 Sign: plaintext: 0AFA050A0A4F7264657265724D535012...F5AFC3E2E26272A2C289CCF8EC919A40 -orderer.example.com | 2018-01-18 02:00:11.311 UTC [msp/identity] Sign -> DEBU f41 Sign: digest: 41F5C2FFD4E3F3764631F0CC9B51423E80B0CFD028C567638CB15B3492EFC43E -orderer.example.com | 2018-01-18 02:00:11.312 UTC [msp] GetLocalMSP -> DEBU f42 Returning existing local MSP -orderer.example.com | 2018-01-18 02:00:11.312 UTC [msp] GetDefaultSigningIdentity -> DEBU f43 Obtaining default signing identity -orderer.example.com | 2018-01-18 02:00:11.312 UTC [orderer/multichain] addLastConfigSignature -> DEBU f44 [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 -orderer.example.com | 2018-01-18 02:00:11.312 UTC [msp] GetLocalMSP -> DEBU f45 Returning existing local MSP -orderer.example.com | 2018-01-18 02:00:11.312 UTC [msp] GetDefaultSigningIdentity -> DEBU f46 Obtaining default signing identity -orderer.example.com | 2018-01-18 02:00:11.312 UTC [msp/identity] Sign -> DEBU f47 Sign: plaintext: 08020AFA050A0A4F7264657265724D53...F5AFC3E2E26272A2C289CCF8EC919A40 -orderer.example.com | 2018-01-18 02:00:11.312 UTC [msp/identity] Sign -> DEBU f48 Sign: digest: 0160E79333D6FA9A4EF397B28B5D14C832E73DF1CC892344EA3D7A9D6F5E8C07 -orderer.example.com | 2018-01-18 02:00:11.316 UTC [fsblkstorage] indexBlock -> DEBU f49 Indexing block [blockNum=5, blockHash=[]byte{0x6c, 0xf7, 0xab, 0xa5, 0x1f, 0xca, 0x2a, 0x58, 0xcb, 0xd4, 0xd1, 0xb3, 0x1d, 0x76, 0xc1, 0x27, 0x8a, 0x2f, 0xe, 0x8d, 0x19, 0x84, 0xf0, 0xbf, 0x33, 0x10, 0xfe, 0x43, 0xbc, 0xb4, 0x60, 0x53} txOffsets= -orderer.example.com | txId=82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f locPointer=offset=70, bytesLength=2855 -orderer.example.com | ] -orderer.example.com | 2018-01-18 02:00:11.316 UTC [fsblkstorage] updateCheckpoint -> DEBU f4a Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[54560], isChainEmpty=[false], lastBlockNumber=[5] -orderer.example.com | 2018-01-18 02:00:11.316 UTC [orderer/multichain] WriteBlock -> DEBU f4b [channel: businesschannel] Wrote block 5 -orderer.example.com | 2018-01-18 02:00:11.316 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU f4c retrieveBlockByNumber() - blockNum = [5] -orderer.example.com | 2018-01-18 02:00:11.316 UTC [fsblkstorage] newBlockfileStream -> DEBU f4d newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[49886] -orderer.example.com | 2018-01-18 02:00:11.317 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f4e Remaining bytes=[4674], Going to peek [8] bytes -orderer.example.com | 2018-01-18 02:00:11.317 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f4f Returning blockbytes - length=[4672], placementInfo={fileNum=[0], startOffset=[49886], bytesOffset=[49888]} -orderer.example.com | 2018-01-18 02:00:11.317 UTC [orderer/common/deliver] Handle -> DEBU f50 [channel: businesschannel] Delivering block for (0xc4208701a0) -orderer.example.com | 2018-01-18 02:00:11.317 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU f51 retrieveBlockByNumber() - blockNum = [5] -orderer.example.com | 2018-01-18 02:00:11.317 UTC [fsblkstorage] newBlockfileStream -> DEBU f52 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[49886] -orderer.example.com | 2018-01-18 02:00:11.319 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f53 Remaining bytes=[4674], Going to peek [8] bytes -orderer.example.com | 2018-01-18 02:00:11.319 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f54 Returning blockbytes - length=[4672], placementInfo={fileNum=[0], startOffset=[49886], bytesOffset=[49888]} -orderer.example.com | 2018-01-18 02:00:11.320 UTC [orderer/common/deliver] Handle -> DEBU f55 [channel: businesschannel] Delivering block for (0xc42022a4a0) -orderer.example.com | 2018-01-18 02:00:26.293 UTC [orderer/main] Broadcast -> DEBU f56 Starting new Broadcast handler -orderer.example.com | 2018-01-18 02:00:26.293 UTC [orderer/common/broadcast] Handle -> DEBU f57 Starting new broadcast loop -orderer.example.com | 2018-01-18 02:00:26.323 UTC [orderer/common/broadcast] Handle -> DEBU f58 [channel: businesschannel] Broadcast is filtering message of type ENDORSER_TRANSACTION -orderer.example.com | 2018-01-18 02:00:26.323 UTC [policies] GetPolicy -> DEBU f59 Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 02:00:26.323 UTC [cauthdsl] func1 -> DEBU f5a 0xc42014ac10 gate 1516240826323776444 evaluation starts -orderer.example.com | 2018-01-18 02:00:26.323 UTC [cauthdsl] func2 -> DEBU f5b 0xc42014ac10 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-18 02:00:26.323 UTC [cauthdsl] func2 -> DEBU f5c 0xc42014ac10 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-18 02:00:26.324 UTC [msp/identity] newIdentity -> DEBU f5d Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -orderer.example.com | AXYxULZpXYDQXt1KaLI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 02:00:26.324 UTC [cauthdsl] func2 -> DEBU f5e 0xc42014ac10 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) -orderer.example.com | 2018-01-18 02:00:26.324 UTC [cauthdsl] func2 -> DEBU f5f 0xc42014ac10 principal evaluation fails -orderer.example.com | 2018-01-18 02:00:26.324 UTC [cauthdsl] func1 -> DEBU f60 0xc42014ac10 gate 1516240826323776444 evaluation fails -orderer.example.com | 2018-01-18 02:00:26.324 UTC [cauthdsl] func1 -> DEBU f61 0xc42014ac20 gate 1516240826324933565 evaluation starts -orderer.example.com | 2018-01-18 02:00:26.324 UTC [cauthdsl] func2 -> DEBU f62 0xc42014ac20 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-18 02:00:26.325 UTC [cauthdsl] func2 -> DEBU f63 0xc42014ac20 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-18 02:00:26.325 UTC [msp/identity] newIdentity -> DEBU f64 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -orderer.example.com | AXYxULZpXYDQXt1KaLI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 02:00:26.325 UTC [cauthdsl] func2 -> DEBU f65 0xc42014ac20 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got Org2MSP) -orderer.example.com | 2018-01-18 02:00:26.325 UTC [cauthdsl] func2 -> DEBU f66 0xc42014ac20 principal evaluation fails -orderer.example.com | 2018-01-18 02:00:26.325 UTC [cauthdsl] func1 -> DEBU f67 0xc42014ac20 gate 1516240826324933565 evaluation fails -orderer.example.com | 2018-01-18 02:00:26.326 UTC [cauthdsl] func1 -> DEBU f68 0xc42014ac30 gate 1516240826326025519 evaluation starts -orderer.example.com | 2018-01-18 02:00:26.326 UTC [cauthdsl] func2 -> DEBU f69 0xc42014ac30 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-18 02:00:26.326 UTC [cauthdsl] func2 -> DEBU f6a 0xc42014ac30 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-18 02:00:26.326 UTC [msp/identity] newIdentity -> DEBU f6b Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -orderer.example.com | AXYxULZpXYDQXt1KaLI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 02:00:26.326 UTC [msp] SatisfiesPrincipal -> DEBU f6c Checking if identity satisfies MEMBER role for Org2MSP -orderer.example.com | 2018-01-18 02:00:26.326 UTC [msp] Validate -> DEBU f6d MSP Org2MSP validating identity -orderer.example.com | 2018-01-18 02:00:26.327 UTC [cauthdsl] func2 -> DEBU f6e 0xc42014ac30 principal matched by identity 0 -orderer.example.com | 2018-01-18 02:00:26.327 UTC [msp/identity] Verify -> DEBU f6f Verify: digest = 00000000 41 86 c1 8f 5d 78 6d 5b 0b a3 49 3c af bd 81 5d |A...]xm[..I<...]| -orderer.example.com | 00000010 aa 9e 24 eb 91 62 77 67 3e 0b 1a a3 87 0a 62 e8 |..$..bwg>.....b.| -orderer.example.com | 2018-01-18 02:00:26.328 UTC [msp/identity] Verify -> DEBU f70 Verify: sig = 00000000 30 44 02 20 61 5b 5f 47 d9 9c 61 24 67 7c c3 10 |0D. a[_G..a$g|..| -orderer.example.com | 00000010 de 77 61 e1 7c 05 55 ec 7c 58 af 8c 42 42 89 7a |.wa.|.U.|X..BB.z| -orderer.example.com | 00000020 1d db ea d1 02 20 0f 19 02 c4 a9 ea b6 17 28 29 |..... ........()| -orderer.example.com | 00000030 f3 eb 90 dd 3a 9e 40 36 d4 92 e5 59 8c 39 d1 f6 |....:.@6...Y.9..| -orderer.example.com | 00000040 9d 13 2a 4b 0c 90 |..*K..| -orderer.example.com | 2018-01-18 02:00:26.329 UTC [cauthdsl] func2 -> DEBU f71 0xc42014ac30 principal evaluation succeeds for identity 0 -orderer.example.com | 2018-01-18 02:00:26.329 UTC [cauthdsl] func1 -> DEBU f72 0xc42014ac30 gate 1516240826326025519 evaluation succeeds -orderer.example.com | 2018-01-18 02:00:26.329 UTC [orderer/common/sigfilter] Apply -> DEBU f73 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4202911c0 1 [0xc42014a3a8]}) %!s(*policies.implicitMetaPolicy=&{0xc420291840 1 [0xc42014a5f0 0xc42014a878]})]} -orderer.example.com | 2018-01-18 02:00:26.330 UTC [orderer/common/broadcast] Handle -> DEBU f74 [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION -orderer.example.com | 2018-01-18 02:00:26.331 UTC [policies] GetPolicy -> DEBU f75 Returning policy Writers for evaluation -orderer.example.com | 2018-01-18 02:00:26.331 UTC [cauthdsl] func1 -> DEBU f76 0xc42014ac48 gate 1516240826331671894 evaluation starts -orderer.example.com | 2018-01-18 02:00:26.331 UTC [cauthdsl] func2 -> DEBU f77 0xc42014ac48 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-18 02:00:26.331 UTC [cauthdsl] func2 -> DEBU f78 0xc42014ac48 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-18 02:00:26.332 UTC [msp/identity] newIdentity -> DEBU f79 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -orderer.example.com | AXYxULZpXYDQXt1KaLI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 02:00:26.332 UTC [cauthdsl] func2 -> DEBU f7a 0xc42014ac48 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) -orderer.example.com | 2018-01-18 02:00:26.332 UTC [cauthdsl] func2 -> DEBU f7b 0xc42014ac48 principal evaluation fails -orderer.example.com | 2018-01-18 02:00:26.332 UTC [cauthdsl] func1 -> DEBU f7c 0xc42014ac48 gate 1516240826331671894 evaluation fails -orderer.example.com | 2018-01-18 02:00:26.332 UTC [cauthdsl] func1 -> DEBU f7d 0xc42014ac58 gate 1516240826332453103 evaluation starts -orderer.example.com | 2018-01-18 02:00:26.332 UTC [cauthdsl] func2 -> DEBU f7e 0xc42014ac58 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-18 02:00:26.332 UTC [cauthdsl] func2 -> DEBU f7f 0xc42014ac58 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-18 02:00:26.332 UTC [msp/identity] newIdentity -> DEBU f80 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -orderer.example.com | AXYxULZpXYDQXt1KaLI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 02:00:26.333 UTC [cauthdsl] func2 -> DEBU f81 0xc42014ac58 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got Org2MSP) -orderer.example.com | 2018-01-18 02:00:26.333 UTC [cauthdsl] func2 -> DEBU f82 0xc42014ac58 principal evaluation fails -orderer.example.com | 2018-01-18 02:00:26.333 UTC [cauthdsl] func1 -> DEBU f83 0xc42014ac58 gate 1516240826332453103 evaluation fails -orderer.example.com | 2018-01-18 02:00:26.333 UTC [cauthdsl] func1 -> DEBU f84 0xc42014ac68 gate 1516240826333329965 evaluation starts -orderer.example.com | 2018-01-18 02:00:26.333 UTC [cauthdsl] func2 -> DEBU f85 0xc42014ac68 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-18 02:00:26.333 UTC [cauthdsl] func2 -> DEBU f86 0xc42014ac68 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-18 02:00:26.333 UTC [msp/identity] newIdentity -> DEBU f87 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -orderer.example.com | AXYxULZpXYDQXt1KaLI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 02:00:26.336 UTC [orderer/common/broadcast] Handle -> WARN f88 Error reading from stream: rpc error: code = Canceled desc = context canceled -orderer.example.com | 2018-01-18 02:00:26.336 UTC [orderer/main] func1 -> DEBU f89 Closing Broadcast stream -orderer.example.com | 2018-01-18 02:00:26.337 UTC [msp] SatisfiesPrincipal -> DEBU f8a Checking if identity satisfies MEMBER role for Org2MSP -orderer.example.com | 2018-01-18 02:00:26.337 UTC [msp] Validate -> DEBU f8b MSP Org2MSP validating identity -orderer.example.com | 2018-01-18 02:00:26.337 UTC [cauthdsl] func2 -> DEBU f8c 0xc42014ac68 principal matched by identity 0 -orderer.example.com | 2018-01-18 02:00:26.338 UTC [msp/identity] Verify -> DEBU f8d Verify: digest = 00000000 41 86 c1 8f 5d 78 6d 5b 0b a3 49 3c af bd 81 5d |A...]xm[..I<...]| -orderer.example.com | 00000010 aa 9e 24 eb 91 62 77 67 3e 0b 1a a3 87 0a 62 e8 |..$..bwg>.....b.| -orderer.example.com | 2018-01-18 02:00:26.339 UTC [msp/identity] Verify -> DEBU f8e Verify: sig = 00000000 30 44 02 20 61 5b 5f 47 d9 9c 61 24 67 7c c3 10 |0D. a[_G..a$g|..| -orderer.example.com | 00000010 de 77 61 e1 7c 05 55 ec 7c 58 af 8c 42 42 89 7a |.wa.|.U.|X..BB.z| -orderer.example.com | 00000020 1d db ea d1 02 20 0f 19 02 c4 a9 ea b6 17 28 29 |..... ........()| -orderer.example.com | 00000030 f3 eb 90 dd 3a 9e 40 36 d4 92 e5 59 8c 39 d1 f6 |....:.@6...Y.9..| -orderer.example.com | 00000040 9d 13 2a 4b 0c 90 |..*K..| -orderer.example.com | 2018-01-18 02:00:26.339 UTC [cauthdsl] func2 -> DEBU f8f 0xc42014ac68 principal evaluation succeeds for identity 0 -orderer.example.com | 2018-01-18 02:00:26.339 UTC [cauthdsl] func1 -> DEBU f90 0xc42014ac68 gate 1516240826333329965 evaluation succeeds -orderer.example.com | 2018-01-18 02:00:26.339 UTC [orderer/common/sigfilter] Apply -> DEBU f91 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4202911c0 1 [0xc42014a3a8]}) %!s(*policies.implicitMetaPolicy=&{0xc420291840 1 [0xc42014a5f0 0xc42014a878]})]} -orderer.example.com | 2018-01-18 02:00:26.340 UTC [orderer/common/blockcutter] Ordered -> DEBU f92 Enqueuing message into batch -orderer.example.com | 2018-01-18 02:00:28.348 UTC [orderer/solo] main -> DEBU f93 Batch timer expired, creating block -orderer.example.com | 2018-01-18 02:00:28.348 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU f94 retrieveBlockByNumber() - blockNum = [5] -orderer.example.com | 2018-01-18 02:00:28.348 UTC [fsblkstorage] newBlockfileStream -> DEBU f95 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[49886] -orderer.example.com | 2018-01-18 02:00:28.349 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f96 Remaining bytes=[4674], Going to peek [8] bytes -orderer.example.com | 2018-01-18 02:00:28.349 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f97 Returning blockbytes - length=[4672], placementInfo={fileNum=[0], startOffset=[49886], bytesOffset=[49888]} -orderer.example.com | 2018-01-18 02:00:28.357 UTC [orderer/multichain] addBlockSignature -> DEBU f98 &{ledgerResources:0xc420208040 chain:0xc420208da0 cutter:0xc420a51270 filters:0xc4202089e0 signer:0x1274e88 lastConfig:2 lastConfigSeq:3} -orderer.example.com | 2018-01-18 02:00:28.359 UTC [orderer/multichain] addBlockSignature -> DEBU f99 &{} -orderer.example.com | 2018-01-18 02:00:28.360 UTC [msp] GetLocalMSP -> DEBU f9a Returning existing local MSP -orderer.example.com | 2018-01-18 02:00:28.360 UTC [msp] GetDefaultSigningIdentity -> DEBU f9b Obtaining default signing identity -orderer.example.com | 2018-01-18 02:00:28.360 UTC [msp] GetLocalMSP -> DEBU f9c Returning existing local MSP -orderer.example.com | 2018-01-18 02:00:28.360 UTC [msp] GetDefaultSigningIdentity -> DEBU f9d Obtaining default signing identity -orderer.example.com | 2018-01-18 02:00:28.360 UTC [msp/identity] Sign -> DEBU f9e Sign: plaintext: 0AFA050A0A4F7264657265724D535012...4EAA05659B82E25AB8B5F70E14686F7D -orderer.example.com | 2018-01-18 02:00:28.360 UTC [msp/identity] Sign -> DEBU f9f Sign: digest: F76C3255731275255EADBB7C0048B4406FF4684ED39790721AFE4FE67BC36CC1 -orderer.example.com | 2018-01-18 02:00:28.361 UTC [msp] GetLocalMSP -> DEBU fa0 Returning existing local MSP -orderer.example.com | 2018-01-18 02:00:28.361 UTC [msp] GetDefaultSigningIdentity -> DEBU fa1 Obtaining default signing identity -orderer.example.com | 2018-01-18 02:00:28.361 UTC [orderer/multichain] addLastConfigSignature -> DEBU fa2 [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 -orderer.example.com | 2018-01-18 02:00:28.361 UTC [msp] GetLocalMSP -> DEBU fa3 Returning existing local MSP -orderer.example.com | 2018-01-18 02:00:28.361 UTC [msp] GetDefaultSigningIdentity -> DEBU fa4 Obtaining default signing identity -orderer.example.com | 2018-01-18 02:00:28.361 UTC [msp/identity] Sign -> DEBU fa5 Sign: plaintext: 08020AFA050A0A4F7264657265724D53...4EAA05659B82E25AB8B5F70E14686F7D -orderer.example.com | 2018-01-18 02:00:28.361 UTC [msp/identity] Sign -> DEBU fa6 Sign: digest: EA2FF3B9A0ABFE801A00922F42B11F81CB185585F46550AB5A38926F66CC3740 -orderer.example.com | 2018-01-18 02:00:28.381 UTC [fsblkstorage] indexBlock -> DEBU fa7 Indexing block [blockNum=6, blockHash=[]byte{0xb6, 0xc2, 0x2c, 0xe8, 0xb1, 0x4d, 0xad, 0xb5, 0xbc, 0xd7, 0x9f, 0xca, 0x1a, 0x2e, 0x40, 0x28, 0xdd, 0x17, 0xd0, 0xea, 0x49, 0x57, 0x8a, 0x25, 0x1c, 0xd, 0x93, 0xa9, 0x45, 0x57, 0xf1, 0xaa} txOffsets= -orderer.example.com | txId=ef892f35fb64f0ede0b8e75fccdd87a0b5a88e80208a6beacc5248090c895114 locPointer=offset=70, bytesLength=2855 -orderer.example.com | ] -orderer.example.com | 2018-01-18 02:00:28.381 UTC [fsblkstorage] updateCheckpoint -> DEBU fa8 Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[59235], isChainEmpty=[false], lastBlockNumber=[6] -orderer.example.com | 2018-01-18 02:00:28.382 UTC [orderer/multichain] WriteBlock -> DEBU fa9 [channel: businesschannel] Wrote block 6 -orderer.example.com | 2018-01-18 02:00:28.382 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU faa retrieveBlockByNumber() - blockNum = [6] -orderer.example.com | 2018-01-18 02:00:28.383 UTC [fsblkstorage] newBlockfileStream -> DEBU fac newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[54560] -orderer.example.com | 2018-01-18 02:00:28.383 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU fad Remaining bytes=[4675], Going to peek [8] bytes -orderer.example.com | 2018-01-18 02:00:28.384 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU fae Returning blockbytes - length=[4673], placementInfo={fileNum=[0], startOffset=[54560], bytesOffset=[54562]} -orderer.example.com | 2018-01-18 02:00:28.384 UTC [orderer/common/deliver] Handle -> DEBU faf [channel: businesschannel] Delivering block for (0xc4208701a0) -orderer.example.com | 2018-01-18 02:00:28.382 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU fab retrieveBlockByNumber() - blockNum = [6] -orderer.example.com | 2018-01-18 02:00:28.390 UTC [fsblkstorage] newBlockfileStream -> DEBU fb0 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[54560] -orderer.example.com | 2018-01-18 02:00:28.391 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU fb1 Remaining bytes=[4675], Going to peek [8] bytes -orderer.example.com | 2018-01-18 02:00:28.391 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU fb2 Returning blockbytes - length=[4673], placementInfo={fileNum=[0], startOffset=[54560], bytesOffset=[54562]} -orderer.example.com | 2018-01-18 02:00:28.392 UTC [orderer/common/deliver] Handle -> DEBU fb3 [channel: businesschannel] Delivering block for (0xc42022a4a0) -orderer.example.com | 2018-01-18 02:00:28.657 UTC [orderer/main] Deliver -> DEBU fb4 Starting new Deliver handler -orderer.example.com | 2018-01-18 02:00:28.657 UTC [orderer/common/deliver] Handle -> DEBU fb5 Starting new deliver loop -orderer.example.com | 2018-01-18 02:00:28.657 UTC [orderer/common/deliver] Handle -> DEBU fb6 Attempting to read seek info message -orderer.example.com | 2018-01-18 02:00:28.658 UTC [policies] GetPolicy -> DEBU fb7 Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 02:00:28.658 UTC [cauthdsl] func1 -> DEBU fb8 0xc42014ac90 gate 1516240828658245825 evaluation starts -orderer.example.com | 2018-01-18 02:00:28.658 UTC [cauthdsl] func2 -> DEBU fb9 0xc42014ac90 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-18 02:00:28.658 UTC [cauthdsl] func2 -> DEBU fba 0xc42014ac90 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-18 02:00:28.658 UTC [msp/identity] newIdentity -> DEBU fbb Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 02:00:28.659 UTC [msp] SatisfiesPrincipal -> DEBU fbc Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | 2018-01-18 02:00:28.659 UTC [msp] Validate -> DEBU fbd MSP OrdererMSP validating identity -orderer.example.com | 2018-01-18 02:00:28.660 UTC [cauthdsl] func2 -> DEBU fbe 0xc42014ac90 principal matched by identity 0 -orderer.example.com | 2018-01-18 02:00:28.660 UTC [msp/identity] Verify -> DEBU fbf Verify: digest = 00000000 d5 4d 4a d1 b9 89 dc 80 8b ec d0 2f bd da 9e 42 |.MJ......../...B| -orderer.example.com | 00000010 3b 65 d4 db 9f 58 dc 3e 34 19 4a f1 2c 34 11 bf |;e...X.>4.J.,4..| -orderer.example.com | 2018-01-18 02:00:28.660 UTC [msp/identity] Verify -> DEBU fc0 Verify: sig = 00000000 30 45 02 21 00 f1 56 d1 53 8b 25 9c 50 8c 40 7d |0E.!..V.S.%.P.@}| -orderer.example.com | 00000010 47 ff b1 5a df d2 67 fb 11 7a 23 a9 8c f9 1e 7b |G..Z..g..z#....{| -orderer.example.com | 00000020 35 85 4d d7 f9 02 20 13 e8 2e 13 6a e3 17 5c 27 |5.M... ....j..\'| -orderer.example.com | 00000030 13 9a a2 06 56 a6 b5 c6 2f a5 fc 8f 3d 45 3c f4 |....V.../...=E<.| -orderer.example.com | 00000040 7b 85 c5 88 02 04 24 |{.....$| -orderer.example.com | 2018-01-18 02:00:28.660 UTC [cauthdsl] func2 -> DEBU fc1 0xc42014ac90 principal evaluation succeeds for identity 0 -orderer.example.com | 2018-01-18 02:00:28.660 UTC [cauthdsl] func1 -> DEBU fc2 0xc42014ac90 gate 1516240828658245825 evaluation succeeds -orderer.example.com | 2018-01-18 02:00:28.661 UTC [orderer/common/sigfilter] Apply -> DEBU fc3 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420291360 1 [0xc42014a4b8]}) %!s(*policies.implicitMetaPolicy=&{0xc4202918c0 1 [0xc42014a548 0xc42014a820]})]} -orderer.example.com | 2018-01-18 02:00:28.661 UTC [orderer/common/deliver] Handle -> DEBU fc4 [channel: businesschannel] Received seekInfo (0xc420b24e40) start: > stop: > -orderer.example.com | 2018-01-18 02:00:28.661 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU fc5 retrieveBlockByNumber() - blockNum = [6] -orderer.example.com | 2018-01-18 02:00:28.662 UTC [fsblkstorage] newBlockfileStream -> DEBU fc6 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[54560] -orderer.example.com | 2018-01-18 02:00:28.662 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU fc7 Remaining bytes=[4675], Going to peek [8] bytes -orderer.example.com | 2018-01-18 02:00:28.662 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU fc8 Returning blockbytes - length=[4673], placementInfo={fileNum=[0], startOffset=[54560], bytesOffset=[54562]} -orderer.example.com | 2018-01-18 02:00:28.662 UTC [orderer/common/deliver] Handle -> DEBU fc9 [channel: businesschannel] Delivering block for (0xc420b24e40) -orderer.example.com | 2018-01-18 02:00:28.662 UTC [orderer/common/deliver] Handle -> DEBU fca [channel: businesschannel] Done delivering for (0xc420b24e40), waiting for new SeekInfo -orderer.example.com | 2018-01-18 02:00:28.662 UTC [orderer/common/deliver] Handle -> DEBU fcb Attempting to read seek info message -orderer.example.com | 2018-01-18 02:00:28.664 UTC [orderer/common/deliver] Handle -> WARN fcc Error reading from stream: rpc error: code = Canceled desc = context canceled -orderer.example.com | 2018-01-18 02:00:28.665 UTC [orderer/main] func1 -> DEBU fcd Closing Deliver stream -orderer.example.com | 2018-01-18 02:00:28.908 UTC [orderer/main] Deliver -> DEBU fce Starting new Deliver handler -orderer.example.com | 2018-01-18 02:00:28.908 UTC [orderer/common/deliver] Handle -> DEBU fcf Starting new deliver loop -orderer.example.com | 2018-01-18 02:00:28.908 UTC [orderer/common/deliver] Handle -> DEBU fd0 Attempting to read seek info message -orderer.example.com | 2018-01-18 02:00:28.909 UTC [policies] GetPolicy -> DEBU fd1 Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 02:00:28.909 UTC [cauthdsl] func1 -> DEBU fd2 0xc42014acd8 gate 1516240828909257257 evaluation starts -orderer.example.com | 2018-01-18 02:00:28.909 UTC [cauthdsl] func2 -> DEBU fd3 0xc42014acd8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-18 02:00:28.909 UTC [cauthdsl] func2 -> DEBU fd4 0xc42014acd8 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-18 02:00:28.909 UTC [msp/identity] newIdentity -> DEBU fd5 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 02:00:28.910 UTC [msp] SatisfiesPrincipal -> DEBU fd6 Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | 2018-01-18 02:00:28.910 UTC [msp] Validate -> DEBU fd7 MSP OrdererMSP validating identity -orderer.example.com | 2018-01-18 02:00:28.910 UTC [cauthdsl] func2 -> DEBU fd8 0xc42014acd8 principal matched by identity 0 -orderer.example.com | 2018-01-18 02:00:28.910 UTC [msp/identity] Verify -> DEBU fd9 Verify: digest = 00000000 24 cf 21 25 ee f7 a3 10 9b da 15 00 82 fd 1d 2d |$.!%...........-| -orderer.example.com | 00000010 9e d6 70 3c df bf 68 7f c9 c2 84 76 d8 c0 ea c0 |..p<..h....v....| -orderer.example.com | 2018-01-18 02:00:28.910 UTC [msp/identity] Verify -> DEBU fda Verify: sig = 00000000 30 44 02 20 18 8e 64 2d 67 99 06 2b e4 00 77 7e |0D. ..d-g..+..w~| -orderer.example.com | 00000010 f3 da fb 6c 3a 71 29 44 a2 ad a0 37 02 8f 70 f1 |...l:q)D...7..p.| -orderer.example.com | 00000020 65 d5 7f f5 02 20 1e 62 d5 5b 7b a7 ce b1 c6 99 |e.... .b.[{.....| -orderer.example.com | 00000030 74 dc 38 30 04 9c a6 2c 59 0f 9f 14 56 89 9f 0c |t.80...,Y...V...| -orderer.example.com | 00000040 1a 50 81 30 2a 23 |.P.0*#| -orderer.example.com | 2018-01-18 02:00:28.911 UTC [cauthdsl] func2 -> DEBU fdb 0xc42014acd8 principal evaluation succeeds for identity 0 -orderer.example.com | 2018-01-18 02:00:28.911 UTC [cauthdsl] func1 -> DEBU fdc 0xc42014acd8 gate 1516240828909257257 evaluation succeeds -orderer.example.com | 2018-01-18 02:00:28.911 UTC [orderer/common/sigfilter] Apply -> DEBU fdd Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420291360 1 [0xc42014a4b8]}) %!s(*policies.implicitMetaPolicy=&{0xc4202918c0 1 [0xc42014a548 0xc42014a820]})]} -orderer.example.com | 2018-01-18 02:00:28.911 UTC [orderer/common/deliver] Handle -> DEBU fde [channel: businesschannel] Received seekInfo (0xc4208dfda0) start: > stop: > -orderer.example.com | 2018-01-18 02:00:28.913 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU fdf retrieveBlockByNumber() - blockNum = [6] -orderer.example.com | 2018-01-18 02:00:28.913 UTC [fsblkstorage] newBlockfileStream -> DEBU fe0 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[54560] -orderer.example.com | 2018-01-18 02:00:28.913 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU fe1 Remaining bytes=[4675], Going to peek [8] bytes -orderer.example.com | 2018-01-18 02:00:28.913 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU fe2 Returning blockbytes - length=[4673], placementInfo={fileNum=[0], startOffset=[54560], bytesOffset=[54562]} -orderer.example.com | 2018-01-18 02:00:28.913 UTC [orderer/common/deliver] Handle -> DEBU fe3 [channel: businesschannel] Delivering block for (0xc4208dfda0) -orderer.example.com | 2018-01-18 02:00:28.914 UTC [orderer/common/deliver] Handle -> DEBU fe4 [channel: businesschannel] Done delivering for (0xc4208dfda0), waiting for new SeekInfo -orderer.example.com | 2018-01-18 02:00:28.915 UTC [orderer/common/deliver] Handle -> DEBU fe5 Attempting to read seek info message -orderer.example.com | 2018-01-18 02:00:28.917 UTC [policies] GetPolicy -> DEBU fe6 Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 02:00:28.917 UTC [cauthdsl] func1 -> DEBU fe7 0xc42014a058 gate 1516240828917345111 evaluation starts -orderer.example.com | 2018-01-18 02:00:28.917 UTC [cauthdsl] func2 -> DEBU fe8 0xc42014a058 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-18 02:00:28.917 UTC [cauthdsl] func2 -> DEBU fe9 0xc42014a058 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-18 02:00:28.917 UTC [msp/identity] newIdentity -> DEBU fea Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 02:00:28.917 UTC [msp] SatisfiesPrincipal -> DEBU feb Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | 2018-01-18 02:00:28.917 UTC [msp] Validate -> DEBU fec MSP OrdererMSP validating identity -orderer.example.com | 2018-01-18 02:00:28.918 UTC [cauthdsl] func2 -> DEBU fed 0xc42014a058 principal matched by identity 0 -orderer.example.com | 2018-01-18 02:00:28.918 UTC [msp/identity] Verify -> DEBU fee Verify: digest = 00000000 8c 69 bf 6b b0 96 b1 b5 5a 42 15 d7 ee d6 ef ac |.i.k....ZB......| -orderer.example.com | 00000010 60 83 9a 47 0a 92 4d 52 e9 33 5e 70 3b 88 27 7b |`..G..MR.3^p;.'{| -orderer.example.com | 2018-01-18 02:00:28.918 UTC [msp/identity] Verify -> DEBU fef Verify: sig = 00000000 30 44 02 20 62 e8 50 55 c9 6f 7c 61 f6 de b7 3b |0D. b.PU.o|a...;| -orderer.example.com | 00000010 31 a8 22 11 28 3a a9 1e cd a6 cc cc 7e e2 60 7c |1.".(:......~.`|| -orderer.example.com | 00000020 e4 e3 75 0b 02 20 71 9b 98 38 29 35 20 d2 ea 15 |..u.. q..8)5 ...| -orderer.example.com | 00000030 b0 f1 37 bb 58 0a 5c f1 4f ef bf 91 09 8d 71 78 |..7.X.\.O.....qx| -orderer.example.com | 00000040 18 9f 8c 7e 3e e1 |...~>.| -orderer.example.com | 2018-01-18 02:00:28.918 UTC [cauthdsl] func2 -> DEBU ff0 0xc42014a058 principal evaluation succeeds for identity 0 -orderer.example.com | 2018-01-18 02:00:28.918 UTC [cauthdsl] func1 -> DEBU ff1 0xc42014a058 gate 1516240828917345111 evaluation succeeds -orderer.example.com | 2018-01-18 02:00:28.918 UTC [orderer/common/sigfilter] Apply -> DEBU ff2 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420291360 1 [0xc42014a4b8]}) %!s(*policies.implicitMetaPolicy=&{0xc4202918c0 1 [0xc42014a548 0xc42014a820]})]} -orderer.example.com | 2018-01-18 02:00:28.918 UTC [orderer/common/deliver] Handle -> DEBU ff3 [channel: businesschannel] Received seekInfo (0xc420a781e0) start: > stop: > -orderer.example.com | 2018-01-18 02:00:28.918 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU ff4 retrieveBlockByNumber() - blockNum = [2] -orderer.example.com | 2018-01-18 02:00:28.918 UTC [fsblkstorage] newBlockfileStream -> DEBU ff5 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[25666] -orderer.example.com | 2018-01-18 02:00:28.919 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU ff6 Remaining bytes=[33569], Going to peek [8] bytes -orderer.example.com | 2018-01-18 02:00:28.919 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU ff7 Returning blockbytes - length=[13788], placementInfo={fileNum=[0], startOffset=[25666], bytesOffset=[25668]} -orderer.example.com | 2018-01-18 02:00:28.919 UTC [orderer/common/deliver] Handle -> DEBU ff8 [channel: businesschannel] Delivering block for (0xc420a781e0) -orderer.example.com | 2018-01-18 02:00:28.920 UTC [orderer/common/deliver] Handle -> DEBU ff9 [channel: businesschannel] Done delivering for (0xc420a781e0), waiting for new SeekInfo -orderer.example.com | 2018-01-18 02:00:28.920 UTC [orderer/common/deliver] Handle -> DEBU ffa Attempting to read seek info message -orderer.example.com | 2018-01-18 02:00:28.927 UTC [orderer/common/deliver] Handle -> WARN ffb Error reading from stream: rpc error: code = Canceled desc = context canceled -orderer.example.com | 2018-01-18 02:00:28.927 UTC [orderer/main] func1 -> DEBU ffc Closing Deliver stream -orderer.example.com | 2018-01-18 02:00:29.070 UTC [orderer/main] Deliver -> DEBU ffd Starting new Deliver handler -orderer.example.com | 2018-01-18 02:00:29.070 UTC [orderer/common/deliver] Handle -> DEBU ffe Starting new deliver loop -orderer.example.com | 2018-01-18 02:00:29.070 UTC [orderer/common/deliver] Handle -> DEBU fff Attempting to read seek info message -orderer.example.com | 2018-01-18 02:00:29.071 UTC [policies] GetPolicy -> DEBU 1000 Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 02:00:29.071 UTC [cauthdsl] func1 -> DEBU 1001 0xc420026028 gate 1516240829071903393 evaluation starts -orderer.example.com | 2018-01-18 02:00:29.071 UTC [cauthdsl] func2 -> DEBU 1002 0xc420026028 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-18 02:00:29.071 UTC [cauthdsl] func2 -> DEBU 1003 0xc420026028 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-18 02:00:29.072 UTC [msp/identity] newIdentity -> DEBU 1004 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 02:00:29.072 UTC [msp] SatisfiesPrincipal -> DEBU 1005 Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | 2018-01-18 02:00:29.072 UTC [msp] Validate -> DEBU 1006 MSP OrdererMSP validating identity -orderer.example.com | 2018-01-18 02:00:29.072 UTC [cauthdsl] func2 -> DEBU 1007 0xc420026028 principal matched by identity 0 -orderer.example.com | 2018-01-18 02:00:29.072 UTC [msp/identity] Verify -> DEBU 1008 Verify: digest = 00000000 65 12 3c 11 a2 4e 86 a8 47 e7 76 6f 87 c2 b3 38 |e.<..N..G.vo...8| -orderer.example.com | 00000010 6c e2 3c e9 4d 71 09 4e ab d3 05 84 fa 51 4b 22 |l.<.Mq.N.....QK"| -orderer.example.com | 2018-01-18 02:00:29.072 UTC [msp/identity] Verify -> DEBU 1009 Verify: sig = 00000000 30 44 02 20 12 62 19 57 d6 a2 92 51 d8 15 48 a1 |0D. .b.W...Q..H.| -orderer.example.com | 00000010 ad 02 9c 2d 0c 9f c6 de 9f e6 0a 87 83 f5 43 c0 |...-..........C.| -orderer.example.com | 00000020 64 ff 8d 7a 02 20 45 07 0e f6 77 03 43 f9 63 dd |d..z. E...w.C.c.| -orderer.example.com | 00000030 fd 1b ab 6b 7d 57 59 f6 da 89 58 f4 37 51 1a 62 |...k}WY...X.7Q.b| -orderer.example.com | 00000040 74 52 3c fb 59 2d |tR<.Y-| -orderer.example.com | 2018-01-18 02:00:29.072 UTC [cauthdsl] func2 -> DEBU 100a 0xc420026028 principal evaluation succeeds for identity 0 -orderer.example.com | 2018-01-18 02:00:29.072 UTC [cauthdsl] func1 -> DEBU 100b 0xc420026028 gate 1516240829071903393 evaluation succeeds -orderer.example.com | 2018-01-18 02:00:29.072 UTC [orderer/common/sigfilter] Apply -> DEBU 100c Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420291360 1 [0xc42014a4b8]}) %!s(*policies.implicitMetaPolicy=&{0xc4202918c0 1 [0xc42014a548 0xc42014a820]})]} -orderer.example.com | 2018-01-18 02:00:29.072 UTC [orderer/common/deliver] Handle -> DEBU 100d [channel: businesschannel] Received seekInfo (0xc420b24280) start: > stop: > -orderer.example.com | 2018-01-18 02:00:29.072 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 100e retrieveBlockByNumber() - blockNum = [0] -orderer.example.com | 2018-01-18 02:00:29.072 UTC [fsblkstorage] newBlockfileStream -> DEBU 100f newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] -orderer.example.com | 2018-01-18 02:00:29.072 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 1010 Remaining bytes=[59235], Going to peek [8] bytes -orderer.example.com | 2018-01-18 02:00:29.073 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 1011 Returning blockbytes - length=[11932], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -orderer.example.com | 2018-01-18 02:00:29.073 UTC [orderer/common/deliver] Handle -> DEBU 1012 [channel: businesschannel] Delivering block for (0xc420b24280) -orderer.example.com | 2018-01-18 02:00:29.073 UTC [orderer/common/deliver] Handle -> DEBU 1013 [channel: businesschannel] Done delivering for (0xc420b24280), waiting for new SeekInfo -orderer.example.com | 2018-01-18 02:00:29.073 UTC [orderer/common/deliver] Handle -> DEBU 1014 Attempting to read seek info message -orderer.example.com | 2018-01-18 02:00:29.077 UTC [orderer/common/deliver] Handle -> WARN 1015 Error reading from stream: rpc error: code = Canceled desc = context canceled -orderer.example.com | 2018-01-18 02:00:29.077 UTC [orderer/main] func1 -> DEBU 1016 Closing Deliver stream -orderer.example.com | 2018-01-18 02:00:29.287 UTC [orderer/main] Deliver -> DEBU 1017 Starting new Deliver handler -orderer.example.com | 2018-01-18 02:00:29.287 UTC [orderer/common/deliver] Handle -> DEBU 1018 Starting new deliver loop -orderer.example.com | 2018-01-18 02:00:29.287 UTC [orderer/common/deliver] Handle -> DEBU 1019 Attempting to read seek info message -orderer.example.com | 2018-01-18 02:00:29.288 UTC [policies] GetPolicy -> DEBU 101a Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 02:00:29.288 UTC [cauthdsl] func1 -> DEBU 101b 0xc42014a5a0 gate 1516240829288989595 evaluation starts -orderer.example.com | 2018-01-18 02:00:29.289 UTC [cauthdsl] func2 -> DEBU 101c 0xc42014a5a0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-18 02:00:29.289 UTC [cauthdsl] func2 -> DEBU 101d 0xc42014a5a0 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-18 02:00:29.289 UTC [msp/identity] newIdentity -> DEBU 101e Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 02:00:29.289 UTC [msp] SatisfiesPrincipal -> DEBU 101f Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | 2018-01-18 02:00:29.289 UTC [msp] Validate -> DEBU 1020 MSP OrdererMSP validating identity -orderer.example.com | 2018-01-18 02:00:29.289 UTC [cauthdsl] func2 -> DEBU 1021 0xc42014a5a0 principal matched by identity 0 -orderer.example.com | 2018-01-18 02:00:29.289 UTC [msp/identity] Verify -> DEBU 1022 Verify: digest = 00000000 b2 35 16 42 a6 c3 55 da 5e 38 bf b6 92 11 5a b5 |.5.B..U.^8....Z.| -orderer.example.com | 00000010 e9 0b a8 43 2c b0 ec 10 30 2a 40 60 b2 3f 38 a7 |...C,...0*@`.?8.| -orderer.example.com | 2018-01-18 02:00:29.289 UTC [msp/identity] Verify -> DEBU 1023 Verify: sig = 00000000 30 44 02 20 5b 10 e4 02 04 6a 48 6c 35 0d ef 13 |0D. [....jHl5...| -orderer.example.com | 00000010 4b fe 22 60 06 ac c7 60 4a 3d 90 86 69 60 17 eb |K."`...`J=..i`..| -orderer.example.com | 00000020 89 80 08 45 02 20 2c 6e 08 bc 97 18 ac ca 3d a1 |...E. ,n......=.| -orderer.example.com | 00000030 0a e2 7d fa 37 82 dd fa 53 aa e8 b7 3f 8d f2 eb |..}.7...S...?...| -orderer.example.com | 00000040 60 7d 93 d2 80 ad |`}....| -orderer.example.com | 2018-01-18 02:00:29.290 UTC [cauthdsl] func2 -> DEBU 1024 0xc42014a5a0 principal evaluation succeeds for identity 0 -orderer.example.com | 2018-01-18 02:00:29.290 UTC [cauthdsl] func1 -> DEBU 1025 0xc42014a5a0 gate 1516240829288989595 evaluation succeeds -orderer.example.com | 2018-01-18 02:00:29.290 UTC [orderer/common/sigfilter] Apply -> DEBU 1026 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420291360 1 [0xc42014a4b8]}) %!s(*policies.implicitMetaPolicy=&{0xc4202918c0 1 [0xc42014a548 0xc42014a820]})]} -orderer.example.com | 2018-01-18 02:00:29.290 UTC [orderer/common/deliver] Handle -> DEBU 1027 [channel: businesschannel] Received seekInfo (0xc42090bde0) start: > stop: > -orderer.example.com | 2018-01-18 02:00:29.290 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 1028 retrieveBlockByNumber() - blockNum = [1] -orderer.example.com | 2018-01-18 02:00:29.290 UTC [fsblkstorage] newBlockfileStream -> DEBU 1029 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[11934] -orderer.example.com | 2018-01-18 02:00:29.290 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 102a Remaining bytes=[47301], Going to peek [8] bytes -orderer.example.com | 2018-01-18 02:00:29.290 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 102b Returning blockbytes - length=[13730], placementInfo={fileNum=[0], startOffset=[11934], bytesOffset=[11936]} -orderer.example.com | 2018-01-18 02:00:29.290 UTC [orderer/common/deliver] Handle -> DEBU 102c [channel: businesschannel] Delivering block for (0xc42090bde0) -orderer.example.com | 2018-01-18 02:00:29.290 UTC [orderer/common/deliver] Handle -> DEBU 102d [channel: businesschannel] Done delivering for (0xc42090bde0), waiting for new SeekInfo -orderer.example.com | 2018-01-18 02:00:29.290 UTC [orderer/common/deliver] Handle -> DEBU 102e Attempting to read seek info message -orderer.example.com | 2018-01-18 02:00:29.298 UTC [orderer/common/deliver] Handle -> WARN 102f Error reading from stream: rpc error: code = Canceled desc = context canceled -orderer.example.com | 2018-01-18 02:00:29.298 UTC [orderer/main] func1 -> DEBU 1030 Closing Deliver stream -orderer.example.com | 2018-01-18 02:00:29.451 UTC [orderer/main] Deliver -> DEBU 1031 Starting new Deliver handler -orderer.example.com | 2018-01-18 02:00:29.452 UTC [orderer/common/deliver] Handle -> DEBU 1032 Starting new deliver loop -orderer.example.com | 2018-01-18 02:00:29.452 UTC [orderer/common/deliver] Handle -> DEBU 1033 Attempting to read seek info message -orderer.example.com | 2018-01-18 02:00:29.452 UTC [policies] GetPolicy -> DEBU 1034 Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 02:00:29.453 UTC [cauthdsl] func1 -> DEBU 1035 0xc4200260b0 gate 1516240829453047126 evaluation starts -orderer.example.com | 2018-01-18 02:00:29.453 UTC [cauthdsl] func2 -> DEBU 1036 0xc4200260b0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-18 02:00:29.453 UTC [cauthdsl] func2 -> DEBU 1037 0xc4200260b0 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-18 02:00:29.453 UTC [msp/identity] newIdentity -> DEBU 1038 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 02:00:29.454 UTC [msp] SatisfiesPrincipal -> DEBU 1039 Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | 2018-01-18 02:00:29.454 UTC [msp] Validate -> DEBU 103a MSP OrdererMSP validating identity -orderer.example.com | 2018-01-18 02:00:29.454 UTC [cauthdsl] func2 -> DEBU 103b 0xc4200260b0 principal matched by identity 0 -orderer.example.com | 2018-01-18 02:00:29.454 UTC [msp/identity] Verify -> DEBU 103c Verify: digest = 00000000 d0 f7 c7 01 35 76 09 54 7d c9 2e f5 26 77 ae 06 |....5v.T}...&w..| -orderer.example.com | 00000010 50 e2 fa 60 1c 12 ce 17 33 02 b0 8d 0c 55 8e 98 |P..`....3....U..| -orderer.example.com | 2018-01-18 02:00:29.454 UTC [msp/identity] Verify -> DEBU 103d Verify: sig = 00000000 30 44 02 20 72 01 bc fb 21 09 19 9c 3d 75 b3 a4 |0D. r...!...=u..| -orderer.example.com | 00000010 12 9e bd 2f af 50 80 4c a0 ef f9 67 16 b7 c1 55 |.../.P.L...g...U| -orderer.example.com | 00000020 1f 0a 16 9a 02 20 66 06 9a 72 e2 fd 4e 8e 9c 75 |..... f..r..N..u| -orderer.example.com | 00000030 47 f7 af 11 10 67 ef c7 c6 24 f1 87 a9 af 88 fc |G....g...$......| -orderer.example.com | 00000040 78 70 a8 75 1b e3 |xp.u..| -orderer.example.com | 2018-01-18 02:00:29.454 UTC [cauthdsl] func2 -> DEBU 103e 0xc4200260b0 principal evaluation succeeds for identity 0 -orderer.example.com | 2018-01-18 02:00:29.454 UTC [cauthdsl] func1 -> DEBU 103f 0xc4200260b0 gate 1516240829453047126 evaluation succeeds -orderer.example.com | 2018-01-18 02:00:29.454 UTC [orderer/common/sigfilter] Apply -> DEBU 1040 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420291360 1 [0xc42014a4b8]}) %!s(*policies.implicitMetaPolicy=&{0xc4202918c0 1 [0xc42014a548 0xc42014a820]})]} -orderer.example.com | 2018-01-18 02:00:29.454 UTC [orderer/common/deliver] Handle -> DEBU 1041 [channel: businesschannel] Received seekInfo (0xc420273fc0) start: > stop: > -orderer.example.com | 2018-01-18 02:00:29.454 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 1042 retrieveBlockByNumber() - blockNum = [2] -orderer.example.com | 2018-01-18 02:00:29.454 UTC [fsblkstorage] newBlockfileStream -> DEBU 1043 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[25666] -orderer.example.com | 2018-01-18 02:00:29.455 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 1044 Remaining bytes=[33569], Going to peek [8] bytes -orderer.example.com | 2018-01-18 02:00:29.455 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 1045 Returning blockbytes - length=[13788], placementInfo={fileNum=[0], startOffset=[25666], bytesOffset=[25668]} -orderer.example.com | 2018-01-18 02:00:29.455 UTC [orderer/common/deliver] Handle -> DEBU 1046 [channel: businesschannel] Delivering block for (0xc420273fc0) -orderer.example.com | 2018-01-18 02:00:29.455 UTC [orderer/common/deliver] Handle -> DEBU 1047 [channel: businesschannel] Done delivering for (0xc420273fc0), waiting for new SeekInfo -orderer.example.com | 2018-01-18 02:00:29.455 UTC [orderer/common/deliver] Handle -> DEBU 1048 Attempting to read seek info message -orderer.example.com | 2018-01-18 02:00:29.460 UTC [orderer/common/deliver] Handle -> WARN 1049 Error reading from stream: rpc error: code = Canceled desc = context canceled -orderer.example.com | 2018-01-18 02:00:29.460 UTC [orderer/main] func1 -> DEBU 104a Closing Deliver stream -orderer.example.com | 2018-01-18 02:00:29.603 UTC [orderer/main] Deliver -> DEBU 104b Starting new Deliver handler -orderer.example.com | 2018-01-18 02:00:29.603 UTC [orderer/common/deliver] Handle -> DEBU 104c Starting new deliver loop -orderer.example.com | 2018-01-18 02:00:29.604 UTC [orderer/common/deliver] Handle -> DEBU 104d Attempting to read seek info message -orderer.example.com | 2018-01-18 02:00:29.605 UTC [policies] GetPolicy -> DEBU 104e Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 02:00:29.605 UTC [cauthdsl] func1 -> DEBU 104f 0xc42014a908 gate 1516240829605264679 evaluation starts -orderer.example.com | 2018-01-18 02:00:29.605 UTC [cauthdsl] func2 -> DEBU 1050 0xc42014a908 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-18 02:00:29.605 UTC [cauthdsl] func2 -> DEBU 1051 0xc42014a908 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-18 02:00:29.605 UTC [msp/identity] newIdentity -> DEBU 1052 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 02:00:29.605 UTC [msp] SatisfiesPrincipal -> DEBU 1053 Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | 2018-01-18 02:00:29.606 UTC [msp] Validate -> DEBU 1054 MSP OrdererMSP validating identity -orderer.example.com | 2018-01-18 02:00:29.606 UTC [cauthdsl] func2 -> DEBU 1055 0xc42014a908 principal matched by identity 0 -orderer.example.com | 2018-01-18 02:00:29.606 UTC [msp/identity] Verify -> DEBU 1056 Verify: digest = 00000000 cf f0 f4 40 7b 2e 13 9c 5f 1a 6f ec 5e 65 d7 5d |...@{..._.o.^e.]| -orderer.example.com | 00000010 7d 41 c6 a9 5c 1a f5 6d 46 b4 7a a0 33 7b b7 b6 |}A..\..mF.z.3{..| -orderer.example.com | 2018-01-18 02:00:29.606 UTC [msp/identity] Verify -> DEBU 1057 Verify: sig = 00000000 30 44 02 20 5d 91 28 c5 cb 5a 50 d9 9c 32 71 e1 |0D. ].(..ZP..2q.| -orderer.example.com | 00000010 cd c8 58 2d f6 82 3b 56 a4 a1 2a fe 5e 3b 2a b1 |..X-..;V..*.^;*.| -orderer.example.com | 00000020 5b f3 86 fd 02 20 15 a4 91 72 a6 24 db 44 84 aa |[.... ...r.$.D..| -orderer.example.com | 00000030 56 38 86 0d 1a 2f f4 06 e1 51 23 d4 f3 08 e7 06 |V8.../...Q#.....| -orderer.example.com | 00000040 49 b8 22 d4 f5 36 |I."..6| -orderer.example.com | 2018-01-18 02:00:29.606 UTC [cauthdsl] func2 -> DEBU 1058 0xc42014a908 principal evaluation succeeds for identity 0 -orderer.example.com | 2018-01-18 02:00:29.606 UTC [cauthdsl] func1 -> DEBU 1059 0xc42014a908 gate 1516240829605264679 evaluation succeeds -orderer.example.com | 2018-01-18 02:00:29.606 UTC [orderer/common/sigfilter] Apply -> DEBU 105a Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420291360 1 [0xc42014a4b8]}) %!s(*policies.implicitMetaPolicy=&{0xc4202918c0 1 [0xc42014a548 0xc42014a820]})]} -orderer.example.com | 2018-01-18 02:00:29.606 UTC [orderer/common/deliver] Handle -> DEBU 105b [channel: businesschannel] Received seekInfo (0xc420222b80) start: > stop: > -orderer.example.com | 2018-01-18 02:00:29.606 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 105c retrieveBlockByNumber() - blockNum = [3] -orderer.example.com | 2018-01-18 02:00:29.606 UTC [fsblkstorage] newBlockfileStream -> DEBU 105d newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[39456] -orderer.example.com | 2018-01-18 02:00:29.606 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 105e Remaining bytes=[19779], Going to peek [8] bytes -orderer.example.com | 2018-01-18 02:00:29.606 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 105f Returning blockbytes - length=[5213], placementInfo={fileNum=[0], startOffset=[39456], bytesOffset=[39458]} -orderer.example.com | 2018-01-18 02:00:29.607 UTC [orderer/common/deliver] Handle -> DEBU 1060 [channel: businesschannel] Delivering block for (0xc420222b80) -orderer.example.com | 2018-01-18 02:00:29.607 UTC [orderer/common/deliver] Handle -> DEBU 1061 [channel: businesschannel] Done delivering for (0xc420222b80), waiting for new SeekInfo -orderer.example.com | 2018-01-18 02:00:29.607 UTC [orderer/common/deliver] Handle -> DEBU 1062 Attempting to read seek info message -orderer.example.com | 2018-01-18 02:00:29.612 UTC [orderer/common/deliver] Handle -> WARN 1063 Error reading from stream: rpc error: code = Canceled desc = context canceled -orderer.example.com | 2018-01-18 02:00:29.612 UTC [orderer/main] func1 -> DEBU 1064 Closing Deliver stream -orderer.example.com | 2018-01-18 02:00:29.767 UTC [orderer/main] Deliver -> DEBU 1065 Starting new Deliver handler -orderer.example.com | 2018-01-18 02:00:29.767 UTC [orderer/common/deliver] Handle -> DEBU 1066 Starting new deliver loop -orderer.example.com | 2018-01-18 02:00:29.767 UTC [orderer/common/deliver] Handle -> DEBU 1067 Attempting to read seek info message -orderer.example.com | 2018-01-18 02:00:29.767 UTC [policies] GetPolicy -> DEBU 1068 Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 02:00:29.768 UTC [cauthdsl] func1 -> DEBU 1069 0xc420026230 gate 1516240829768055043 evaluation starts -orderer.example.com | 2018-01-18 02:00:29.768 UTC [cauthdsl] func2 -> DEBU 106a 0xc420026230 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-18 02:00:29.768 UTC [cauthdsl] func2 -> DEBU 106b 0xc420026230 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-18 02:00:29.768 UTC [msp/identity] newIdentity -> DEBU 106c Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 02:00:29.768 UTC [msp] SatisfiesPrincipal -> DEBU 106d Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | 2018-01-18 02:00:29.768 UTC [msp] Validate -> DEBU 106e MSP OrdererMSP validating identity -orderer.example.com | 2018-01-18 02:00:29.769 UTC [cauthdsl] func2 -> DEBU 106f 0xc420026230 principal matched by identity 0 -orderer.example.com | 2018-01-18 02:00:29.769 UTC [msp/identity] Verify -> DEBU 1070 Verify: digest = 00000000 06 a7 1f 00 2b f6 e7 74 8d de c7 27 25 ac e1 9c |....+..t...'%...| -orderer.example.com | 00000010 77 c8 01 96 8f bd 89 cd d3 fc de f8 c5 00 22 e5 |w.............".| -orderer.example.com | 2018-01-18 02:00:29.769 UTC [msp/identity] Verify -> DEBU 1071 Verify: sig = 00000000 30 44 02 20 4f 63 98 0f 46 6a 7a 54 d4 fd 50 2b |0D. Oc..FjzT..P+| -orderer.example.com | 00000010 80 81 9e cb 4b f5 2c 07 75 59 ee 0e cc b6 64 ab |....K.,.uY....d.| -orderer.example.com | 00000020 2b 62 5e 43 02 20 63 68 a9 b0 d0 7f 49 65 6d 67 |+b^C. ch....Iemg| -orderer.example.com | 00000030 3a 7a f8 f7 43 44 5f a2 ca 79 ba 79 92 3e 4f 3d |:z..CD_..y.y.>O=| -orderer.example.com | 00000040 66 6a 87 ce a0 bb |fj....| -orderer.example.com | 2018-01-18 02:00:29.769 UTC [cauthdsl] func2 -> DEBU 1072 0xc420026230 principal evaluation succeeds for identity 0 -orderer.example.com | 2018-01-18 02:00:29.769 UTC [cauthdsl] func1 -> DEBU 1073 0xc420026230 gate 1516240829768055043 evaluation succeeds -orderer.example.com | 2018-01-18 02:00:29.769 UTC [orderer/common/sigfilter] Apply -> DEBU 1074 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420291360 1 [0xc42014a4b8]}) %!s(*policies.implicitMetaPolicy=&{0xc4202918c0 1 [0xc42014a548 0xc42014a820]})]} -orderer.example.com | 2018-01-18 02:00:29.769 UTC [orderer/common/deliver] Handle -> DEBU 1075 [channel: businesschannel] Received seekInfo (0xc42033d620) start: > stop: > -orderer.example.com | 2018-01-18 02:00:29.769 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 1076 retrieveBlockByNumber() - blockNum = [4] -orderer.example.com | 2018-01-18 02:00:29.769 UTC [fsblkstorage] newBlockfileStream -> DEBU 1077 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[44671] -orderer.example.com | 2018-01-18 02:00:29.769 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 1078 Remaining bytes=[14564], Going to peek [8] bytes -orderer.example.com | 2018-01-18 02:00:29.769 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 1079 Returning blockbytes - length=[5213], placementInfo={fileNum=[0], startOffset=[44671], bytesOffset=[44673]} -orderer.example.com | 2018-01-18 02:00:29.769 UTC [orderer/common/deliver] Handle -> DEBU 107a [channel: businesschannel] Delivering block for (0xc42033d620) -orderer.example.com | 2018-01-18 02:00:29.770 UTC [orderer/common/deliver] Handle -> DEBU 107b [channel: businesschannel] Done delivering for (0xc42033d620), waiting for new SeekInfo -orderer.example.com | 2018-01-18 02:00:29.770 UTC [orderer/common/deliver] Handle -> DEBU 107c Attempting to read seek info message -orderer.example.com | 2018-01-18 02:00:29.776 UTC [orderer/common/deliver] Handle -> WARN 107d Error reading from stream: rpc error: code = Canceled desc = context canceled -orderer.example.com | 2018-01-18 02:00:29.776 UTC [orderer/main] func1 -> DEBU 107e Closing Deliver stream -orderer.example.com | 2018-01-18 02:00:29.994 UTC [orderer/main] Deliver -> DEBU 107f Starting new Deliver handler -orderer.example.com | 2018-01-18 02:00:29.994 UTC [orderer/common/deliver] Handle -> DEBU 1080 Starting new deliver loop -orderer.example.com | 2018-01-18 02:00:29.994 UTC [orderer/common/deliver] Handle -> DEBU 1081 Attempting to read seek info message -orderer.example.com | 2018-01-18 02:00:29.995 UTC [policies] GetPolicy -> DEBU 1082 Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 02:00:29.996 UTC [cauthdsl] func1 -> DEBU 1083 0xc42014a988 gate 1516240829995996615 evaluation starts -orderer.example.com | 2018-01-18 02:00:29.996 UTC [cauthdsl] func2 -> DEBU 1084 0xc42014a988 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-18 02:00:29.996 UTC [cauthdsl] func2 -> DEBU 1085 0xc42014a988 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-18 02:00:29.996 UTC [msp/identity] newIdentity -> DEBU 1086 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 02:00:29.996 UTC [msp] SatisfiesPrincipal -> DEBU 1087 Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | 2018-01-18 02:00:29.997 UTC [msp] Validate -> DEBU 1088 MSP OrdererMSP validating identity -orderer.example.com | 2018-01-18 02:00:29.997 UTC [cauthdsl] func2 -> DEBU 1089 0xc42014a988 principal matched by identity 0 -orderer.example.com | 2018-01-18 02:00:29.997 UTC [msp/identity] Verify -> DEBU 108a Verify: digest = 00000000 57 9a 8a 18 5d 01 a7 a0 23 d9 83 80 c7 fa 1b 75 |W...]...#......u| -orderer.example.com | 00000010 b5 cb 4d d5 cb 4f 9c 03 1a 35 4c 90 a4 f4 01 68 |..M..O...5L....h| -orderer.example.com | 2018-01-18 02:00:29.997 UTC [msp/identity] Verify -> DEBU 108b Verify: sig = 00000000 30 44 02 20 4e 54 52 55 0d f7 74 76 69 46 13 56 |0D. NTRU..tviF.V| -orderer.example.com | 00000010 9d f2 a0 de af 46 87 ac b5 fc 32 b2 e4 04 b8 de |.....F....2.....| -orderer.example.com | 00000020 ca 94 ea b7 02 20 56 d2 95 b1 ae d6 ad 7a 5a 84 |..... V......zZ.| -orderer.example.com | 00000030 ef 0c fd 4d ec e6 79 4c 03 b8 a5 19 66 44 a7 84 |...M..yL....fD..| -orderer.example.com | 00000040 c4 c1 bf 4e 97 a0 |...N..| -orderer.example.com | 2018-01-18 02:00:29.997 UTC [cauthdsl] func2 -> DEBU 108c 0xc42014a988 principal evaluation succeeds for identity 0 -orderer.example.com | 2018-01-18 02:00:29.997 UTC [cauthdsl] func1 -> DEBU 108d 0xc42014a988 gate 1516240829995996615 evaluation succeeds -orderer.example.com | 2018-01-18 02:00:29.997 UTC [orderer/common/sigfilter] Apply -> DEBU 108e Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420291360 1 [0xc42014a4b8]}) %!s(*policies.implicitMetaPolicy=&{0xc4202918c0 1 [0xc42014a548 0xc42014a820]})]} -orderer.example.com | 2018-01-18 02:00:29.997 UTC [orderer/common/deliver] Handle -> DEBU 108f [channel: businesschannel] Received seekInfo (0xc4209f2720) start: > stop: > -orderer.example.com | 2018-01-18 02:00:29.997 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 1090 retrieveBlockByNumber() - blockNum = [5] -orderer.example.com | 2018-01-18 02:00:29.997 UTC [fsblkstorage] newBlockfileStream -> DEBU 1091 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[49886] -orderer.example.com | 2018-01-18 02:00:29.997 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 1092 Remaining bytes=[9349], Going to peek [8] bytes -orderer.example.com | 2018-01-18 02:00:29.997 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 1093 Returning blockbytes - length=[4672], placementInfo={fileNum=[0], startOffset=[49886], bytesOffset=[49888]} -orderer.example.com | 2018-01-18 02:00:29.998 UTC [orderer/common/deliver] Handle -> DEBU 1094 [channel: businesschannel] Delivering block for (0xc4209f2720) -orderer.example.com | 2018-01-18 02:00:29.998 UTC [orderer/common/deliver] Handle -> DEBU 1095 [channel: businesschannel] Done delivering for (0xc4209f2720), waiting for new SeekInfo -orderer.example.com | 2018-01-18 02:00:29.998 UTC [orderer/common/deliver] Handle -> DEBU 1096 Attempting to read seek info message -orderer.example.com | 2018-01-18 02:00:30.003 UTC [orderer/common/deliver] Handle -> WARN 1097 Error reading from stream: rpc error: code = Canceled desc = context canceled -orderer.example.com | 2018-01-18 02:00:30.003 UTC [orderer/main] func1 -> DEBU 1098 Closing Deliver stream -orderer.example.com | 2018-01-18 02:00:30.160 UTC [orderer/main] Deliver -> DEBU 1099 Starting new Deliver handler -orderer.example.com | 2018-01-18 02:00:30.160 UTC [orderer/common/deliver] Handle -> DEBU 109a Starting new deliver loop -orderer.example.com | 2018-01-18 02:00:30.160 UTC [orderer/common/deliver] Handle -> DEBU 109b Attempting to read seek info message -orderer.example.com | 2018-01-18 02:00:30.161 UTC [policies] GetPolicy -> DEBU 109c Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 02:00:30.161 UTC [cauthdsl] func1 -> DEBU 109d 0xc420026288 gate 1516240830161826659 evaluation starts -orderer.example.com | 2018-01-18 02:00:30.161 UTC [cauthdsl] func2 -> DEBU 109e 0xc420026288 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-18 02:00:30.161 UTC [cauthdsl] func2 -> DEBU 109f 0xc420026288 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-18 02:00:30.162 UTC [msp/identity] newIdentity -> DEBU 10a0 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 02:00:30.162 UTC [msp] SatisfiesPrincipal -> DEBU 10a1 Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | 2018-01-18 02:00:30.162 UTC [msp] Validate -> DEBU 10a2 MSP OrdererMSP validating identity -orderer.example.com | 2018-01-18 02:00:30.162 UTC [cauthdsl] func2 -> DEBU 10a3 0xc420026288 principal matched by identity 0 -orderer.example.com | 2018-01-18 02:00:30.162 UTC [msp/identity] Verify -> DEBU 10a4 Verify: digest = 00000000 0b aa 3f dc eb 56 96 9f f1 e4 39 16 7f 15 c9 75 |..?..V....9....u| -orderer.example.com | 00000010 da d2 14 f0 d5 e4 aa 10 99 2a 07 3d 67 c8 7b 68 |.........*.=g.{h| -orderer.example.com | 2018-01-18 02:00:30.162 UTC [msp/identity] Verify -> DEBU 10a5 Verify: sig = 00000000 30 44 02 20 32 43 4c 3b 79 f9 a7 74 88 26 dc ca |0D. 2CL;y..t.&..| -orderer.example.com | 00000010 20 90 b0 33 d9 db 63 34 22 86 e1 a6 38 dd 89 3b | ..3..c4"...8..;| -orderer.example.com | 00000020 b4 10 e9 6f 02 20 0d e4 23 a1 dc 54 3b 7a 9f ae |...o. ..#..T;z..| -orderer.example.com | 00000030 02 72 56 94 82 7e af 86 dd a7 30 59 8a 42 bb 47 |.rV..~....0Y.B.G| -orderer.example.com | 00000040 31 25 d4 09 e6 a5 |1%....| -orderer.example.com | 2018-01-18 02:00:30.163 UTC [cauthdsl] func2 -> DEBU 10a6 0xc420026288 principal evaluation succeeds for identity 0 -orderer.example.com | 2018-01-18 02:00:30.163 UTC [cauthdsl] func1 -> DEBU 10a7 0xc420026288 gate 1516240830161826659 evaluation succeeds -orderer.example.com | 2018-01-18 02:00:30.163 UTC [orderer/common/sigfilter] Apply -> DEBU 10a8 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420291360 1 [0xc42014a4b8]}) %!s(*policies.implicitMetaPolicy=&{0xc4202918c0 1 [0xc42014a548 0xc42014a820]})]} -orderer.example.com | 2018-01-18 02:00:30.163 UTC [orderer/common/deliver] Handle -> DEBU 10a9 [channel: businesschannel] Received seekInfo (0xc420af0640) start: > stop: > -orderer.example.com | 2018-01-18 02:00:30.163 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 10aa retrieveBlockByNumber() - blockNum = [6] -orderer.example.com | 2018-01-18 02:00:30.163 UTC [fsblkstorage] newBlockfileStream -> DEBU 10ab newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[54560] -orderer.example.com | 2018-01-18 02:00:30.163 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 10ac Remaining bytes=[4675], Going to peek [8] bytes -orderer.example.com | 2018-01-18 02:00:30.163 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 10ad Returning blockbytes - length=[4673], placementInfo={fileNum=[0], startOffset=[54560], bytesOffset=[54562]} -orderer.example.com | 2018-01-18 02:00:30.163 UTC [orderer/common/deliver] Handle -> DEBU 10ae [channel: businesschannel] Delivering block for (0xc420af0640) -orderer.example.com | 2018-01-18 02:00:30.164 UTC [orderer/common/deliver] Handle -> DEBU 10af [channel: businesschannel] Done delivering for (0xc420af0640), waiting for new SeekInfo -orderer.example.com | 2018-01-18 02:00:30.164 UTC [orderer/common/deliver] Handle -> DEBU 10b0 Attempting to read seek info message -orderer.example.com | 2018-01-18 02:00:30.171 UTC [orderer/common/deliver] Handle -> WARN 10b1 Error reading from stream: rpc error: code = Canceled desc = context canceled -orderer.example.com | 2018-01-18 02:00:30.171 UTC [orderer/main] func1 -> DEBU 10b2 Closing Deliver stream -orderer.example.com | 2018-01-18 02:00:30.340 UTC [orderer/main] Deliver -> DEBU 10b3 Starting new Deliver handler -orderer.example.com | 2018-01-18 02:00:30.340 UTC [orderer/common/deliver] Handle -> DEBU 10b4 Starting new deliver loop -orderer.example.com | 2018-01-18 02:00:30.340 UTC [orderer/common/deliver] Handle -> DEBU 10b5 Attempting to read seek info message -orderer.example.com | 2018-01-18 02:00:30.341 UTC [policies] GetPolicy -> DEBU 10b6 Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 02:00:30.341 UTC [cauthdsl] func1 -> DEBU 10b7 0xc42014a9f8 gate 1516240830341505074 evaluation starts -orderer.example.com | 2018-01-18 02:00:30.341 UTC [cauthdsl] func2 -> DEBU 10b8 0xc42014a9f8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-18 02:00:30.341 UTC [cauthdsl] func2 -> DEBU 10b9 0xc42014a9f8 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-18 02:00:30.342 UTC [msp/identity] newIdentity -> DEBU 10ba Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 02:00:30.342 UTC [msp] SatisfiesPrincipal -> DEBU 10bb Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | 2018-01-18 02:00:30.342 UTC [msp] Validate -> DEBU 10bc MSP OrdererMSP validating identity -orderer.example.com | 2018-01-18 02:00:30.342 UTC [cauthdsl] func2 -> DEBU 10bd 0xc42014a9f8 principal matched by identity 0 -orderer.example.com | 2018-01-18 02:00:30.343 UTC [msp/identity] Verify -> DEBU 10be Verify: digest = 00000000 b1 5e e0 66 21 b8 c1 75 57 52 b4 bf 95 b3 5e 3b |.^.f!..uWR....^;| -orderer.example.com | 00000010 c3 33 d1 fc 86 ee f5 02 f4 d5 9d fe 39 81 a8 ab |.3..........9...| -orderer.example.com | 2018-01-18 02:00:30.343 UTC [msp/identity] Verify -> DEBU 10bf Verify: sig = 00000000 30 44 02 20 5f d3 45 92 d1 d3 49 ad 3d f4 10 f1 |0D. _.E...I.=...| -orderer.example.com | 00000010 12 bf b6 f6 f0 4a c9 38 8e 08 e5 6a d8 a1 cb 63 |.....J.8...j...c| -orderer.example.com | 00000020 f3 1b bf a5 02 20 3a 10 ca 91 77 a2 2f 1e a7 42 |..... :...w./..B| -orderer.example.com | 00000030 51 80 8f 66 6f 17 5a e7 4c af 25 25 a3 e4 50 06 |Q..fo.Z.L.%%..P.| -orderer.example.com | 00000040 7c e3 19 4f 19 18 ||..O..| -orderer.example.com | 2018-01-18 02:00:30.343 UTC [cauthdsl] func2 -> DEBU 10c0 0xc42014a9f8 principal evaluation succeeds for identity 0 -orderer.example.com | 2018-01-18 02:00:30.343 UTC [cauthdsl] func1 -> DEBU 10c1 0xc42014a9f8 gate 1516240830341505074 evaluation succeeds -orderer.example.com | 2018-01-18 02:00:30.343 UTC [orderer/common/sigfilter] Apply -> DEBU 10c2 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420381420 1 [0xc42014a628]}) Readers]} -orderer.example.com | 2018-01-18 02:00:30.343 UTC [orderer/common/deliver] Handle -> DEBU 10c3 [channel: testchainid] Received seekInfo (0xc42088ed40) start: > stop: > -orderer.example.com | 2018-01-18 02:00:30.343 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 10c4 retrieveBlockByNumber() - blockNum = [1] -orderer.example.com | 2018-01-18 02:00:30.343 UTC [fsblkstorage] newBlockfileStream -> DEBU 10c5 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[9082] -orderer.example.com | 2018-01-18 02:00:30.343 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 10c6 Remaining bytes=[14608], Going to peek [8] bytes -orderer.example.com | 2018-01-18 02:00:30.343 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 10c7 Returning blockbytes - length=[14606], placementInfo={fileNum=[0], startOffset=[9082], bytesOffset=[9084]} -orderer.example.com | 2018-01-18 02:00:30.343 UTC [orderer/common/deliver] Handle -> DEBU 10c8 [channel: testchainid] Delivering block for (0xc42088ed40) -orderer.example.com | 2018-01-18 02:00:30.344 UTC [orderer/common/deliver] Handle -> DEBU 10c9 [channel: testchainid] Done delivering for (0xc42088ed40), waiting for new SeekInfo -orderer.example.com | 2018-01-18 02:00:30.344 UTC [orderer/common/deliver] Handle -> DEBU 10ca Attempting to read seek info message -orderer.example.com | 2018-01-18 02:00:30.346 UTC [orderer/common/deliver] Handle -> WARN 10cb Error reading from stream: rpc error: code = Canceled desc = context canceled -orderer.example.com | 2018-01-18 02:00:30.347 UTC [orderer/main] func1 -> DEBU 10cc Closing Deliver stream -orderer.example.com | 2018-01-18 02:00:30.486 UTC [orderer/main] Deliver -> DEBU 10cd Starting new Deliver handler -orderer.example.com | 2018-01-18 02:00:30.486 UTC [orderer/common/deliver] Handle -> DEBU 10ce Starting new deliver loop -orderer.example.com | 2018-01-18 02:00:30.486 UTC [orderer/common/deliver] Handle -> DEBU 10cf Attempting to read seek info message -orderer.example.com | 2018-01-18 02:00:30.488 UTC [policies] GetPolicy -> DEBU 10d0 Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 02:00:30.488 UTC [cauthdsl] func1 -> DEBU 10d1 0xc42014aa68 gate 1516240830488812984 evaluation starts -orderer.example.com | 2018-01-18 02:00:30.489 UTC [cauthdsl] func2 -> DEBU 10d2 0xc42014aa68 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-18 02:00:30.489 UTC [cauthdsl] func2 -> DEBU 10d3 0xc42014aa68 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-18 02:00:30.489 UTC [msp/identity] newIdentity -> DEBU 10d4 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 02:00:30.490 UTC [msp] SatisfiesPrincipal -> DEBU 10d5 Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | 2018-01-18 02:00:30.490 UTC [msp] Validate -> DEBU 10d6 MSP OrdererMSP validating identity -orderer.example.com | 2018-01-18 02:00:30.490 UTC [cauthdsl] func2 -> DEBU 10d7 0xc42014aa68 principal matched by identity 0 -orderer.example.com | 2018-01-18 02:00:30.490 UTC [msp/identity] Verify -> DEBU 10d8 Verify: digest = 00000000 6e 2f 97 da 32 4d 7b d0 4b ff 52 aa 65 67 26 63 |n/..2M{.K.R.eg&c| -orderer.example.com | 00000010 d9 a4 e2 72 b1 c0 f7 7a 05 b5 64 72 87 f3 2f a2 |...r...z..dr../.| -orderer.example.com | 2018-01-18 02:00:30.490 UTC [msp/identity] Verify -> DEBU 10d9 Verify: sig = 00000000 30 45 02 21 00 9b ef 1a cc 35 3f 61 c4 b4 71 e3 |0E.!.....5?a..q.| -orderer.example.com | 00000010 af bd 28 be dc 4c b4 47 9e 20 24 ac 01 95 96 64 |..(..L.G. $....d| -orderer.example.com | 00000020 a0 8b 5c 92 df 02 20 7e 7b 30 05 02 ad 91 91 c9 |..\... ~{0......| -orderer.example.com | 00000030 30 47 6c 40 92 24 08 40 a8 cb 0d 89 df 98 f3 19 |0Gl@.$.@........| -orderer.example.com | 00000040 45 e7 48 21 aa 56 25 |E.H!.V%| -orderer.example.com | 2018-01-18 02:00:30.491 UTC [cauthdsl] func2 -> DEBU 10da 0xc42014aa68 principal evaluation succeeds for identity 0 -orderer.example.com | 2018-01-18 02:00:30.491 UTC [cauthdsl] func1 -> DEBU 10db 0xc42014aa68 gate 1516240830488812984 evaluation succeeds -orderer.example.com | 2018-01-18 02:00:30.491 UTC [orderer/common/sigfilter] Apply -> DEBU 10dc Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420381420 1 [0xc42014a628]}) Readers]} -orderer.example.com | 2018-01-18 02:00:30.491 UTC [orderer/common/deliver] Handle -> DEBU 10dd [channel: testchainid] Received seekInfo (0xc420a20300) start: > stop: > -orderer.example.com | 2018-01-18 02:00:30.491 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 10de retrieveBlockByNumber() - blockNum = [1] -orderer.example.com | 2018-01-18 02:00:30.491 UTC [fsblkstorage] newBlockfileStream -> DEBU 10df newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[9082] -orderer.example.com | 2018-01-18 02:00:30.492 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 10e0 Remaining bytes=[14608], Going to peek [8] bytes -orderer.example.com | 2018-01-18 02:00:30.492 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 10e1 Returning blockbytes - length=[14606], placementInfo={fileNum=[0], startOffset=[9082], bytesOffset=[9084]} -orderer.example.com | 2018-01-18 02:00:30.492 UTC [orderer/common/deliver] Handle -> DEBU 10e2 [channel: testchainid] Delivering block for (0xc420a20300) -orderer.example.com | 2018-01-18 02:00:30.492 UTC [orderer/common/deliver] Handle -> DEBU 10e3 [channel: testchainid] Done delivering for (0xc420a20300), waiting for new SeekInfo -orderer.example.com | 2018-01-18 02:00:30.492 UTC [orderer/common/deliver] Handle -> DEBU 10e4 Attempting to read seek info message -orderer.example.com | 2018-01-18 02:00:30.494 UTC [policies] GetPolicy -> DEBU 10e5 Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 02:00:30.494 UTC [cauthdsl] func1 -> DEBU 10e6 0xc42014aab8 gate 1516240830494120229 evaluation starts -orderer.example.com | 2018-01-18 02:00:30.494 UTC [cauthdsl] func2 -> DEBU 10e7 0xc42014aab8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-18 02:00:30.494 UTC [cauthdsl] func2 -> DEBU 10e8 0xc42014aab8 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-18 02:00:30.494 UTC [msp/identity] newIdentity -> DEBU 10e9 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 02:00:30.495 UTC [msp] SatisfiesPrincipal -> DEBU 10ea Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | 2018-01-18 02:00:30.495 UTC [msp] Validate -> DEBU 10eb MSP OrdererMSP validating identity -orderer.example.com | 2018-01-18 02:00:30.495 UTC [cauthdsl] func2 -> DEBU 10ec 0xc42014aab8 principal matched by identity 0 -orderer.example.com | 2018-01-18 02:00:30.495 UTC [msp/identity] Verify -> DEBU 10ed Verify: digest = 00000000 c1 f2 4d 98 94 12 5c 8f 20 aa 9b ac ee 13 df 8c |..M...\. .......| -orderer.example.com | 00000010 a0 de d2 86 d6 5a 37 35 99 1d 1d 4c 86 16 ae e2 |.....Z75...L....| -orderer.example.com | 2018-01-18 02:00:30.495 UTC [msp/identity] Verify -> DEBU 10ee Verify: sig = 00000000 30 45 02 21 00 84 af 45 90 b2 c5 4e 2f ad 9f e0 |0E.!...E...N/...| -orderer.example.com | 00000010 c1 34 c3 35 d7 47 7d 1a 40 5e 07 b5 d3 dd 41 b6 |.4.5.G}.@^....A.| -orderer.example.com | 00000020 89 0b 55 03 38 02 20 32 80 62 13 73 95 e4 74 37 |..U.8. 2.b.s..t7| -orderer.example.com | 00000030 2d 87 65 26 1c 97 c4 0a fb fa fb ec 7e 36 61 b6 |-.e&........~6a.| -orderer.example.com | 00000040 36 4c bb 7f ac 8c f8 |6L.....| -orderer.example.com | 2018-01-18 02:00:30.495 UTC [cauthdsl] func2 -> DEBU 10ef 0xc42014aab8 principal evaluation succeeds for identity 0 -orderer.example.com | 2018-01-18 02:00:30.495 UTC [cauthdsl] func1 -> DEBU 10f0 0xc42014aab8 gate 1516240830494120229 evaluation succeeds -orderer.example.com | 2018-01-18 02:00:30.495 UTC [orderer/common/sigfilter] Apply -> DEBU 10f1 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420381420 1 [0xc42014a628]}) Readers]} -orderer.example.com | 2018-01-18 02:00:30.495 UTC [orderer/common/deliver] Handle -> DEBU 10f2 [channel: testchainid] Received seekInfo (0xc420a38b20) start: > stop: > -orderer.example.com | 2018-01-18 02:00:30.495 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 10f3 retrieveBlockByNumber() - blockNum = [0] -orderer.example.com | 2018-01-18 02:00:30.495 UTC [fsblkstorage] newBlockfileStream -> DEBU 10f4 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] -orderer.example.com | 2018-01-18 02:00:30.495 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 10f5 Remaining bytes=[23690], Going to peek [8] bytes -orderer.example.com | 2018-01-18 02:00:30.496 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 10f6 Returning blockbytes - length=[9080], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -orderer.example.com | 2018-01-18 02:00:30.496 UTC [orderer/common/deliver] Handle -> DEBU 10f7 [channel: testchainid] Delivering block for (0xc420a38b20) -orderer.example.com | 2018-01-18 02:00:30.496 UTC [orderer/common/deliver] Handle -> DEBU 10f8 [channel: testchainid] Done delivering for (0xc420a38b20), waiting for new SeekInfo -orderer.example.com | 2018-01-18 02:00:30.496 UTC [orderer/common/deliver] Handle -> DEBU 10f9 Attempting to read seek info message -orderer.example.com | 2018-01-18 02:00:30.501 UTC [orderer/common/deliver] Handle -> WARN 10fa Error reading from stream: rpc error: code = Canceled desc = context canceled -orderer.example.com | 2018-01-18 02:00:30.501 UTC [orderer/main] func1 -> DEBU 10fb Closing Deliver stream -orderer.example.com | 2018-01-18 02:00:30.645 UTC [orderer/main] Deliver -> DEBU 10fc Starting new Deliver handler -orderer.example.com | 2018-01-18 02:00:30.645 UTC [orderer/common/deliver] Handle -> DEBU 10fd Starting new deliver loop -orderer.example.com | 2018-01-18 02:00:30.645 UTC [orderer/common/deliver] Handle -> DEBU 10fe Attempting to read seek info message -orderer.example.com | 2018-01-18 02:00:30.646 UTC [policies] GetPolicy -> DEBU 10ff Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 02:00:30.646 UTC [cauthdsl] func1 -> DEBU 1100 0xc4200262f0 gate 1516240830646459721 evaluation starts -orderer.example.com | 2018-01-18 02:00:30.646 UTC [cauthdsl] func2 -> DEBU 1101 0xc4200262f0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-18 02:00:30.646 UTC [cauthdsl] func2 -> DEBU 1102 0xc4200262f0 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-18 02:00:30.647 UTC [msp/identity] newIdentity -> DEBU 1103 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 02:00:30.647 UTC [msp] SatisfiesPrincipal -> DEBU 1104 Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | 2018-01-18 02:00:30.647 UTC [msp] Validate -> DEBU 1105 MSP OrdererMSP validating identity -orderer.example.com | 2018-01-18 02:00:30.648 UTC [cauthdsl] func2 -> DEBU 1106 0xc4200262f0 principal matched by identity 0 -orderer.example.com | 2018-01-18 02:00:30.648 UTC [msp/identity] Verify -> DEBU 1107 Verify: digest = 00000000 78 59 3b f2 6b 52 86 c6 21 fb 46 bf 89 ad 05 8c |xY;.kR..!.F.....| -orderer.example.com | 00000010 ba 32 c3 b8 ba 39 3e d5 b8 7d 58 9e 45 c3 6a 43 |.2...9>..}X.E.jC| -orderer.example.com | 2018-01-18 02:00:30.648 UTC [msp/identity] Verify -> DEBU 1108 Verify: sig = 00000000 30 45 02 21 00 89 0e b1 bf 9a d9 fd 17 9f f9 cc |0E.!............| -orderer.example.com | 00000010 41 06 91 d5 84 79 0b 91 e4 53 82 9a 15 97 a6 2b |A....y...S.....+| -orderer.example.com | 00000020 5d 47 97 35 bc 02 20 2e 95 60 db f4 b4 e0 59 c6 |]G.5.. ..`....Y.| -orderer.example.com | 00000030 55 8a 54 d8 b6 89 53 b7 7b 15 0a 11 7c fa 17 e9 |U.T...S.{...|...| -orderer.example.com | 00000040 b5 29 30 88 fb 59 57 |.)0..YW| -orderer.example.com | 2018-01-18 02:00:30.648 UTC [cauthdsl] func2 -> DEBU 1109 0xc4200262f0 principal evaluation succeeds for identity 0 -orderer.example.com | 2018-01-18 02:00:30.648 UTC [cauthdsl] func1 -> DEBU 110a 0xc4200262f0 gate 1516240830646459721 evaluation succeeds -orderer.example.com | 2018-01-18 02:00:30.648 UTC [orderer/common/sigfilter] Apply -> DEBU 110b Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420381420 1 [0xc42014a628]}) Readers]} -orderer.example.com | 2018-01-18 02:00:30.648 UTC [orderer/common/deliver] Handle -> DEBU 110c [channel: testchainid] Received seekInfo (0xc42039f5a0) start: > stop: > -orderer.example.com | 2018-01-18 02:00:30.649 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 110d retrieveBlockByNumber() - blockNum = [0] -orderer.example.com | 2018-01-18 02:00:30.649 UTC [fsblkstorage] newBlockfileStream -> DEBU 110e newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] -orderer.example.com | 2018-01-18 02:00:30.649 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 110f Remaining bytes=[23690], Going to peek [8] bytes -orderer.example.com | 2018-01-18 02:00:30.649 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 1110 Returning blockbytes - length=[9080], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -orderer.example.com | 2018-01-18 02:00:30.649 UTC [orderer/common/deliver] Handle -> DEBU 1111 [channel: testchainid] Delivering block for (0xc42039f5a0) -orderer.example.com | 2018-01-18 02:00:30.650 UTC [orderer/common/deliver] Handle -> DEBU 1112 [channel: testchainid] Done delivering for (0xc42039f5a0), waiting for new SeekInfo -orderer.example.com | 2018-01-18 02:00:30.650 UTC [orderer/common/deliver] Handle -> DEBU 1113 Attempting to read seek info message -orderer.example.com | 2018-01-18 02:00:30.655 UTC [orderer/common/deliver] Handle -> WARN 1114 Error reading from stream: rpc error: code = Canceled desc = context canceled -orderer.example.com | 2018-01-18 02:00:30.655 UTC [orderer/main] func1 -> DEBU 1115 Closing Deliver stream -orderer.example.com | 2018-01-18 02:00:30.800 UTC [orderer/main] Deliver -> DEBU 1116 Starting new Deliver handler -orderer.example.com | 2018-01-18 02:00:30.800 UTC [orderer/common/deliver] Handle -> DEBU 1117 Starting new deliver loop -orderer.example.com | 2018-01-18 02:00:30.800 UTC [orderer/common/deliver] Handle -> DEBU 1118 Attempting to read seek info message -orderer.example.com | 2018-01-18 02:00:30.801 UTC [policies] GetPolicy -> DEBU 1119 Returning policy Readers for evaluation -orderer.example.com | 2018-01-18 02:00:30.801 UTC [cauthdsl] func1 -> DEBU 111a 0xc420026340 gate 1516240830801422801 evaluation starts -orderer.example.com | 2018-01-18 02:00:30.801 UTC [cauthdsl] func2 -> DEBU 111b 0xc420026340 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-18 02:00:30.801 UTC [cauthdsl] func2 -> DEBU 111c 0xc420026340 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-18 02:00:30.801 UTC [msp/identity] newIdentity -> DEBU 111d Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-18 02:00:30.802 UTC [msp] SatisfiesPrincipal -> DEBU 111e Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | 2018-01-18 02:00:30.802 UTC [msp] Validate -> DEBU 111f MSP OrdererMSP validating identity -orderer.example.com | 2018-01-18 02:00:30.802 UTC [cauthdsl] func2 -> DEBU 1120 0xc420026340 principal matched by identity 0 -orderer.example.com | 2018-01-18 02:00:30.802 UTC [msp/identity] Verify -> DEBU 1121 Verify: digest = 00000000 74 bb 6f 3b c3 97 92 46 f6 e3 45 99 91 d9 7b 65 |t.o;...F..E...{e| -orderer.example.com | 00000010 92 eb 44 ac 4b 16 95 a5 4b 6d 01 77 a0 48 d0 6d |..D.K...Km.w.H.m| -orderer.example.com | 2018-01-18 02:00:30.802 UTC [msp/identity] Verify -> DEBU 1122 Verify: sig = 00000000 30 45 02 21 00 ef 01 b6 bf a9 61 47 ad 89 d0 e9 |0E.!......aG....| -orderer.example.com | 00000010 22 8f b7 44 d5 4f c3 b2 42 e0 d4 83 7c d7 d4 12 |"..D.O..B...|...| -orderer.example.com | 00000020 68 ec 34 db 2f 02 20 31 c0 a5 01 64 a5 b4 e5 50 |h.4./. 1...d...P| -orderer.example.com | 00000030 77 3c be 37 b4 4d 9e 64 5a 59 b4 b6 f0 08 90 d8 |w<.7.M.dZY......| -orderer.example.com | 00000040 36 ad 78 6b ad 1d 44 |6.xk..D| -orderer.example.com | 2018-01-18 02:00:30.802 UTC [cauthdsl] func2 -> DEBU 1123 0xc420026340 principal evaluation succeeds for identity 0 -orderer.example.com | 2018-01-18 02:00:30.803 UTC [cauthdsl] func1 -> DEBU 1124 0xc420026340 gate 1516240830801422801 evaluation succeeds -orderer.example.com | 2018-01-18 02:00:30.803 UTC [orderer/common/sigfilter] Apply -> DEBU 1125 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420381420 1 [0xc42014a628]}) Readers]} -orderer.example.com | 2018-01-18 02:00:30.803 UTC [orderer/common/deliver] Handle -> DEBU 1126 [channel: testchainid] Received seekInfo (0xc420381780) start: > stop: > -orderer.example.com | 2018-01-18 02:00:30.803 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 1127 retrieveBlockByNumber() - blockNum = [1] -orderer.example.com | 2018-01-18 02:00:30.803 UTC [fsblkstorage] newBlockfileStream -> DEBU 1128 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[9082] -orderer.example.com | 2018-01-18 02:00:30.803 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 1129 Remaining bytes=[14608], Going to peek [8] bytes -orderer.example.com | 2018-01-18 02:00:30.803 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 112a Returning blockbytes - length=[14606], placementInfo={fileNum=[0], startOffset=[9082], bytesOffset=[9084]} -orderer.example.com | 2018-01-18 02:00:30.803 UTC [orderer/common/deliver] Handle -> DEBU 112b [channel: testchainid] Delivering block for (0xc420381780) -orderer.example.com | 2018-01-18 02:00:30.804 UTC [orderer/common/deliver] Handle -> DEBU 112c [channel: testchainid] Done delivering for (0xc420381780), waiting for new SeekInfo -orderer.example.com | 2018-01-18 02:00:30.804 UTC [orderer/common/deliver] Handle -> DEBU 112d Attempting to read seek info message -orderer.example.com | 2018-01-18 02:00:30.809 UTC [orderer/common/deliver] Handle -> WARN 112e Error reading from stream: rpc error: code = Canceled desc = context canceled -orderer.example.com | 2018-01-18 02:00:30.809 UTC [orderer/main] func1 -> DEBU 112f Closing Deliver stream +Attaching to fabric-cli, peer0.org1.example.com, orderer.example.com, peer0.org2.example.com, peer1.org2.example.com, peer1.org1.example.com +peer0.org2.example.com | [001 01-18 09:29:40.66 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: +peer0.org2.example.com | Version: 1.0.2 +peer0.org2.example.com | Go version: go1.9 +peer0.org2.example.com | OS/Arch: linux/amd64 +peer0.org2.example.com | Chaincode: +peer0.org2.example.com | Base Image Version: 0.3.2 +peer0.org2.example.com | Base Docker Namespace: hyperledger +orderer.example.com | 2018-01-18 09:29:37.938 UTC [orderer/main] main -> INFO 001 Starting orderer: +peer0.org1.example.com | [001 01-18 09:29:41.41 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: +orderer.example.com | Version: 1.0.2 +peer0.org1.example.com | Version: 1.0.2 +peer0.org1.example.com | Go version: go1.9 +peer1.org1.example.com | [001 01-18 09:29:38.70 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: +orderer.example.com | Go version: go1.7.5 +peer0.org2.example.com | Base Docker Label: org.hyperledger.fabric +peer0.org1.example.com | OS/Arch: linux/amd64 +peer1.org1.example.com | Version: 1.0.2 +orderer.example.com | OS/Arch: linux/amd64 +peer0.org1.example.com | Chaincode: +peer1.org1.example.com | Go version: go1.9 +orderer.example.com | 2018-01-18 09:29:37.956 UTC [orderer/main] initializeSecureServerConfig -> INFO 002 Starting orderer with TLS enabled +peer0.org1.example.com | Base Image Version: 0.3.2 +peer1.org1.example.com | OS/Arch: linux/amd64 +peer0.org2.example.com | Docker Namespace: hyperledger +orderer.example.com | 2018-01-18 09:29:38.097 UTC [bccsp_sw] openKeyStore -> DEBU 003 KeyStore opened at [/var/hyperledger/orderer/msp/keystore]...done +peer0.org1.example.com | Base Docker Namespace: hyperledger +peer1.org1.example.com | Chaincode: +peer0.org2.example.com | +orderer.example.com | 2018-01-18 09:29:38.097 UTC [bccsp] initBCCSP -> DEBU 004 Initialize BCCSP [SW] +peer0.org1.example.com | Base Docker Label: org.hyperledger.fabric +peer1.org1.example.com | Base Image Version: 0.3.2 +peer0.org2.example.com | [002 01-18 09:29:40.67 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO Initializing ledger mgmt +orderer.example.com | 2018-01-18 09:29:38.097 UTC [msp] getPemMaterialFromDir -> DEBU 005 Reading directory /var/hyperledger/orderer/msp/signcerts +peer0.org1.example.com | Docker Namespace: hyperledger +peer1.org1.example.com | Base Docker Namespace: hyperledger +peer0.org2.example.com | [003 01-18 09:29:40.67 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO Initializing ledger provider +orderer.example.com | 2018-01-18 09:29:38.103 UTC [msp] getPemMaterialFromDir -> DEBU 006 Inspecting file /var/hyperledger/orderer/msp/signcerts/orderer.example.com-cert.pem +peer0.org1.example.com | +peer1.org1.example.com | Base Docker Label: org.hyperledger.fabric +peer0.org2.example.com | [004 01-18 09:29:40.67 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/ledgerProvider/] +orderer.example.com | 2018-01-18 09:29:38.111 UTC [msp] getPemMaterialFromDir -> DEBU 007 Reading directory /var/hyperledger/orderer/msp/cacerts +peer0.org1.example.com | [002 01-18 09:29:41.41 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO Initializing ledger mgmt +peer1.org1.example.com | Docker Namespace: hyperledger +orderer.example.com | 2018-01-18 09:29:38.127 UTC [msp] getPemMaterialFromDir -> DEBU 008 Inspecting file /var/hyperledger/orderer/msp/cacerts/ca.example.com-cert.pem +peer0.org1.example.com | [003 01-18 09:29:41.41 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO Initializing ledger provider +peer0.org2.example.com | [005 01-18 09:29:40.67 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] does not exist +peer1.org1.example.com | +orderer.example.com | 2018-01-18 09:29:38.183 UTC [msp] getPemMaterialFromDir -> DEBU 009 Reading directory /var/hyperledger/orderer/msp/admincerts +peer0.org1.example.com | [004 01-18 09:29:41.42 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/ledgerProvider/] +peer0.org2.example.com | [006 01-18 09:29:40.67 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] exists +peer1.org1.example.com | [002 01-18 09:29:38.70 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO Initializing ledger mgmt +orderer.example.com | 2018-01-18 09:29:38.192 UTC [msp] getPemMaterialFromDir -> DEBU 00a Inspecting file /var/hyperledger/orderer/msp/admincerts/Admin@example.com-cert.pem +peer0.org1.example.com | [005 01-18 09:29:41.42 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] does not exist +peer0.org2.example.com | [007 01-18 09:29:40.69 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/index/] +peer1.org1.example.com | [003 01-18 09:29:38.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO Initializing ledger provider +orderer.example.com | 2018-01-18 09:29:38.195 UTC [msp] getPemMaterialFromDir -> DEBU 00b Reading directory /var/hyperledger/orderer/msp/intermediatecerts +peer0.org1.example.com | [006 01-18 09:29:41.42 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] exists +peer0.org2.example.com | [008 01-18 09:29:40.69 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/index/] does not exist +peer1.org1.example.com | [004 01-18 09:29:38.70 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/ledgerProvider/] +orderer.example.com | 2018-01-18 09:29:38.196 UTC [msp] getMspConfig -> DEBU 00c Intermediate certs folder not found at [/var/hyperledger/orderer/msp/intermediatecerts]. Skipping. [stat /var/hyperledger/orderer/msp/intermediatecerts: no such file or directory] +peer0.org1.example.com | [007 01-18 09:29:41.42 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/index/] +peer0.org2.example.com | [009 01-18 09:29:40.70 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/index/] exists +peer1.org1.example.com | [005 01-18 09:29:38.70 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] does not exist +orderer.example.com | 2018-01-18 09:29:38.196 UTC [msp] getPemMaterialFromDir -> DEBU 00d Reading directory /var/hyperledger/orderer/msp/tlscacerts +peer0.org1.example.com | [008 01-18 09:29:41.42 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/index/] does not exist +peer0.org2.example.com | [00a 01-18 09:29:40.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> DEBU Constructing leveldb VersionedDBProvider +peer1.org1.example.com | [006 01-18 09:29:38.70 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] exists +orderer.example.com | 2018-01-18 09:29:38.199 UTC [msp] getPemMaterialFromDir -> DEBU 00e Inspecting file /var/hyperledger/orderer/msp/tlscacerts/tlsca.example.com-cert.pem +peer0.org1.example.com | [009 01-18 09:29:41.42 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/index/] exists +peer0.org2.example.com | [00b 01-18 09:29:40.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider -> DEBU constructing VersionedDBProvider dbPath=/var/hyperledger/production/ledgersData/stateLeveldb +orderer.example.com | 2018-01-18 09:29:38.202 UTC [msp] getPemMaterialFromDir -> DEBU 00f Reading directory /var/hyperledger/orderer/msp/tlsintermediatecerts +peer1.org1.example.com | [007 01-18 09:29:38.71 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/index/] +peer0.org1.example.com | [00a 01-18 09:29:41.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> DEBU Constructing leveldb VersionedDBProvider +peer0.org2.example.com | [00c 01-18 09:29:40.71 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/stateLeveldb/] +orderer.example.com | 2018-01-18 09:29:38.203 UTC [msp] getMspConfig -> DEBU 010 TLS intermediate certs folder not found at [/var/hyperledger/orderer/msp/tlsintermediatecerts]. Skipping. [stat /var/hyperledger/orderer/msp/tlsintermediatecerts: no such file or directory] +peer1.org1.example.com | [008 01-18 09:29:38.71 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/index/] does not exist +peer0.org1.example.com | [00b 01-18 09:29:41.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider -> DEBU constructing VersionedDBProvider dbPath=/var/hyperledger/production/ledgersData/stateLeveldb +peer0.org2.example.com | [00d 01-18 09:29:40.71 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] does not exist +orderer.example.com | 2018-01-18 09:29:38.203 UTC [msp] getPemMaterialFromDir -> DEBU 011 Reading directory /var/hyperledger/orderer/msp/crls +peer1.org1.example.com | [009 01-18 09:29:38.71 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/index/] exists +peer0.org1.example.com | [00c 01-18 09:29:41.44 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/stateLeveldb/] +peer0.org2.example.com | [00e 01-18 09:29:40.71 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] exists +orderer.example.com | 2018-01-18 09:29:38.204 UTC [msp] getMspConfig -> DEBU 012 crls folder not found at [/var/hyperledger/orderer/msp/crls]. Skipping. [stat /var/hyperledger/orderer/msp/crls: no such file or directory] +peer1.org1.example.com | [00a 01-18 09:29:38.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> DEBU Constructing leveldb VersionedDBProvider +peer1.org1.example.com | [00b 01-18 09:29:38.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider -> DEBU constructing VersionedDBProvider dbPath=/var/hyperledger/production/ledgersData/stateLeveldb +peer0.org1.example.com | [00d 01-18 09:29:41.44 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] does not exist +orderer.example.com | 2018-01-18 09:29:38.204 UTC [msp] getMspConfig -> DEBU 013 MSP configuration file not found at [/var/hyperledger/orderer/msp/config.yaml]: [stat /var/hyperledger/orderer/msp/config.yaml: no such file or directory] +peer0.org2.example.com | [00f 01-18 09:29:40.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider -> DEBU constructing HistoryDBProvider dbPath=/var/hyperledger/production/ledgersData/historyLeveldb +peer1.org1.example.com | [00c 01-18 09:29:38.72 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/stateLeveldb/] +peer0.org1.example.com | [00e 01-18 09:29:41.44 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] exists +orderer.example.com | 2018-01-18 09:29:38.205 UTC [msp] NewBccspMsp -> DEBU 014 Creating BCCSP-based MSP instance +peer0.org2.example.com | [010 01-18 09:29:40.72 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/historyLeveldb/] +peer1.org1.example.com | [00d 01-18 09:29:38.72 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] does not exist +peer0.org1.example.com | [00f 01-18 09:29:41.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider -> DEBU constructing HistoryDBProvider dbPath=/var/hyperledger/production/ledgersData/historyLeveldb +orderer.example.com | 2018-01-18 09:29:38.205 UTC [msp] GetLocalMSP -> DEBU 015 Created new local MSP +peer0.org2.example.com | [011 01-18 09:29:40.72 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] does not exist +peer1.org1.example.com | [00e 01-18 09:29:38.72 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] exists +peer0.org1.example.com | [010 01-18 09:29:41.45 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/historyLeveldb/] +orderer.example.com | 2018-01-18 09:29:38.205 UTC [msp] Setup -> DEBU 016 Setting up MSP instance OrdererMSP +peer0.org2.example.com | [012 01-18 09:29:40.72 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] exists +peer1.org1.example.com | [00f 01-18 09:29:38.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider -> DEBU constructing HistoryDBProvider dbPath=/var/hyperledger/production/ledgersData/historyLeveldb +peer0.org1.example.com | [011 01-18 09:29:41.45 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] does not exist +orderer.example.com | 2018-01-18 09:29:38.206 UTC [msp/identity] newIdentity -> DEBU 017 Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org2.example.com | [013 01-18 09:29:40.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO ledger provider Initialized +peer1.org1.example.com | [010 01-18 09:29:38.74 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/historyLeveldb/] +peer0.org1.example.com | [012 01-18 09:29:41.45 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] exists +orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL +peer0.org2.example.com | [014 01-18 09:29:40.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.recoverUnderConstructionLedger -> DEBU Recovering under construction ledger +peer0.org2.example.com | [015 01-18 09:29:40.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.recoverUnderConstructionLedger -> DEBU No under construction ledger found. Quitting recovery +peer1.org1.example.com | [011 01-18 09:29:38.74 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] does not exist +peer0.org1.example.com | [013 01-18 09:29:41.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO ledger provider Initialized +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +peer0.org2.example.com | [016 01-18 09:29:40.73 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO ledger mgmt initialized +peer1.org1.example.com | [012 01-18 09:29:38.74 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] exists +peer0.org1.example.com | [014 01-18 09:29:41.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.recoverUnderConstructionLedger -> DEBU Recovering under construction ledger +peer0.org1.example.com | [015 01-18 09:29:41.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.recoverUnderConstructionLedger -> DEBU No under construction ledger found. Quitting recovery +orderer.example.com | cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV +peer0.org2.example.com | [017 01-18 09:29:40.73 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func1 -> INFO Auto detected peer address: 172.18.0.6:7051 +peer0.org2.example.com | [018 01-18 09:29:40.73 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func2.func1 -> INFO Auto detected peer address: 172.18.0.6:7051 +peer1.org1.example.com | [013 01-18 09:29:38.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO ledger provider Initialized +peer0.org1.example.com | [016 01-18 09:29:41.47 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO ledger mgmt initialized +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +peer0.org2.example.com | [019 01-18 09:29:40.74 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with TLS enabled +peer1.org1.example.com | [014 01-18 09:29:38.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.recoverUnderConstructionLedger -> DEBU Recovering under construction ledger +peer0.org1.example.com | [017 01-18 09:29:41.47 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func1 -> INFO Auto detected peer address: 172.18.0.5:7051 +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +peer0.org2.example.com | [01a 01-18 09:29:40.75 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering BLOCK +peer1.org1.example.com | [015 01-18 09:29:38.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.recoverUnderConstructionLedger -> DEBU No under construction ledger found. Quitting recovery +peer0.org1.example.com | [018 01-18 09:29:41.47 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func2.func1 -> INFO Auto detected peer address: 172.18.0.5:7051 +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW +peer1.org1.example.com | [016 01-18 09:29:38.78 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO ledger mgmt initialized +peer0.org1.example.com | [019 01-18 09:29:41.47 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with TLS enabled +orderer.example.com | gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w +peer0.org2.example.com | [01b 01-18 09:29:40.75 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering CHAINCODE +peer1.org1.example.com | [017 01-18 09:29:38.78 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func1 -> INFO Auto detected peer address: 172.18.0.3:7051 +peer0.org1.example.com | [01a 01-18 09:29:41.48 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering BLOCK +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +peer0.org2.example.com | [01c 01-18 09:29:40.75 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REJECTION +peer1.org1.example.com | [018 01-18 09:29:38.78 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func2.func1 -> INFO Auto detected peer address: 172.18.0.3:7051 +peer0.org1.example.com | [01b 01-18 09:29:41.48 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering CHAINCODE +orderer.example.com | AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK +peer0.org2.example.com | [01d 01-18 09:29:40.75 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REGISTER +peer1.org1.example.com | [019 01-18 09:29:38.81 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with TLS enabled +peer0.org1.example.com | [01c 01-18 09:29:41.48 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REJECTION +orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs +peer0.org2.example.com | [01e 01-18 09:29:40.75 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started +peer1.org1.example.com | [01a 01-18 09:29:38.81 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering BLOCK +peer0.org1.example.com | [01d 01-18 09:29:41.48 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REGISTER +orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= +peer0.org2.example.com | [01f 01-18 09:29:40.77 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport -> DEBU Chaincode startup timeout value set to 5m0s +peer1.org1.example.com | [01b 01-18 09:29:38.81 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering CHAINCODE +peer0.org1.example.com | [01e 01-18 09:29:41.48 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started +orderer.example.com | -----END CERTIFICATE----- +peer0.org2.example.com | [020 01-18 09:29:40.77 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> INFO Chaincode support using peerAddress: peer0.org2.example.com:7052 +peer1.org1.example.com | [01c 01-18 09:29:38.81 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REJECTION +peer0.org1.example.com | [01f 01-18 09:29:41.49 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport -> DEBU Chaincode startup timeout value set to 5m0s +orderer.example.com | 2018-01-18 09:29:38.207 UTC [msp/identity] newIdentity -> DEBU 018 Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org2.example.com | [021 01-18 09:29:40.77 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Turn off keepalive(value 0) +peer1.org1.example.com | [01d 01-18 09:29:38.81 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REGISTER +peer0.org1.example.com | [020 01-18 09:29:41.49 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> INFO Chaincode support using peerAddress: peer0.org1.example.com:7052 +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +peer0.org2.example.com | [022 01-18 09:29:40.77 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Setting execute timeout value to 30s +peer1.org1.example.com | [01e 01-18 09:29:38.81 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started +peer0.org1.example.com | [021 01-18 09:29:41.49 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Turn off keepalive(value 0) +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org2.example.com | [023 01-18 09:29:40.77 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_LEVEL set to level info +peer1.org1.example.com | [01f 01-18 09:29:38.83 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport -> DEBU Chaincode startup timeout value set to 5m0s +peer0.org1.example.com | [022 01-18 09:29:41.49 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Setting execute timeout value to 30s +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +peer0.org2.example.com | [024 01-18 09:29:40.78 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_SHIM set to level warning +peer1.org1.example.com | [020 01-18 09:29:38.83 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> INFO Chaincode support using peerAddress: peer1.org1.example.com:7052 +peer0.org1.example.com | [023 01-18 09:29:41.49 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_LEVEL set to level info +peer0.org1.example.com | [024 01-18 09:29:41.49 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_SHIM set to level warning +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer0.org2.example.com | [025 01-18 09:29:40.78 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered +peer1.org1.example.com | [021 01-18 09:29:38.83 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Turn off keepalive(value 0) +peer0.org1.example.com | [025 01-18 09:29:41.49 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +peer0.org2.example.com | [026 01-18 09:29:40.78 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered +peer1.org1.example.com | [022 01-18 09:29:38.83 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Setting execute timeout value to 30s +peer0.org1.example.com | [026 01-18 09:29:41.49 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +peer0.org2.example.com | [027 01-18 09:29:40.78 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode escc(github.com/hyperledger/fabric/core/scc/escc) registered +peer1.org1.example.com | [023 01-18 09:29:38.83 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_LEVEL set to level info +peer0.org1.example.com | [027 01-18 09:29:41.50 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode escc(github.com/hyperledger/fabric/core/scc/escc) registered +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer0.org2.example.com | [028 01-18 09:29:40.78 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode vscc(github.com/hyperledger/fabric/core/scc/vscc) registered +peer1.org1.example.com | [024 01-18 09:29:38.83 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_SHIM set to level warning +peer0.org1.example.com | [028 01-18 09:29:41.50 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode vscc(github.com/hyperledger/fabric/core/scc/vscc) registered +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +peer0.org2.example.com | [029 01-18 09:29:40.78 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/chaincode/qscc) registered +peer0.org2.example.com | [02a 01-18 09:29:40.78 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer +peer1.org1.example.com | [025 01-18 09:29:38.83 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered +peer0.org1.example.com | [029 01-18 09:29:41.50 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/chaincode/qscc) registered +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +peer0.org2.example.com | [02b 01-18 09:29:40.78 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.NewEndorserServer.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | [026 01-18 09:29:38.84 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered +peer0.org1.example.com | [02a 01-18 09:29:41.50 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +peer0.org2.example.com | [02c 01-18 09:29:40.78 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | [027 01-18 09:29:38.84 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode escc(github.com/hyperledger/fabric/core/scc/escc) registered +peer0.org1.example.com | [02b 01-18 09:29:41.50 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.NewEndorserServer.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | -----END CERTIFICATE----- +peer0.org2.example.com | [02d 01-18 09:29:40.79 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer1.org1.example.com | [028 01-18 09:29:38.84 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode vscc(github.com/hyperledger/fabric/core/scc/vscc) registered +peer0.org1.example.com | [02c 01-18 09:29:41.50 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | 2018-01-18 09:29:38.209 UTC [msp/identity] newIdentity -> DEBU 019 Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org2.example.com | [02e 01-18 09:29:40.79 UTC] [github.com/hyperledger/fabric/gossip/service] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1 -> INFO Initialize gossip with endpoint 172.18.0.6:7051 and bootstrap set [peer0.org2.example.com:7051] +peer1.org1.example.com | [029 01-18 09:29:38.84 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/chaincode/qscc) registered +peer0.org1.example.com | [02d 01-18 09:29:41.50 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +peer0.org2.example.com | [02f 01-18 09:29:40.79 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | [02a 01-18 09:29:38.84 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer +peer0.org1.example.com | [02e 01-18 09:29:41.50 UTC] [github.com/hyperledger/fabric/gossip/service] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1 -> INFO Initialize gossip with endpoint 172.18.0.5:7051 and bootstrap set [127.0.0.1:7051] +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org2.example.com | [030 01-18 09:29:40.79 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity +peer1.org1.example.com | [02b 01-18 09:29:38.84 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.NewEndorserServer.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [02f 01-18 09:29:41.50 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer0.org2.example.com | [031 01-18 09:29:40.79 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org1.example.com | [02c 01-18 09:29:38.84 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [030 01-18 09:29:41.50 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +peer0.org2.example.com | MIICGjCCAcCgAwIBAgIRAPwSzyg1PPrCeVhRqDo4IRcwCgYIKoZIzj0EAwIwczEL +peer1.org1.example.com | [02d 01-18 09:29:38.84 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org1.example.com | [031 01-18 09:29:41.50 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer0.org2.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org1.example.com | [02e 01-18 09:29:38.85 UTC] [github.com/hyperledger/fabric/gossip/service] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1 -> INFO Initialize gossip with endpoint 172.18.0.3:7051 and bootstrap set [peer0.org1.example.com:7051] +peer0.org1.example.com | MIICGTCCAcCgAwIBAgIRALw0jT/FIanMxPg6w2uUMSowCgYIKoZIzj0EAwIwczEL +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +peer0.org2.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org1.example.com | [02f 01-18 09:29:38.85 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org2.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +peer1.org1.example.com | [030 01-18 09:29:38.85 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity +peer0.org1.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +peer0.org2.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer1.org1.example.com | [031 01-18 09:29:38.85 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer0.org2.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMi5leGFtcGxlLmNvbTBZ +peer1.org1.example.com | MIICGTCCAcCgAwIBAgIRAP//zqWKYzSHLW7GfxKsMZYwCgYIKoZIzj0EAwIwczEL +peer0.org1.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +peer0.org2.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABHIO8CckN5HgY1i/7g0IJdzk172E2x4D +peer1.org1.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +peer1.org2.example.com | [001 01-18 09:29:40.60 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: +peer0.org2.example.com | lEymsPxBTC6SMx2H76gyAZbaUHLzDOc03WXuxNm/5CEb0PCug4gLmYqjTTBLMA4G +peer1.org1.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org1.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABKqfdWF/oY+2ymqjk+AlBN+RBThxPp/k +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +peer0.org2.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +peer1.org1.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +peer0.org1.example.com | lU+BhmGArpnlGNd7iT6pil/iSDtfA5xZ9we5NIfTehFqmZcI6g1N172jTTBLMA4G +orderer.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +peer1.org2.example.com | Version: 1.0.2 +peer0.org2.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQDuMCD1 +orderer.example.com | 2018-01-18 09:29:38.210 UTC [msp/identity] newIdentity -> DEBU 01a Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org1.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ +peer0.org1.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIALSJqGc +peer1.org2.example.com | Go version: go1.9 +peer0.org2.example.com | cBz5946zQSaxCXuanblvvPmDo4EJj3fN1TTl4wIgK6OJNoi5UYFhv/CWtHvr86JU +orderer.example.com | MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw +peer1.org1.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMkhzyzkBQMmDIFIj+Dmnud+j7/3h/LM +peer0.org1.example.com | vdZHCJ0RecVQ2Rdtkdnok57p68XFlRBy2l4xAiAJS6Z2yxyElBubPI0MBn//Xs9l +peer1.org2.example.com | OS/Arch: linux/amd64 +peer0.org2.example.com | Cp7fopYLAR0CUyw+Xyk= +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer1.org1.example.com | sUwFjL4AqbRBEG6vNDX4lF1jwBBt39uJxvOBL2wKymZ0rY/LVNK4vumjTTBLMA4G +peer0.org1.example.com | 05n0MbLw/Ug3egJ3JA== +peer1.org2.example.com | Chaincode: +peer0.org2.example.com | -----END CERTIFICATE----- +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer1.org1.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +peer0.org1.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | Base Image Version: 0.3.2 +peer0.org2.example.com | [032 01-18 09:29:40.79 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE +peer1.org1.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIB1/N1vq +peer0.org1.example.com | [032 01-18 09:29:41.50 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | Base Docker Namespace: hyperledger +peer0.org2.example.com | [033 01-18 09:29:40.79 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org2MSP validating identity +peer0.org2.example.com | [034 01-18 09:29:40.82 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer1.org1.example.com | NZ8srg0DN/kZsRGGbGxZDd6SUmUSPGopEZ+BAiAFLGQc/nVZ7H9e3TOSPWkj9xXI +peer0.org1.example.com | [033 01-18 09:29:41.50 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity +peer1.org2.example.com | Base Docker Label: org.hyperledger.fabric +peer0.org2.example.com | [035 01-18 09:29:40.82 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity -> INFO Obtaining identity +orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq +peer1.org1.example.com | zBwtXbaE2rpu1wCNZg== +peer0.org1.example.com | [034 01-18 09:29:41.52 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | Docker Namespace: hyperledger +peer0.org2.example.com | [036 01-18 09:29:40.82 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org1.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [035 01-18 09:29:41.52 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity -> INFO Obtaining identity +peer1.org2.example.com | +orderer.example.com | hkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz +peer0.org2.example.com | MIICGjCCAcCgAwIBAgIRAPwSzyg1PPrCeVhRqDo4IRcwCgYIKoZIzj0EAwIwczEL +peer1.org1.example.com | [032 01-18 09:29:38.85 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [036 01-18 09:29:41.52 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [002 01-18 09:29:40.60 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO Initializing ledger mgmt +orderer.example.com | MKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw +peer1.org1.example.com | [033 01-18 09:29:38.85 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity +peer0.org1.example.com | MIICGTCCAcCgAwIBAgIRALw0jT/FIanMxPg6w2uUMSowCgYIKoZIzj0EAwIwczEL +peer1.org2.example.com | [003 01-18 09:29:40.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO Initializing ledger provider +orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN +peer0.org2.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org1.example.com | [034 01-18 09:29:38.87 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org2.example.com | [004 01-18 09:29:40.61 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/ledgerProvider/] +orderer.example.com | RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH +peer1.org1.example.com | [035 01-18 09:29:38.87 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity -> INFO Obtaining identity +peer0.org1.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org2.example.com | [005 01-18 09:29:40.61 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] does not exist +orderer.example.com | /4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl +peer0.org2.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org1.example.com | [036 01-18 09:29:38.87 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +peer1.org2.example.com | [006 01-18 09:29:40.61 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] exists +orderer.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | MIICGTCCAcCgAwIBAgIRAP//zqWKYzSHLW7GfxKsMZYwCgYIKoZIzj0EAwIwczEL +peer0.org1.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer1.org2.example.com | [007 01-18 09:29:40.61 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/index/] +peer0.org2.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +orderer.example.com | 2018-01-18 09:29:38.215 UTC [bccsp_sw] loadPrivateKey -> DEBU 01b Loading private key [0edbe541bf5502a74172e6e52540bc522e7cbcdf9ba374fad803a4c87fd2e14e] at [/var/hyperledger/orderer/msp/keystore/0edbe541bf5502a74172e6e52540bc522e7cbcdf9ba374fad803a4c87fd2e14e_sk]... +peer1.org1.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMS5leGFtcGxlLmNvbTBZ +peer1.org2.example.com | [008 01-18 09:29:40.61 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/index/] does not exist +peer0.org2.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | 2018-01-18 09:29:38.222 UTC [msp/identity] newIdentity -> DEBU 01c Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org1.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org2.example.com | [009 01-18 09:29:40.61 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/index/] exists +peer0.org1.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABKqfdWF/oY+2ymqjk+AlBN+RBThxPp/k +orderer.example.com | MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw +peer1.org1.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +peer1.org2.example.com | [00a 01-18 09:29:40.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> DEBU Constructing leveldb VersionedDBProvider +peer0.org2.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMi5leGFtcGxlLmNvbTBZ +peer0.org2.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABHIO8CckN5HgY1i/7g0IJdzk172E2x4D +peer0.org2.example.com | lEymsPxBTC6SMx2H76gyAZbaUHLzDOc03WXuxNm/5CEb0PCug4gLmYqjTTBLMA4G +peer0.org2.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +peer0.org1.example.com | lU+BhmGArpnlGNd7iT6pil/iSDtfA5xZ9we5NIfTehFqmZcI6g1N172jTTBLMA4G +peer0.org1.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +peer1.org2.example.com | [00b 01-18 09:29:40.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider -> DEBU constructing VersionedDBProvider dbPath=/var/hyperledger/production/ledgersData/stateLeveldb +peer1.org1.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org2.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQDuMCD1 +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org1.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIALSJqGc +peer1.org2.example.com | [00c 01-18 09:29:40.62 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/stateLeveldb/] +peer1.org1.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ +peer0.org2.example.com | cBz5946zQSaxCXuanblvvPmDo4EJj3fN1TTl4wIgK6OJNoi5UYFhv/CWtHvr86JU +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer0.org1.example.com | vdZHCJ0RecVQ2Rdtkdnok57p68XFlRBy2l4xAiAJS6Z2yxyElBubPI0MBn//Xs9l +peer1.org2.example.com | [00d 01-18 09:29:40.62 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] does not exist +peer1.org1.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMkhzyzkBQMmDIFIj+Dmnud+j7/3h/LM +peer0.org2.example.com | Cp7fopYLAR0CUyw+Xyk= +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE +peer1.org2.example.com | [00e 01-18 09:29:40.62 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] exists +peer1.org1.example.com | sUwFjL4AqbRBEG6vNDX4lF1jwBBt39uJxvOBL2wKymZ0rY/LVNK4vumjTTBLMA4G +peer0.org1.example.com | 05n0MbLw/Ug3egJ3JA== +peer0.org2.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [00f 01-18 09:29:40.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider -> DEBU constructing HistoryDBProvider dbPath=/var/hyperledger/production/ledgersData/historyLeveldb +peer1.org1.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +peer0.org2.example.com | [037 01-18 09:29:40.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewDiscoveryService -> INFO Started {peer0.org2.example.com:7051 [] [18 47 95 192 156 61 173 63 80 232 96 64 91 49 101 242 206 87 32 24 89 4 87 160 47 124 250 124 112 185 123 13] 172.18.0.6:7051} incTime is 1516267780830335803 +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer1.org2.example.com | [010 01-18 09:29:40.64 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/historyLeveldb/] +peer1.org1.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIB1/N1vq +peer0.org2.example.com | [038 01-18 09:29:40.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService -> INFO Creating gossip service with self membership of {peer0.org2.example.com:7051 [] [18 47 95 192 156 61 173 63 80 232 96 64 91 49 101 242 206 87 32 24 89 4 87 160 47 124 250 124 112 185 123 13] 172.18.0.6:7051} +orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq +peer1.org2.example.com | [011 01-18 09:29:40.64 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] does not exist +peer0.org1.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | NZ8srg0DN/kZsRGGbGxZDd6SUmUSPGopEZ+BAiAFLGQc/nVZ7H9e3TOSPWkj9xXI +peer0.org2.example.com | [039 01-18 09:29:40.83 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | [012 01-18 09:29:40.64 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] exists +peer1.org1.example.com | zBwtXbaE2rpu1wCNZg== +peer0.org2.example.com | [03a 01-18 09:29:40.83 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity +orderer.example.com | hkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz +peer0.org1.example.com | [037 01-18 09:29:41.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewDiscoveryService -> INFO Started {peer0.org1.example.com:7051 [] [67 57 124 107 226 101 123 170 242 161 114 171 7 37 125 129 66 25 246 152 76 9 231 202 239 174 113 90 43 207 127 228] 172.18.0.5:7051} incTime is 1516267781527790501 +peer1.org2.example.com | [013 01-18 09:29:40.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO ledger provider Initialized +peer1.org1.example.com | -----END CERTIFICATE----- +peer0.org2.example.com | [03b 01-18 09:29:40.83 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [014 01-18 09:29:40.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.recoverUnderConstructionLedger -> DEBU Recovering under construction ledger +peer0.org1.example.com | [038 01-18 09:29:41.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService -> INFO Creating gossip service with self membership of {peer0.org1.example.com:7051 [] [67 57 124 107 226 101 123 170 242 161 114 171 7 37 125 129 66 25 246 152 76 9 231 202 239 174 113 90 43 207 127 228] 172.18.0.5:7051} +peer1.org1.example.com | [038 01-18 09:29:38.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer1.org1.example.com | [039 01-18 09:29:38.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s +orderer.example.com | MKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw +orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN +orderer.example.com | RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH +orderer.example.com | /4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl +peer1.org2.example.com | [015 01-18 09:29:40.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.recoverUnderConstructionLedger -> DEBU No under construction ledger found. Quitting recovery +peer0.org1.example.com | [039 01-18 09:29:41.52 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | MIICGjCCAcCgAwIBAgIRAPwSzyg1PPrCeVhRqDo4IRcwCgYIKoZIzj0EAwIwczEL +peer1.org1.example.com | [037 01-18 09:29:38.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewDiscoveryService -> INFO Started {peer1.org1.example.com:7051 [] [41 212 113 155 111 60 253 152 128 154 139 93 55 46 176 226 115 170 244 7 180 226 17 187 201 154 21 203 20 223 179 175] 172.18.0.3:7051} incTime is 1516267778880081119 +peer1.org2.example.com | [016 01-18 09:29:40.65 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO ledger mgmt initialized +peer0.org1.example.com | [03a 01-18 09:29:41.52 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity +peer0.org1.example.com | [03b 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | MIICGTCCAcCgAwIBAgIRALw0jT/FIanMxPg6w2uUMSowCgYIKoZIzj0EAwIwczEL +orderer.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [03a 01-18 09:29:38.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService -> INFO Creating gossip service with self membership of {peer1.org1.example.com:7051 [] [41 212 113 155 111 60 253 152 128 154 139 93 55 46 176 226 115 170 244 7 180 226 17 187 201 154 21 203 20 223 179 175] 172.18.0.3:7051} +peer1.org2.example.com | [017 01-18 09:29:40.65 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func1 -> INFO Auto detected peer address: 172.18.0.4:7051 +peer1.org2.example.com | [018 01-18 09:29:40.65 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func2.func1 -> INFO Auto detected peer address: 172.18.0.4:7051 +peer0.org2.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org1.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +peer1.org1.example.com | [03b 01-18 09:29:38.90 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | [019 01-18 09:29:40.69 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with TLS enabled +peer0.org2.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | 2018-01-18 09:29:38.223 UTC [msp] Validate -> DEBU 01d MSP OrdererMSP validating identity +orderer.example.com | 2018-01-18 09:29:38.223 UTC [orderer/main] createLedgerFactory -> DEBU 01e Ledger dir: /var/hyperledger/production/orderer +peer0.org1.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer1.org1.example.com | [03c 01-18 09:29:38.90 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity +peer1.org2.example.com | [01a 01-18 09:29:40.69 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering BLOCK +peer0.org2.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +peer1.org1.example.com | [03d 01-18 09:29:38.90 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [01b 01-18 09:29:40.69 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering CHAINCODE +peer0.org1.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMS5leGFtcGxlLmNvbTBZ +peer0.org2.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | 2018-01-18 09:29:38.223 UTC [kvledger.util] CreateDirIfMissing -> DEBU 01f CreateDirIfMissing [/var/hyperledger/production/orderer/index/] +peer1.org1.example.com | MIICGTCCAcCgAwIBAgIRAP//zqWKYzSHLW7GfxKsMZYwCgYIKoZIzj0EAwIwczEL +peer1.org2.example.com | [01c 01-18 09:29:40.69 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REJECTION +peer0.org1.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABKqfdWF/oY+2ymqjk+AlBN+RBThxPp/k +peer1.org1.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | 2018-01-18 09:29:38.223 UTC [kvledger.util] logDirStatus -> DEBU 020 Before creating dir - [/var/hyperledger/production/orderer/index/] does not exist +peer0.org2.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMi5leGFtcGxlLmNvbTBZ +peer1.org1.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org1.example.com | lU+BhmGArpnlGNd7iT6pil/iSDtfA5xZ9we5NIfTehFqmZcI6g1N172jTTBLMA4G +peer1.org1.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | 2018-01-18 09:29:38.223 UTC [kvledger.util] logDirStatus -> DEBU 021 After creating dir - [/var/hyperledger/production/orderer/index/] exists +peer0.org2.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABHIO8CckN5HgY1i/7g0IJdzk172E2x4D +peer1.org2.example.com | [01d 01-18 09:29:40.69 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REGISTER +peer0.org1.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +peer1.org1.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org2.example.com | lEymsPxBTC6SMx2H76gyAZbaUHLzDOc03WXuxNm/5CEb0PCug4gLmYqjTTBLMA4G +orderer.example.com | 2018-01-18 09:29:38.314 UTC [fsblkstorage] newBlockfileMgr -> DEBU 022 newBlockfileMgr() initializing file-based block storage for ledger: testchainid +peer0.org1.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIALSJqGc +peer1.org1.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ +peer1.org2.example.com | [01e 01-18 09:29:40.70 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started +peer0.org2.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +orderer.example.com | 2018-01-18 09:29:38.315 UTC [kvledger.util] CreateDirIfMissing -> DEBU 023 CreateDirIfMissing [/var/hyperledger/production/orderer/chains/testchainid/] +peer1.org1.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMkhzyzkBQMmDIFIj+Dmnud+j7/3h/LM +peer0.org2.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQDuMCD1 +orderer.example.com | 2018-01-18 09:29:38.315 UTC [kvledger.util] logDirStatus -> DEBU 024 Before creating dir - [/var/hyperledger/production/orderer/chains/testchainid/] does not exist +peer0.org1.example.com | vdZHCJ0RecVQ2Rdtkdnok57p68XFlRBy2l4xAiAJS6Z2yxyElBubPI0MBn//Xs9l +peer1.org1.example.com | sUwFjL4AqbRBEG6vNDX4lF1jwBBt39uJxvOBL2wKymZ0rY/LVNK4vumjTTBLMA4G +peer0.org2.example.com | cBz5946zQSaxCXuanblvvPmDo4EJj3fN1TTl4wIgK6OJNoi5UYFhv/CWtHvr86JU +peer1.org2.example.com | [01f 01-18 09:29:40.71 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport -> DEBU Chaincode startup timeout value set to 5m0s +orderer.example.com | 2018-01-18 09:29:38.315 UTC [kvledger.util] logDirStatus -> DEBU 025 After creating dir - [/var/hyperledger/production/orderer/chains/testchainid/] exists +peer0.org2.example.com | Cp7fopYLAR0CUyw+Xyk= +peer1.org1.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +peer0.org1.example.com | 05n0MbLw/Ug3egJ3JA== +peer0.org2.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIB1/N1vq +peer1.org2.example.com | [020 01-18 09:29:40.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> INFO Chaincode support using peerAddress: peer1.org2.example.com:7052 +peer0.org1.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:38.327 UTC [fsblkstorage] syncCPInfoFromFS -> DEBU 026 Starting checkpoint=latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0] +peer0.org2.example.com | [03c 01-18 09:29:40.83 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | NZ8srg0DN/kZsRGGbGxZDd6SUmUSPGopEZ+BAiAFLGQc/nVZ7H9e3TOSPWkj9xXI +peer1.org2.example.com | [021 01-18 09:29:40.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Turn off keepalive(value 0) +orderer.example.com | 2018-01-18 09:29:38.327 UTC [fsblkstorage] syncCPInfoFromFS -> DEBU 027 status of file [/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000]: exists=[false], size=[0] +peer0.org1.example.com | [03c 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [03d 01-18 09:29:40.83 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org2MSP validating identity +peer1.org1.example.com | zBwtXbaE2rpu1wCNZg== +orderer.example.com | 2018-01-18 09:29:38.328 UTC [fsblkstorage] newBlockIndex -> DEBU 028 newBlockIndex() - indexItems:[[BlockNum]] +peer0.org2.example.com | [03e 01-18 09:29:40.83 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | 2018-01-18 09:29:38.328 UTC [fsblkstorage] newBlockfileStream -> DEBU 029 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +peer1.org1.example.com | -----END CERTIFICATE----- +peer0.org2.example.com | [03f 01-18 09:29:40.83 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer1.org2.example.com | [022 01-18 09:29:40.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Setting execute timeout value to 30s +peer0.org1.example.com | [03d 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity +peer1.org1.example.com | [03e 01-18 09:29:38.90 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [040 01-18 09:29:40.83 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: plaintext: 1801AA01B1060A20122F5FC09C3DAD3F...0A2D2D2D2D2D454E44202D2D2D2D2D0A +orderer.example.com | 2018-01-18 09:29:38.328 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 02a Finished reading file number [0] +peer1.org1.example.com | [03f 01-18 09:29:38.90 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity +peer0.org2.example.com | [041 01-18 09:29:40.83 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: digest: 57085B15048F457A96ECEF4045625EBF83CC3E2BBC2AB42A60296E223E61FD79 +peer1.org2.example.com | [023 01-18 09:29:40.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_LEVEL set to level info +peer0.org1.example.com | [03e 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer1.org1.example.com | [040 01-18 09:29:38.90 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [042 01-18 09:29:40.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Skipping connecting to myself +peer0.org1.example.com | [03f 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | 2018-01-18 09:29:38.328 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 02b blockbytes [0] read from file [0] +peer0.org2.example.com | [043 01-18 09:29:40.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer1.org1.example.com | [041 01-18 09:29:38.90 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer1.org2.example.com | [024 01-18 09:29:40.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_SHIM set to level warning +peer0.org1.example.com | [040 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer1.org1.example.com | [042 01-18 09:29:38.90 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: plaintext: 1801AA01B1060A2029D4719B6F3CFD98...0A2D2D2D2D2D454E44202D2D2D2D2D0A +peer0.org2.example.com | [044 01-18 09:29:40.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance 172.18.0.6:7051 started +orderer.example.com | 2018-01-18 09:29:38.331 UTC [fsblkstorage] indexBlock -> DEBU 02c Indexing block [blockNum=0, blockHash=[]byte{0x89, 0xd5, 0xd2, 0x88, 0xd1, 0xb6, 0xc3, 0x25, 0x91, 0xfb, 0x5e, 0x94, 0x7f, 0x80, 0xeb, 0xd3, 0x7d, 0xdd, 0x80, 0xdf, 0x56, 0xc0, 0xb2, 0xfc, 0xe3, 0x98, 0x5f, 0x12, 0xd8, 0x6b, 0xb0, 0x21} txOffsets= +peer0.org1.example.com | [041 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: plaintext: 1801AA01B1060A2043397C6BE2657BAA...0A2D2D2D2D2D454E44202D2D2D2D2D0A +peer1.org1.example.com | [043 01-18 09:29:38.91 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: digest: 67B5A06203E1924331C334A5346029B42E35CDE66A3C99C448068A0EC421F682 +peer1.org2.example.com | [025 01-18 09:29:40.72 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered +peer0.org2.example.com | [045 01-18 09:29:40.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s +peer0.org1.example.com | [042 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: digest: 69B0B99854ABC12C15CEC60EABCF9E5C3A71C9284F1136F83AF170B4B7A7CAB3 +peer1.org1.example.com | [044 01-18 09:29:38.92 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.0.2,txid=5b5bc12b-a6ae-4360-bc5d-12c5afb34c45,syscc=true,proposal=0x0,canname=cscc:1.0.2 +orderer.example.com | txId=39266883a94d0b87be6c51e2f16ce943b4d54e117e366bcac9318c13c284ab01 locPointer=offset=38, bytesLength=9039 +peer0.org2.example.com | [046 01-18 09:29:40.83 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | [026 01-18 09:29:40.72 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered +peer0.org1.example.com | [043 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.0.2,txid=fc0cac64-84b9-46ed-b4c0-91fdaa715da4,syscc=true,proposal=0x0,canname=cscc:1.0.2 +peer1.org1.example.com | [045 01-18 09:29:38.92 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode cscc:1.0.2 is being launched +peer0.org2.example.com | [047 01-18 09:29:40.83 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | ] +peer1.org2.example.com | [027 01-18 09:29:40.72 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode escc(github.com/hyperledger/fabric/core/scc/escc) registered +peer1.org1.example.com | [046 01-18 09:29:38.92 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +peer0.org2.example.com | [048 01-18 09:29:40.83 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 18012ADE060A3F0A1B70656572302E6F...0A2D2D2D2D2D454E44202D2D2D2D2D0A +peer0.org1.example.com | [044 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode cscc:1.0.2 is being launched +orderer.example.com | 2018-01-18 09:29:38.331 UTC [fsblkstorage] updateCheckpoint -> DEBU 02d Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[9082], isChainEmpty=[false], lastBlockNumber=[0] +peer1.org2.example.com | [028 01-18 09:29:40.72 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode vscc(github.com/hyperledger/fabric/core/scc/vscc) registered +peer1.org1.example.com | [047 01-18 09:29:38.92 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer1.org1.example.com:7052] +peer0.org2.example.com | [049 01-18 09:29:40.83 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: digest: 482A4F65A5D6F7EB3366D9A39618466CC99E1C5410E6B4B25C4EF77AABA449BD +peer1.org2.example.com | [029 01-18 09:29:40.72 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/chaincode/qscc) registered +orderer.example.com | 2018-01-18 09:29:38.332 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 02e retrieveBlockByNumber() - blockNum = [0] +peer0.org1.example.com | [045 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +peer1.org1.example.com | [048 01-18 09:29:38.93 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: cscc:1.0.2(networkid:dev,peerid:peer1.org1.example.com) +peer0.org2.example.com | [04a 01-18 09:29:40.83 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | [02a 01-18 09:29:40.72 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer +peer1.org1.example.com | [049 01-18 09:29:38.93 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer1.org1.example.com:7052 +orderer.example.com | 2018-01-18 09:29:38.332 UTC [fsblkstorage] newBlockfileStream -> DEBU 02f newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +peer0.org1.example.com | [046 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] +peer0.org2.example.com | [04b 01-18 09:29:40.83 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer1.org2.example.com | [02b 01-18 09:29:40.72 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.NewEndorserServer.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | [04a 01-18 09:29:38.93 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +peer0.org1.example.com | [047 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: cscc:1.0.2(networkid:dev,peerid:peer0.org1.example.com) +peer0.org2.example.com | [04c 01-18 09:29:40.83 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A0F3137322E31382E302E363A37303531 +peer1.org2.example.com | [02c 01-18 09:29:40.72 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | 2018-01-18 09:29:38.332 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 030 Remaining bytes=[9082], Going to peek [8] bytes +peer1.org1.example.com | CORE_CHAINCODE_ID_NAME=cscc:1.0.2 +peer0.org2.example.com | [04d 01-18 09:29:40.83 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: digest: D883FFC77176F2CD9FF5F4DF28F8290B97D9F19BCB12F0C2247EDA98E7B462CF +peer0.org1.example.com | [048 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 +peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true +peer1.org2.example.com | [02d 01-18 09:29:40.72 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | 2018-01-18 09:29:38.332 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 031 Returning blockbytes - length=[9080], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +peer0.org1.example.com | [049 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +orderer.example.com | 2018-01-18 09:29:38.332 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 032 retrieveBlockByNumber() - blockNum = [0] +peer0.org2.example.com | [04e 01-18 09:29:40.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s +peer1.org2.example.com | [02e 01-18 09:29:40.72 UTC] [github.com/hyperledger/fabric/gossip/service] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1 -> INFO Initialize gossip with endpoint 172.18.0.4:7051 and bootstrap set [peer0.org2.example.com:7051] +peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=cscc:1.0.2 +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer0.org2.example.com | [04f 01-18 09:29:40.84 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.0.2,txid=0bdabe4a-cbe6-42e0-960d-2f4a85ce9a7e,syscc=true,proposal=0x0,canname=cscc:1.0.2 +orderer.example.com | 2018-01-18 09:29:38.332 UTC [fsblkstorage] newBlockfileStream -> DEBU 033 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +peer1.org2.example.com | [02f 01-18 09:29:40.72 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer0.org2.example.com | [050 01-18 09:29:40.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode cscc:1.0.2 is being launched +orderer.example.com | 2018-01-18 09:29:38.332 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 034 Remaining bytes=[9082], Going to peek [8] bytes +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer1.org2.example.com | [030 01-18 09:29:40.72 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity +orderer.example.com | 2018-01-18 09:29:38.332 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 035 Returning blockbytes - length=[9080], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +peer0.org2.example.com | [051 01-18 09:29:40.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +peer1.org1.example.com | [04c 01-18 09:29:38.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance 172.18.0.3:7051 started +peer1.org2.example.com | [031 01-18 09:29:40.72 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:38.332 UTC [common/config] NewStandardValues -> DEBU 036 Initializing protos for *config.ChannelProtos +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer0.org2.example.com | [052 01-18 09:29:40.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org2.example.com:7052] +peer1.org2.example.com | MIICGTCCAcCgAwIBAgIRAKEIKOsKrnb1ltxHMap6pEUwCgYIKoZIzj0EAwIwczEL +peer1.org1.example.com | [04d 01-18 09:29:38.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Entering {peer0.org1.example.com:7051 [] [] peer0.org1.example.com:7051} +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +orderer.example.com | 2018-01-18 09:29:38.333 UTC [common/config] initializeProtosStruct -> DEBU 037 Processing field: HashingAlgorithm +peer0.org2.example.com | [053 01-18 09:29:40.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: cscc:1.0.2(networkid:dev,peerid:peer0.org2.example.com) +peer1.org2.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | [04a 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.0.2) lock +peer1.org1.example.com | [04e 01-18 09:29:38.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Exiting +peer0.org2.example.com | [054 01-18 09:29:40.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org2.example.com:7052 +peer1.org2.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | 2018-01-18 09:29:38.333 UTC [common/config] initializeProtosStruct -> DEBU 038 Processing field: BlockDataHashingStructure +peer0.org1.example.com | [04b 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.0.2) lock +peer1.org1.example.com | [04b 01-18 09:29:38.93 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.0.2) lock +peer1.org2.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +peer0.org2.example.com | [055 01-18 09:29:40.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +orderer.example.com | 2018-01-18 09:29:38.333 UTC [common/config] initializeProtosStruct -> DEBU 039 Processing field: OrdererAddresses +peer1.org1.example.com | [04f 01-18 09:29:38.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s +peer0.org2.example.com | CORE_CHAINCODE_ID_NAME=cscc:1.0.2 +peer1.org1.example.com | [050 01-18 09:29:38.94 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.0.2) lock +orderer.example.com | 2018-01-18 09:29:38.333 UTC [common/config] initializeProtosStruct -> DEBU 03a Processing field: Consortium +peer1.org2.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | [04c 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for cscc-1.0.2 +peer0.org2.example.com | CORE_PEER_TLS_ENABLED=true +peer1.org1.example.com | [051 01-18 09:29:38.94 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for cscc-1.0.2 +orderer.example.com | 2018-01-18 09:29:38.333 UTC [common/configtx] addToMap -> DEBU 03b Adding to config map: [Groups] /Channel +peer0.org1.example.com | [04d 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.0.2) +peer1.org2.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMi5leGFtcGxlLmNvbTBZ +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer1.org1.example.com | [053 01-18 09:29:38.94 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.0.2) +orderer.example.com | 2018-01-18 09:29:38.333 UTC [common/configtx] addToMap -> DEBU 03c Adding to config map: [Groups] /Channel/Orderer +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer0.org1.example.com | [04e 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance 172.18.0.5:7051 started +peer1.org1.example.com | [052 01-18 09:29:38.94 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABOEfGjC8VbMEzCYCPKLJGSdrrYdZfeRA +orderer.example.com | 2018-01-18 09:29:38.333 UTC [common/configtx] addToMap -> DEBU 03d Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +peer0.org1.example.com | [04f 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Skipping connecting to myself +peer1.org1.example.com | [054 01-18 09:29:38.94 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | 2018-01-18 09:29:38.334 UTC [common/configtx] addToMap -> DEBU 03e Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +peer0.org1.example.com | [050 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.0.2 +peer0.org2.example.com | [056 01-18 09:29:40.85 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.0.2) lock +peer1.org2.example.com | FHWCX2T+6UK2uUSrL6Y3CjGhA0k9dcQUlvz6/JhbFMhUDE8Iq9VerOSjTTBLMA4G +peer1.org1.example.com | [055 01-18 09:29:38.94 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 18012ADE060A3F0A1B70656572312E6F...0A2D2D2D2D2D454E44202D2D2D2D2D0A +orderer.example.com | 2018-01-18 09:29:38.334 UTC [common/configtx] addToMap -> DEBU 03f Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer0.org1.example.com | [051 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer0.org2.example.com | [057 01-18 09:29:40.85 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.0.2) lock +peer1.org2.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +peer1.org1.example.com | [056 01-18 09:29:38.94 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: digest: B4EC74AEABDF4A592B9EE3B0B149E2B86DF250BB34194105F9053496D92A50B3 +orderer.example.com | 2018-01-18 09:29:38.334 UTC [common/configtx] addToMap -> DEBU 040 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer0.org1.example.com | [052 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0cAMEQCIALDRpu4 +peer0.org2.example.com | [058 01-18 09:29:40.85 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for cscc-1.0.2 +peer1.org1.example.com | [057 01-18 09:29:38.94 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [053 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s +peer0.org2.example.com | [059 01-18 09:29:40.85 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.0.2) +orderer.example.com | 2018-01-18 09:29:38.334 UTC [common/configtx] addToMap -> DEBU 041 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer1.org2.example.com | 6rlRGqwZERIU0Bhc6EjFDrOLy8+aQtu5vf5IAiBsx4vZaqvuR1JyVZJx/5ysU+j7 +peer1.org1.example.com | [058 01-18 09:29:38.94 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org1.example.com | [054 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [05a 01-18 09:29:40.85 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.0.2 +orderer.example.com | 2018-01-18 09:29:38.334 UTC [common/configtx] addToMap -> DEBU 042 Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +peer1.org1.example.com | [059 01-18 09:29:38.94 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A0F3137322E31382E302E333A37303531 +peer1.org2.example.com | 7xpnfkN/TxNBsS31VA== +peer0.org1.example.com | [055 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer1.org1.example.com | [05a 01-18 09:29:38.94 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: digest: A7EC87E91E857472DAC795CCCEECF04C0795DB3F0E46BD88DAA96B632E2786D9 +peer0.org2.example.com | [05b 01-18 09:29:40.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer1.org2.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:38.334 UTC [common/configtx] addToMap -> DEBU 043 Adding to config map: [Values] /Channel/Orderer/ConsensusType +peer0.org1.example.com | [056 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s +peer1.org1.example.com | [05b 01-18 09:29:38.95 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.0.2 +peer0.org2.example.com | [05c 01-18 09:29:40.85 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.0.2 +orderer.example.com | 2018-01-18 09:29:38.336 UTC [common/configtx] addToMap -> DEBU 044 Adding to config map: [Values] /Channel/Orderer/BatchSize +peer1.org2.example.com | [032 01-18 09:29:40.73 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [058 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.0.2 +peer1.org1.example.com | [05c 01-18 09:29:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +orderer.example.com | 2018-01-18 09:29:38.337 UTC [common/configtx] addToMap -> DEBU 045 Adding to config map: [Values] /Channel/Orderer/BatchTimeout +peer0.org2.example.com | [05d 01-18 09:29:40.85 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | [033 01-18 09:29:40.73 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org2MSP validating identity +peer0.org1.example.com | [059 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] +peer1.org1.example.com | [05d 01-18 09:29:38.95 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | 2018-01-18 09:29:38.347 UTC [common/configtx] addToMap -> DEBU 046 Adding to config map: [Policy] /Channel/Orderer/Admins +peer1.org2.example.com | [034 01-18 09:29:40.75 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [05e 01-18 09:29:40.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org2.example.com:7052] +peer1.org1.example.com | [05e 01-18 09:29:38.95 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.0.2 +peer1.org2.example.com | [035 01-18 09:29:40.75 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity -> INFO Obtaining identity +orderer.example.com | 2018-01-18 09:29:38.347 UTC [common/configtx] addToMap -> DEBU 047 Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer0.org2.example.com | [05f 01-18 09:29:40.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.0.2 +peer0.org1.example.com | [05a 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.0.2 +peer1.org1.example.com | [05f 01-18 09:29:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org1.example.com:7052] +peer1.org2.example.com | [036 01-18 09:29:40.76 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:38.348 UTC [common/configtx] addToMap -> DEBU 048 Adding to config map: [Policy] /Channel/Orderer/Readers +peer0.org2.example.com | [060 01-18 09:29:40.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer0.org2.example.com | [061 01-18 09:29:40.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer0.org2.example.com | [062 01-18 09:29:40.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer0.org2.example.com | [063 01-18 09:29:40.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer0.org1.example.com | [05b 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +orderer.example.com | 2018-01-18 09:29:38.348 UTC [common/configtx] addToMap -> DEBU 049 Adding to config map: [Policy] /Channel/Orderer/Writers +peer1.org2.example.com | MIICGTCCAcCgAwIBAgIRAKEIKOsKrnb1ltxHMap6pEUwCgYIKoZIzj0EAwIwczEL +peer1.org1.example.com | [060 01-18 09:29:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.0.2 +peer0.org2.example.com | [064 01-18 09:29:40.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode cscc:1.0.2 +peer0.org1.example.com | [05c 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +orderer.example.com | 2018-01-18 09:29:38.348 UTC [common/configtx] addToMap -> DEBU 04a Adding to config map: [Groups] /Channel/Consortiums +peer0.org2.example.com | [065 01-18 09:29:40.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"cscc:1.0.2" , sending back REGISTERED +peer1.org2.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | [05d 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer1.org1.example.com | [061 01-18 09:29:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer0.org2.example.com | [066 01-18 09:29:40.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +orderer.example.com | 2018-01-18 09:29:38.348 UTC [common/configtx] addToMap -> DEBU 04b Adding to config map: [Groups] /Channel/Consortiums/SampleConsortium +peer1.org2.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org2.example.com | [067 01-18 09:29:40.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer1.org1.example.com | [062 01-18 09:29:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer0.org1.example.com | [05e 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer0.org2.example.com | [068 01-18 09:29:40.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer1.org2.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +orderer.example.com | 2018-01-18 09:29:38.348 UTC [common/configtx] addToMap -> DEBU 04c Adding to config map: [Groups] /Channel/Consortiums/SampleConsortium/Org2MSP +peer1.org1.example.com | [063 01-18 09:29:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer0.org2.example.com | [069 01-18 09:29:40.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer0.org1.example.com | [05f 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode cscc:1.0.2 +peer0.org2.example.com | [06a 01-18 09:29:40.85 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode cscc:1.0.2 launch seq completed +peer1.org2.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | 2018-01-18 09:29:38.348 UTC [common/configtx] addToMap -> DEBU 04d Adding to config map: [Values] /Channel/Consortiums/SampleConsortium/Org2MSP/MSP +peer1.org1.example.com | [064 01-18 09:29:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer0.org1.example.com | [060 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"cscc:1.0.2" , sending back REGISTERED +peer0.org2.example.com | [06b 01-18 09:29:40.85 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +orderer.example.com | 2018-01-18 09:29:38.348 UTC [common/configtx] addToMap -> DEBU 04e Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Writers +peer1.org2.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMi5leGFtcGxlLmNvbTBZ +peer1.org1.example.com | [065 01-18 09:29:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode cscc:1.0.2 +peer0.org2.example.com | [06c 01-18 09:29:40.85 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [061 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +orderer.example.com | 2018-01-18 09:29:38.348 UTC [common/configtx] addToMap -> DEBU 04f Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Admins +peer1.org2.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABOEfGjC8VbMEzCYCPKLJGSdrrYdZfeRA +peer1.org1.example.com | [066 01-18 09:29:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"cscc:1.0.2" , sending back REGISTERED +peer0.org2.example.com | [06d 01-18 09:29:40.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0bdabe4a]Move state message READY +peer1.org2.example.com | FHWCX2T+6UK2uUSrL6Y3CjGhA0k9dcQUlvz6/JhbFMhUDE8Iq9VerOSjTTBLMA4G +peer0.org1.example.com | [062 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer1.org1.example.com | [067 01-18 09:29:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +orderer.example.com | 2018-01-18 09:29:38.348 UTC [common/configtx] addToMap -> DEBU 050 Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Readers +peer0.org2.example.com | [06e 01-18 09:29:40.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0bdabe4a]Fabric side Handling ChaincodeMessage of type: READY in state established +peer0.org1.example.com | [063 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer1.org1.example.com | [068 01-18 09:29:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer1.org2.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +orderer.example.com | 2018-01-18 09:29:38.348 UTC [common/configtx] addToMap -> DEBU 051 Adding to config map: [Groups] /Channel/Consortiums/SampleConsortium/Org1MSP +peer0.org2.example.com | [06f 01-18 09:29:40.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [0bdabe4a]Entered state ready +peer1.org2.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0cAMEQCIALDRpu4 +peer0.org1.example.com | [064 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer1.org1.example.com | [069 01-18 09:29:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer0.org2.example.com | [070 01-18 09:29:40.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:0bdabe4a-cbe6-42e0-960d-2f4a85ce9a7e +peer1.org2.example.com | 6rlRGqwZERIU0Bhc6EjFDrOLy8+aQtu5vf5IAiBsx4vZaqvuR1JyVZJx/5ysU+j7 +orderer.example.com | 2018-01-18 09:29:38.348 UTC [common/configtx] addToMap -> DEBU 052 Adding to config map: [Values] /Channel/Consortiums/SampleConsortium/Org1MSP/MSP +peer1.org1.example.com | [06a 01-18 09:29:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer0.org2.example.com | [072 01-18 09:29:40.86 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +peer0.org1.example.com | [065 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode cscc:1.0.2 launch seq completed +orderer.example.com | 2018-01-18 09:29:38.348 UTC [common/configtx] addToMap -> DEBU 053 Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Readers +peer1.org2.example.com | 7xpnfkN/TxNBsS31VA== +peer0.org2.example.com | [073 01-18 09:29:40.86 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +peer0.org1.example.com | [066 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +peer0.org2.example.com | [074 01-18 09:29:40.86 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer1.org2.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:38.348 UTC [common/configtx] addToMap -> DEBU 054 Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Writers +peer1.org1.example.com | [06b 01-18 09:29:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode cscc:1.0.2 launch seq completed +peer0.org1.example.com | [067 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [075 01-18 09:29:40.86 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.2 +orderer.example.com | 2018-01-18 09:29:38.348 UTC [common/configtx] addToMap -> DEBU 055 Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Admins +peer1.org2.example.com | [037 01-18 09:29:40.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer1.org1.example.com | [06c 01-18 09:29:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +peer0.org1.example.com | [068 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fc0cac64]Move state message READY +peer0.org2.example.com | [076 01-18 09:29:40.86 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [0bdabe4a]Inside sendExecuteMessage. Message INIT +orderer.example.com | 2018-01-18 09:29:38.348 UTC [common/configtx] addToMap -> DEBU 056 Adding to config map: [Values] /Channel/Consortiums/SampleConsortium/ChannelCreationPolicy +peer0.org1.example.com | [069 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [fc0cac64]Fabric side Handling ChaincodeMessage of type: READY in state established +peer0.org2.example.com | [077 01-18 09:29:40.86 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [06d 01-18 09:29:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [038 01-18 09:29:40.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s +peer0.org1.example.com | [06a 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [fc0cac64]Entered state ready +orderer.example.com | 2018-01-18 09:29:38.349 UTC [common/configtx] addToMap -> DEBU 057 Adding to config map: [Policy] /Channel/Consortiums/Admins +peer0.org2.example.com | [078 01-18 09:29:40.86 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [0bdabe4a]sendExecuteMsg trigger event INIT +peer1.org1.example.com | [06e 01-18 09:29:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5b5bc12b]Move state message READY +peer0.org1.example.com | [06b 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:fc0cac64-84b9-46ed-b4c0-91fdaa715da4 +peer0.org2.example.com | [071 01-18 09:29:40.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0bdabe4a]sending state message READY +orderer.example.com | 2018-01-18 09:29:38.349 UTC [common/configtx] addToMap -> DEBU 058 Adding to config map: [Values] /Channel/OrdererAddresses +peer1.org1.example.com | [06f 01-18 09:29:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5b5bc12b]Fabric side Handling ChaincodeMessage of type: READY in state established +peer1.org1.example.com | [070 01-18 09:29:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [5b5bc12b]Entered state ready +peer1.org1.example.com | [071 01-18 09:29:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:5b5bc12b-a6ae-4360-bc5d-12c5afb34c45 +peer1.org1.example.com | [072 01-18 09:29:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5b5bc12b]sending state message READY +peer1.org1.example.com | [073 01-18 09:29:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5b5bc12b]Received message READY from shim +peer1.org1.example.com | [074 01-18 09:29:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5b5bc12b]Handling ChaincodeMessage of type: READY(state:established) +peer1.org1.example.com | [075 01-18 09:29:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +peer1.org1.example.com | [076 01-18 09:29:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +peer1.org2.example.com | [039 01-18 09:29:40.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewDiscoveryService -> INFO Started {peer1.org2.example.com:7051 [] [144 119 48 161 152 16 111 55 135 212 104 153 242 128 107 239 162 108 100 105 229 13 64 139 107 78 122 75 126 238 20 116] 172.18.0.4:7051} incTime is 1516267780761625775 +peer0.org1.example.com | [06c 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fc0cac64]sending state message READY +orderer.example.com | 2018-01-18 09:29:38.349 UTC [common/configtx] addToMap -> DEBU 059 Adding to config map: [Values] /Channel/HashingAlgorithm +peer1.org1.example.com | [077 01-18 09:29:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [07a 01-18 09:29:40.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0bdabe4a]Received message READY from shim +peer1.org2.example.com | [03a 01-18 09:29:40.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService -> INFO Creating gossip service with self membership of {peer1.org2.example.com:7051 [] [144 119 48 161 152 16 111 55 135 212 104 153 242 128 107 239 162 108 100 105 229 13 64 139 107 78 122 75 126 238 20 116] 172.18.0.4:7051} +peer0.org1.example.com | [057 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 18012ADE060A3F0A1B70656572302E6F...0A2D2D2D2D2D454E44202D2D2D2D2D0A +orderer.example.com | 2018-01-18 09:29:38.349 UTC [common/configtx] addToMap -> DEBU 05a Adding to config map: [Values] /Channel/BlockDataHashingStructure +peer1.org1.example.com | [078 01-18 09:29:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.2 +peer0.org2.example.com | [07b 01-18 09:29:40.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0bdabe4a]Handling ChaincodeMessage of type: READY(state:established) +peer1.org2.example.com | [03b 01-18 09:29:40.78 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | 2018-01-18 09:29:38.349 UTC [common/configtx] addToMap -> DEBU 05b Adding to config map: [Policy] /Channel/Readers +peer1.org1.example.com | [079 01-18 09:29:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [5b5bc12b]Inside sendExecuteMessage. Message INIT +peer0.org2.example.com | [079 01-18 09:29:40.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0bdabe4a]Move state message INIT +peer0.org1.example.com | [06d 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fc0cac64]Received message READY from shim +peer1.org2.example.com | [03c 01-18 09:29:40.78 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity +orderer.example.com | 2018-01-18 09:29:38.349 UTC [common/configtx] addToMap -> DEBU 05c Adding to config map: [Policy] /Channel/Writers +peer1.org1.example.com | [07a 01-18 09:29:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [07c 01-18 09:29:40.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0bdabe4a]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org1.example.com | [070 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [fc0cac64]Handling ChaincodeMessage of type: READY(state:established) +peer1.org1.example.com | [07b 01-18 09:29:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [5b5bc12b]sendExecuteMsg trigger event INIT +orderer.example.com | 2018-01-18 09:29:38.349 UTC [common/configtx] addToMap -> DEBU 05d Adding to config map: [Policy] /Channel/Admins +peer1.org2.example.com | [03d 01-18 09:29:40.78 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org2.example.com | [07d 01-18 09:29:40.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | 2018-01-18 09:29:38.349 UTC [common/configtx] processConfig -> DEBU 05e Beginning new config for channel testchainid +peer1.org1.example.com | [07c 01-18 09:29:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5b5bc12b]Move state message INIT +peer1.org2.example.com | MIICGTCCAcCgAwIBAgIRAKEIKOsKrnb1ltxHMap6pEUwCgYIKoZIzj0EAwIwczEL +peer0.org2.example.com | [07e 01-18 09:29:40.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0bdabe4a]sending state message INIT +peer0.org1.example.com | [06e 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +peer1.org2.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | 2018-01-18 09:29:38.349 UTC [common/config] NewStandardValues -> DEBU 05f Initializing protos for *config.ChannelProtos +peer1.org1.example.com | [07d 01-18 09:29:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5b5bc12b]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org2.example.com | [07f 01-18 09:29:40.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0bdabe4a]Received message INIT from shim +peer0.org1.example.com | [06f 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: digest: C4545A1D8EB0E529A53C9BA53F3329BA6089EC6AC8F5AA40311CF6A5E8DB5B8B +peer0.org2.example.com | [080 01-18 09:29:40.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0bdabe4a]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org2.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org1.example.com | [07e 01-18 09:29:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [071 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +peer0.org2.example.com | [081 01-18 09:29:40.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +orderer.example.com | 2018-01-18 09:29:38.349 UTC [common/config] initializeProtosStruct -> DEBU 060 Processing field: HashingAlgorithm +peer1.org2.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +peer1.org1.example.com | [07f 01-18 09:29:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5b5bc12b]sending state message INIT +peer0.org1.example.com | [073 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer1.org2.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | 2018-01-18 09:29:38.349 UTC [common/config] initializeProtosStruct -> DEBU 061 Processing field: BlockDataHashingStructure +peer0.org2.example.com | [082 01-18 09:29:40.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [0bdabe4a]Received INIT, initializing chaincode +peer1.org1.example.com | [080 01-18 09:29:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5b5bc12b]Received message INIT from shim +peer1.org2.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMi5leGFtcGxlLmNvbTBZ +peer0.org1.example.com | [074 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.2 +orderer.example.com | 2018-01-18 09:29:38.349 UTC [common/config] initializeProtosStruct -> DEBU 062 Processing field: OrdererAddresses +peer0.org2.example.com | [083 01-18 09:29:40.86 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC +peer1.org2.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABOEfGjC8VbMEzCYCPKLJGSdrrYdZfeRA +peer1.org1.example.com | [081 01-18 09:29:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5b5bc12b]Handling ChaincodeMessage of type: INIT(state:ready) +orderer.example.com | 2018-01-18 09:29:38.349 UTC [common/config] initializeProtosStruct -> DEBU 063 Processing field: Consortium +peer0.org1.example.com | [075 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [fc0cac64]Inside sendExecuteMessage. Message INIT +peer1.org2.example.com | FHWCX2T+6UK2uUSrL6Y3CjGhA0k9dcQUlvz6/JhbFMhUDE8Iq9VerOSjTTBLMA4G +peer0.org2.example.com | [084 01-18 09:29:40.86 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [076 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [082 01-18 09:29:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +orderer.example.com | 2018-01-18 09:29:38.350 UTC [policies] ProposePolicy -> DEBU 064 Proposed new policy Readers for Channel +peer1.org2.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +peer0.org1.example.com | [077 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [fc0cac64]sendExecuteMsg trigger event INIT +orderer.example.com | 2018-01-18 09:29:38.350 UTC [policies] ProposePolicy -> DEBU 065 Proposed new policy Writers for Channel +peer0.org2.example.com | [085 01-18 09:29:40.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0bdabe4a]Init get response status: 200 +peer1.org1.example.com | [083 01-18 09:29:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [5b5bc12b]Received INIT, initializing chaincode +peer0.org1.example.com | [078 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fc0cac64]Move state message INIT +peer1.org2.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0cAMEQCIALDRpu4 +orderer.example.com | 2018-01-18 09:29:38.350 UTC [policies] ProposePolicy -> DEBU 066 Proposed new policy Admins for Channel +peer0.org1.example.com | [072 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [086 01-18 09:29:40.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0bdabe4a]Init succeeded. Sending COMPLETED +peer1.org1.example.com | [084 01-18 09:29:38.96 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC +peer1.org2.example.com | 6rlRGqwZERIU0Bhc6EjFDrOLy8+aQtu5vf5IAiBsx4vZaqvuR1JyVZJx/5ysU+j7 +orderer.example.com | 2018-01-18 09:29:38.350 UTC [policies] ProposePolicy -> DEBU 067 Proposed new policy Admins for Consortiums +peer0.org2.example.com | [087 01-18 09:29:40.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0bdabe4a]Move state message COMPLETED +peer0.org1.example.com | [07a 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | 2018-01-18 09:29:38.350 UTC [common/config] NewStandardValues -> DEBU 068 Initializing protos for *config.ConsortiumProtos +peer1.org2.example.com | 7xpnfkN/TxNBsS31VA== +peer1.org1.example.com | [085 01-18 09:29:38.96 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [088 01-18 09:29:40.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0bdabe4a]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [07b 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A0F3137322E31382E302E353A37303531 +orderer.example.com | 2018-01-18 09:29:38.350 UTC [common/config] initializeProtosStruct -> DEBU 069 Processing field: ChannelCreationPolicy +peer1.org2.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [086 01-18 09:29:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5b5bc12b]Init get response status: 200 +peer0.org2.example.com | [089 01-18 09:29:40.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0bdabe4a]send state message COMPLETED +peer0.org1.example.com | [07c 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: digest: E68B8E19818ACE46C3DFD246ABA5B853F7FCCE686B205B60D19F8048C2CEFF4E +orderer.example.com | 2018-01-18 09:29:38.350 UTC [common/config] NewStandardValues -> DEBU 06a Initializing protos for *config.OrganizationProtos +peer1.org1.example.com | [087 01-18 09:29:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5b5bc12b]Init succeeded. Sending COMPLETED +peer1.org2.example.com | [03e 01-18 09:29:40.78 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [08a 01-18 09:29:40.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0bdabe4a]Received message COMPLETED from shim +peer0.org1.example.com | [079 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [fc0cac64]Fabric side Handling ChaincodeMessage of type: INIT in state ready +orderer.example.com | 2018-01-18 09:29:38.350 UTC [common/config] initializeProtosStruct -> DEBU 06b Processing field: MSP +peer1.org1.example.com | [088 01-18 09:29:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5b5bc12b]Move state message COMPLETED +peer1.org2.example.com | [03f 01-18 09:29:40.78 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org2MSP validating identity +peer0.org2.example.com | [08b 01-18 09:29:40.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0bdabe4a]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [07d 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | 2018-01-18 09:29:38.351 UTC [policies] ProposePolicy -> DEBU 06c Proposed new policy Readers for Org1MSP +peer1.org1.example.com | [089 01-18 09:29:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5b5bc12b]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [08c 01-18 09:29:40.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0bdabe4a-cbe6-42e0-960d-2f4a85ce9a7e]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [040 01-18 09:29:40.78 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [07e 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fc0cac64]sending state message INIT +orderer.example.com | 2018-01-18 09:29:38.351 UTC [policies] ProposePolicy -> DEBU 06d Proposed new policy Writers for Org1MSP +peer0.org2.example.com | [08d 01-18 09:29:40.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:0bdabe4a-cbe6-42e0-960d-2f4a85ce9a7e +peer1.org1.example.com | [08a 01-18 09:29:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5b5bc12b]send state message COMPLETED +peer1.org2.example.com | [041 01-18 09:29:40.78 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org1.example.com | [07f 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fc0cac64]Received message INIT from shim +orderer.example.com | 2018-01-18 09:29:38.351 UTC [policies] ProposePolicy -> DEBU 06e Proposed new policy Admins for Org1MSP +peer1.org1.example.com | [08b 01-18 09:29:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5b5bc12b]Received message COMPLETED from shim +peer0.org2.example.com | [08e 01-18 09:29:40.86 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [042 01-18 09:29:40.78 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: plaintext: 1801AA01B1060A20907730A198106F37...0A2D2D2D2D2D454E44202D2D2D2D2D0A +orderer.example.com | 2018-01-18 09:29:38.351 UTC [common/config] NewStandardValues -> DEBU 06f Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [080 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [fc0cac64]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org2.example.com | [08f 01-18 09:29:40.87 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed +orderer.example.com | 2018-01-18 09:29:38.351 UTC [common/config] initializeProtosStruct -> DEBU 070 Processing field: MSP +peer1.org2.example.com | [043 01-18 09:29:40.79 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: digest: F21BE5B0722E39BF9E0A2FC0299B97E074CFD5C609916BF206F14668BA5F9AAC +peer1.org1.example.com | [08c 01-18 09:29:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5b5bc12b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [081 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org2.example.com | [090 01-18 09:29:40.87 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.0.2,txid=9da087a0-cd72-4321-922f-ae99529b4ac1,syscc=true,proposal=0x0,canname=lscc:1.0.2 +peer1.org1.example.com | [08d 01-18 09:29:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5b5bc12b-a6ae-4360-bc5d-12c5afb34c45]HandleMessage- COMPLETED. Notify +orderer.example.com | 2018-01-18 09:29:38.351 UTC [policies] ProposePolicy -> DEBU 071 Proposed new policy Admins for Org2MSP +peer1.org2.example.com | [044 01-18 09:29:40.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance 172.18.0.4:7051 started +peer0.org2.example.com | [091 01-18 09:29:40.87 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode lscc:1.0.2 is being launched +peer0.org1.example.com | [082 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [fc0cac64]Received INIT, initializing chaincode +orderer.example.com | 2018-01-18 09:29:38.351 UTC [policies] ProposePolicy -> DEBU 072 Proposed new policy Readers for Org2MSP +peer1.org1.example.com | [08e 01-18 09:29:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:5b5bc12b-a6ae-4360-bc5d-12c5afb34c45 +peer1.org2.example.com | [045 01-18 09:29:40.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s +peer0.org2.example.com | [092 01-18 09:29:40.87 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +peer0.org1.example.com | [083 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC +peer1.org1.example.com | [08f 01-18 09:29:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +orderer.example.com | 2018-01-18 09:29:38.351 UTC [policies] ProposePolicy -> DEBU 073 Proposed new policy Writers for Org2MSP +peer0.org1.example.com | [084 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | [046 01-18 09:29:40.79 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [093 01-18 09:29:40.87 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org2.example.com:7052] +peer1.org1.example.com | [090 01-18 09:29:38.96 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed +peer1.org1.example.com | [091 01-18 09:29:38.96 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.0.2,txid=9f72194d-fe8f-44bd-aab2-ef65418faa0a,syscc=true,proposal=0x0,canname=lscc:1.0.2 +orderer.example.com | 2018-01-18 09:29:38.351 UTC [common/config] NewStandardValues -> DEBU 074 Initializing protos for *config.OrdererProtos +peer1.org2.example.com | [047 01-18 09:29:40.79 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer1.org1.example.com | [092 01-18 09:29:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode lscc:1.0.2 is being launched +orderer.example.com | 2018-01-18 09:29:38.351 UTC [common/config] initializeProtosStruct -> DEBU 075 Processing field: ConsensusType +peer0.org1.example.com | [085 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fc0cac64]Init get response status: 200 +peer1.org2.example.com | [048 01-18 09:29:40.79 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 18012ADE060A3F0A1B70656572312E6F...0A2D2D2D2D2D454E44202D2D2D2D2D0A +peer1.org1.example.com | [093 01-18 09:29:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +peer0.org2.example.com | [094 01-18 09:29:40.87 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: lscc:1.0.2(networkid:dev,peerid:peer0.org2.example.com) +peer0.org1.example.com | [086 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fc0cac64]Init succeeded. Sending COMPLETED +orderer.example.com | 2018-01-18 09:29:38.351 UTC [common/config] initializeProtosStruct -> DEBU 076 Processing field: BatchSize +peer1.org2.example.com | [049 01-18 09:29:40.79 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: digest: B45B0B0460F87A15CB00F57B066CDD304CC482431A79E996A5C90182DC527640 +peer0.org2.example.com | [095 01-18 09:29:40.87 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org2.example.com:7052 +peer1.org1.example.com | [094 01-18 09:29:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer1.org1.example.com:7052] +orderer.example.com | 2018-01-18 09:29:38.351 UTC [common/config] initializeProtosStruct -> DEBU 077 Processing field: BatchTimeout +peer0.org1.example.com | [087 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fc0cac64]Move state message COMPLETED +peer1.org2.example.com | [04a 01-18 09:29:40.79 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | [095 01-18 09:29:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: lscc:1.0.2(networkid:dev,peerid:peer1.org1.example.com) +peer0.org2.example.com | [096 01-18 09:29:40.87 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +peer0.org1.example.com | [088 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [fc0cac64]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | 2018-01-18 09:29:38.351 UTC [common/config] initializeProtosStruct -> DEBU 078 Processing field: KafkaBrokers +peer1.org2.example.com | [04b 01-18 09:29:40.79 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org1.example.com | [089 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fc0cac64]send state message COMPLETED +peer0.org2.example.com | CORE_CHAINCODE_ID_NAME=lscc:1.0.2 +peer1.org1.example.com | [096 01-18 09:29:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer1.org1.example.com:7052 +orderer.example.com | 2018-01-18 09:29:38.351 UTC [common/config] initializeProtosStruct -> DEBU 079 Processing field: ChannelRestrictions +peer1.org2.example.com | [04c 01-18 09:29:40.79 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A0F3137322E31382E302E343A37303531 +peer0.org2.example.com | CORE_PEER_TLS_ENABLED=true +peer1.org1.example.com | [097 01-18 09:29:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +peer0.org1.example.com | [08a 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fc0cac64]Received message COMPLETED from shim +peer1.org2.example.com | [04d 01-18 09:29:40.79 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: digest: 3C234FAB19978D455E2F2A67C82FB6DAE851F3BCAC0EC11ED44E1D53E8F33F9D +orderer.example.com | 2018-01-18 09:29:38.351 UTC [policies] ProposePolicy -> DEBU 07a Proposed new policy Writers for Orderer +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer0.org1.example.com | [08b 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [fc0cac64]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [04e 01-18 09:29:40.79 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.0.2,txid=03f031af-b44e-4de6-a4d2-bb67818311f0,syscc=true,proposal=0x0,canname=cscc:1.0.2 +peer1.org1.example.com | CORE_CHAINCODE_ID_NAME=lscc:1.0.2 +orderer.example.com | 2018-01-18 09:29:38.351 UTC [policies] ProposePolicy -> DEBU 07b Proposed new policy Admins for Orderer +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer1.org2.example.com | [050 01-18 09:29:40.79 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode cscc:1.0.2 is being launched +peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true +peer0.org1.example.com | [08c 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [fc0cac64-84b9-46ed-b4c0-91fdaa715da4]HandleMessage- COMPLETED. Notify +orderer.example.com | 2018-01-18 09:29:38.351 UTC [policies] ProposePolicy -> DEBU 07c Proposed new policy BlockValidation for Orderer +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +peer1.org2.example.com | [051 01-18 09:29:40.79 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +peer1.org2.example.com | [04f 01-18 09:29:40.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Entering {peer0.org2.example.com:7051 [] [] peer0.org2.example.com:7051} +peer0.org1.example.com | [08d 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:fc0cac64-84b9-46ed-b4c0-91fdaa715da4 +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +orderer.example.com | 2018-01-18 09:29:38.351 UTC [policies] ProposePolicy -> DEBU 07d Proposed new policy Readers for Orderer +peer0.org2.example.com | [097 01-18 09:29:40.87 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.0.2) lock +peer1.org2.example.com | [053 01-18 09:29:40.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Exiting +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +orderer.example.com | 2018-01-18 09:29:38.351 UTC [common/config] NewStandardValues -> DEBU 07e Initializing protos for *config.OrganizationProtos +peer0.org2.example.com | [098 01-18 09:29:40.87 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.0.2) lock +peer0.org1.example.com | [08e 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [052 01-18 09:29:40.79 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer1.org2.example.com:7052] +orderer.example.com | 2018-01-18 09:29:38.351 UTC [common/config] initializeProtosStruct -> DEBU 07f Processing field: MSP +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +peer0.org1.example.com | [08f 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed +peer0.org2.example.com | [099 01-18 09:29:40.87 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for lscc-1.0.2 +peer1.org2.example.com | [054 01-18 09:29:40.79 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: cscc:1.0.2(networkid:dev,peerid:peer1.org2.example.com) +orderer.example.com | 2018-01-18 09:29:38.351 UTC [policies] ProposePolicy -> DEBU 080 Proposed new policy Writers for OrdererOrg +peer0.org2.example.com | [09a 01-18 09:29:40.87 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.0.2) +peer0.org1.example.com | [090 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.0.2,txid=f068dd2a-7863-40bd-980b-fa163455eecd,syscc=true,proposal=0x0,canname=lscc:1.0.2 +peer1.org1.example.com | [098 01-18 09:29:38.96 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.0.2) lock +peer1.org2.example.com | [055 01-18 09:29:40.79 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer1.org2.example.com:7052 +orderer.example.com | 2018-01-18 09:29:38.351 UTC [policies] ProposePolicy -> DEBU 081 Proposed new policy Admins for OrdererOrg +peer0.org2.example.com | [09b 01-18 09:29:40.87 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.0.2 +peer0.org1.example.com | [091 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode lscc:1.0.2 is being launched +peer1.org1.example.com | [099 01-18 09:29:38.96 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.0.2) lock +peer1.org2.example.com | [056 01-18 09:29:40.79 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +orderer.example.com | 2018-01-18 09:29:38.351 UTC [policies] ProposePolicy -> DEBU 082 Proposed new policy Readers for OrdererOrg +peer0.org2.example.com | [09c 01-18 09:29:40.87 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.0.2 +peer0.org1.example.com | [092 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +orderer.example.com | 2018-01-18 09:29:38.351 UTC [common/config] validateMSP -> DEBU 083 Setting up MSP for org Org1MSP +peer1.org1.example.com | [09a 01-18 09:29:38.96 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for lscc-1.0.2 +peer1.org2.example.com | CORE_CHAINCODE_ID_NAME=cscc:1.0.2 +peer0.org2.example.com | [09e 01-18 09:29:40.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org2.example.com:7052] +orderer.example.com | 2018-01-18 09:29:38.351 UTC [msp] NewBccspMsp -> DEBU 084 Creating BCCSP-based MSP instance +peer1.org1.example.com | [09b 01-18 09:29:38.96 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.0.2) +orderer.example.com | 2018-01-18 09:29:38.351 UTC [msp] Setup -> DEBU 085 Setting up MSP instance Org1MSP +peer0.org1.example.com | [093 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] +peer1.org1.example.com | [09c 01-18 09:29:38.96 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.0.2 +peer1.org2.example.com | CORE_PEER_TLS_ENABLED=true +peer1.org1.example.com | [09e 01-18 09:29:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer0.org1.example.com | [094 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: lscc:1.0.2(networkid:dev,peerid:peer0.org1.example.com) +peer0.org2.example.com | [09f 01-18 09:29:40.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=lscc:1.0.2 +orderer.example.com | 2018-01-18 09:29:38.352 UTC [msp/identity] newIdentity -> DEBU 086 Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org1.example.com | [09f 01-18 09:29:38.96 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer0.org1.example.com | [095 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 +peer0.org2.example.com | [0a0 01-18 09:29:40.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer1.org1.example.com | [09d 01-18 09:29:38.96 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.0.2 +peer0.org1.example.com | [096 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +peer0.org2.example.com | [09d 01-18 09:29:40.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer1.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +orderer.example.com | MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL +peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=lscc:1.0.2 +peer0.org2.example.com | [0a1 01-18 09:29:40.87 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | [0a0 01-18 09:29:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org1.example.com:7052] +peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true +peer1.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer0.org2.example.com | [0a2 01-18 09:29:40.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer1.org1.example.com | [0a1 01-18 09:29:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=lscc:1.0.2 +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer1.org2.example.com | [057 01-18 09:29:40.79 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.0.2) lock +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org1.example.com | [0a2 01-18 09:29:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +peer0.org2.example.com | [0a3 01-18 09:29:40.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +peer1.org1.example.com | [0a3 01-18 09:29:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer0.org1.example.com | [097 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.0.2) lock +peer1.org2.example.com | [058 01-18 09:29:40.79 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.0.2) lock +peer0.org2.example.com | [0a4 01-18 09:29:40.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer1.org1.example.com | [0a4 01-18 09:29:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer0.org1.example.com | [098 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.0.2) lock +peer1.org2.example.com | [059 01-18 09:29:40.79 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for cscc-1.0.2 +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +peer0.org2.example.com | [0a5 01-18 09:29:40.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode lscc:1.0.2 +peer0.org1.example.com | [099 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for lscc-1.0.2 +peer1.org2.example.com | [05a 01-18 09:29:40.79 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.0.2) +peer1.org1.example.com | [0a5 01-18 09:29:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +peer0.org1.example.com | [09a 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.0.2) +peer0.org2.example.com | [0a6 01-18 09:29:40.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"lscc:1.0.2" , sending back REGISTERED +peer1.org1.example.com | [0a6 01-18 09:29:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode lscc:1.0.2 +peer0.org1.example.com | [09b 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.0.2 +orderer.example.com | BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf +peer1.org2.example.com | [05b 01-18 09:29:40.79 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.0.2 +peer0.org1.example.com | [09c 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer1.org1.example.com | [0a7 01-18 09:29:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"lscc:1.0.2" , sending back REGISTERED +orderer.example.com | db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +peer0.org2.example.com | [0a8 01-18 09:29:40.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer1.org2.example.com | [05c 01-18 09:29:40.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer0.org1.example.com | [09d 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.0.2 +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx +peer1.org1.example.com | [0a8 01-18 09:29:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer1.org2.example.com | [05d 01-18 09:29:40.80 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [0a9 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer0.org1.example.com | [09f 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] +peer0.org1.example.com | [0a0 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=lscc:1.0.2 +peer1.org2.example.com | [05e 01-18 09:29:40.80 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.0.2 +orderer.example.com | JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi +peer1.org1.example.com | [0aa 01-18 09:29:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode lscc:1.0.2 launch seq completed +peer0.org2.example.com | [0aa 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer0.org1.example.com | [0a1 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer1.org2.example.com | [05f 01-18 09:29:40.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org2.example.com:7052] +peer0.org1.example.com | [09e 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ +peer1.org1.example.com | [0ab 01-18 09:29:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +peer0.org1.example.com | [0a2 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +orderer.example.com | H7n8z1pj5w== +peer0.org2.example.com | [0a7 01-18 09:29:40.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer1.org2.example.com | [060 01-18 09:29:40.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.0.2 +peer0.org1.example.com | [0a3 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer1.org1.example.com | [0a9 01-18 09:29:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer0.org2.example.com | [0ab 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode lscc:1.0.2 launch seq completed +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [0a4 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer0.org2.example.com | [0ac 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +peer1.org2.example.com | [061 01-18 09:29:40.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer1.org1.example.com | [0ac 01-18 09:29:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [0a5 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode lscc:1.0.2 +orderer.example.com | 2018-01-18 09:29:38.353 UTC [msp/identity] newIdentity -> DEBU 087 Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org2.example.com | [0ad 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [062 01-18 09:29:40.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer0.org1.example.com | [0a6 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"lscc:1.0.2" , sending back REGISTERED +peer0.org2.example.com | [0ae 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9da087a0]Move state message READY +peer1.org1.example.com | [0ae 01-18 09:29:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9f72194d]Move state message READY +peer1.org2.example.com | [063 01-18 09:29:40.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | [0a7 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer1.org1.example.com | [0af 01-18 09:29:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9f72194d]Fabric side Handling ChaincodeMessage of type: READY in state established +peer0.org2.example.com | [0af 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9da087a0]Fabric side Handling ChaincodeMessage of type: READY in state established +peer1.org2.example.com | [064 01-18 09:29:40.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer0.org1.example.com | [0a9 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer1.org1.example.com | [0ad 01-18 09:29:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org2.example.com | [065 01-18 09:29:40.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode cscc:1.0.2 +peer0.org2.example.com | [0b0 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [9da087a0]Entered state ready +peer0.org1.example.com | [0aa 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer1.org1.example.com | [0b0 01-18 09:29:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [9f72194d]Entered state ready +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +peer1.org2.example.com | [066 01-18 09:29:40.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"cscc:1.0.2" , sending back REGISTERED +peer0.org1.example.com | [0a8 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer0.org2.example.com | [0b1 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:9da087a0-cd72-4321-922f-ae99529b4ac1 +peer1.org1.example.com | [0b2 01-18 09:29:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:9f72194d-fe8f-44bd-aab2-ef65418faa0a +peer1.org1.example.com | [0b3 01-18 09:29:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9f72194d]sending state message READY +peer0.org1.example.com | [0ab 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode lscc:1.0.2 launch seq completed +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org2.example.com | [0b3 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +peer1.org2.example.com | [067 01-18 09:29:40.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer1.org1.example.com | [0b4 01-18 09:29:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +peer0.org1.example.com | [0ac 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +peer1.org2.example.com | [068 01-18 09:29:40.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +peer1.org1.example.com | [0b5 01-18 09:29:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +peer0.org1.example.com | [0ad 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [0b4 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +peer0.org1.example.com | [0ae 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f068dd2a]Move state message READY +peer1.org2.example.com | [069 01-18 09:29:40.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +peer0.org1.example.com | [0af 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f068dd2a]Fabric side Handling ChaincodeMessage of type: READY in state established +peer1.org1.example.com | [0b1 01-18 09:29:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer0.org2.example.com | [0b5 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [06b 01-18 09:29:40.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer0.org1.example.com | [0b0 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [f068dd2a]Entered state ready +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +peer1.org1.example.com | [0b6 01-18 09:29:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [0b1 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:f068dd2a-7863-40bd-980b-fa163455eecd +peer1.org2.example.com | [06a 01-18 09:29:40.80 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode cscc:1.0.2 launch seq completed +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +peer0.org2.example.com | [0b6 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +peer1.org1.example.com | [0b7 01-18 09:29:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9f72194d]Received message READY from shim +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +peer0.org1.example.com | [0b2 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f068dd2a]sending state message READY +peer1.org1.example.com | [0b8 01-18 09:29:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +peer0.org2.example.com | [0b7 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [9da087a0]Inside sendExecuteMessage. Message INIT +peer1.org2.example.com | [06c 01-18 09:29:40.80 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +peer1.org1.example.com | [0b9 01-18 09:29:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [9f72194d]Inside sendExecuteMessage. Message INIT +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +peer0.org1.example.com | [0b4 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f068dd2a]Received message READY from shim +peer1.org1.example.com | [0ba 01-18 09:29:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [06d 01-18 09:29:40.80 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | xHTBvxfK6mAzmUitFmY= +peer0.org2.example.com | [0b8 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [0b5 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f068dd2a]Handling ChaincodeMessage of type: READY(state:established) +peer1.org1.example.com | [0bb 01-18 09:29:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [9f72194d]sendExecuteMsg trigger event INIT +peer1.org2.example.com | [06e 01-18 09:29:40.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [03f031af]Move state message READY +orderer.example.com | -----END CERTIFICATE----- +peer0.org2.example.com | [0b9 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [9da087a0]sendExecuteMsg trigger event INIT +peer1.org1.example.com | [0bc 01-18 09:29:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9f72194d]Move state message INIT +peer1.org1.example.com | [0bd 01-18 09:29:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9f72194d]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org1.example.com | [0be 01-18 09:29:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [0b2 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9da087a0]sending state message READY +orderer.example.com | 2018-01-18 09:29:38.353 UTC [msp/identity] newIdentity -> DEBU 088 Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [06f 01-18 09:29:40.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [03f031af]Fabric side Handling ChaincodeMessage of type: READY in state established +peer1.org1.example.com | [0bf 01-18 09:29:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9f72194d]sending state message INIT +peer0.org1.example.com | [0b3 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +peer1.org2.example.com | [070 01-18 09:29:40.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [03f031af]Entered state ready +peer0.org2.example.com | [0ba 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9da087a0]Move state message INIT +peer1.org1.example.com | [0c0 01-18 09:29:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9f72194d]Handling ChaincodeMessage of type: READY(state:established) +peer0.org1.example.com | [0b6 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org1.example.com | [0c1 01-18 09:29:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9f72194d]Received message INIT from shim +peer1.org2.example.com | [071 01-18 09:29:40.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:03f031af-b44e-4de6-a4d2-bb67818311f0 +peer0.org2.example.com | [0bc 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9da087a0]Fabric side Handling ChaincodeMessage of type: INIT in state ready +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org1.example.com | [0b7 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [0c2 01-18 09:29:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9f72194d]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org2.example.com | [072 01-18 09:29:40.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [03f031af]sending state message READY +peer0.org2.example.com | [0bd 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [0b8 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +peer1.org1.example.com | [0c3 01-18 09:29:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +peer1.org2.example.com | [073 01-18 09:29:40.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [03f031af]Received message READY from shim +peer0.org2.example.com | [0be 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9da087a0]sending state message INIT +peer1.org1.example.com | [0c4 01-18 09:29:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [9f72194d]Received INIT, initializing chaincode +peer1.org2.example.com | [074 01-18 09:29:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [03f031af]Handling ChaincodeMessage of type: READY(state:established) +peer0.org1.example.com | [0b9 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [f068dd2a]Inside sendExecuteMessage. Message INIT +peer0.org2.example.com | [0bb 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9da087a0]Received message READY from shim +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer1.org1.example.com | [0c5 01-18 09:29:38.97 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetPolicyChecker.GetPolicyChecker.NewPolicyChecker.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | [075 01-18 09:29:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +peer0.org1.example.com | [0ba 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +peer1.org1.example.com | [0c6 01-18 09:29:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9f72194d]Init get response status: 200 +peer1.org2.example.com | [076 01-18 09:29:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +peer0.org2.example.com | [0bf 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9da087a0]Handling ChaincodeMessage of type: READY(state:established) +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +peer1.org2.example.com | [077 01-18 09:29:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [0c7 01-18 09:29:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9f72194d]Init succeeded. Sending COMPLETED +peer0.org2.example.com | [0c0 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9da087a0]Received message INIT from shim +peer0.org1.example.com | [0bb 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [f068dd2a]sendExecuteMsg trigger event INIT +peer1.org2.example.com | [078 01-18 09:29:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.2 +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +peer1.org1.example.com | [0c8 01-18 09:29:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9f72194d]Move state message COMPLETED +peer0.org2.example.com | [0c1 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9da087a0]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org2.example.com | [079 01-18 09:29:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [03f031af]Inside sendExecuteMessage. Message INIT +peer1.org1.example.com | [0c9 01-18 09:29:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9f72194d]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [0bc 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f068dd2a]Move state message INIT +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +peer1.org2.example.com | [07a 01-18 09:29:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [0ca 01-18 09:29:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9f72194d]send state message COMPLETED +peer0.org2.example.com | [0c2 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org1.example.com | [0bd 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f068dd2a]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org1.example.com | [0cb 01-18 09:29:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9f72194d]Received message COMPLETED from shim +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +peer1.org2.example.com | [07b 01-18 09:29:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [03f031af]sendExecuteMsg trigger event INIT +peer0.org2.example.com | [0c3 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [9da087a0]Received INIT, initializing chaincode +peer1.org1.example.com | [0cc 01-18 09:29:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9f72194d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [07c 01-18 09:29:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [03f031af]Move state message INIT +peer0.org1.example.com | [0be 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [0cd 01-18 09:29:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9f72194d-fe8f-44bd-aab2-ef65418faa0a]HandleMessage- COMPLETED. Notify +orderer.example.com | xHTBvxfK6mAzmUitFmY= +peer1.org2.example.com | [07d 01-18 09:29:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [03f031af]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org1.example.com | [0ce 01-18 09:29:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:9f72194d-fe8f-44bd-aab2-ef65418faa0a +peer0.org2.example.com | [0c4 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetPolicyChecker.GetPolicyChecker.NewPolicyChecker.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [0cf 01-18 09:29:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [0bf 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f068dd2a]sending state message INIT +peer1.org2.example.com | [07e 01-18 09:29:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [0d0 01-18 09:29:38.97 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed +peer0.org1.example.com | [0c0 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f068dd2a]Received message INIT from shim +orderer.example.com | 2018-01-18 09:29:38.354 UTC [msp] Validate -> DEBU 089 MSP Org1MSP validating identity +peer0.org2.example.com | [0c5 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9da087a0]Init get response status: 200 +peer1.org2.example.com | [07f 01-18 09:29:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [03f031af]sending state message INIT +peer1.org1.example.com | [0d1 01-18 09:29:38.97 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=escc,version=1.0.2,txid=a8cc5ce7-d74f-40f8-879c-a78600933a9a,syscc=true,proposal=0x0,canname=escc:1.0.2 +peer0.org2.example.com | [0c6 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9da087a0]Init succeeded. Sending COMPLETED +peer1.org2.example.com | [080 01-18 09:29:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [03f031af]Received message INIT from shim +peer0.org1.example.com | [0c1 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f068dd2a]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org1.example.com | [0d2 01-18 09:29:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode escc:1.0.2 is being launched +peer1.org2.example.com | [081 01-18 09:29:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [03f031af]Handling ChaincodeMessage of type: INIT(state:ready) +orderer.example.com | 2018-01-18 09:29:38.355 UTC [common/config] validateMSP -> DEBU 08a Setting up MSP for org Org2MSP +peer0.org2.example.com | [0c7 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9da087a0]Move state message COMPLETED +peer0.org1.example.com | [0c2 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org2.example.com | [082 01-18 09:29:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org1.example.com | [0d3 01-18 09:29:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +orderer.example.com | 2018-01-18 09:29:38.355 UTC [msp] NewBccspMsp -> DEBU 08b Creating BCCSP-based MSP instance +peer0.org1.example.com | [0c3 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [f068dd2a]Received INIT, initializing chaincode +peer1.org2.example.com | [083 01-18 09:29:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [03f031af]Received INIT, initializing chaincode +peer0.org2.example.com | [0c8 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9da087a0]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [0d4 01-18 09:29:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer1.org1.example.com:7052] +orderer.example.com | 2018-01-18 09:29:38.355 UTC [msp] Setup -> DEBU 08c Setting up MSP instance Org2MSP +peer1.org2.example.com | [084 01-18 09:29:40.81 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC +peer0.org1.example.com | [0c4 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetPolicyChecker.GetPolicyChecker.NewPolicyChecker.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [0c9 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9da087a0]send state message COMPLETED +peer0.org1.example.com | [0c5 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f068dd2a]Init get response status: 200 +orderer.example.com | 2018-01-18 09:29:38.356 UTC [msp/identity] newIdentity -> DEBU 08d Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [085 01-18 09:29:40.81 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | [0d5 01-18 09:29:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: escc:1.0.2(networkid:dev,peerid:peer1.org1.example.com) +peer0.org2.example.com | [0ca 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9da087a0]Received message COMPLETED from shim +peer0.org1.example.com | [0c6 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f068dd2a]Init succeeded. Sending COMPLETED +peer1.org2.example.com | [086 01-18 09:29:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [03f031af]Init get response status: 200 +peer1.org1.example.com | [0d6 01-18 09:29:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer1.org1.example.com:7052 +orderer.example.com | MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw +peer0.org2.example.com | [0cb 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9da087a0]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [0c7 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f068dd2a]Move state message COMPLETED +peer1.org2.example.com | [087 01-18 09:29:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [03f031af]Init succeeded. Sending COMPLETED +peer0.org2.example.com | [0cc 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9da087a0-cd72-4321-922f-ae99529b4ac1]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [0d7 01-18 09:29:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +peer0.org1.example.com | [0c8 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f068dd2a]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [088 01-18 09:29:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [03f031af]Move state message COMPLETED +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org2.example.com | [0cd 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:9da087a0-cd72-4321-922f-ae99529b4ac1 +peer1.org2.example.com | [089 01-18 09:29:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [03f031af]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | CORE_CHAINCODE_ID_NAME=escc:1.0.2 +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer1.org2.example.com | [08a 01-18 09:29:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [03f031af]send state message COMPLETED +peer0.org2.example.com | [0ce 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [0c9 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f068dd2a]send state message COMPLETED +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa +peer1.org2.example.com | [08b 01-18 09:29:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [03f031af]Received message COMPLETED from shim +peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true +peer1.org2.example.com | [08c 01-18 09:29:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [03f031af]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [0ca 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f068dd2a]Received message COMPLETED from shim +peer0.org2.example.com | [0cf 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer1.org2.example.com | [08d 01-18 09:29:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [03f031af-b44e-4de6-a4d2-bb67818311f0]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [0cb 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f068dd2a]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +peer0.org2.example.com | [0d0 01-18 09:29:40.89 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=escc,version=1.0.2,txid=450d68cf-02dd-4ebe-87c9-e540974e6e9a,syscc=true,proposal=0x0,canname=escc:1.0.2 +peer1.org2.example.com | [08e 01-18 09:29:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:03f031af-b44e-4de6-a4d2-bb67818311f0 +peer0.org1.example.com | [0cc 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f068dd2a-7863-40bd-980b-fa163455eecd]HandleMessage- COMPLETED. Notify +orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer0.org2.example.com | [0d1 01-18 09:29:40.89 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode escc:1.0.2 is being launched +peer1.org2.example.com | [08f 01-18 09:29:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +orderer.example.com | mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer0.org1.example.com | [0cd 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:f068dd2a-7863-40bd-980b-fa163455eecd +peer0.org2.example.com | [0d2 01-18 09:29:40.89 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +peer1.org2.example.com | [090 01-18 09:29:40.81 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed +orderer.example.com | sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +peer0.org1.example.com | [0ce 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [0d3 01-18 09:29:40.89 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org2.example.com:7052] +peer1.org2.example.com | [091 01-18 09:29:40.81 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.0.2,txid=011a19d0-7c46-463e-856f-c550247e07de,syscc=true,proposal=0x0,canname=lscc:1.0.2 +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ +peer0.org1.example.com | [0cf 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed +peer0.org2.example.com | [0d4 01-18 09:29:40.89 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: escc:1.0.2(networkid:dev,peerid:peer0.org2.example.com) +peer1.org1.example.com | [0d8 01-18 09:29:38.97 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(escc-1.0.2) lock +peer1.org2.example.com | [092 01-18 09:29:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode lscc:1.0.2 is being launched +peer0.org2.example.com | [0d5 01-18 09:29:40.89 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org2.example.com:7052 +orderer.example.com | xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv +peer0.org1.example.com | [0d0 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=escc,version=1.0.2,txid=e1e00b3e-00e2-49c2-9141-3cdf240cfb1b,syscc=true,proposal=0x0,canname=escc:1.0.2 +peer1.org2.example.com | [093 01-18 09:29:40.81 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +peer0.org2.example.com | [0d6 01-18 09:29:40.89 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +peer1.org1.example.com | [0d9 01-18 09:29:38.97 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (escc-1.0.2) lock +peer0.org1.example.com | [0d1 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode escc:1.0.2 is being launched +orderer.example.com | WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk +peer1.org2.example.com | [094 01-18 09:29:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer1.org2.example.com:7052] +peer0.org1.example.com | [0d2 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +peer1.org1.example.com | [0da 01-18 09:29:38.97 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for escc-1.0.2 +peer0.org2.example.com | CORE_CHAINCODE_ID_NAME=escc:1.0.2 +peer0.org1.example.com | [0d3 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] +peer1.org2.example.com | [095 01-18 09:29:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: lscc:1.0.2(networkid:dev,peerid:peer1.org2.example.com) +orderer.example.com | SCjyRdD3aQ== +peer0.org2.example.com | CORE_PEER_TLS_ENABLED=true +peer1.org1.example.com | [0db 01-18 09:29:38.97 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(escc-1.0.2) +peer0.org1.example.com | [0d4 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: escc:1.0.2(networkid:dev,peerid:peer0.org1.example.com) +peer1.org2.example.com | [096 01-18 09:29:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer1.org2.example.com:7052 +orderer.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [0dc 01-18 09:29:38.97 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for escc-1.0.2 +peer0.org1.example.com | [0d5 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer1.org2.example.com | [097 01-18 09:29:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +orderer.example.com | 2018-01-18 09:29:38.357 UTC [msp/identity] newIdentity -> DEBU 08e Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org1.example.com | [0dd 01-18 09:29:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer1.org2.example.com | CORE_CHAINCODE_ID_NAME=lscc:1.0.2 +peer0.org1.example.com | [0d6 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +peer1.org1.example.com | [0de 01-18 09:29:38.97 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +peer1.org2.example.com | CORE_PEER_TLS_ENABLED=true +peer1.org1.example.com | [0df 01-18 09:29:38.97 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for escc-1.0.2 +peer0.org2.example.com | [0d7 01-18 09:29:40.89 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(escc-1.0.2) lock +peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=escc:1.0.2 +peer1.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org1.example.com | [0e0 01-18 09:29:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org1.example.com:7052] +peer0.org2.example.com | [0d8 01-18 09:29:40.89 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (escc-1.0.2) lock +peer1.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org1.example.com | [0e1 01-18 09:29:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=escc:1.0.2 +peer0.org2.example.com | [0d9 01-18 09:29:40.89 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for escc-1.0.2 +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer1.org1.example.com | [0e2 01-18 09:29:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer1.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +peer0.org2.example.com | [0da 01-18 09:29:40.89 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(escc-1.0.2) +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer1.org1.example.com | [0e3 01-18 09:29:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer1.org2.example.com | [098 01-18 09:29:40.82 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.0.2) lock +peer0.org2.example.com | [0db 01-18 09:29:40.89 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for escc-1.0.2 +peer1.org1.example.com | [0e4 01-18 09:29:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +peer1.org2.example.com | [099 01-18 09:29:40.82 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.0.2) lock +peer0.org2.example.com | [0dc 01-18 09:29:40.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +peer1.org1.example.com | [0e5 01-18 09:29:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer0.org2.example.com | [0dd 01-18 09:29:40.89 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for escc-1.0.2 +peer0.org1.example.com | [0d7 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(escc-1.0.2) lock +orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +peer1.org2.example.com | [09a 01-18 09:29:40.82 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for lscc-1.0.2 +peer1.org1.example.com | [0e6 01-18 09:29:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode escc:1.0.2 +peer0.org2.example.com | [0de 01-18 09:29:40.89 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +peer0.org1.example.com | [0d8 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (escc-1.0.2) lock +peer1.org2.example.com | [09b 01-18 09:29:40.82 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.0.2) +peer1.org1.example.com | [0e7 01-18 09:29:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"escc:1.0.2" , sending back REGISTERED +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +peer0.org2.example.com | [0df 01-18 09:29:40.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org2.example.com:7052] +peer1.org2.example.com | [09c 01-18 09:29:40.82 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.0.2 +orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +peer0.org1.example.com | [0d9 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for escc-1.0.2 +peer0.org2.example.com | [0e0 01-18 09:29:40.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=escc:1.0.2 +orderer.example.com | AXYxULZpXYDQXt1KaLI= +peer1.org2.example.com | [09e 01-18 09:29:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer1.org1.example.com | [0e8 01-18 09:29:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer0.org1.example.com | [0da 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(escc-1.0.2) +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [09d 01-18 09:29:40.82 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.0.2 +peer0.org2.example.com | [0e1 01-18 09:29:40.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer1.org1.example.com | [0e9 01-18 09:29:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +orderer.example.com | 2018-01-18 09:29:38.358 UTC [msp/identity] newIdentity -> DEBU 08f Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [09f 01-18 09:29:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org2.example.com:7052] +peer0.org2.example.com | [0e2 01-18 09:29:40.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer0.org1.example.com | [0db 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for escc-1.0.2 +orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +peer1.org2.example.com | [0a0 01-18 09:29:40.82 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | [0ea 01-18 09:29:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer0.org2.example.com | [0e3 01-18 09:29:40.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer0.org1.example.com | [0dd 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org1.example.com | [0eb 01-18 09:29:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer1.org2.example.com | [0a1 01-18 09:29:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=lscc:1.0.2 +peer0.org1.example.com | [0dc 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for escc-1.0.2 +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org2.example.com | [0e4 01-18 09:29:40.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +peer0.org1.example.com | [0df 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] +peer1.org2.example.com | [0a2 01-18 09:29:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer1.org1.example.com | [0ec 01-18 09:29:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode escc:1.0.2 launch seq completed +peer0.org1.example.com | [0de 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +peer0.org2.example.com | [0e5 01-18 09:29:40.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode escc:1.0.2 +peer1.org1.example.com | [0ed 01-18 09:29:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +peer1.org2.example.com | [0a3 01-18 09:29:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer0.org1.example.com | [0e0 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=escc:1.0.2 +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +peer0.org2.example.com | [0e6 01-18 09:29:40.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"escc:1.0.2" , sending back REGISTERED +peer1.org2.example.com | [0a4 01-18 09:29:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer0.org1.example.com | [0e1 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer1.org1.example.com | [0ee 01-18 09:29:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +peer0.org2.example.com | [0e7 01-18 09:29:40.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer0.org1.example.com | [0e2 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer1.org2.example.com | [0a5 01-18 09:29:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer1.org1.example.com | [0ef 01-18 09:29:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a8cc5ce7]Move state message READY +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +peer0.org1.example.com | [0e3 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer0.org2.example.com | [0e8 01-18 09:29:40.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer1.org2.example.com | [0a6 01-18 09:29:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode lscc:1.0.2 +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +peer1.org1.example.com | [0f0 01-18 09:29:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a8cc5ce7]Fabric side Handling ChaincodeMessage of type: READY in state established +peer0.org2.example.com | [0ea 01-18 09:29:40.89 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode escc:1.0.2 launch seq completed +peer0.org1.example.com | [0e4 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +peer1.org2.example.com | [0a7 01-18 09:29:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"lscc:1.0.2" , sending back REGISTERED +peer0.org2.example.com | [0e9 01-18 09:29:40.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer1.org1.example.com | [0f1 01-18 09:29:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [a8cc5ce7]Entered state ready +orderer.example.com | AXYxULZpXYDQXt1KaLI= +peer0.org1.example.com | [0e5 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode escc:1.0.2 +peer1.org2.example.com | [0a8 01-18 09:29:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +orderer.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [0f2 01-18 09:29:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:a8cc5ce7-d74f-40f8-879c-a78600933a9a +peer0.org1.example.com | [0e6 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"escc:1.0.2" , sending back REGISTERED +peer0.org2.example.com | [0eb 01-18 09:29:40.89 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +orderer.example.com | 2018-01-18 09:29:38.359 UTC [msp] Validate -> DEBU 090 MSP Org2MSP validating identity +peer1.org2.example.com | [0a9 01-18 09:29:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer1.org1.example.com | [0f3 01-18 09:29:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a8cc5ce7]sending state message READY +peer0.org2.example.com | [0ed 01-18 09:29:40.89 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | 2018-01-18 09:29:38.359 UTC [common/config] validateMSP -> DEBU 091 Setting up MSP for org OrdererOrg +peer0.org1.example.com | [0e7 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer1.org2.example.com | [0ab 01-18 09:29:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer0.org2.example.com | [0ec 01-18 09:29:40.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +orderer.example.com | 2018-01-18 09:29:38.359 UTC [msp] NewBccspMsp -> DEBU 092 Creating BCCSP-based MSP instance +peer1.org1.example.com | [0f5 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +peer0.org2.example.com | [0ee 01-18 09:29:40.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [450d68cf]Move state message READY +peer0.org1.example.com | [0e8 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +orderer.example.com | 2018-01-18 09:29:38.359 UTC [msp] Setup -> DEBU 093 Setting up MSP instance OrdererMSP +peer1.org2.example.com | [0ac 01-18 09:29:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer1.org1.example.com | [0f6 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +peer0.org2.example.com | [0ef 01-18 09:29:40.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [450d68cf]Fabric side Handling ChaincodeMessage of type: READY in state established +orderer.example.com | 2018-01-18 09:29:38.360 UTC [msp/identity] newIdentity -> DEBU 094 Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [0e9 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer1.org2.example.com | [0aa 01-18 09:29:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode lscc:1.0.2 launch seq completed +peer0.org2.example.com | [0f0 01-18 09:29:40.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [450d68cf]Entered state ready +orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL +peer1.org1.example.com | [0f7 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [0f1 01-18 09:29:40.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:450d68cf-02dd-4ebe-87c9-e540974e6e9a +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +peer1.org2.example.com | [0ad 01-18 09:29:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +peer0.org1.example.com | [0ea 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer1.org1.example.com | [0f8 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 +peer0.org2.example.com | [0f2 01-18 09:29:40.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [450d68cf]sending state message READY +peer0.org2.example.com | [0f3 01-18 09:29:40.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [450d68cf]Received message READY from shim +orderer.example.com | cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV +peer1.org1.example.com | [0f9 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [a8cc5ce7]Inside sendExecuteMessage. Message INIT +peer0.org1.example.com | [0eb 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode escc:1.0.2 launch seq completed +peer1.org2.example.com | [0ae 01-18 09:29:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [0f5 01-18 09:29:40.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [450d68cf]Handling ChaincodeMessage of type: READY(state:established) +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +peer0.org2.example.com | [0f4 01-18 09:29:40.90 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +peer1.org2.example.com | [0af 01-18 09:29:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [011a19d0]Move state message READY +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +peer0.org2.example.com | [0f6 01-18 09:29:40.90 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +peer0.org1.example.com | [0ec 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +peer0.org1.example.com | [0ed 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW +peer1.org1.example.com | [0fa 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [0f7 01-18 09:29:40.90 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [0b0 01-18 09:29:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [011a19d0]Fabric side Handling ChaincodeMessage of type: READY in state established +orderer.example.com | gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w +peer0.org2.example.com | [0f8 01-18 09:29:40.90 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 +peer0.org1.example.com | [0ee 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e1e00b3e]Move state message READY +peer1.org2.example.com | [0b1 01-18 09:29:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [011a19d0]Entered state ready +peer1.org1.example.com | [0fb 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [a8cc5ce7]sendExecuteMsg trigger event INIT +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +peer0.org2.example.com | [0f9 01-18 09:29:40.90 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [450d68cf]Inside sendExecuteMessage. Message INIT +peer1.org2.example.com | [0b2 01-18 09:29:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:011a19d0-7c46-463e-856f-c550247e07de +peer0.org1.example.com | [0ef 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e1e00b3e]Fabric side Handling ChaincodeMessage of type: READY in state established +peer1.org1.example.com | [0fc 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a8cc5ce7]Move state message INIT +orderer.example.com | AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK +peer0.org2.example.com | [0fa 01-18 09:29:40.90 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [0b3 01-18 09:29:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [011a19d0]sending state message READY +peer1.org1.example.com | [0fd 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a8cc5ce7]Fabric side Handling ChaincodeMessage of type: INIT in state ready +orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs +peer0.org1.example.com | [0f0 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [e1e00b3e]Entered state ready +peer0.org2.example.com | [0fb 01-18 09:29:40.90 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [450d68cf]sendExecuteMsg trigger event INIT +orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= +peer1.org1.example.com | [0fe 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [0fc 01-18 09:29:40.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [450d68cf]Move state message INIT +peer1.org2.example.com | [0b4 01-18 09:29:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [011a19d0]Received message READY from shim +orderer.example.com | -----END CERTIFICATE----- +peer0.org2.example.com | [0fd 01-18 09:29:40.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [450d68cf]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org1.example.com | [0f4 01-18 09:29:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a8cc5ce7]Received message READY from shim +peer0.org1.example.com | [0f1 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:e1e00b3e-00e2-49c2-9141-3cdf240cfb1b +orderer.example.com | 2018-01-18 09:29:38.360 UTC [msp/identity] newIdentity -> DEBU 095 Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org2.example.com | [0fe 01-18 09:29:40.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [0b6 01-18 09:29:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [011a19d0]Handling ChaincodeMessage of type: READY(state:established) +peer1.org1.example.com | [100 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a8cc5ce7]Handling ChaincodeMessage of type: READY(state:established) +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +peer0.org1.example.com | [0f2 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e1e00b3e]sending state message READY +peer0.org2.example.com | [0ff 01-18 09:29:40.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [450d68cf]sending state message INIT +peer1.org2.example.com | [0b5 01-18 09:29:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer1.org2.example.com | [0b7 01-18 09:29:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer1.org1.example.com | [0ff 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a8cc5ce7]sending state message INIT +peer0.org2.example.com | [100 01-18 09:29:40.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [450d68cf]Received message INIT from shim +peer0.org1.example.com | [0f3 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +peer1.org2.example.com | [0b8 01-18 09:29:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +peer1.org1.example.com | [101 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a8cc5ce7]Received message INIT from shim +peer0.org1.example.com | [0f5 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer0.org2.example.com | [101 01-18 09:29:40.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [450d68cf]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org1.example.com | [102 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a8cc5ce7]Handling ChaincodeMessage of type: INIT(state:ready) +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +peer0.org1.example.com | [0f4 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e1e00b3e]Received message READY from shim +peer0.org2.example.com | [102 01-18 09:29:40.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +peer1.org2.example.com | [0b9 01-18 09:29:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +peer0.org1.example.com | [0f7 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e1e00b3e]Handling ChaincodeMessage of type: READY(state:established) +peer0.org2.example.com | [103 01-18 09:29:40.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [450d68cf]Received INIT, initializing chaincode +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer1.org1.example.com | [103 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org2.example.com | [104 01-18 09:29:40.90 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC +peer0.org1.example.com | [0f6 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +peer0.org2.example.com | [105 01-18 09:29:40.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [450d68cf]Init get response status: 200 +peer1.org1.example.com | [104 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [a8cc5ce7]Received INIT, initializing chaincode +peer1.org2.example.com | [0ba 01-18 09:29:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [011a19d0]Inside sendExecuteMessage. Message INIT +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +peer0.org1.example.com | [0f8 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 +peer0.org2.example.com | [106 01-18 09:29:40.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [450d68cf]Init succeeded. Sending COMPLETED +peer1.org2.example.com | [0bb 01-18 09:29:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [105 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +peer1.org2.example.com | [0bc 01-18 09:29:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [011a19d0]sendExecuteMsg trigger event INIT +peer0.org2.example.com | [107 01-18 09:29:40.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [450d68cf]Move state message COMPLETED +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [0f9 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [e1e00b3e]Inside sendExecuteMessage. Message INIT +peer1.org1.example.com | [106 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a8cc5ce7]Init get response status: 200 +peer0.org2.example.com | [108 01-18 09:29:40.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [450d68cf]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | 2018-01-18 09:29:38.361 UTC [msp/identity] newIdentity -> DEBU 096 Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org1.example.com | [107 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a8cc5ce7]Init succeeded. Sending COMPLETED +peer1.org2.example.com | [0bd 01-18 09:29:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [011a19d0]Move state message INIT +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +peer0.org2.example.com | [109 01-18 09:29:40.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [450d68cf]send state message COMPLETED +peer0.org1.example.com | [0fa 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [108 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a8cc5ce7]Move state message COMPLETED +peer1.org2.example.com | [0be 01-18 09:29:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [011a19d0]Fabric side Handling ChaincodeMessage of type: INIT in state ready +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org2.example.com | [10a 01-18 09:29:40.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [450d68cf]Received message COMPLETED from shim +peer0.org1.example.com | [0fb 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [e1e00b3e]sendExecuteMsg trigger event INIT +peer1.org2.example.com | [0bf 01-18 09:29:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [109 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a8cc5ce7]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer0.org1.example.com | [0fc 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e1e00b3e]Move state message INIT +peer0.org2.example.com | [10b 01-18 09:29:40.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [450d68cf]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [0c0 01-18 09:29:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [011a19d0]sending state message INIT +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +peer1.org2.example.com | [0c1 01-18 09:29:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [011a19d0]Received message INIT from shim +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer1.org1.example.com | [10a 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a8cc5ce7]send state message COMPLETED +peer0.org1.example.com | [0fd 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e1e00b3e]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org2.example.com | [10c 01-18 09:29:40.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [450d68cf-02dd-4ebe-87c9-e540974e6e9a]HandleMessage- COMPLETED. Notify +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +peer0.org1.example.com | [0fe 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +peer1.org1.example.com | [10b 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a8cc5ce7]Received message COMPLETED from shim +peer0.org1.example.com | [0ff 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e1e00b3e]sending state message INIT +peer0.org2.example.com | [10d 01-18 09:29:40.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:450d68cf-02dd-4ebe-87c9-e540974e6e9a +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer1.org2.example.com | [0c2 01-18 09:29:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [011a19d0]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org1.example.com | [10c 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a8cc5ce7]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [10e 01-18 09:29:40.90 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +peer0.org1.example.com | [100 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e1e00b3e]Received message INIT from shim +peer1.org2.example.com | [0c3 01-18 09:29:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org1.example.com | [10d 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a8cc5ce7-d74f-40f8-879c-a78600933a9a]HandleMessage- COMPLETED. Notify +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +peer1.org2.example.com | [0c4 01-18 09:29:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [011a19d0]Received INIT, initializing chaincode +peer0.org2.example.com | [10f 01-18 09:29:40.90 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode escc/(github.com/hyperledger/fabric/core/scc/escc) deployed +peer1.org1.example.com | [10e 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:a8cc5ce7-d74f-40f8-879c-a78600933a9a +peer0.org1.example.com | [101 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e1e00b3e]Handling ChaincodeMessage of type: INIT(state:ready) +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [0c5 01-18 09:29:40.82 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetPolicyChecker.GetPolicyChecker.NewPolicyChecker.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [110 01-18 09:29:40.90 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=vscc,version=1.0.2,txid=4f535dde-c16d-4f93-b0f3-2cc22d58d905,syscc=true,proposal=0x0,canname=vscc:1.0.2 +peer0.org2.example.com | [111 01-18 09:29:40.90 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode vscc:1.0.2 is being launched +peer0.org1.example.com | [102 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +orderer.example.com | 2018-01-18 09:29:38.362 UTC [msp] Validate -> DEBU 097 MSP OrdererMSP validating identity +peer1.org1.example.com | [10f 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [0c6 01-18 09:29:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [011a19d0]Init get response status: 200 +peer0.org2.example.com | [112 01-18 09:29:40.90 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +peer0.org1.example.com | [103 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [e1e00b3e]Received INIT, initializing chaincode +orderer.example.com | 2018-01-18 09:29:38.363 UTC [msp] Setup -> DEBU 098 Setting up the MSP manager (3 msps) +peer1.org2.example.com | [0c7 01-18 09:29:40.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [011a19d0]Init succeeded. Sending COMPLETED +peer1.org1.example.com | [110 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode escc/(github.com/hyperledger/fabric/core/scc/escc) deployed +orderer.example.com | 2018-01-18 09:29:38.363 UTC [msp] Setup -> DEBU 099 MSP manager setup complete, setup 3 msps +peer0.org2.example.com | [113 01-18 09:29:40.90 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org2.example.com:7052] +peer0.org1.example.com | [104 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC +orderer.example.com | 2018-01-18 09:29:38.363 UTC [policies] GetPolicy -> DEBU 09a Returning policy Readers for evaluation +peer1.org1.example.com | [111 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=vscc,version=1.0.2,txid=890fb323-39cd-41b3-9c01-100307555469,syscc=true,proposal=0x0,canname=vscc:1.0.2 +peer0.org2.example.com | [114 01-18 09:29:40.90 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: vscc:1.0.2(networkid:dev,peerid:peer0.org2.example.com) +peer1.org2.example.com | [0c8 01-18 09:29:40.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [011a19d0]Move state message COMPLETED +orderer.example.com | 2018-01-18 09:29:38.363 UTC [policies] CommitProposals -> DEBU 09b In commit adding relative sub-policy Org1MSP/Readers to SampleConsortium +peer1.org1.example.com | [112 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode vscc:1.0.2 is being launched +peer0.org2.example.com | [115 01-18 09:29:40.90 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org2.example.com:7052 +peer0.org1.example.com | [105 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e1e00b3e]Init get response status: 200 +peer1.org2.example.com | [0c9 01-18 09:29:40.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [011a19d0]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | 2018-01-18 09:29:38.363 UTC [policies] GetPolicy -> DEBU 09c Returning policy Writers for evaluation +peer1.org1.example.com | [113 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +peer0.org1.example.com | [106 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e1e00b3e]Init succeeded. Sending COMPLETED +orderer.example.com | 2018-01-18 09:29:38.363 UTC [policies] CommitProposals -> DEBU 09d In commit adding relative sub-policy Org1MSP/Writers to SampleConsortium +peer1.org2.example.com | [0ca 01-18 09:29:40.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [011a19d0]send state message COMPLETED +peer0.org2.example.com | [116 01-18 09:29:40.90 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +peer1.org1.example.com | [114 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer1.org1.example.com:7052] +orderer.example.com | 2018-01-18 09:29:38.363 UTC [policies] GetPolicy -> DEBU 09e Returning policy Admins for evaluation +peer0.org1.example.com | [107 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e1e00b3e]Move state message COMPLETED +peer1.org2.example.com | [0cb 01-18 09:29:40.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [011a19d0]Received message COMPLETED from shim +peer1.org1.example.com | [115 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: vscc:1.0.2(networkid:dev,peerid:peer1.org1.example.com) +peer0.org2.example.com | CORE_CHAINCODE_ID_NAME=vscc:1.0.2 +orderer.example.com | 2018-01-18 09:29:38.363 UTC [policies] CommitProposals -> DEBU 09f In commit adding relative sub-policy Org1MSP/Admins to SampleConsortium +peer0.org1.example.com | [108 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e1e00b3e]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [0cc 01-18 09:29:40.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [011a19d0]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | CORE_PEER_TLS_ENABLED=true +peer1.org1.example.com | [116 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer1.org1.example.com:7052 +orderer.example.com | 2018-01-18 09:29:38.363 UTC [policies] GetPolicy -> DEBU 0a0 Returning policy Admins for evaluation +peer1.org2.example.com | [0cd 01-18 09:29:40.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [011a19d0-7c46-463e-856f-c550247e07de]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [109 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e1e00b3e]send state message COMPLETED +peer1.org1.example.com | [117 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +orderer.example.com | 2018-01-18 09:29:38.363 UTC [policies] CommitProposals -> DEBU 0a1 In commit adding relative sub-policy Org2MSP/Admins to SampleConsortium +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer0.org1.example.com | [10a 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e1e00b3e]Received message COMPLETED from shim +orderer.example.com | 2018-01-18 09:29:38.363 UTC [policies] GetPolicy -> DEBU 0a2 Returning policy Readers for evaluation +peer1.org2.example.com | [0ce 01-18 09:29:40.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:011a19d0-7c46-463e-856f-c550247e07de +peer1.org1.example.com | CORE_CHAINCODE_ID_NAME=vscc:1.0.2 +peer0.org1.example.com | [10b 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e1e00b3e]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [0cf 01-18 09:29:40.83 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +orderer.example.com | 2018-01-18 09:29:38.363 UTC [policies] CommitProposals -> DEBU 0a3 In commit adding relative sub-policy Org2MSP/Readers to SampleConsortium +peer0.org1.example.com | [10c 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e1e00b3e-00e2-49c2-9141-3cdf240cfb1b]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer1.org2.example.com | [0d0 01-18 09:29:40.83 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed +peer0.org1.example.com | [10d 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:e1e00b3e-00e2-49c2-9141-3cdf240cfb1b +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +orderer.example.com | 2018-01-18 09:29:38.363 UTC [policies] GetPolicy -> DEBU 0a4 Returning policy Writers for evaluation +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer1.org2.example.com | [0d1 01-18 09:29:40.83 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=escc,version=1.0.2,txid=fa99c55f-cf18-431b-9f2d-159a447a2e86,syscc=true,proposal=0x0,canname=escc:1.0.2 +peer0.org1.example.com | [10e 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +orderer.example.com | 2018-01-18 09:29:38.363 UTC [policies] CommitProposals -> DEBU 0a5 In commit adding relative sub-policy Org2MSP/Writers to SampleConsortium +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer0.org2.example.com | [117 01-18 09:29:40.90 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(vscc-1.0.2) lock +peer1.org2.example.com | [0d2 01-18 09:29:40.83 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode escc:1.0.2 is being launched +peer0.org1.example.com | [10f 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode escc/(github.com/hyperledger/fabric/core/scc/escc) deployed +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +peer0.org2.example.com | [118 01-18 09:29:40.90 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (vscc-1.0.2) lock +peer0.org1.example.com | [110 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=vscc,version=1.0.2,txid=dfb09567-165f-42b1-8d94-19e8ac9cdc67,syscc=true,proposal=0x0,canname=vscc:1.0.2 +peer0.org2.example.com | [119 01-18 09:29:40.90 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for vscc-1.0.2 +peer1.org1.example.com | [118 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(vscc-1.0.2) lock +orderer.example.com | 2018-01-18 09:29:38.363 UTC [policies] GetPolicy -> DEBU 0a6 Returning policy Org1MSP/Admins for evaluation +peer1.org2.example.com | [0d3 01-18 09:29:40.83 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +peer0.org1.example.com | [111 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode vscc:1.0.2 is being launched +peer1.org1.example.com | [119 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (vscc-1.0.2) lock +peer1.org2.example.com | [0d4 01-18 09:29:40.83 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer1.org2.example.com:7052] +orderer.example.com | 2018-01-18 09:29:38.363 UTC [policies] CommitProposals -> DEBU 0a7 In commit adding relative sub-policy SampleConsortium/Org1MSP/Admins to Consortiums +peer0.org2.example.com | [11a 01-18 09:29:40.90 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(vscc-1.0.2) +peer1.org1.example.com | [11a 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for vscc-1.0.2 +peer0.org1.example.com | [112 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +peer1.org2.example.com | [0d5 01-18 09:29:40.83 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: escc:1.0.2(networkid:dev,peerid:peer1.org2.example.com) +orderer.example.com | 2018-01-18 09:29:38.363 UTC [policies] GetPolicy -> DEBU 0a8 Returning policy Org2MSP/Admins for evaluation +peer0.org2.example.com | [11b 01-18 09:29:40.90 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for vscc-1.0.2 +peer1.org1.example.com | [11b 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(vscc-1.0.2) +peer0.org1.example.com | [113 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] +orderer.example.com | 2018-01-18 09:29:38.364 UTC [policies] CommitProposals -> DEBU 0a9 In commit adding relative sub-policy SampleConsortium/Org2MSP/Admins to Consortiums +peer1.org2.example.com | [0d6 01-18 09:29:40.83 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer1.org2.example.com:7052 +peer0.org2.example.com | [11d 01-18 09:29:40.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer1.org1.example.com | [11c 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for vscc-1.0.2 +peer0.org1.example.com | [114 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: vscc:1.0.2(networkid:dev,peerid:peer0.org1.example.com) +orderer.example.com | 2018-01-18 09:29:38.364 UTC [policies] GetPolicy -> DEBU 0aa Returning policy Org2MSP/Readers for evaluation +peer0.org2.example.com | [11c 01-18 09:29:40.90 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for vscc-1.0.2 +peer1.org1.example.com | [11d 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer1.org1.example.com | [11e 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | [0d7 01-18 09:29:40.83 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +orderer.example.com | 2018-01-18 09:29:38.364 UTC [policies] CommitProposals -> DEBU 0ab In commit adding relative sub-policy SampleConsortium/Org2MSP/Readers to Consortiums +peer0.org1.example.com | [115 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 +peer0.org2.example.com | [11f 01-18 09:29:40.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org2.example.com:7052] +peer1.org1.example.com | [11f 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for vscc-1.0.2 +peer1.org2.example.com | CORE_CHAINCODE_ID_NAME=escc:1.0.2 +orderer.example.com | 2018-01-18 09:29:38.364 UTC [policies] GetPolicy -> DEBU 0ac Returning policy Org2MSP/Writers for evaluation +peer1.org1.example.com | [120 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org1.example.com:7052] +peer0.org2.example.com | [11e 01-18 09:29:40.90 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | CORE_PEER_TLS_ENABLED=true +peer1.org1.example.com | [121 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=vscc:1.0.2 +peer0.org1.example.com | [116 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +orderer.example.com | 2018-01-18 09:29:38.364 UTC [policies] CommitProposals -> DEBU 0ad In commit adding relative sub-policy SampleConsortium/Org2MSP/Writers to Consortiums +peer0.org2.example.com | [120 01-18 09:29:40.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=vscc:1.0.2 +peer1.org1.example.com | [122 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer1.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=vscc:1.0.2 +orderer.example.com | 2018-01-18 09:29:38.364 UTC [policies] GetPolicy -> DEBU 0ae Returning policy Org1MSP/Readers for evaluation +peer1.org1.example.com | [123 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer0.org2.example.com | [121 01-18 09:29:40.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true +peer1.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +orderer.example.com | 2018-01-18 09:29:38.364 UTC [policies] CommitProposals -> DEBU 0af In commit adding relative sub-policy SampleConsortium/Org1MSP/Readers to Consortiums +peer1.org1.example.com | [124 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer0.org2.example.com | [122 01-18 09:29:40.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer1.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +orderer.example.com | 2018-01-18 09:29:38.364 UTC [policies] GetPolicy -> DEBU 0b0 Returning policy Org1MSP/Writers for evaluation +peer1.org1.example.com | [125 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer1.org2.example.com | [0d8 01-18 09:29:40.83 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(escc-1.0.2) lock +peer0.org2.example.com | [123 01-18 09:29:40.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +orderer.example.com | 2018-01-18 09:29:38.364 UTC [policies] CommitProposals -> DEBU 0b1 In commit adding relative sub-policy SampleConsortium/Org1MSP/Writers to Consortiums +peer1.org1.example.com | [126 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode vscc:1.0.2 +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +peer1.org1.example.com | [127 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"vscc:1.0.2" , sending back REGISTERED +peer0.org2.example.com | [124 01-18 09:29:40.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +orderer.example.com | 2018-01-18 09:29:38.364 UTC [policies] GetPolicy -> DEBU 0b2 Returning policy Readers for evaluation +peer1.org1.example.com | [128 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer1.org2.example.com | [0d9 01-18 09:29:40.84 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (escc-1.0.2) lock +peer0.org2.example.com | [125 01-18 09:29:40.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode vscc:1.0.2 +peer0.org1.example.com | [117 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(vscc-1.0.2) lock +peer1.org1.example.com | [129 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer1.org2.example.com | [0da 01-18 09:29:40.84 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for escc-1.0.2 +orderer.example.com | 2018-01-18 09:29:38.364 UTC [policies] CommitProposals -> DEBU 0b3 In commit adding relative sub-policy OrdererOrg/Readers to Orderer +peer1.org1.example.com | [12a 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer0.org1.example.com | [118 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (vscc-1.0.2) lock +peer1.org2.example.com | [0db 01-18 09:29:40.84 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(escc-1.0.2) +peer0.org2.example.com | [126 01-18 09:29:40.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"vscc:1.0.2" , sending back REGISTERED +peer1.org1.example.com | [12b 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +orderer.example.com | 2018-01-18 09:29:38.364 UTC [policies] GetPolicy -> DEBU 0b4 Returning policy Writers for evaluation +peer1.org2.example.com | [0dc 01-18 09:29:40.84 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for escc-1.0.2 +peer1.org1.example.com | [12c 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode vscc:1.0.2 launch seq completed +peer0.org2.example.com | [127 01-18 09:29:40.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer0.org1.example.com | [119 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for vscc-1.0.2 +peer1.org2.example.com | [0de 01-18 09:29:40.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer1.org1.example.com | [12d 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +orderer.example.com | 2018-01-18 09:29:38.364 UTC [policies] CommitProposals -> DEBU 0b5 In commit adding relative sub-policy OrdererOrg/Writers to Orderer +peer1.org1.example.com | [12e 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [11a 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(vscc-1.0.2) +peer0.org2.example.com | [128 01-18 09:29:40.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer1.org1.example.com | [12f 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [890fb323]Move state message READY +peer1.org2.example.com | [0df 01-18 09:29:40.84 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | 2018-01-18 09:29:38.364 UTC [policies] GetPolicy -> DEBU 0b6 Returning policy Admins for evaluation +peer0.org1.example.com | [11b 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for vscc-1.0.2 +peer0.org2.example.com | [129 01-18 09:29:40.91 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode vscc:1.0.2 launch seq completed +peer1.org1.example.com | [130 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [890fb323]Fabric side Handling ChaincodeMessage of type: READY in state established +peer1.org2.example.com | [0dd 01-18 09:29:40.84 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for escc-1.0.2 +peer1.org1.example.com | [131 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [890fb323]Entered state ready +peer0.org1.example.com | [11d 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +orderer.example.com | 2018-01-18 09:29:38.364 UTC [policies] CommitProposals -> DEBU 0b7 In commit adding relative sub-policy OrdererOrg/Admins to Orderer +peer0.org2.example.com | [12b 01-18 09:29:40.91 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +peer1.org2.example.com | [0e0 01-18 09:29:40.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org2.example.com:7052] +peer1.org1.example.com | [132 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:890fb323-39cd-41b3-9c01-100307555469 +peer0.org1.example.com | [11c 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for vscc-1.0.2 +peer0.org2.example.com | [12a 01-18 09:29:40.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +orderer.example.com | 2018-01-18 09:29:38.364 UTC [policies] GetPolicy -> DEBU 0b8 Returning policy Writers for evaluation +peer1.org1.example.com | [133 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [890fb323]sending state message READY +peer1.org2.example.com | [0e1 01-18 09:29:40.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=escc:1.0.2 +peer0.org2.example.com | [12d 01-18 09:29:40.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer0.org1.example.com | [11e 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] +orderer.example.com | 2018-01-18 09:29:38.364 UTC [policies] GetPolicy -> DEBU 0b9 Returning policy Admins for evaluation +peer1.org2.example.com | [0e2 01-18 09:29:40.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer1.org1.example.com | [134 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [890fb323]Received message READY from shim +peer0.org2.example.com | [12c 01-18 09:29:40.91 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [11f 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=vscc:1.0.2 +peer1.org2.example.com | [0e3 01-18 09:29:40.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer1.org1.example.com | [135 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [890fb323]Handling ChaincodeMessage of type: READY(state:established) +peer1.org2.example.com | [0e4 01-18 09:29:40.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer0.org2.example.com | [12e 01-18 09:29:40.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4f535dde]Move state message READY +orderer.example.com | 2018-01-18 09:29:38.364 UTC [policies] GetPolicy -> DEBU 0ba Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:38.364 UTC [policies] GetPolicy -> DEBU 0bb Returning policy Readers for evaluation +peer1.org2.example.com | [0e5 01-18 09:29:40.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer0.org1.example.com | [120 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer1.org2.example.com | [0e6 01-18 09:29:40.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode escc:1.0.2 +peer0.org2.example.com | [12f 01-18 09:29:40.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4f535dde]Fabric side Handling ChaincodeMessage of type: READY in state established +peer1.org1.example.com | [136 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +peer0.org1.example.com | [121 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [122 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +orderer.example.com | 2018-01-18 09:29:38.364 UTC [policies] GetPolicy -> DEBU 0bc Returning policy Admins for evaluation +peer0.org2.example.com | [130 01-18 09:29:40.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [4f535dde]Entered state ready +peer1.org2.example.com | [0e7 01-18 09:29:40.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"escc:1.0.2" , sending back REGISTERED +orderer.example.com | 2018-01-18 09:29:38.364 UTC [policies] CommitProposals -> DEBU 0bd In commit adding relative sub-policy Consortiums/Admins to Channel +peer0.org2.example.com | [131 01-18 09:29:40.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:4f535dde-c16d-4f93-b0f3-2cc22d58d905 +peer1.org1.example.com | [137 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +peer1.org2.example.com | [0e8 01-18 09:29:40.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer0.org1.example.com | [123 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +orderer.example.com | 2018-01-18 09:29:38.389 UTC [policies] GetPolicy -> DEBU 0be Returning policy SampleConsortium/Org1MSP/Admins for evaluation +peer1.org2.example.com | [0e9 01-18 09:29:40.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer0.org1.example.com | [124 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer0.org1.example.com | [125 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode vscc:1.0.2 +peer0.org1.example.com | [126 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"vscc:1.0.2" , sending back REGISTERED +peer0.org2.example.com | [132 01-18 09:29:40.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4f535dde]sending state message READY +peer0.org2.example.com | [133 01-18 09:29:40.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4f535dde]Received message READY from shim +peer0.org2.example.com | [135 01-18 09:29:40.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4f535dde]Handling ChaincodeMessage of type: READY(state:established) +peer1.org2.example.com | [0ea 01-18 09:29:40.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer0.org1.example.com | [127 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +orderer.example.com | 2018-01-18 09:29:38.389 UTC [policies] CommitProposals -> DEBU 0bf In commit adding relative sub-policy Consortiums/SampleConsortium/Org1MSP/Admins to Channel +peer1.org1.example.com | [138 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [134 01-18 09:29:40.91 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +peer0.org1.example.com | [128 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer1.org2.example.com | [0eb 01-18 09:29:40.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer0.org2.example.com | [136 01-18 09:29:40.91 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +orderer.example.com | 2018-01-18 09:29:38.389 UTC [policies] GetPolicy -> DEBU 0c0 Returning policy SampleConsortium/Org2MSP/Admins for evaluation +peer1.org1.example.com | [139 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 +peer0.org1.example.com | [12a 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer1.org2.example.com | [0ec 01-18 09:29:40.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode escc:1.0.2 launch seq completed +peer0.org2.example.com | [137 01-18 09:29:40.91 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +orderer.example.com | 2018-01-18 09:29:38.389 UTC [policies] CommitProposals -> DEBU 0c1 In commit adding relative sub-policy Consortiums/SampleConsortium/Org2MSP/Admins to Channel +peer0.org1.example.com | [129 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode vscc:1.0.2 launch seq completed +peer1.org2.example.com | [0ed 01-18 09:29:40.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +peer1.org1.example.com | [13a 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [890fb323]Inside sendExecuteMessage. Message INIT +peer0.org2.example.com | [138 01-18 09:29:40.91 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 +peer0.org2.example.com | [139 01-18 09:29:40.91 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [4f535dde]Inside sendExecuteMessage. Message INIT +peer0.org2.example.com | [13a 01-18 09:29:40.91 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [13b 01-18 09:29:40.91 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [4f535dde]sendExecuteMsg trigger event INIT +peer0.org2.example.com | [13c 01-18 09:29:40.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4f535dde]Move state message INIT +peer0.org2.example.com | [13d 01-18 09:29:40.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4f535dde]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org2.example.com | [13e 01-18 09:29:40.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [13f 01-18 09:29:40.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4f535dde]sending state message INIT +peer0.org2.example.com | [140 01-18 09:29:40.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4f535dde]Received message INIT from shim +peer0.org2.example.com | [141 01-18 09:29:40.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4f535dde]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org2.example.com | [142 01-18 09:29:40.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +orderer.example.com | 2018-01-18 09:29:38.389 UTC [policies] GetPolicy -> DEBU 0c2 Returning policy SampleConsortium/Org2MSP/Readers for evaluation +peer1.org2.example.com | [0ee 01-18 09:29:40.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [0ef 01-18 09:29:40.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fa99c55f]Move state message READY +peer1.org2.example.com | [0f0 01-18 09:29:40.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [fa99c55f]Fabric side Handling ChaincodeMessage of type: READY in state established +peer1.org2.example.com | [0f1 01-18 09:29:40.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [fa99c55f]Entered state ready +peer1.org2.example.com | [0f2 01-18 09:29:40.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:fa99c55f-cf18-431b-9f2d-159a447a2e86 +peer1.org2.example.com | [0f3 01-18 09:29:40.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fa99c55f]sending state message READY +peer1.org2.example.com | [0f4 01-18 09:29:40.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fa99c55f]Received message READY from shim +peer1.org2.example.com | [0f5 01-18 09:29:40.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [fa99c55f]Handling ChaincodeMessage of type: READY(state:established) +peer1.org2.example.com | [0f6 01-18 09:29:40.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +peer1.org2.example.com | [0f7 01-18 09:29:40.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +peer1.org2.example.com | [0f8 01-18 09:29:40.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [13b 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [13c 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [890fb323]sendExecuteMsg trigger event INIT +peer1.org1.example.com | [13d 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [890fb323]Move state message INIT +peer0.org1.example.com | [12b 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +peer0.org1.example.com | [12d 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [0f9 01-18 09:29:40.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 +peer1.org2.example.com | [0fa 01-18 09:29:40.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [fa99c55f]Inside sendExecuteMessage. Message INIT +peer0.org2.example.com | [143 01-18 09:29:40.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [4f535dde]Received INIT, initializing chaincode +peer1.org1.example.com | [13e 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [890fb323]Fabric side Handling ChaincodeMessage of type: INIT in state ready +orderer.example.com | 2018-01-18 09:29:38.389 UTC [policies] CommitProposals -> DEBU 0c3 In commit adding relative sub-policy Consortiums/SampleConsortium/Org2MSP/Readers to Channel +peer0.org1.example.com | [12c 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer1.org2.example.com | [0fb 01-18 09:29:40.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [144 01-18 09:29:40.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4f535dde]Init get response status: 200 +peer1.org1.example.com | [13f 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [12e 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dfb09567]Move state message READY +orderer.example.com | 2018-01-18 09:29:38.389 UTC [policies] GetPolicy -> DEBU 0c4 Returning policy SampleConsortium/Org2MSP/Writers for evaluation +peer1.org1.example.com | [140 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [890fb323]sending state message INIT +peer0.org1.example.com | [12f 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [dfb09567]Fabric side Handling ChaincodeMessage of type: READY in state established +peer1.org2.example.com | [0fc 01-18 09:29:40.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [fa99c55f]sendExecuteMsg trigger event INIT +orderer.example.com | 2018-01-18 09:29:38.389 UTC [policies] CommitProposals -> DEBU 0c5 In commit adding relative sub-policy Consortiums/SampleConsortium/Org2MSP/Writers to Channel +peer0.org2.example.com | [145 01-18 09:29:40.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4f535dde]Init succeeded. Sending COMPLETED +peer0.org1.example.com | [130 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [dfb09567]Entered state ready +peer1.org1.example.com | [141 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [890fb323]Received message INIT from shim +peer1.org2.example.com | [0fd 01-18 09:29:40.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fa99c55f]Move state message INIT +peer1.org1.example.com | [142 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [890fb323]Handling ChaincodeMessage of type: INIT(state:ready) +orderer.example.com | 2018-01-18 09:29:38.389 UTC [policies] GetPolicy -> DEBU 0c6 Returning policy SampleConsortium/Org1MSP/Readers for evaluation +peer0.org2.example.com | [146 01-18 09:29:40.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4f535dde]Move state message COMPLETED +peer0.org1.example.com | [131 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:dfb09567-165f-42b1-8d94-19e8ac9cdc67 +peer1.org2.example.com | [0fe 01-18 09:29:40.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [fa99c55f]Fabric side Handling ChaincodeMessage of type: INIT in state ready +orderer.example.com | 2018-01-18 09:29:38.389 UTC [policies] CommitProposals -> DEBU 0c7 In commit adding relative sub-policy Consortiums/SampleConsortium/Org1MSP/Readers to Channel +peer0.org1.example.com | [132 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dfb09567]sending state message READY +peer0.org2.example.com | [147 01-18 09:29:40.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4f535dde]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [143 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org2.example.com | [0ff 01-18 09:29:40.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [133 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +orderer.example.com | 2018-01-18 09:29:38.389 UTC [policies] GetPolicy -> DEBU 0c8 Returning policy SampleConsortium/Org1MSP/Writers for evaluation +peer0.org1.example.com | [135 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +peer1.org1.example.com | [144 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [890fb323]Received INIT, initializing chaincode +peer1.org2.example.com | [100 01-18 09:29:40.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fa99c55f]sending state message INIT +peer0.org2.example.com | [148 01-18 09:29:40.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4f535dde]send state message COMPLETED +peer0.org1.example.com | [134 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dfb09567]Received message READY from shim +peer1.org1.example.com | [145 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [890fb323]Init get response status: 200 +orderer.example.com | 2018-01-18 09:29:38.389 UTC [policies] CommitProposals -> DEBU 0c9 In commit adding relative sub-policy Consortiums/SampleConsortium/Org1MSP/Writers to Channel +peer1.org2.example.com | [101 01-18 09:29:40.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fa99c55f]Received message INIT from shim +peer0.org1.example.com | [136 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [146 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [890fb323]Init succeeded. Sending COMPLETED +orderer.example.com | 2018-01-18 09:29:38.391 UTC [policies] GetPolicy -> DEBU 0ca Returning policy Readers for evaluation +peer1.org2.example.com | [102 01-18 09:29:40.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [fa99c55f]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org2.example.com | [149 01-18 09:29:40.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4f535dde]Received message COMPLETED from shim +peer0.org1.example.com | [138 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 +peer1.org2.example.com | [103 01-18 09:29:40.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +orderer.example.com | 2018-01-18 09:29:38.391 UTC [policies] CommitProposals -> DEBU 0cb In commit adding relative sub-policy Orderer/Readers to Channel +peer1.org1.example.com | [147 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [890fb323]Move state message COMPLETED +peer0.org1.example.com | [139 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [dfb09567]Inside sendExecuteMessage. Message INIT +peer1.org2.example.com | [104 01-18 09:29:40.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [fa99c55f]Received INIT, initializing chaincode +orderer.example.com | 2018-01-18 09:29:38.391 UTC [policies] GetPolicy -> DEBU 0cc Returning policy OrdererOrg/Readers for evaluation +peer0.org1.example.com | [13a 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [148 01-18 09:29:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [890fb323]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [105 01-18 09:29:40.84 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC +peer0.org2.example.com | [14a 01-18 09:29:40.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4f535dde]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [13b 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [dfb09567]sendExecuteMsg trigger event INIT +orderer.example.com | 2018-01-18 09:29:38.391 UTC [policies] CommitProposals -> DEBU 0cd In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +peer1.org2.example.com | [106 01-18 09:29:40.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fa99c55f]Init get response status: 200 +peer1.org1.example.com | [149 01-18 09:29:38.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [890fb323]send state message COMPLETED +peer0.org1.example.com | [13c 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dfb09567]Move state message INIT +peer0.org2.example.com | [14b 01-18 09:29:40.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4f535dde-c16d-4f93-b0f3-2cc22d58d905]HandleMessage- COMPLETED. Notify +orderer.example.com | 2018-01-18 09:29:38.391 UTC [policies] GetPolicy -> DEBU 0ce Returning policy OrdererOrg/Writers for evaluation +peer1.org2.example.com | [107 01-18 09:29:40.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fa99c55f]Init succeeded. Sending COMPLETED +peer0.org2.example.com | [14c 01-18 09:29:40.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:4f535dde-c16d-4f93-b0f3-2cc22d58d905 +peer0.org1.example.com | [13d 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [dfb09567]Fabric side Handling ChaincodeMessage of type: INIT in state ready +orderer.example.com | 2018-01-18 09:29:38.391 UTC [policies] CommitProposals -> DEBU 0cf In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +peer1.org1.example.com | [14a 01-18 09:29:38.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [890fb323]Received message COMPLETED from shim +peer1.org2.example.com | [108 01-18 09:29:40.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fa99c55f]Move state message COMPLETED +orderer.example.com | 2018-01-18 09:29:38.391 UTC [policies] GetPolicy -> DEBU 0d0 Returning policy OrdererOrg/Admins for evaluation +peer0.org2.example.com | [14d 01-18 09:29:40.91 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [13e 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [14b 01-18 09:29:38.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [890fb323]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [109 01-18 09:29:40.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [fa99c55f]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [10a 01-18 09:29:40.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fa99c55f]send state message COMPLETED +orderer.example.com | 2018-01-18 09:29:38.391 UTC [policies] CommitProposals -> DEBU 0d1 In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +peer1.org1.example.com | [14c 01-18 09:29:38.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [890fb323-39cd-41b3-9c01-100307555469]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [10b 01-18 09:29:40.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fa99c55f]Received message COMPLETED from shim +peer0.org1.example.com | [137 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [dfb09567]Handling ChaincodeMessage of type: READY(state:established) +peer0.org2.example.com | [14e 01-18 09:29:40.91 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/(github.com/hyperledger/fabric/core/scc/vscc) deployed +peer1.org2.example.com | [10c 01-18 09:29:40.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [fa99c55f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [13f 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dfb09567]sending state message INIT +peer1.org1.example.com | [14d 01-18 09:29:38.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:890fb323-39cd-41b3-9c01-100307555469 +orderer.example.com | 2018-01-18 09:29:38.391 UTC [policies] GetPolicy -> DEBU 0d2 Returning policy Writers for evaluation +peer1.org2.example.com | [10d 01-18 09:29:40.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [fa99c55f-cf18-431b-9f2d-159a447a2e86]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [14e 01-18 09:29:38.99 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [14f 01-18 09:29:40.91 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=qscc,version=1.0.2,txid=452a286a-ec52-4014-bc54-b245b4a0ab9d,syscc=true,proposal=0x0,canname=qscc:1.0.2 +orderer.example.com | 2018-01-18 09:29:38.391 UTC [policies] CommitProposals -> DEBU 0d3 In commit adding relative sub-policy Orderer/Writers to Channel +peer1.org2.example.com | [10e 01-18 09:29:40.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:fa99c55f-cf18-431b-9f2d-159a447a2e86 +peer0.org2.example.com | [150 01-18 09:29:40.91 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode qscc:1.0.2 is being launched +peer1.org1.example.com | [14f 01-18 09:29:38.99 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/(github.com/hyperledger/fabric/core/scc/vscc) deployed +orderer.example.com | 2018-01-18 09:29:38.392 UTC [policies] GetPolicy -> DEBU 0d4 Returning policy Admins for evaluation +peer0.org1.example.com | [140 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dfb09567]Received message INIT from shim +peer1.org2.example.com | [10f 01-18 09:29:40.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [150 01-18 09:29:39.01 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=qscc,version=1.0.2,txid=4660e9fb-7947-4669-a174-8b97a9233e56,syscc=true,proposal=0x0,canname=qscc:1.0.2 +peer0.org2.example.com | [151 01-18 09:29:40.91 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +orderer.example.com | 2018-01-18 09:29:38.392 UTC [policies] CommitProposals -> DEBU 0d5 In commit adding relative sub-policy Orderer/Admins to Channel +peer1.org2.example.com | [110 01-18 09:29:40.84 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode escc/(github.com/hyperledger/fabric/core/scc/escc) deployed +peer0.org1.example.com | [141 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [dfb09567]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org2.example.com | [152 01-18 09:29:40.91 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org2.example.com:7052] +peer1.org1.example.com | [151 01-18 09:29:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode qscc:1.0.2 is being launched +peer1.org1.example.com | [152 01-18 09:29:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +peer1.org2.example.com | [111 01-18 09:29:40.84 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=vscc,version=1.0.2,txid=3b954607-c448-4c24-b7c1-3512c6d7d919,syscc=true,proposal=0x0,canname=vscc:1.0.2 +orderer.example.com | 2018-01-18 09:29:38.392 UTC [policies] GetPolicy -> DEBU 0d6 Returning policy BlockValidation for evaluation +peer0.org2.example.com | [153 01-18 09:29:40.91 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: qscc:1.0.2(networkid:dev,peerid:peer0.org2.example.com) +peer0.org1.example.com | [142 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org1.example.com | [153 01-18 09:29:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer1.org1.example.com:7052] +peer1.org2.example.com | [112 01-18 09:29:40.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode vscc:1.0.2 is being launched +orderer.example.com | 2018-01-18 09:29:38.392 UTC [policies] CommitProposals -> DEBU 0d7 In commit adding relative sub-policy Orderer/BlockValidation to Channel +peer0.org1.example.com | [143 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [dfb09567]Received INIT, initializing chaincode +peer0.org2.example.com | [154 01-18 09:29:40.91 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org2.example.com:7052 +peer1.org2.example.com | [113 01-18 09:29:40.85 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +peer1.org1.example.com | [154 01-18 09:29:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: qscc:1.0.2(networkid:dev,peerid:peer1.org1.example.com) +peer0.org1.example.com | [144 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dfb09567]Init get response status: 200 +orderer.example.com | 2018-01-18 09:29:38.392 UTC [policies] GetPolicy -> DEBU 0d8 Returning dummy reject all policy because Readers could not be found in /Consortiums/Readers +peer1.org2.example.com | [114 01-18 09:29:40.85 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer1.org2.example.com:7052] +peer1.org1.example.com | [155 01-18 09:29:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer1.org1.example.com:7052 +peer0.org2.example.com | [155 01-18 09:29:40.91 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +peer1.org2.example.com | [115 01-18 09:29:40.85 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: vscc:1.0.2(networkid:dev,peerid:peer1.org2.example.com) +peer0.org1.example.com | [145 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dfb09567]Init succeeded. Sending COMPLETED +orderer.example.com | 2018-01-18 09:29:38.392 UTC [policies] GetPolicy -> DEBU 0d9 Returning policy Readers for evaluation +peer0.org2.example.com | CORE_CHAINCODE_ID_NAME=qscc:1.0.2 +peer1.org1.example.com | [156 01-18 09:29:39.01 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +peer1.org2.example.com | [116 01-18 09:29:40.85 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer1.org2.example.com:7052 +peer0.org1.example.com | [146 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dfb09567]Move state message COMPLETED +peer0.org2.example.com | CORE_PEER_TLS_ENABLED=true +orderer.example.com | 2018-01-18 09:29:38.392 UTC [policies] GetPolicy -> DEBU 0da Returning dummy reject all policy because Writers could not be found in /Consortiums/Writers +peer1.org2.example.com | [117 01-18 09:29:40.85 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +peer0.org1.example.com | [147 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [dfb09567]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | CORE_CHAINCODE_ID_NAME=qscc:1.0.2 +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer1.org2.example.com | CORE_CHAINCODE_ID_NAME=vscc:1.0.2 +orderer.example.com | 2018-01-18 09:29:38.392 UTC [policies] GetPolicy -> DEBU 0db Returning policy Writers for evaluation +peer0.org1.example.com | [148 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dfb09567]send state message COMPLETED +peer1.org2.example.com | CORE_PEER_TLS_ENABLED=true +peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer0.org1.example.com | [149 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dfb09567]Received message COMPLETED from shim +peer1.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +orderer.example.com | 2018-01-18 09:29:38.392 UTC [policies] GetPolicy -> DEBU 0dc Returning policy Admins for evaluation +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +peer0.org1.example.com | [14a 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [dfb09567]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +orderer.example.com | 2018-01-18 09:29:38.392 UTC [policies] GetPolicy -> DEBU 0dd Returning policy Admins for evaluation +peer0.org1.example.com | [14b 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [dfb09567-165f-42b1-8d94-19e8ac9cdc67]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [156 01-18 09:29:40.91 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.0.2) lock +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer1.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +orderer.example.com | 2018-01-18 09:29:38.392 UTC [policies] GetPolicy -> DEBU 0de Returning policy Readers for evaluation +peer0.org1.example.com | [14c 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:dfb09567-165f-42b1-8d94-19e8ac9cdc67 +peer1.org2.example.com | [118 01-18 09:29:40.85 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(vscc-1.0.2) lock +peer0.org2.example.com | [157 01-18 09:29:40.91 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.0.2) lock +orderer.example.com | 2018-01-18 09:29:38.392 UTC [policies] CommitProposals -> DEBU 0df As expected, current configuration has policy '/Channel/Readers' +peer1.org2.example.com | [119 01-18 09:29:40.85 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (vscc-1.0.2) lock +peer0.org1.example.com | [14d 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +orderer.example.com | 2018-01-18 09:29:38.392 UTC [policies] GetPolicy -> DEBU 0e0 Returning policy Writers for evaluation +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +peer1.org2.example.com | [11a 01-18 09:29:40.85 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for vscc-1.0.2 +peer0.org2.example.com | [158 01-18 09:29:40.92 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for qscc-1.0.2 +orderer.example.com | 2018-01-18 09:29:38.392 UTC [policies] CommitProposals -> DEBU 0e1 As expected, current configuration has policy '/Channel/Writers' +peer0.org1.example.com | [14e 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/(github.com/hyperledger/fabric/core/scc/vscc) deployed +peer1.org1.example.com | [157 01-18 09:29:39.01 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.0.2) lock +peer1.org2.example.com | [11b 01-18 09:29:40.85 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(vscc-1.0.2) +peer0.org2.example.com | [159 01-18 09:29:40.92 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.0.2) +orderer.example.com | 2018-01-18 09:29:38.392 UTC [policies] GetPolicy -> DEBU 0e2 Returning policy Orderer/BlockValidation for evaluation +peer0.org2.example.com | [15a 01-18 09:29:40.92 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.0.2 +peer1.org1.example.com | [158 01-18 09:29:39.01 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.0.2) lock +peer1.org2.example.com | [11c 01-18 09:29:40.85 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for vscc-1.0.2 +peer0.org1.example.com | [14f 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=qscc,version=1.0.2,txid=2a941606-1e82-4f60-88c0-cb3562d3862c,syscc=true,proposal=0x0,canname=qscc:1.0.2 +peer0.org2.example.com | [15b 01-18 09:29:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org2.example.com:7052] +orderer.example.com | 2018-01-18 09:29:38.392 UTC [policies] CommitProposals -> DEBU 0e3 As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +peer1.org2.example.com | [11e 01-18 09:29:40.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer0.org1.example.com | [150 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode qscc:1.0.2 is being launched +peer1.org1.example.com | [159 01-18 09:29:39.02 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for qscc-1.0.2 +peer0.org2.example.com | [15c 01-18 09:29:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.0.2 +orderer.example.com | 2018-01-18 09:29:38.392 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 0e4 retrieveBlockByNumber() - blockNum = [0] +peer1.org2.example.com | [11f 01-18 09:29:40.85 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [15d 01-18 09:29:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer0.org1.example.com | [151 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +peer1.org1.example.com | [15a 01-18 09:29:39.02 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.0.2) +peer1.org2.example.com | [11d 01-18 09:29:40.85 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for vscc-1.0.2 +orderer.example.com | 2018-01-18 09:29:38.392 UTC [fsblkstorage] newBlockfileStream -> DEBU 0e5 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +peer0.org2.example.com | [15e 01-18 09:29:40.92 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.0.2 +peer0.org1.example.com | [152 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] +peer1.org2.example.com | [120 01-18 09:29:40.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org2.example.com:7052] +peer1.org1.example.com | [15b 01-18 09:29:39.02 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.0.2 +orderer.example.com | 2018-01-18 09:29:38.392 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 0e6 Remaining bytes=[9082], Going to peek [8] bytes +peer0.org2.example.com | [15f 01-18 09:29:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer1.org2.example.com | [121 01-18 09:29:40.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=vscc:1.0.2 +peer1.org1.example.com | [15c 01-18 09:29:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer0.org1.example.com | [153 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: qscc:1.0.2(networkid:dev,peerid:peer0.org1.example.com) +peer0.org2.example.com | [160 01-18 09:29:40.92 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | 2018-01-18 09:29:38.392 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 0e7 Returning blockbytes - length=[9080], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +peer1.org2.example.com | [122 01-18 09:29:40.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer0.org1.example.com | [154 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 +peer1.org1.example.com | [15d 01-18 09:29:39.02 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.0.2 +peer0.org2.example.com | [161 01-18 09:29:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer1.org2.example.com | [123 01-18 09:29:40.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +orderer.example.com | 2018-01-18 09:29:38.393 UTC [orderer/multichain] newChainSupport -> DEBU 0e8 [channel: testchainid] Retrieved metadata for tip of chain (blockNumber=0, lastConfig=0, lastConfigSeq=0): +peer0.org1.example.com | [155 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +peer1.org1.example.com | [15e 01-18 09:29:39.02 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [162 01-18 09:29:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer1.org2.example.com | [124 01-18 09:29:40.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +orderer.example.com | 2018-01-18 09:29:38.393 UTC [orderer/multichain] NewManagerImpl -> INFO 0e9 Starting with system channel testchainid and orderer type solo +peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=qscc:1.0.2 +peer0.org2.example.com | [163 01-18 09:29:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer1.org1.example.com | [15f 01-18 09:29:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org1.example.com:7052] +peer1.org2.example.com | [125 01-18 09:29:40.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer0.org2.example.com | [164 01-18 09:29:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode qscc:1.0.2 +orderer.example.com | 2018-01-18 09:29:38.393 UTC [orderer/main] main -> INFO 0ea Beginning to serve requests +peer1.org1.example.com | [160 01-18 09:29:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.0.2 +peer1.org1.example.com | [161 01-18 09:29:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true +orderer.example.com | 2018-01-18 09:29:43.785 UTC [orderer/main] Deliver -> DEBU 0eb Starting new Deliver handler +peer1.org2.example.com | [126 01-18 09:29:40.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode vscc:1.0.2 +peer0.org2.example.com | [165 01-18 09:29:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"qscc:1.0.2" , sending back REGISTERED +peer1.org1.example.com | [162 01-18 09:29:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer1.org2.example.com | [127 01-18 09:29:40.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"vscc:1.0.2" , sending back REGISTERED +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +orderer.example.com | 2018-01-18 09:29:43.785 UTC [orderer/common/deliver] Handle -> DEBU 0ec Starting new deliver loop +peer1.org1.example.com | [163 01-18 09:29:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer1.org2.example.com | [128 01-18 09:29:40.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer0.org2.example.com | [166 01-18 09:29:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer1.org1.example.com | [164 01-18 09:29:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +orderer.example.com | 2018-01-18 09:29:43.785 UTC [orderer/common/deliver] Handle -> DEBU 0ed Attempting to read seek info message +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer1.org2.example.com | [12a 01-18 09:29:40.86 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode vscc:1.0.2 launch seq completed +peer0.org2.example.com | [167 01-18 09:29:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +orderer.example.com | 2018-01-18 09:29:43.803 UTC [orderer/main] Broadcast -> DEBU 0ee Starting new Broadcast handler +peer1.org1.example.com | [165 01-18 09:29:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode qscc:1.0.2 +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +peer0.org2.example.com | [168 01-18 09:29:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer1.org2.example.com | [12b 01-18 09:29:40.86 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +orderer.example.com | 2018-01-18 09:29:43.803 UTC [orderer/common/broadcast] Handle -> DEBU 0ef Starting new broadcast loop +peer1.org1.example.com | [166 01-18 09:29:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"qscc:1.0.2" , sending back REGISTERED +peer0.org2.example.com | [169 01-18 09:29:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode qscc:1.0.2 launch seq completed +peer1.org2.example.com | [12c 01-18 09:29:40.86 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [156 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.0.2) lock +peer1.org1.example.com | [167 01-18 09:29:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer0.org2.example.com | [16a 01-18 09:29:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +orderer.example.com | 2018-01-18 09:29:43.805 UTC [orderer/common/broadcast] Handle -> DEBU 0f0 Preprocessing CONFIG_UPDATE +peer1.org2.example.com | [12d 01-18 09:29:40.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3b954607]Move state message READY +peer0.org1.example.com | [157 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.0.2) lock +peer1.org1.example.com | [168 01-18 09:29:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer0.org2.example.com | [16b 01-18 09:29:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +orderer.example.com | 2018-01-18 09:29:43.805 UTC [orderer/configupdate] Process -> DEBU 0f1 Processing channel creation request for channel businesschannel +peer0.org1.example.com | [158 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for qscc-1.0.2 +peer1.org2.example.com | [12e 01-18 09:29:40.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3b954607]Fabric side Handling ChaincodeMessage of type: READY in state established +peer0.org1.example.com | [15a 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.0.2 +orderer.example.com | 2018-01-18 09:29:43.806 UTC [msp] GetLocalMSP -> DEBU 0f2 Returning existing local MSP +peer1.org1.example.com | [169 01-18 09:29:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode qscc:1.0.2 launch seq completed +peer0.org2.example.com | [16c 01-18 09:29:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [12f 01-18 09:29:40.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [3b954607]Entered state ready +peer1.org2.example.com | [130 01-18 09:29:40.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:3b954607-c448-4c24-b7c1-3512c6d7d919 +peer0.org2.example.com | [16d 01-18 09:29:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [452a286a]Move state message READY +peer0.org1.example.com | [15b 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +orderer.example.com | 2018-01-18 09:29:43.806 UTC [msp] GetDefaultSigningIdentity -> DEBU 0f3 Obtaining default signing identity +peer1.org1.example.com | [16a 01-18 09:29:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer0.org1.example.com | [15c 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | [131 01-18 09:29:40.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3b954607]sending state message READY +peer0.org2.example.com | [16e 01-18 09:29:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [452a286a]Fabric side Handling ChaincodeMessage of type: READY in state established +orderer.example.com | 2018-01-18 09:29:43.807 UTC [msp] GetLocalMSP -> DEBU 0f4 Returning existing local MSP +peer0.org1.example.com | [15d 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.0.2 +peer1.org2.example.com | [132 01-18 09:29:40.86 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +peer0.org1.example.com | [15e 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] +orderer.example.com | 2018-01-18 09:29:43.807 UTC [msp] GetDefaultSigningIdentity -> DEBU 0f5 Obtaining default signing identity +peer0.org2.example.com | [16f 01-18 09:29:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [452a286a]Entered state ready +peer1.org1.example.com | [16b 01-18 09:29:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +peer0.org1.example.com | [15f 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.0.2 +peer1.org2.example.com | [133 01-18 09:29:40.86 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +peer1.org2.example.com | [134 01-18 09:29:40.86 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [170 01-18 09:29:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:452a286a-ec52-4014-bc54-b245b4a0ab9d +orderer.example.com | 2018-01-18 09:29:43.807 UTC [msp/identity] Sign -> DEBU 0f6 Sign: plaintext: 0AB7060A1B08011A060887D281D30522...07526561646572731A0641646D696E73 +peer0.org1.example.com | [160 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer1.org1.example.com | [16c 01-18 09:29:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer1.org2.example.com | [135 01-18 09:29:40.86 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 +peer0.org2.example.com | [171 01-18 09:29:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [452a286a]sending state message READY +orderer.example.com | 2018-01-18 09:29:43.807 UTC [msp/identity] Sign -> DEBU 0f7 Sign: digest: F05366CE0FF11DE50F2752F9C3964BF73DCB7B2060E6B3A88A777C128D815602 +peer0.org1.example.com | [161 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer1.org2.example.com | [136 01-18 09:29:40.86 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [3b954607]Inside sendExecuteMessage. Message INIT +orderer.example.com | 2018-01-18 09:29:43.807 UTC [common/config] NewStandardValues -> DEBU 0f8 Initializing protos for *config.ChannelProtos +peer1.org1.example.com | [16d 01-18 09:29:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [162 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer0.org2.example.com | [172 01-18 09:29:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [452a286a]Received message READY from shim +peer1.org2.example.com | [137 01-18 09:29:40.86 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | 2018-01-18 09:29:43.807 UTC [common/config] initializeProtosStruct -> DEBU 0f9 Processing field: HashingAlgorithm +peer1.org1.example.com | [16e 01-18 09:29:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4660e9fb]Move state message READY +peer0.org2.example.com | [174 01-18 09:29:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [452a286a]Handling ChaincodeMessage of type: READY(state:established) +peer0.org2.example.com | [173 01-18 09:29:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +peer0.org1.example.com | [163 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer1.org2.example.com | [138 01-18 09:29:40.86 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [3b954607]sendExecuteMsg trigger event INIT +orderer.example.com | 2018-01-18 09:29:43.807 UTC [common/config] initializeProtosStruct -> DEBU 0fa Processing field: BlockDataHashingStructure +peer1.org1.example.com | [16f 01-18 09:29:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4660e9fb]Fabric side Handling ChaincodeMessage of type: READY in state established +peer0.org2.example.com | [175 01-18 09:29:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +peer0.org1.example.com | [164 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode qscc:1.0.2 +peer1.org2.example.com | [129 01-18 09:29:40.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer1.org1.example.com | [170 01-18 09:29:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [4660e9fb]Entered state ready +orderer.example.com | 2018-01-18 09:29:43.808 UTC [common/config] initializeProtosStruct -> DEBU 0fb Processing field: OrdererAddresses +peer1.org2.example.com | [139 01-18 09:29:40.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer0.org1.example.com | [165 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"qscc:1.0.2" , sending back REGISTERED +peer0.org2.example.com | [176 01-18 09:29:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +orderer.example.com | 2018-01-18 09:29:43.808 UTC [common/config] initializeProtosStruct -> DEBU 0fc Processing field: Consortium +peer0.org1.example.com | [166 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer1.org1.example.com | [171 01-18 09:29:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:4660e9fb-7947-4669-a174-8b97a9233e56 +peer1.org2.example.com | [13a 01-18 09:29:40.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +orderer.example.com | 2018-01-18 09:29:43.809 UTC [common/configtx] addToMap -> DEBU 0fd Adding to config map: [Groups] /Channel +peer1.org1.example.com | [172 01-18 09:29:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4660e9fb]sending state message READY +peer0.org1.example.com | [167 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer1.org2.example.com | [13b 01-18 09:29:40.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3b954607]Received message READY from shim +peer1.org1.example.com | [173 01-18 09:29:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4660e9fb]Received message READY from shim +peer0.org2.example.com | [177 01-18 09:29:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.2 +peer1.org2.example.com | [13c 01-18 09:29:40.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3b954607]Move state message INIT +orderer.example.com | 2018-01-18 09:29:43.809 UTC [common/configtx] addToMap -> DEBU 0fe Adding to config map: [Groups] /Channel/Orderer +peer0.org2.example.com | [178 01-18 09:29:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [452a286a]Inside sendExecuteMessage. Message INIT +peer0.org1.example.com | [168 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +orderer.example.com | 2018-01-18 09:29:43.809 UTC [common/configtx] addToMap -> DEBU 0ff Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +peer0.org2.example.com | [179 01-18 09:29:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | 2018-01-18 09:29:43.809 UTC [common/configtx] addToMap -> DEBU 100 Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +peer1.org1.example.com | [175 01-18 09:29:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4660e9fb]Handling ChaincodeMessage of type: READY(state:established) +peer1.org2.example.com | [13e 01-18 09:29:40.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3b954607]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org2.example.com | [17a 01-18 09:29:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [452a286a]sendExecuteMsg trigger event INIT +orderer.example.com | 2018-01-18 09:29:43.810 UTC [common/configtx] addToMap -> DEBU 101 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer0.org1.example.com | [169 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer1.org1.example.com | [174 01-18 09:29:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +peer0.org2.example.com | [17b 01-18 09:29:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [452a286a]Move state message INIT +peer1.org2.example.com | [13f 01-18 09:29:40.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [176 01-18 09:29:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +orderer.example.com | 2018-01-18 09:29:43.810 UTC [common/configtx] addToMap -> DEBU 102 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer0.org2.example.com | [17c 01-18 09:29:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [452a286a]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org1.example.com | [159 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.0.2) +peer1.org1.example.com | [177 01-18 09:29:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [17d 01-18 09:29:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [140 01-18 09:29:40.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3b954607]sending state message INIT +peer0.org1.example.com | [16a 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode qscc:1.0.2 launch seq completed +orderer.example.com | 2018-01-18 09:29:43.810 UTC [common/configtx] addToMap -> DEBU 103 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer1.org1.example.com | [178 01-18 09:29:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.2 +peer0.org2.example.com | [17e 01-18 09:29:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [452a286a]sending state message INIT +peer1.org2.example.com | [13d 01-18 09:29:40.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3b954607]Handling ChaincodeMessage of type: READY(state:established) +peer0.org1.example.com | [16b 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +peer0.org2.example.com | [17f 01-18 09:29:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [452a286a]Received message INIT from shim +orderer.example.com | 2018-01-18 09:29:43.810 UTC [common/configtx] addToMap -> DEBU 104 Adding to config map: [Values] /Channel/Orderer/ConsensusType +peer1.org2.example.com | [141 01-18 09:29:40.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3b954607]Received message INIT from shim +peer1.org1.example.com | [179 01-18 09:29:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [4660e9fb]Inside sendExecuteMessage. Message INIT +peer1.org1.example.com | [17a 01-18 09:29:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [16c 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [180 01-18 09:29:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [452a286a]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org2.example.com | [142 01-18 09:29:40.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3b954607]Handling ChaincodeMessage of type: INIT(state:ready) +orderer.example.com | 2018-01-18 09:29:43.811 UTC [common/configtx] addToMap -> DEBU 105 Adding to config map: [Values] /Channel/Orderer/BatchSize +peer1.org1.example.com | [17b 01-18 09:29:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [4660e9fb]sendExecuteMsg trigger event INIT +peer0.org2.example.com | [181 01-18 09:29:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +orderer.example.com | 2018-01-18 09:29:43.812 UTC [common/configtx] addToMap -> DEBU 106 Adding to config map: [Values] /Channel/Orderer/BatchTimeout +peer0.org1.example.com | [16d 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2a941606]Move state message READY +peer1.org2.example.com | [143 01-18 09:29:40.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org2.example.com | [182 01-18 09:29:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [452a286a]Received INIT, initializing chaincode +peer1.org1.example.com | [17c 01-18 09:29:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4660e9fb]Move state message INIT +orderer.example.com | 2018-01-18 09:29:43.812 UTC [common/configtx] addToMap -> DEBU 107 Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +peer0.org1.example.com | [16e 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2a941606]Fabric side Handling ChaincodeMessage of type: READY in state established +peer1.org2.example.com | [144 01-18 09:29:40.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [3b954607]Received INIT, initializing chaincode +peer0.org2.example.com | [183 01-18 09:29:40.92 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC +peer1.org1.example.com | [17d 01-18 09:29:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4660e9fb]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org1.example.com | [16f 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [2a941606]Entered state ready +orderer.example.com | 2018-01-18 09:29:43.812 UTC [common/configtx] addToMap -> DEBU 108 Adding to config map: [Policy] /Channel/Orderer/Admins +peer1.org2.example.com | [145 01-18 09:29:40.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3b954607]Init get response status: 200 +peer0.org2.example.com | [184 01-18 09:29:40.92 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | [17e 01-18 09:29:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [170 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:2a941606-1e82-4f60-88c0-cb3562d3862c +peer0.org2.example.com | [185 01-18 09:29:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [452a286a]Init get response status: 200 +peer0.org2.example.com | [186 01-18 09:29:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [452a286a]Init succeeded. Sending COMPLETED +peer0.org2.example.com | [187 01-18 09:29:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [452a286a]Move state message COMPLETED +peer0.org2.example.com | [188 01-18 09:29:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [452a286a]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [189 01-18 09:29:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [452a286a]send state message COMPLETED +peer0.org1.example.com | [171 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2a941606]sending state message READY +peer0.org2.example.com | [18a 01-18 09:29:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [452a286a]Received message COMPLETED from shim +orderer.example.com | 2018-01-18 09:29:43.812 UTC [common/configtx] addToMap -> DEBU 109 Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer1.org2.example.com | [146 01-18 09:29:40.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3b954607]Init succeeded. Sending COMPLETED +peer1.org1.example.com | [17f 01-18 09:29:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4660e9fb]sending state message INIT +peer0.org1.example.com | [172 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2a941606]Received message READY from shim +peer0.org2.example.com | [18b 01-18 09:29:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [452a286a]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | 2018-01-18 09:29:43.817 UTC [common/configtx] addToMap -> DEBU 10a Adding to config map: [Policy] /Channel/Orderer/Readers +peer1.org2.example.com | [147 01-18 09:29:40.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3b954607]Move state message COMPLETED +peer0.org1.example.com | [174 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +peer0.org2.example.com | [18c 01-18 09:29:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [452a286a-ec52-4014-bc54-b245b4a0ab9d]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [180 01-18 09:29:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4660e9fb]Received message INIT from shim +peer1.org1.example.com | [181 01-18 09:29:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4660e9fb]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org2.example.com | [148 01-18 09:29:40.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3b954607]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [18d 01-18 09:29:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:452a286a-ec52-4014-bc54-b245b4a0ab9d +orderer.example.com | 2018-01-18 09:29:43.817 UTC [common/configtx] addToMap -> DEBU 10b Adding to config map: [Policy] /Channel/Orderer/Writers +peer0.org1.example.com | [175 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +peer0.org2.example.com | [18e 01-18 09:29:40.92 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +orderer.example.com | 2018-01-18 09:29:43.818 UTC [common/configtx] addToMap -> DEBU 10c Adding to config map: [Groups] /Channel/Application +peer1.org1.example.com | [182 01-18 09:29:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org1.example.com | [176 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [149 01-18 09:29:40.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3b954607]send state message COMPLETED +peer0.org2.example.com | [18f 01-18 09:29:40.92 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/chaincode/qscc) deployed +peer1.org1.example.com | [183 01-18 09:29:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [4660e9fb]Received INIT, initializing chaincode +peer0.org1.example.com | [177 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.2 +orderer.example.com | 2018-01-18 09:29:43.818 UTC [common/configtx] addToMap -> DEBU 10d Adding to config map: [Groups] /Channel/Application/Org2MSP +peer0.org2.example.com | [190 01-18 09:29:40.92 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.initSysCCs -> INFO Deployed system chaincodess +peer1.org2.example.com | [14a 01-18 09:29:40.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3b954607]Received message COMPLETED from shim +peer1.org1.example.com | [184 01-18 09:29:39.02 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC +orderer.example.com | 2018-01-18 09:29:43.818 UTC [common/configtx] addToMap -> DEBU 10e Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +peer0.org2.example.com | [191 01-18 09:29:40.93 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with ID=[name:"peer0.org2.example.com" ], network ID=[dev], address=[172.18.0.6:7051] +peer0.org1.example.com | [178 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [2a941606]Inside sendExecuteMessage. Message INIT +peer1.org2.example.com | [14b 01-18 09:29:40.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3b954607]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [185 01-18 09:29:39.02 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | 2018-01-18 09:29:43.818 UTC [common/configtx] addToMap -> DEBU 10f Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org2.example.com | [192 01-18 09:29:40.93 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Started peer with ID=[name:"peer0.org2.example.com" ], network ID=[dev], address=[172.18.0.6:7051] +peer0.org1.example.com | [179 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [186 01-18 09:29:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4660e9fb]Init get response status: 200 +peer1.org2.example.com | [14c 01-18 09:29:40.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3b954607-c448-4c24-b7c1-3512c6d7d919]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [193 01-18 09:29:40.93 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'configvalues/msp' logger enabled for log level 'WARNING' +orderer.example.com | 2018-01-18 09:29:43.818 UTC [common/configtx] addToMap -> DEBU 110 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer0.org1.example.com | [17a 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [2a941606]sendExecuteMsg trigger event INIT +peer1.org1.example.com | [187 01-18 09:29:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4660e9fb]Init succeeded. Sending COMPLETED +peer0.org2.example.com | [194 01-18 09:29:40.93 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'msp/identity' logger enabled for log level 'WARNING' +peer1.org2.example.com | [14d 01-18 09:29:40.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:3b954607-c448-4c24-b7c1-3512c6d7d919 +peer0.org1.example.com | [17b 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2a941606]Move state message INIT +orderer.example.com | 2018-01-18 09:29:43.819 UTC [common/configtx] addToMap -> DEBU 111 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer0.org2.example.com | [195 01-18 09:29:40.93 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'msp' logger enabled for log level 'WARNING' +peer1.org1.example.com | [188 01-18 09:29:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4660e9fb]Move state message COMPLETED +peer0.org1.example.com | [17c 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2a941606]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org2.example.com | [14e 01-18 09:29:40.87 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +orderer.example.com | 2018-01-18 09:29:43.819 UTC [common/configtx] addToMap -> DEBU 112 Adding to config map: [Groups] /Channel/Application/Org1MSP +peer0.org2.example.com | [196 01-18 09:29:40.93 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/comm' logger enabled for log level 'WARNING' +peer0.org2.example.com | [197 01-18 09:29:40.93 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/state' logger enabled for log level 'WARNING' +orderer.example.com | 2018-01-18 09:29:43.819 UTC [common/configtx] addToMap -> DEBU 113 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +peer1.org2.example.com | [14f 01-18 09:29:40.87 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/(github.com/hyperledger/fabric/core/scc/vscc) deployed +peer0.org1.example.com | [17d 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [189 01-18 09:29:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4660e9fb]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [198 01-18 09:29:40.93 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/pull' logger enabled for log level 'WARNING' +peer0.org1.example.com | [17e 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2a941606]sending state message INIT +peer1.org2.example.com | [150 01-18 09:29:40.87 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=qscc,version=1.0.2,txid=917076b7-d851-43cf-9f0a-7e93dc57a492,syscc=true,proposal=0x0,canname=qscc:1.0.2 +orderer.example.com | 2018-01-18 09:29:43.819 UTC [common/configtx] addToMap -> DEBU 114 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer0.org2.example.com | [199 01-18 09:29:40.93 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'peer/gossip/sa' logger enabled for log level 'WARNING' +peer1.org1.example.com | [18a 01-18 09:29:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4660e9fb]send state message COMPLETED +peer0.org1.example.com | [173 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2a941606]Handling ChaincodeMessage of type: READY(state:established) +orderer.example.com | 2018-01-18 09:29:43.819 UTC [common/configtx] addToMap -> DEBU 115 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer1.org2.example.com | [151 01-18 09:29:40.87 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode qscc:1.0.2 is being launched +peer0.org2.example.com | [19a 01-18 09:29:40.93 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/election' logger enabled for log level 'WARNING' +peer0.org1.example.com | [17f 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2a941606]Received message INIT from shim +peer1.org1.example.com | [18b 01-18 09:29:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4660e9fb]Received message COMPLETED from shim +peer1.org2.example.com | [152 01-18 09:29:40.87 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +orderer.example.com | 2018-01-18 09:29:43.819 UTC [common/configtx] addToMap -> DEBU 116 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | 2018-01-18 09:29:43.819 UTC [common/configtx] addToMap -> DEBU 117 Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy +peer0.org1.example.com | [180 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2a941606]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org2.example.com | [19b 01-18 09:29:40.93 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/service' logger enabled for log level 'WARNING' +peer1.org2.example.com | [153 01-18 09:29:40.87 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer1.org2.example.com:7052] +peer1.org1.example.com | [18c 01-18 09:29:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4660e9fb]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [19c 01-18 09:29:40.93 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/gossip' logger enabled for log level 'WARNING' +peer0.org1.example.com | [181 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org2.example.com | [154 01-18 09:29:40.87 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: qscc:1.0.2(networkid:dev,peerid:peer1.org2.example.com) +orderer.example.com | 2018-01-18 09:29:43.819 UTC [common/configtx] addToMap -> DEBU 118 Adding to config map: [Values] /Channel/HashingAlgorithm +peer1.org1.example.com | [18d 01-18 09:29:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4660e9fb-7947-4669-a174-8b97a9233e56]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [182 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [2a941606]Received INIT, initializing chaincode +peer0.org2.example.com | [19d 01-18 09:29:40.93 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'peer/gossip/mcs' logger enabled for log level 'WARNING' +orderer.example.com | 2018-01-18 09:29:43.820 UTC [common/configtx] addToMap -> DEBU 119 Adding to config map: [Values] /Channel/Consortium +peer1.org2.example.com | [155 01-18 09:29:40.87 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer1.org2.example.com:7052 +peer0.org2.example.com | [19e 01-18 09:29:40.93 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/discovery' logger enabled for log level 'WARNING' +orderer.example.com | 2018-01-18 09:29:43.820 UTC [common/configtx] addToMap -> DEBU 11a Adding to config map: [Values] /Channel/BlockDataHashingStructure +peer0.org1.example.com | [183 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC +peer1.org1.example.com | [18e 01-18 09:29:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:4660e9fb-7947-4669-a174-8b97a9233e56 +peer1.org2.example.com | [156 01-18 09:29:40.87 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +orderer.example.com | 2018-01-18 09:29:43.820 UTC [common/configtx] addToMap -> DEBU 11b Adding to config map: [Values] /Channel/OrdererAddresses +peer1.org1.example.com | [18f 01-18 09:29:39.02 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [19f 01-18 09:29:40.93 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'kvledger' logger enabled for log level 'INFO' +peer1.org2.example.com | CORE_CHAINCODE_ID_NAME=qscc:1.0.2 +peer0.org1.example.com | [184 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | [190 01-18 09:29:39.02 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/chaincode/qscc) deployed +peer0.org2.example.com | [1a0 01-18 09:29:40.93 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'ledgermgmt' logger enabled for log level 'INFO' +orderer.example.com | 2018-01-18 09:29:43.820 UTC [common/configtx] addToMap -> DEBU 11c Adding to config map: [Policy] /Channel/Readers +peer1.org2.example.com | CORE_PEER_TLS_ENABLED=true +peer0.org1.example.com | [185 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2a941606]Init get response status: 200 +orderer.example.com | 2018-01-18 09:29:43.821 UTC [common/configtx] addToMap -> DEBU 11d Adding to config map: [Policy] /Channel/Writers +peer0.org2.example.com | [1a1 01-18 09:29:40.93 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'kvledger.util' logger enabled for log level 'INFO' +peer1.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer1.org1.example.com | [191 01-18 09:29:39.02 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.initSysCCs -> INFO Deployed system chaincodess +peer0.org1.example.com | [186 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2a941606]Init succeeded. Sending COMPLETED +peer0.org1.example.com | [187 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2a941606]Move state message COMPLETED +orderer.example.com | 2018-01-18 09:29:43.821 UTC [common/configtx] addToMap -> DEBU 11e Adding to config map: [Policy] /Channel/Admins +peer0.org2.example.com | [1a2 01-18 09:29:40.94 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'cauthdsl' logger enabled for log level 'WARNING' +peer1.org1.example.com | [192 01-18 09:29:39.02 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with ID=[name:"peer1.org1.example.com" ], network ID=[dev], address=[172.18.0.3:7051] +peer1.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer0.org1.example.com | [188 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2a941606]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [1a3 01-18 09:29:40.94 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'policies' logger enabled for log level 'WARNING' +peer1.org1.example.com | [193 01-18 09:29:39.02 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Started peer with ID=[name:"peer1.org1.example.com" ], network ID=[dev], address=[172.18.0.3:7051] +orderer.example.com | 2018-01-18 09:29:43.821 UTC [common/configtx] processConfig -> DEBU 11f Beginning new config for channel businesschannel +peer1.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +peer0.org1.example.com | [189 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2a941606]send state message COMPLETED +peer0.org2.example.com | [1a4 01-18 09:29:40.94 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'grpc' logger enabled for log level 'ERROR' +orderer.example.com | 2018-01-18 09:29:43.822 UTC [common/config] NewStandardValues -> DEBU 120 Initializing protos for *config.ChannelProtos +peer1.org1.example.com | [194 01-18 09:29:39.02 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'configvalues/msp' logger enabled for log level 'WARNING' +peer1.org2.example.com | [157 01-18 09:29:40.87 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.0.2) lock +peer0.org1.example.com | [18a 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2a941606]Received message COMPLETED from shim +orderer.example.com | 2018-01-18 09:29:43.822 UTC [common/config] initializeProtosStruct -> DEBU 121 Processing field: HashingAlgorithm +peer0.org2.example.com | [1a5 01-18 09:29:42.95 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> WARN Failed reading messge from 172.18.0.4:39220, reason: Timed out waiting for connection message from 172.18.0.4:39220 +peer1.org2.example.com | [158 01-18 09:29:40.87 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.0.2) lock +peer1.org1.example.com | [195 01-18 09:29:39.02 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'msp' logger enabled for log level 'WARNING' +peer0.org1.example.com | [18b 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2a941606]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [1a6 01-18 09:29:42.95 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> ERRO Authentication failed: Timed out waiting for connection message from 172.18.0.4:39220 +orderer.example.com | 2018-01-18 09:29:43.822 UTC [common/config] initializeProtosStruct -> DEBU 122 Processing field: BlockDataHashingStructure +peer0.org2.example.com | [1a7 01-18 09:29:46.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer1.org2.example.com | [159 01-18 09:29:40.87 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for qscc-1.0.2 +peer1.org1.example.com | [196 01-18 09:29:39.02 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'msp/identity' logger enabled for log level 'WARNING' +orderer.example.com | 2018-01-18 09:29:43.822 UTC [common/config] initializeProtosStruct -> DEBU 123 Processing field: OrdererAddresses +peer1.org1.example.com | [197 01-18 09:29:39.02 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'peer/gossip/sa' logger enabled for log level 'WARNING' +peer1.org2.example.com | [15a 01-18 09:29:40.87 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.0.2) +peer0.org1.example.com | [18c 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2a941606-1e82-4f60-88c0-cb3562d3862c]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [1a8 01-18 09:29:46.12 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421652e40 +orderer.example.com | 2018-01-18 09:29:43.822 UTC [common/config] initializeProtosStruct -> DEBU 124 Processing field: Consortium +peer1.org1.example.com | [198 01-18 09:29:39.03 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/gossip' logger enabled for log level 'WARNING' +peer0.org1.example.com | [18d 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:2a941606-1e82-4f60-88c0-cb3562d3862c +peer1.org2.example.com | [15b 01-18 09:29:40.87 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.0.2 +peer0.org2.example.com | [1a9 01-18 09:29:46.12 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +orderer.example.com | 2018-01-18 09:29:43.823 UTC [policies] ProposePolicy -> DEBU 125 Proposed new policy Writers for Channel +peer1.org1.example.com | [199 01-18 09:29:39.03 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/comm' logger enabled for log level 'WARNING' +peer0.org1.example.com | [18e 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [1aa 01-18 09:29:46.12 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org2.example.com | [15d 01-18 09:29:40.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org2.example.com:7052] +orderer.example.com | 2018-01-18 09:29:43.823 UTC [policies] ProposePolicy -> DEBU 126 Proposed new policy Admins for Channel +peer0.org2.example.com | [1ab 01-18 09:29:46.12 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} +peer1.org1.example.com | [19a 01-18 09:29:39.03 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/election' logger enabled for log level 'WARNING' +peer0.org1.example.com | [18f 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/chaincode/qscc) deployed +peer1.org2.example.com | [15e 01-18 09:29:40.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.0.2 +orderer.example.com | 2018-01-18 09:29:43.823 UTC [policies] ProposePolicy -> DEBU 127 Proposed new policy Readers for Channel +peer0.org2.example.com | [1ac 01-18 09:29:46.13 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org1.example.com | [19b 01-18 09:29:39.03 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/discovery' logger enabled for log level 'WARNING' +peer1.org2.example.com | [15c 01-18 09:29:40.87 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.0.2 +peer0.org1.example.com | [190 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.initSysCCs -> INFO Deployed system chaincodess +peer0.org2.example.com | [1ad 01-18 09:29:46.13 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org1.example.com | [19c 01-18 09:29:39.03 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/state' logger enabled for log level 'WARNING' +peer1.org2.example.com | [160 01-18 09:29:40.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +orderer.example.com | 2018-01-18 09:29:43.823 UTC [common/config] NewStandardValues -> DEBU 128 Initializing protos for *struct {} +peer0.org1.example.com | [191 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with ID=[name:"peer0.org1.example.com" ], network ID=[dev], address=[172.18.0.5:7051] +peer0.org2.example.com | [1ae 01-18 09:29:46.13 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421601db0, header 0xc421652ed0 +peer1.org1.example.com | [19d 01-18 09:29:39.03 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/pull' logger enabled for log level 'WARNING' +orderer.example.com | 2018-01-18 09:29:43.823 UTC [policies] ProposePolicy -> DEBU 129 Proposed new policy ChannelCreationPolicy for Application +peer1.org2.example.com | [15f 01-18 09:29:40.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer0.org2.example.com | [1af 01-18 09:29:46.13 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"cscc" +peer0.org1.example.com | [192 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Started peer with ID=[name:"peer0.org1.example.com" ], network ID=[dev], address=[172.18.0.5:7051] +peer1.org1.example.com | [19e 01-18 09:29:39.03 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'peer/gossip/mcs' logger enabled for log level 'WARNING' +orderer.example.com | 2018-01-18 09:29:43.823 UTC [common/config] NewStandardValues -> DEBU 12a Initializing protos for *config.OrganizationProtos +peer1.org2.example.com | [161 01-18 09:29:40.87 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | [162 01-18 09:29:40.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +orderer.example.com | 2018-01-18 09:29:43.823 UTC [common/config] initializeProtosStruct -> DEBU 12b Processing field: MSP +peer1.org2.example.com | [163 01-18 09:29:40.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer0.org2.example.com | [1b0 01-18 09:29:46.13 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 17c52eea260e85f7bdcf440e00080086fa6d23425b198c3c8107d0ff24627d29 +peer0.org1.example.com | [193 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'configvalues/msp' logger enabled for log level 'WARNING' +orderer.example.com | 2018-01-18 09:29:43.823 UTC [common/config] NewStandardValues -> DEBU 12c Initializing protos for *config.ApplicationOrgProtos +peer1.org1.example.com | [19f 01-18 09:29:39.03 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/service' logger enabled for log level 'WARNING' +peer1.org2.example.com | [164 01-18 09:29:40.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer1.org1.example.com | [1a0 01-18 09:29:39.03 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'ledgermgmt' logger enabled for log level 'INFO' +peer0.org2.example.com | [1b1 01-18 09:29:46.13 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 17c52eea260e85f7bdcf440e00080086fa6d23425b198c3c8107d0ff24627d29 channel id: +peer0.org1.example.com | [194 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'msp/identity' logger enabled for log level 'WARNING' +peer1.org2.example.com | [165 01-18 09:29:40.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode qscc:1.0.2 +peer1.org1.example.com | [1a1 01-18 09:29:39.03 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'kvledger.util' logger enabled for log level 'INFO' +peer0.org2.example.com | [1b2 01-18 09:29:46.13 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 17c52eea260e85f7bdcf440e00080086fa6d23425b198c3c8107d0ff24627d29 channel id: version: 1.0.2 +orderer.example.com | 2018-01-18 09:29:43.824 UTC [common/config] initializeProtosStruct -> DEBU 12d Processing field: AnchorPeers +peer1.org2.example.com | [166 01-18 09:29:40.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"qscc:1.0.2" , sending back REGISTERED +peer0.org1.example.com | [195 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'msp' logger enabled for log level 'WARNING' +peer1.org1.example.com | [1a2 01-18 09:29:39.03 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'kvledger' logger enabled for log level 'INFO' +orderer.example.com | 2018-01-18 09:29:43.824 UTC [common/config] NewStandardValues -> DEBU 12e Initializing protos for *config.OrganizationProtos +peer0.org2.example.com | [1b3 01-18 09:29:46.13 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.0.2,txid=17c52eea260e85f7bdcf440e00080086fa6d23425b198c3c8107d0ff24627d29,syscc=true,proposal=0xc421601db0,canname=cscc:1.0.2 +peer1.org2.example.com | [167 01-18 09:29:40.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer1.org1.example.com | [1a3 01-18 09:29:39.03 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'cauthdsl' logger enabled for log level 'WARNING' +peer0.org1.example.com | [196 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/service' logger enabled for log level 'WARNING' +peer1.org2.example.com | [168 01-18 09:29:40.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer0.org2.example.com | [1b4 01-18 09:29:46.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.0.2 +orderer.example.com | 2018-01-18 09:29:43.824 UTC [common/config] initializeProtosStruct -> DEBU 12f Processing field: MSP +peer1.org1.example.com | [1a4 01-18 09:29:39.04 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'policies' logger enabled for log level 'WARNING' +peer0.org1.example.com | [197 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/discovery' logger enabled for log level 'WARNING' +peer1.org2.example.com | [169 01-18 09:29:40.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer0.org2.example.com | [1b5 01-18 09:29:46.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [198 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/comm' logger enabled for log level 'WARNING' +peer1.org1.example.com | [1a5 01-18 09:29:39.06 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'grpc' logger enabled for log level 'ERROR' +orderer.example.com | 2018-01-18 09:29:43.824 UTC [policies] ProposePolicy -> DEBU 130 Proposed new policy Admins for Org2MSP +peer0.org2.example.com | [1b6 01-18 09:29:46.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.2 +peer1.org2.example.com | [16b 01-18 09:29:40.87 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode qscc:1.0.2 launch seq completed +peer1.org1.example.com | [1a6 01-18 09:29:41.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> WARN Could not connect to {peer0.org1.example.com:7051 [] [] peer0.org1.example.com:7051} : context deadline exceeded +peer0.org1.example.com | [199 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/gossip' logger enabled for log level 'WARNING' +peer1.org1.example.com | [1a7 01-18 09:29:45.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer0.org2.example.com | [1b7 01-18 09:29:46.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [17c52eea]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [16c 01-18 09:29:40.87 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +peer0.org1.example.com | [19a 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/election' logger enabled for log level 'WARNING' +peer1.org1.example.com | [1a8 01-18 09:29:45.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4214f5830 +orderer.example.com | 2018-01-18 09:29:43.824 UTC [policies] ProposePolicy -> DEBU 131 Proposed new policy Readers for Org2MSP +peer1.org2.example.com | [16a 01-18 09:29:40.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer1.org1.example.com | [1a9 01-18 09:29:45.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer0.org2.example.com | [1b8 01-18 09:29:46.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [19b 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/state' logger enabled for log level 'WARNING' +peer1.org1.example.com | [1aa 01-18 09:29:45.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | 2018-01-18 09:29:43.824 UTC [policies] ProposePolicy -> DEBU 132 Proposed new policy Writers for Org2MSP +peer0.org2.example.com | [1b9 01-18 09:29:46.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [19c 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'peer/gossip/mcs' logger enabled for log level 'WARNING' +peer1.org1.example.com | [1ab 01-18 09:29:45.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +orderer.example.com | 2018-01-18 09:29:43.824 UTC [common/config] NewStandardValues -> DEBU 133 Initializing protos for *config.OrganizationProtos +peer1.org2.example.com | [16d 01-18 09:29:40.87 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [1ac 01-18 09:29:45.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org2.example.com | [1ba 01-18 09:29:46.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [17c52eea]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [19d 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'peer/gossip/sa' logger enabled for log level 'WARNING' +peer1.org1.example.com | [1ad 01-18 09:29:45.62 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | 2018-01-18 09:29:43.824 UTC [common/config] initializeProtosStruct -> DEBU 134 Processing field: MSP +peer0.org2.example.com | [1bb 01-18 09:29:46.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [17c52eea]Move state message TRANSACTION +peer0.org1.example.com | [19e 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/pull' logger enabled for log level 'WARNING' +peer1.org1.example.com | [1ae 01-18 09:29:45.62 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4214e2eb0, header 0xc4214f58c0 +peer1.org2.example.com | [16e 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [917076b7]Move state message READY +peer0.org2.example.com | [1bc 01-18 09:29:46.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [17c52eea]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | 2018-01-18 09:29:43.824 UTC [common/config] NewStandardValues -> DEBU 135 Initializing protos for *config.ApplicationOrgProtos +peer1.org1.example.com | [1af 01-18 09:29:45.62 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"cscc" +peer1.org2.example.com | [16f 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [917076b7]Fabric side Handling ChaincodeMessage of type: READY in state established +peer1.org1.example.com | [1b0 01-18 09:29:45.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 9614df70e67c837184934c831b1f713fc5f7e7da1f0488eef88364836d311695 +peer0.org2.example.com | [1bd 01-18 09:29:46.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [1b1 01-18 09:29:45.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 9614df70e67c837184934c831b1f713fc5f7e7da1f0488eef88364836d311695 channel id: +peer0.org1.example.com | [19f 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'kvledger' logger enabled for log level 'INFO' +peer1.org1.example.com | [1b2 01-18 09:29:45.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 9614df70e67c837184934c831b1f713fc5f7e7da1f0488eef88364836d311695 channel id: version: 1.0.2 +peer1.org2.example.com | [170 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [917076b7]Entered state ready +peer0.org2.example.com | [1be 01-18 09:29:46.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [17c52eea]sending state message TRANSACTION +peer1.org1.example.com | [1b3 01-18 09:29:45.62 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.0.2,txid=9614df70e67c837184934c831b1f713fc5f7e7da1f0488eef88364836d311695,syscc=true,proposal=0xc4214e2eb0,canname=cscc:1.0.2 +orderer.example.com | 2018-01-18 09:29:43.825 UTC [common/config] initializeProtosStruct -> DEBU 136 Processing field: AnchorPeers +peer1.org2.example.com | [171 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:917076b7-d851-43cf-9f0a-7e93dc57a492 +peer0.org1.example.com | [1a0 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'kvledger.util' logger enabled for log level 'INFO' +peer1.org1.example.com | [1b4 01-18 09:29:45.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.0.2 +peer0.org2.example.com | [1bf 01-18 09:29:46.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [17c52eea]Received message TRANSACTION from shim +orderer.example.com | 2018-01-18 09:29:43.825 UTC [common/config] NewStandardValues -> DEBU 137 Initializing protos for *config.OrganizationProtos +peer1.org1.example.com | [1b5 01-18 09:29:45.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [1a1 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'ledgermgmt' logger enabled for log level 'INFO' +peer1.org2.example.com | [172 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [917076b7]sending state message READY +orderer.example.com | 2018-01-18 09:29:43.825 UTC [common/config] initializeProtosStruct -> DEBU 138 Processing field: MSP +peer1.org1.example.com | [1b6 01-18 09:29:45.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.2 +peer0.org2.example.com | [1c0 01-18 09:29:46.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [17c52eea]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [1a2 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'cauthdsl' logger enabled for log level 'WARNING' +peer1.org2.example.com | [173 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +peer1.org1.example.com | [1b7 01-18 09:29:45.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9614df70]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | 2018-01-18 09:29:43.825 UTC [policies] ProposePolicy -> DEBU 139 Proposed new policy Admins for Org1MSP +peer0.org2.example.com | [1c1 01-18 09:29:46.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [17c52eea]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org1.example.com | [1b8 01-18 09:29:45.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [1a3 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'policies' logger enabled for log level 'WARNING' +orderer.example.com | 2018-01-18 09:29:43.825 UTC [policies] ProposePolicy -> DEBU 13a Proposed new policy Readers for Org1MSP +peer0.org2.example.com | [1c2 01-18 09:29:46.14 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain +peer1.org1.example.com | [1b9 01-18 09:29:45.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [1a4 01-18 09:29:41.60 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'grpc' logger enabled for log level 'ERROR' +orderer.example.com | 2018-01-18 09:29:43.825 UTC [policies] ProposePolicy -> DEBU 13b Proposed new policy Writers for Org1MSP +peer0.org2.example.com | [1c3 01-18 09:29:46.14 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block +peer1.org2.example.com | [175 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +peer0.org1.example.com | [1a5 01-18 09:29:45.16 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer1.org1.example.com | [1ba 01-18 09:29:45.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9614df70]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | 2018-01-18 09:29:43.825 UTC [common/config] NewStandardValues -> DEBU 13c Initializing protos for *config.OrdererProtos +peer0.org2.example.com | [1c4 01-18 09:29:46.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel +peer0.org1.example.com | [1a6 01-18 09:29:45.16 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4215706c0 +peer1.org2.example.com | [176 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [1bb 01-18 09:29:45.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9614df70]Move state message TRANSACTION +orderer.example.com | 2018-01-18 09:29:43.825 UTC [common/config] initializeProtosStruct -> DEBU 13d Processing field: ConsensusType +peer0.org2.example.com | [1c5 01-18 09:29:46.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncCPInfoFromFS -> DEBU Starting checkpoint=latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0] +orderer.example.com | 2018-01-18 09:29:43.826 UTC [common/config] initializeProtosStruct -> DEBU 13e Processing field: BatchSize +peer0.org1.example.com | [1a7 01-18 09:29:45.19 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer1.org1.example.com | [1bc 01-18 09:29:45.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9614df70]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org2.example.com | [1c6 01-18 09:29:46.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncCPInfoFromFS -> DEBU status of file [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/blockfile_000000]: exists=[false], size=[0] +peer1.org2.example.com | [177 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.2 +orderer.example.com | 2018-01-18 09:29:43.826 UTC [common/config] initializeProtosStruct -> DEBU 13f Processing field: BatchTimeout +peer0.org1.example.com | [1a8 01-18 09:29:45.19 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org2.example.com | [1c7 01-18 09:29:46.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockHash BlockNum TxID BlockNumTranNum BlockTxID TxValidationCode]] +peer1.org1.example.com | [1bd 01-18 09:29:45.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [178 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [917076b7]Inside sendExecuteMessage. Message INIT +orderer.example.com | 2018-01-18 09:29:43.826 UTC [common/config] initializeProtosStruct -> DEBU 140 Processing field: KafkaBrokers +peer0.org1.example.com | [1a9 01-18 09:29:45.19 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +peer0.org2.example.com | [1c8 01-18 09:29:46.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/ledgersData/chains/chains/businesschannel/blockfile_000000], startOffset=[0] +orderer.example.com | 2018-01-18 09:29:43.826 UTC [common/config] initializeProtosStruct -> DEBU 141 Processing field: ChannelRestrictions +peer1.org2.example.com | [179 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [1be 01-18 09:29:45.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9614df70]sending state message TRANSACTION +peer0.org2.example.com | [1c9 01-18 09:29:46.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Finished reading file number [0] +peer0.org1.example.com | [1aa 01-18 09:29:45.19 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org2.example.com | [17a 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [917076b7]sendExecuteMsg trigger event INIT +orderer.example.com | 2018-01-18 09:29:43.826 UTC [policies] ProposePolicy -> DEBU 142 Proposed new policy Readers for Orderer +peer1.org1.example.com | [1bf 01-18 09:29:45.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9614df70]Received message TRANSACTION from shim +peer0.org1.example.com | [1ab 01-18 09:29:45.19 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org2.example.com | [17b 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [917076b7]Move state message INIT +peer0.org2.example.com | [1ca 01-18 09:29:46.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [0] read from file [0] +peer0.org1.example.com | [1ac 01-18 09:29:45.19 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4202c36d0, header 0xc421570780 +orderer.example.com | 2018-01-18 09:29:43.826 UTC [policies] ProposePolicy -> DEBU 143 Proposed new policy Writers for Orderer +peer0.org2.example.com | [1cb 01-18 09:29:46.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer1.org1.example.com | [1c0 01-18 09:29:45.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9614df70]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org2.example.com | [17c 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [917076b7]Fabric side Handling ChaincodeMessage of type: INIT in state ready +orderer.example.com | 2018-01-18 09:29:43.826 UTC [policies] ProposePolicy -> DEBU 144 Proposed new policy Admins for Orderer +peer0.org2.example.com | [1cc 01-18 09:29:46.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc421784140), Data:(*common.BlockData)(0xc42170f340), Metadata:(*common.BlockMetadata)(0xc42170f380)}, doMVCCValidation=true +peer1.org1.example.com | [1c1 01-18 09:29:45.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [9614df70]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [1ad 01-18 09:29:45.19 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"cscc" +orderer.example.com | 2018-01-18 09:29:43.826 UTC [policies] ProposePolicy -> DEBU 145 Proposed new policy BlockValidation for Orderer +peer1.org2.example.com | [17d 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [1cd 01-18 09:29:46.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +peer0.org1.example.com | [1ae 01-18 09:29:45.19 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: cd1eaf52a53d002bbdb24e980ef6bbd201f81405edc8a213f22f571fbe612492 +orderer.example.com | 2018-01-18 09:29:43.826 UTC [common/config] NewStandardValues -> DEBU 146 Initializing protos for *config.OrganizationProtos +peer1.org1.example.com | [1c2 01-18 09:29:45.63 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain +peer1.org2.example.com | [17e 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [917076b7]sending state message INIT +peer0.org2.example.com | [1ce 01-18 09:29:46.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [0] Transaction index [0] because, the transaction type is [CONFIG] +peer0.org1.example.com | [1af 01-18 09:29:45.19 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: cd1eaf52a53d002bbdb24e980ef6bbd201f81405edc8a213f22f571fbe612492 channel id: +peer1.org1.example.com | [1c3 01-18 09:29:45.63 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block +peer1.org2.example.com | [174 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [917076b7]Received message READY from shim +orderer.example.com | 2018-01-18 09:29:43.826 UTC [common/config] initializeProtosStruct -> DEBU 147 Processing field: MSP +peer0.org1.example.com | [1b0 01-18 09:29:45.19 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: cd1eaf52a53d002bbdb24e980ef6bbd201f81405edc8a213f22f571fbe612492 channel id: version: 1.0.2 +peer0.org2.example.com | [1cf 01-18 09:29:46.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0xbf, 0xac, 0x7a, 0x9c, 0x41, 0x40, 0xd9, 0x48, 0x88, 0x7, 0x81, 0xf5, 0x7b, 0xed, 0xd0, 0x38, 0xe1, 0x79, 0xd0, 0xac, 0x73, 0x8c, 0xd3, 0x69, 0xb5, 0x49, 0x90, 0xfb, 0x97, 0x6a, 0x22, 0xf5} txOffsets= +peer1.org2.example.com | [17f 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [917076b7]Handling ChaincodeMessage of type: READY(state:established) +peer1.org1.example.com | [1c4 01-18 09:29:45.63 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel +peer0.org1.example.com | [1b1 01-18 09:29:45.19 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.0.2,txid=cd1eaf52a53d002bbdb24e980ef6bbd201f81405edc8a213f22f571fbe612492,syscc=true,proposal=0xc4202c36d0,canname=cscc:1.0.2 +orderer.example.com | 2018-01-18 09:29:43.826 UTC [policies] ProposePolicy -> DEBU 148 Proposed new policy Writers for OrdererOrg +peer1.org2.example.com | [180 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [917076b7]Received message INIT from shim +peer1.org2.example.com | [181 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [917076b7]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org2.example.com | [182 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org1.example.com | [1c5 01-18 09:29:45.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncCPInfoFromFS -> DEBU Starting checkpoint=latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0] +peer0.org1.example.com | [1b2 01-18 09:29:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.0.2 +orderer.example.com | 2018-01-18 09:29:43.826 UTC [policies] ProposePolicy -> DEBU 149 Proposed new policy Admins for OrdererOrg +peer1.org2.example.com | [183 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [917076b7]Received INIT, initializing chaincode +peer0.org1.example.com | [1b3 01-18 09:29:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [1c6 01-18 09:29:45.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncCPInfoFromFS -> DEBU status of file [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/blockfile_000000]: exists=[false], size=[0] +peer0.org2.example.com | txId= locPointer=offset=38, bytesLength=11891 +peer0.org1.example.com | [1b4 01-18 09:29:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.2 +orderer.example.com | 2018-01-18 09:29:43.827 UTC [policies] ProposePolicy -> DEBU 14a Proposed new policy Readers for OrdererOrg +peer0.org1.example.com | [1b5 01-18 09:29:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [cd1eaf52]Inside sendExecuteMessage. Message TRANSACTION +peer1.org1.example.com | [1c7 01-18 09:29:45.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockHash BlockNum TxID BlockNumTranNum BlockTxID TxValidationCode]] +peer0.org2.example.com | ] +peer1.org2.example.com | [184 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC +peer0.org1.example.com | [1b6 01-18 09:29:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | 2018-01-18 09:29:43.827 UTC [common/config] Validate -> DEBU 14b Anchor peers for org Org2MSP are +peer1.org1.example.com | [1c8 01-18 09:29:45.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/ledgersData/chains/chains/businesschannel/blockfile_000000], startOffset=[0] +peer0.org1.example.com | [1b7 01-18 09:29:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org2.example.com | [1d0 01-18 09:29:46.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=11891] for tx ID: [] to index +peer1.org2.example.com | [185 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | 2018-01-18 09:29:43.827 UTC [common/config] validateMSP -> DEBU 14c Setting up MSP for org Org2MSP +peer0.org1.example.com | [1b8 01-18 09:29:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [cd1eaf52]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [186 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [917076b7]Init get response status: 200 +peer1.org1.example.com | [1c9 01-18 09:29:45.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Finished reading file number [0] +orderer.example.com | 2018-01-18 09:29:43.827 UTC [msp] NewBccspMsp -> DEBU 14d Creating BCCSP-based MSP instance +peer0.org1.example.com | [1b9 01-18 09:29:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cd1eaf52]Move state message TRANSACTION +peer0.org2.example.com | [1d1 01-18 09:29:46.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=11891] for tx number:[0] ID: [] to blockNumTranNum index +peer1.org2.example.com | [187 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [917076b7]Init succeeded. Sending COMPLETED +peer1.org1.example.com | [1ca 01-18 09:29:45.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [0] read from file [0] +peer0.org1.example.com | [1ba 01-18 09:29:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [cd1eaf52]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | 2018-01-18 09:29:43.827 UTC [msp] Setup -> DEBU 14e Setting up MSP instance Org2MSP +peer1.org2.example.com | [188 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [917076b7]Move state message COMPLETED +peer0.org2.example.com | [1d2 01-18 09:29:46.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[11935], isChainEmpty=[false], lastBlockNumber=[0] +peer0.org1.example.com | [1bb 01-18 09:29:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [1cb 01-18 09:29:45.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +orderer.example.com | 2018-01-18 09:29:43.827 UTC [msp/identity] newIdentity -> DEBU 14f Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [189 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [917076b7]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [1bc 01-18 09:29:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cd1eaf52]sending state message TRANSACTION +peer1.org1.example.com | [1cc 01-18 09:29:45.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc420389e40), Data:(*common.BlockData)(0xc4216166a0), Metadata:(*common.BlockMetadata)(0xc4216166e0)}, doMVCCValidation=true +peer0.org2.example.com | [1d3 01-18 09:29:46.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit -> INFO Channel [businesschannel]: Created block [0] with 1 transaction(s) +orderer.example.com | MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw +peer0.org1.example.com | [1bd 01-18 09:29:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cd1eaf52]Received message TRANSACTION from shim +peer1.org2.example.com | [18a 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [917076b7]send state message COMPLETED +peer1.org1.example.com | [1cd 01-18 09:29:45.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +peer0.org1.example.com | [1be 01-18 09:29:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [cd1eaf52]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org2.example.com | [1d4 01-18 09:29:46.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Committing updates to state database +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org1.example.com | [1bf 01-18 09:29:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [cd1eaf52]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org2.example.com | [1d5 01-18 09:29:46.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +peer1.org1.example.com | [1ce 01-18 09:29:45.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [0] Transaction index [0] because, the transaction type is [CONFIG] +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer1.org2.example.com | [18b 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [917076b7]Received message COMPLETED from shim +peer0.org1.example.com | [1c0 01-18 09:29:45.19 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain +peer1.org1.example.com | [1cf 01-18 09:29:45.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0xbf, 0xac, 0x7a, 0x9c, 0x41, 0x40, 0xd9, 0x48, 0x88, 0x7, 0x81, 0xf5, 0x7b, 0xed, 0xd0, 0x38, 0xe1, 0x79, 0xd0, 0xac, 0x73, 0x8c, 0xd3, 0x69, 0xb5, 0x49, 0x90, 0xfb, 0x97, 0x6a, 0x22, 0xf5} txOffsets= +peer1.org2.example.com | [18c 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [917076b7]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [1c1 01-18 09:29:45.20 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block +peer0.org2.example.com | [1d6 01-18 09:29:46.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Updates committed to state database +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa +peer1.org1.example.com | txId= locPointer=offset=38, bytesLength=11891 +peer0.org1.example.com | [1c2 01-18 09:29:45.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel +peer0.org2.example.com | [1d7 01-18 09:29:46.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [0] with [1] transactions +peer1.org2.example.com | [18d 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [917076b7-d851-43cf-9f0a-7e93dc57a492]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | ] +peer0.org1.example.com | [1c3 01-18 09:29:45.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncCPInfoFromFS -> DEBU Starting checkpoint=latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0] +peer1.org2.example.com | [18e 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:917076b7-d851-43cf-9f0a-7e93dc57a492 +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer0.org1.example.com | [1c4 01-18 09:29:45.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncCPInfoFromFS -> DEBU status of file [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/blockfile_000000]: exists=[false], size=[0] +peer1.org2.example.com | [18f 01-18 09:29:40.88 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [190 01-18 09:29:40.89 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/chaincode/qscc) deployed +peer1.org1.example.com | [1d0 01-18 09:29:45.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=11891] for tx ID: [] to index +peer0.org1.example.com | [1c5 01-18 09:29:45.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockHash BlockNum TxID BlockNumTranNum BlockTxID TxValidationCode]] +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +peer1.org2.example.com | [191 01-18 09:29:40.89 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.initSysCCs -> INFO Deployed system chaincodess +peer0.org2.example.com | [1d8 01-18 09:29:46.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +peer1.org1.example.com | [1d1 01-18 09:29:45.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=11891] for tx number:[0] ID: [] to blockNumTranNum index +peer1.org2.example.com | [192 01-18 09:29:40.89 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with ID=[name:"peer1.org2.example.com" ], network ID=[dev], address=[172.18.0.4:7051] +peer0.org1.example.com | [1c6 01-18 09:29:45.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/ledgersData/chains/chains/businesschannel/blockfile_000000], startOffset=[0] +peer1.org1.example.com | [1d2 01-18 09:29:45.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[11935], isChainEmpty=[false], lastBlockNumber=[0] +orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +peer0.org2.example.com | [1d9 01-18 09:29:46.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [0] +peer1.org2.example.com | [193 01-18 09:29:40.89 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Started peer with ID=[name:"peer1.org2.example.com" ], network ID=[dev], address=[172.18.0.4:7051] +peer1.org2.example.com | [194 01-18 09:29:40.89 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'configvalues/msp' logger enabled for log level 'WARNING' +peer1.org1.example.com | [1d3 01-18 09:29:45.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit -> INFO Channel [businesschannel]: Created block [0] with 1 transaction(s) +peer0.org1.example.com | [1c7 01-18 09:29:45.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Finished reading file number [0] +orderer.example.com | mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 +peer0.org2.example.com | [1da 01-18 09:29:46.16 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block +peer1.org2.example.com | [195 01-18 09:29:40.89 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'msp' logger enabled for log level 'WARNING' +peer0.org1.example.com | [1c8 01-18 09:29:45.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [0] read from file [0] +peer1.org2.example.com | [196 01-18 09:29:40.89 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'msp/identity' logger enabled for log level 'WARNING' +peer1.org1.example.com | [1d4 01-18 09:29:45.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Committing updates to state database +peer0.org2.example.com | [1db 01-18 09:29:46.17 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +peer1.org2.example.com | [197 01-18 09:29:40.89 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/state' logger enabled for log level 'WARNING' +peer0.org1.example.com | [1c9 01-18 09:29:45.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +orderer.example.com | sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +peer1.org2.example.com | [198 01-18 09:29:40.89 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/comm' logger enabled for log level 'WARNING' +peer1.org1.example.com | [1d5 01-18 09:29:45.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +peer1.org2.example.com | [199 01-18 09:29:40.89 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/pull' logger enabled for log level 'WARNING' +peer0.org2.example.com | [1dc 01-18 09:29:46.17 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ +peer1.org2.example.com | [19a 01-18 09:29:40.89 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'peer/gossip/sa' logger enabled for log level 'WARNING' +peer1.org1.example.com | [1d6 01-18 09:29:45.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Updates committed to state database +peer0.org1.example.com | [1ca 01-18 09:29:45.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc42015e680), Data:(*common.BlockData)(0xc4215ce900), Metadata:(*common.BlockMetadata)(0xc4215ce940)}, doMVCCValidation=true +peer0.org2.example.com | [1dd 01-18 09:29:46.17 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +orderer.example.com | xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv +peer1.org2.example.com | [19b 01-18 09:29:40.89 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/election' logger enabled for log level 'WARNING' +peer0.org1.example.com | [1cb 01-18 09:29:45.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +peer1.org1.example.com | [1d7 01-18 09:29:45.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [0] with [1] transactions +peer0.org2.example.com | [1de 01-18 09:29:46.17 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +orderer.example.com | WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk +peer1.org2.example.com | [19c 01-18 09:29:40.89 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/service' logger enabled for log level 'WARNING' +peer1.org1.example.com | [1d8 01-18 09:29:45.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +peer0.org1.example.com | [1cc 01-18 09:29:45.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [0] Transaction index [0] because, the transaction type is [CONFIG] +orderer.example.com | SCjyRdD3aQ== +peer0.org2.example.com | [1df 01-18 09:29:46.17 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer1.org2.example.com | [19d 01-18 09:29:40.89 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/discovery' logger enabled for log level 'WARNING' +peer1.org1.example.com | [1d9 01-18 09:29:45.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [0] +peer0.org1.example.com | [1cd 01-18 09:29:45.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0xbf, 0xac, 0x7a, 0x9c, 0x41, 0x40, 0xd9, 0x48, 0x88, 0x7, 0x81, 0xf5, 0x7b, 0xed, 0xd0, 0x38, 0xe1, 0x79, 0xd0, 0xac, 0x73, 0x8c, 0xd3, 0x69, 0xb5, 0x49, 0x90, 0xfb, 0x97, 0x6a, 0x22, 0xf5} txOffsets= +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [19e 01-18 09:29:40.89 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'peer/gossip/mcs' logger enabled for log level 'WARNING' +peer0.org2.example.com | [1e0 01-18 09:29:46.17 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer1.org1.example.com | [1da 01-18 09:29:45.66 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block +peer0.org1.example.com | txId= locPointer=offset=38, bytesLength=11891 +peer1.org2.example.com | [19f 01-18 09:29:40.89 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/gossip' logger enabled for log level 'WARNING' +peer0.org2.example.com | [1e1 01-18 09:29:46.17 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +orderer.example.com | 2018-01-18 09:29:43.828 UTC [msp/identity] newIdentity -> DEBU 150 Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org1.example.com | [1db 01-18 09:29:45.67 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +peer1.org2.example.com | [1a0 01-18 09:29:40.89 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'kvledger' logger enabled for log level 'INFO' +peer0.org1.example.com | ] +peer0.org2.example.com | [1e2 01-18 09:29:46.17 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +peer1.org1.example.com | [1dc 01-18 09:29:45.67 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +peer1.org2.example.com | [1a1 01-18 09:29:40.89 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'ledgermgmt' logger enabled for log level 'INFO' +peer0.org1.example.com | [1ce 01-18 09:29:45.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=11891] for tx ID: [] to index +peer0.org2.example.com | [1e3 01-18 09:29:46.17 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +peer1.org1.example.com | [1dd 01-18 09:29:45.67 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer1.org2.example.com | [1a2 01-18 09:29:40.89 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'kvledger.util' logger enabled for log level 'INFO' +peer0.org1.example.com | [1cf 01-18 09:29:45.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=11891] for tx number:[0] ID: [] to blockNumTranNum index +peer0.org2.example.com | [1e4 01-18 09:29:46.17 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org1.example.com | [1de 01-18 09:29:45.67 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer1.org2.example.com | [1a3 01-18 09:29:40.89 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'cauthdsl' logger enabled for log level 'WARNING' +peer1.org1.example.com | [1df 01-18 09:29:45.67 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org2.example.com | [1e5 01-18 09:29:46.17 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer0.org1.example.com | [1d0 01-18 09:29:45.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[11935], isChainEmpty=[false], lastBlockNumber=[0] +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org2.example.com | [1a4 01-18 09:29:40.89 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'policies' logger enabled for log level 'WARNING' +peer0.org2.example.com | [1e6 01-18 09:29:46.17 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer1.org1.example.com | [1e0 01-18 09:29:45.67 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer1.org2.example.com | [1a5 01-18 09:29:40.89 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'grpc' logger enabled for log level 'ERROR' +peer0.org1.example.com | [1d1 01-18 09:29:45.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit -> INFO Channel [businesschannel]: Created block [0] with 1 transaction(s) +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +peer0.org2.example.com | [1e7 01-18 09:29:46.17 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +peer1.org2.example.com | [1a6 01-18 09:29:46.39 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer1.org1.example.com | [1e1 01-18 09:29:45.67 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +peer0.org2.example.com | [1e8 01-18 09:29:46.17 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +peer0.org1.example.com | [1d2 01-18 09:29:45.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Committing updates to state database +peer1.org2.example.com | [1a7 01-18 09:29:46.39 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc420175230 +peer1.org1.example.com | [1e2 01-18 09:29:45.67 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org2.example.com | [1e9 01-18 09:29:46.17 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +peer1.org2.example.com | [1a8 01-18 09:29:46.39 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer0.org1.example.com | [1d3 01-18 09:29:45.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +peer1.org1.example.com | [1e3 01-18 09:29:45.67 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +peer0.org1.example.com | [1d4 01-18 09:29:45.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Updates committed to state database +peer0.org2.example.com | [1ea 01-18 09:29:46.17 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +peer1.org2.example.com | [1a9 01-18 09:29:46.39 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +peer0.org1.example.com | [1d5 01-18 09:29:45.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [0] with [1] transactions +peer1.org1.example.com | [1e4 01-18 09:29:45.67 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +peer0.org2.example.com | [1eb 01-18 09:29:46.17 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer0.org1.example.com | [1d6 01-18 09:29:45.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +peer1.org2.example.com | [1aa 01-18 09:29:46.39 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} +peer1.org1.example.com | [1e5 01-18 09:29:45.67 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +peer0.org1.example.com | [1d7 01-18 09:29:45.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [0] +peer1.org2.example.com | [1ab 01-18 09:29:46.39 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org1.example.com | [1e6 01-18 09:29:45.67 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +peer0.org1.example.com | [1d8 01-18 09:29:45.23 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block +peer1.org2.example.com | [1ac 01-18 09:29:46.39 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org2.example.com | [1ec 01-18 09:29:46.17 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer1.org1.example.com | [1e7 01-18 09:29:45.67 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +peer0.org1.example.com | [1d9 01-18 09:29:45.23 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +peer0.org2.example.com | [1ed 01-18 09:29:46.17 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +peer1.org2.example.com | [1ad 01-18 09:29:46.39 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc420157680, header 0xc420175470 +peer1.org1.example.com | [1e8 01-18 09:29:45.67 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +peer0.org2.example.com | [1ee 01-18 09:29:46.17 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +orderer.example.com | AXYxULZpXYDQXt1KaLI= +peer1.org2.example.com | [1ae 01-18 09:29:46.39 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"cscc" +peer0.org1.example.com | [1da 01-18 09:29:45.23 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer1.org1.example.com | [1e9 01-18 09:29:45.67 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +peer0.org2.example.com | [1ef 01-18 09:29:46.17 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer0.org1.example.com | [1db 01-18 09:29:45.23 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer1.org2.example.com | [1af 01-18 09:29:46.39 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 043912c3b5d8fc0cf9f02a6d45d0c881515590c05d5edf9412776bd6654d476f +orderer.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [1ea 01-18 09:29:45.67 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +peer0.org1.example.com | [1dc 01-18 09:29:45.23 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer0.org2.example.com | [1f0 01-18 09:29:46.17 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | 2018-01-18 09:29:43.829 UTC [msp/identity] newIdentity -> DEBU 151 Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [1b0 01-18 09:29:46.39 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 043912c3b5d8fc0cf9f02a6d45d0c881515590c05d5edf9412776bd6654d476f channel id: +peer1.org1.example.com | [1eb 01-18 09:29:45.67 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer0.org2.example.com | [1f1 01-18 09:29:46.17 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +peer0.org1.example.com | [1dd 01-18 09:29:45.23 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer1.org2.example.com | [1b1 01-18 09:29:46.40 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 043912c3b5d8fc0cf9f02a6d45d0c881515590c05d5edf9412776bd6654d476f channel id: version: 1.0.2 +orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +peer1.org1.example.com | [1ec 01-18 09:29:45.68 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer0.org1.example.com | [1de 01-18 09:29:45.23 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org2.example.com | [1f2 01-18 09:29:46.17 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer1.org2.example.com | [1b2 01-18 09:29:46.40 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.0.2,txid=043912c3b5d8fc0cf9f02a6d45d0c881515590c05d5edf9412776bd6654d476f,syscc=true,proposal=0xc420157680,canname=cscc:1.0.2 +peer1.org1.example.com | [1ed 01-18 09:29:45.68 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org1.example.com | [1df 01-18 09:29:45.23 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +peer0.org2.example.com | [1f3 01-18 09:29:46.17 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer1.org2.example.com | [1b3 01-18 09:29:46.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.0.2 +peer1.org1.example.com | [1ee 01-18 09:29:45.68 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer0.org1.example.com | [1e0 01-18 09:29:45.23 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +peer0.org2.example.com | [1f4 01-18 09:29:46.17 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +peer1.org2.example.com | [1b4 01-18 09:29:46.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [1e1 01-18 09:29:45.23 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +peer0.org2.example.com | [1f5 01-18 09:29:46.17 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +peer1.org1.example.com | [1ef 01-18 09:29:45.68 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | [1e2 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer0.org2.example.com | [1f6 01-18 09:29:46.17 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +peer1.org1.example.com | [1f0 01-18 09:29:45.68 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +peer1.org2.example.com | [1b5 01-18 09:29:46.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.2 +peer0.org2.example.com | [1f7 01-18 09:29:46.17 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer1.org1.example.com | [1f1 01-18 09:29:45.68 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +peer0.org1.example.com | [1e3 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer1.org2.example.com | [1b6 01-18 09:29:46.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [043912c3]Inside sendExecuteMessage. Message TRANSACTION +peer0.org2.example.com | [1f8 01-18 09:29:46.17 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +peer1.org1.example.com | [1f2 01-18 09:29:45.69 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer1.org2.example.com | [1b7 01-18 09:29:46.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [1f9 01-18 09:29:46.17 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +peer0.org1.example.com | [1e4 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer0.org2.example.com | [1fa 01-18 09:29:46.17 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer1.org1.example.com | [1f3 01-18 09:29:45.69 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer1.org2.example.com | [1b8 01-18 09:29:46.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +peer0.org2.example.com | [1fb 01-18 09:29:46.17 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer1.org1.example.com | [1f4 01-18 09:29:45.69 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +peer1.org2.example.com | [1b9 01-18 09:29:46.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [043912c3]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [1e5 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +peer0.org2.example.com | [1fc 01-18 09:29:46.17 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +peer1.org2.example.com | [1ba 01-18 09:29:46.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [043912c3]Move state message TRANSACTION +peer0.org2.example.com | [1fd 01-18 09:29:46.18 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +peer1.org1.example.com | [1f5 01-18 09:29:45.69 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | AXYxULZpXYDQXt1KaLI= +peer0.org1.example.com | [1e6 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +peer1.org2.example.com | [1bb 01-18 09:29:46.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [043912c3]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org2.example.com | [1fe 01-18 09:29:46.18 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +orderer.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [1f6 01-18 09:29:45.69 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +peer1.org2.example.com | [1bc 01-18 09:29:46.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [1e7 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +peer0.org2.example.com | [1ff 01-18 09:29:46.18 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +orderer.example.com | 2018-01-18 09:29:43.830 UTC [msp] Validate -> DEBU 152 MSP Org2MSP validating identity +peer1.org2.example.com | [1bd 01-18 09:29:46.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [043912c3]sending state message TRANSACTION +peer0.org2.example.com | [200 01-18 09:29:46.18 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +peer1.org1.example.com | [1f7 01-18 09:29:45.69 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org1.example.com | [1e8 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +orderer.example.com | 2018-01-18 09:29:43.830 UTC [common/config] Validate -> DEBU 153 Anchor peers for org Org1MSP are +peer1.org2.example.com | [1be 01-18 09:29:46.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [043912c3]Received message TRANSACTION from shim +peer0.org2.example.com | [201 01-18 09:29:46.18 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer1.org1.example.com | [1f8 01-18 09:29:45.69 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | 2018-01-18 09:29:43.830 UTC [common/config] validateMSP -> DEBU 154 Setting up MSP for org Org1MSP +peer0.org2.example.com | [202 01-18 09:29:46.18 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer0.org1.example.com | [1e9 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +orderer.example.com | 2018-01-18 09:29:43.831 UTC [msp] NewBccspMsp -> DEBU 155 Creating BCCSP-based MSP instance +peer0.org2.example.com | [203 01-18 09:29:46.18 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer1.org2.example.com | [1bf 01-18 09:29:46.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [043912c3]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org1.example.com | [1f9 01-18 09:29:45.69 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | 2018-01-18 09:29:43.831 UTC [msp] Setup -> DEBU 156 Setting up MSP instance Org1MSP +peer0.org2.example.com | [204 01-18 09:29:46.18 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel +peer0.org1.example.com | [1ea 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +orderer.example.com | 2018-01-18 09:29:43.831 UTC [msp/identity] newIdentity -> DEBU 157 Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org2.example.com | [205 01-18 09:29:46.18 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +peer1.org2.example.com | [1c0 01-18 09:29:46.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [043912c3]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org1.example.com | [1fa 01-18 09:29:45.69 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +orderer.example.com | MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL +peer0.org2.example.com | [206 01-18 09:29:46.18 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer0.org1.example.com | [1eb 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer1.org1.example.com | [1fb 01-18 09:29:45.69 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org2.example.com | [207 01-18 09:29:46.18 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer1.org2.example.com | [1c1 01-18 09:29:46.41 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain +peer0.org1.example.com | [1ec 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer1.org1.example.com | [1fc 01-18 09:29:45.69 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org2.example.com | [208 01-18 09:29:46.18 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer0.org1.example.com | [1ed 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer1.org2.example.com | [1c2 01-18 09:29:46.41 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block +peer0.org1.example.com | [1ee 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +peer0.org2.example.com | [209 01-18 09:29:46.18 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer1.org1.example.com | [1fd 01-18 09:29:45.69 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +peer1.org2.example.com | [1c3 01-18 09:29:46.42 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | [1ef 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +peer1.org1.example.com | [1fe 01-18 09:29:45.69 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +peer0.org1.example.com | [1f0 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer1.org1.example.com | [1ff 01-18 09:29:45.69 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +peer1.org2.example.com | [1c4 01-18 09:29:46.42 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncCPInfoFromFS -> DEBU Starting checkpoint=latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0] +peer0.org2.example.com | [20a 01-18 09:29:46.18 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +orderer.example.com | BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf +peer0.org1.example.com | [1f1 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +peer1.org2.example.com | [1c5 01-18 09:29:46.42 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncCPInfoFromFS -> DEBU status of file [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/blockfile_000000]: exists=[false], size=[0] +peer1.org1.example.com | [200 01-18 09:29:45.69 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +peer0.org2.example.com | [20b 01-18 09:29:46.18 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx +peer0.org1.example.com | [1f2 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer1.org1.example.com | [201 01-18 09:29:45.69 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +orderer.example.com | JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi +peer1.org2.example.com | [1c6 01-18 09:29:46.42 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockHash BlockNum TxID BlockNumTranNum BlockTxID TxValidationCode]] +peer0.org2.example.com | [20c 01-18 09:29:46.18 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer0.org1.example.com | [1f3 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ +peer1.org1.example.com | [202 01-18 09:29:45.69 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer1.org2.example.com | [1c7 01-18 09:29:46.42 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/ledgersData/chains/chains/businesschannel/blockfile_000000], startOffset=[0] +orderer.example.com | H7n8z1pj5w== +peer0.org2.example.com | [20d 01-18 09:29:46.18 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer0.org1.example.com | [1f4 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +peer1.org2.example.com | [1c8 01-18 09:29:46.42 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Finished reading file number [0] +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [1f5 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org2.example.com | [20e 01-18 09:29:46.18 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer1.org1.example.com | [203 01-18 09:29:45.69 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +orderer.example.com | 2018-01-18 09:29:43.832 UTC [msp/identity] newIdentity -> DEBU 158 Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org2.example.com | [20f 01-18 09:29:46.18 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer0.org1.example.com | [1f6 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +peer1.org2.example.com | [1c9 01-18 09:29:46.42 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [0] read from file [0] +peer0.org2.example.com | [210 01-18 09:29:46.18 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org1.example.com | [204 01-18 09:29:45.69 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel +peer0.org1.example.com | [1f7 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org2.example.com | [211 01-18 09:29:46.18 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [1ca 01-18 09:29:46.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer1.org1.example.com | [205 01-18 09:29:45.69 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org2.example.com | [212 01-18 09:29:46.18 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +peer0.org1.example.com | [1f8 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer1.org1.example.com | [206 01-18 09:29:45.69 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +peer1.org2.example.com | [1cb 01-18 09:29:46.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc42005f4c0), Data:(*common.BlockData)(0xc4215e70e0), Metadata:(*common.BlockMetadata)(0xc4215e7120)}, doMVCCValidation=true +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org2.example.com | [213 01-18 09:29:46.18 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org1.example.com | [207 01-18 09:29:45.69 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer0.org1.example.com | [1f9 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer1.org2.example.com | [1cc 01-18 09:29:46.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +peer0.org2.example.com | [214 01-18 09:29:46.18 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [208 01-18 09:29:45.69 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer1.org2.example.com | [1cd 01-18 09:29:46.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [0] Transaction index [0] because, the transaction type is [CONFIG] +peer0.org1.example.com | [1fa 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +peer1.org2.example.com | [1ce 01-18 09:29:46.43 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0xbf, 0xac, 0x7a, 0x9c, 0x41, 0x40, 0xd9, 0x48, 0x88, 0x7, 0x81, 0xf5, 0x7b, 0xed, 0xd0, 0x38, 0xe1, 0x79, 0xd0, 0xac, 0x73, 0x8c, 0xd3, 0x69, 0xb5, 0x49, 0x90, 0xfb, 0x97, 0x6a, 0x22, 0xf5} txOffsets= +peer0.org2.example.com | [215 01-18 09:29:46.18 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer1.org1.example.com | [209 01-18 09:29:45.70 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org1.example.com | [1fb 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +peer1.org2.example.com | txId= locPointer=offset=38, bytesLength=11891 +peer1.org1.example.com | [20a 01-18 09:29:45.70 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +peer0.org2.example.com | [216 01-18 09:29:46.18 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +peer0.org1.example.com | [1fc 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +peer1.org2.example.com | ] +peer0.org2.example.com | [217 01-18 09:29:46.18 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +peer1.org1.example.com | [20b 01-18 09:29:45.70 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +peer0.org1.example.com | [1fd 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +peer1.org1.example.com | [20c 01-18 09:29:45.70 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer1.org2.example.com | [1cf 01-18 09:29:46.43 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=11891] for tx ID: [] to index +peer0.org2.example.com | [218 01-18 09:29:46.18 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | xHTBvxfK6mAzmUitFmY= +peer0.org2.example.com | [219 01-18 09:29:46.18 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [1fe 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +peer1.org1.example.com | [20d 01-18 09:29:45.70 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +orderer.example.com | -----END CERTIFICATE----- +peer0.org2.example.com | [21a 01-18 09:29:46.18 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [1d0 01-18 09:29:46.43 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=11891] for tx number:[0] ID: [] to blockNumTranNum index +peer0.org1.example.com | [1ff 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +orderer.example.com | 2018-01-18 09:29:43.833 UTC [msp/identity] newIdentity -> DEBU 159 Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [200 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +peer1.org1.example.com | [20e 01-18 09:29:45.70 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer1.org2.example.com | [1d1 01-18 09:29:46.43 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[11935], isChainEmpty=[false], lastBlockNumber=[0] +peer0.org2.example.com | [21b 01-18 09:29:46.18 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | [201 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org2.example.com | [1d2 01-18 09:29:46.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit -> INFO Channel [businesschannel]: Created block [0] with 1 transaction(s) +peer0.org2.example.com | [21c 01-18 09:29:46.18 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org1.example.com | [20f 01-18 09:29:45.70 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer0.org1.example.com | [202 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +peer1.org2.example.com | [1d3 01-18 09:29:46.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Committing updates to state database +peer1.org1.example.com | [210 01-18 09:29:45.70 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org2.example.com | [21d 01-18 09:29:46.18 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | [203 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +peer1.org2.example.com | [1d4 01-18 09:29:46.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +peer1.org1.example.com | [211 01-18 09:29:45.70 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [21e 01-18 09:29:46.18 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +peer1.org1.example.com | [212 01-18 09:29:45.71 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +peer1.org2.example.com | [1d5 01-18 09:29:46.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Updates committed to state database +peer0.org2.example.com | [21f 01-18 09:29:46.18 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +peer1.org1.example.com | [213 01-18 09:29:45.71 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [204 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +peer0.org2.example.com | [220 01-18 09:29:46.19 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are +peer1.org2.example.com | [1d6 01-18 09:29:46.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [0] with [1] transactions +peer0.org1.example.com | [205 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer1.org1.example.com | [214 01-18 09:29:45.71 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +peer1.org2.example.com | [1d7 01-18 09:29:46.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +peer0.org1.example.com | [206 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer1.org1.example.com | [215 01-18 09:29:45.71 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer0.org2.example.com | [221 01-18 09:29:46.19 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +peer1.org2.example.com | [1d8 01-18 09:29:46.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [0] +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +peer0.org1.example.com | [207 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer1.org1.example.com | [216 01-18 09:29:45.71 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org2.example.com | [222 01-18 09:29:46.19 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +orderer.example.com | xHTBvxfK6mAzmUitFmY= +peer0.org1.example.com | [208 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +peer1.org1.example.com | [217 01-18 09:29:45.71 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org2.example.com | [1d9 01-18 09:29:46.43 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block +peer0.org2.example.com | [223 01-18 09:29:46.19 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [209 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer1.org1.example.com | [218 01-18 09:29:45.71 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | 2018-01-18 09:29:43.834 UTC [msp] Validate -> DEBU 15a MSP Org1MSP validating identity +peer0.org2.example.com | [224 01-18 09:29:46.21 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +peer0.org1.example.com | [20a 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer1.org2.example.com | [1da 01-18 09:29:46.44 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +peer1.org1.example.com | [219 01-18 09:29:45.72 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:43.834 UTC [common/config] validateMSP -> DEBU 15b Setting up MSP for org OrdererOrg +peer0.org2.example.com | [225 01-18 09:29:46.23 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +peer1.org1.example.com | [21a 01-18 09:29:45.72 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [20b 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +orderer.example.com | 2018-01-18 09:29:43.834 UTC [msp] NewBccspMsp -> DEBU 15c Creating BCCSP-based MSP instance +peer1.org2.example.com | [1db 01-18 09:29:46.44 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +orderer.example.com | 2018-01-18 09:29:43.834 UTC [msp] Setup -> DEBU 15d Setting up MSP instance OrdererMSP +peer0.org1.example.com | [20c 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer1.org1.example.com | [21b 01-18 09:29:45.72 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer0.org2.example.com | [226 01-18 09:29:46.23 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +peer1.org2.example.com | [1dc 01-18 09:29:46.44 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +orderer.example.com | 2018-01-18 09:29:43.835 UTC [msp/identity] newIdentity -> DEBU 15e Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org1.example.com | [21c 01-18 09:29:45.72 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org1.example.com | [20d 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer1.org1.example.com | [21d 01-18 09:29:45.72 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL +peer1.org1.example.com | [21e 01-18 09:29:45.73 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [20e 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org2.example.com | [227 01-18 09:29:46.23 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +peer1.org2.example.com | [1dd 01-18 09:29:46.44 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org1.example.com | [21f 01-18 09:29:45.73 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer0.org1.example.com | [20f 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [1de 01-18 09:29:46.44 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +peer1.org1.example.com | [220 01-18 09:29:45.74 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are +peer0.org2.example.com | [228 01-18 09:29:46.23 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +peer1.org2.example.com | [1df 01-18 09:29:46.44 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer0.org1.example.com | [210 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +orderer.example.com | cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV +peer1.org1.example.com | [221 01-18 09:29:45.74 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer0.org2.example.com | [229 01-18 09:29:46.24 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.InitChain -> DEBU Init chain businesschannel +peer1.org2.example.com | [1e0 01-18 09:29:46.44 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +peer0.org1.example.com | [211 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +peer1.org1.example.com | [222 01-18 09:29:45.74 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +peer1.org2.example.com | [1e1 01-18 09:29:46.44 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +peer1.org1.example.com | [223 01-18 09:29:45.74 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer0.org2.example.com | [22a 01-18 09:29:46.24 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.joinChain.InitChain.func2 -> DEBU Deploying system CC, for chain +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW +peer1.org2.example.com | [1e2 01-18 09:29:46.44 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +peer0.org1.example.com | [212 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [224 01-18 09:29:45.76 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +orderer.example.com | gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w +peer1.org2.example.com | [1e3 01-18 09:29:46.44 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer0.org2.example.com | [22b 01-18 09:29:46.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org1.example.com | [225 01-18 09:29:45.78 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +peer0.org1.example.com | [213 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer0.org2.example.com | [22c 01-18 09:29:46.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [e27cbfe4-6430-4a31-8b6a-4682e2bef8c1] +peer1.org2.example.com | [1e4 01-18 09:29:46.44 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer1.org1.example.com | [226 01-18 09:29:45.78 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +orderer.example.com | AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK +peer0.org1.example.com | [214 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org1.example.com | [227 01-18 09:29:45.78 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs +peer0.org2.example.com | [22d 01-18 09:29:46.24 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=cscc,version=1.0.2,txid=fee6f04d-5934-449d-9905-e7bd317adf52,syscc=true,proposal=0x0,canname=cscc:1.0.2 +peer1.org2.example.com | [1e5 01-18 09:29:46.44 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer1.org1.example.com | [228 01-18 09:29:45.79 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= +peer0.org2.example.com | [22e 01-18 09:29:46.24 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.0.2 +peer1.org1.example.com | [229 01-18 09:29:45.79 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.InitChain -> DEBU Init chain businesschannel +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [215 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org1.example.com | [22a 01-18 09:29:45.79 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.joinChain.InitChain.func2 -> DEBU Deploying system CC, for chain +peer1.org2.example.com | [1e6 01-18 09:29:46.44 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +orderer.example.com | 2018-01-18 09:29:43.835 UTC [msp/identity] newIdentity -> DEBU 15f Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org1.example.com | [22b 01-18 09:29:45.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org1.example.com | [216 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [1e7 01-18 09:29:46.44 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +peer0.org2.example.com | [22f 01-18 09:29:46.24 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [22c 01-18 09:29:45.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [f980b2f2-ceb8-4819-9672-556cf03a9ceb] +peer0.org1.example.com | [217 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org2.example.com | [1e8 01-18 09:29:46.44 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer1.org1.example.com | [22d 01-18 09:29:45.79 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=cscc,version=1.0.2,txid=7c9b919f-2236-4852-a500-2da82ad2a0f8,syscc=true,proposal=0x0,canname=cscc:1.0.2 +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer0.org2.example.com | [230 01-18 09:29:46.24 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.2 +peer0.org1.example.com | [218 01-18 09:29:45.25 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [1e9 01-18 09:29:46.44 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +peer0.org2.example.com | [231 01-18 09:29:46.24 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [fee6f04d]Inside sendExecuteMessage. Message INIT +peer0.org1.example.com | [219 01-18 09:29:45.25 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer1.org1.example.com | [22e 01-18 09:29:45.81 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.0.2 +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer0.org2.example.com | [232 01-18 09:29:46.24 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [1ea 01-18 09:29:46.44 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +peer0.org2.example.com | [233 01-18 09:29:46.24 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [fee6f04d]sendExecuteMsg trigger event INIT +peer0.org1.example.com | [21a 01-18 09:29:45.25 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +peer1.org1.example.com | [22f 01-18 09:29:45.81 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [1eb 01-18 09:29:46.44 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer0.org2.example.com | [234 01-18 09:29:46.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fee6f04d]Move state message INIT +peer0.org1.example.com | [21b 01-18 09:29:45.25 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org2.example.com | [1ec 01-18 09:29:46.44 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer1.org1.example.com | [230 01-18 09:29:45.81 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.2 +peer0.org2.example.com | [235 01-18 09:29:46.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [fee6f04d]Fabric side Handling ChaincodeMessage of type: INIT in state ready +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer1.org2.example.com | [1ed 01-18 09:29:46.44 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer0.org1.example.com | [21c 01-18 09:29:45.25 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [231 01-18 09:29:45.81 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [7c9b919f]Inside sendExecuteMessage. Message INIT +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +peer0.org2.example.com | [236 01-18 09:29:46.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [21d 01-18 09:29:45.25 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer1.org2.example.com | [1ee 01-18 09:29:46.44 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +peer0.org2.example.com | [237 01-18 09:29:46.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fee6f04d]sending state message INIT +peer1.org1.example.com | [232 01-18 09:29:45.81 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [21e 01-18 09:29:45.26 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +peer1.org2.example.com | [1ef 01-18 09:29:46.44 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +peer0.org2.example.com | [238 01-18 09:29:46.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fee6f04d]Received message INIT from shim +peer0.org1.example.com | [21f 01-18 09:29:45.26 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer1.org1.example.com | [233 01-18 09:29:45.81 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [7c9b919f]sendExecuteMsg trigger event INIT +peer1.org2.example.com | [1f0 01-18 09:29:46.44 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +peer0.org2.example.com | [239 01-18 09:29:46.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [fee6f04d]Handling ChaincodeMessage of type: INIT(state:ready) +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:43.836 UTC [msp/identity] newIdentity -> DEBU 160 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer0.org1.example.com | [220 01-18 09:29:45.26 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +peer1.org1.example.com | [234 01-18 09:29:45.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7c9b919f]Move state message INIT +peer0.org2.example.com | [23a 01-18 09:29:46.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org2.example.com | [1f1 01-18 09:29:46.44 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +peer0.org1.example.com | [221 01-18 09:29:45.26 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer1.org1.example.com | [235 01-18 09:29:45.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7c9b919f]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org2.example.com | [1f2 01-18 09:29:46.44 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer0.org1.example.com | [222 01-18 09:29:45.27 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer0.org2.example.com | [23b 01-18 09:29:46.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [fee6f04d]Received INIT, initializing chaincode +peer1.org1.example.com | [236 01-18 09:29:45.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [1f3 01-18 09:29:46.44 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org1.example.com | [223 01-18 09:29:45.29 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +peer1.org2.example.com | [1f4 01-18 09:29:46.44 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +peer0.org2.example.com | [23c 01-18 09:29:46.24 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC +peer0.org1.example.com | [224 01-18 09:29:45.29 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +peer1.org1.example.com | [237 01-18 09:29:45.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7c9b919f]sending state message INIT +peer1.org2.example.com | [1f5 01-18 09:29:46.44 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +peer0.org2.example.com | [23d 01-18 09:29:46.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fee6f04d]Init get response status: 200 +peer0.org1.example.com | [225 01-18 09:29:45.29 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +peer0.org1.example.com | [226 01-18 09:29:45.29 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +peer0.org1.example.com | [227 01-18 09:29:45.29 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.InitChain -> DEBU Init chain businesschannel +peer0.org1.example.com | [228 01-18 09:29:45.29 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.joinChain.InitChain.func2 -> DEBU Deploying system CC, for chain +peer0.org1.example.com | [229 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org1.example.com | [22a 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [cfb1394e-e4fa-4259-8b66-8459becb452e] +peer0.org1.example.com | [22b 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=cscc,version=1.0.2,txid=3a9518cc-f5b9-4b8a-9d7b-f16619acfe44,syscc=true,proposal=0x0,canname=cscc:1.0.2 +peer0.org1.example.com | [22c 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.0.2 +peer0.org1.example.com | [22d 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [22e 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.2 +peer0.org1.example.com | [22f 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [3a9518cc]Inside sendExecuteMessage. Message INIT +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer1.org1.example.com | [238 01-18 09:29:45.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7c9b919f]Received message INIT from shim +peer1.org2.example.com | [1f6 01-18 09:29:46.44 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer0.org2.example.com | [23e 01-18 09:29:46.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fee6f04d]Init succeeded. Sending COMPLETED +peer0.org1.example.com | [230 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [231 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [3a9518cc]sendExecuteMsg trigger event INIT +peer0.org1.example.com | [232 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3a9518cc]Move state message INIT +peer0.org1.example.com | [233 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3a9518cc]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org1.example.com | [234 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [235 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3a9518cc]sending state message INIT +peer0.org1.example.com | [236 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3a9518cc]Received message INIT from shim +peer0.org1.example.com | [237 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3a9518cc]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org1.example.com | [238 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org1.example.com | [239 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [3a9518cc]Received INIT, initializing chaincode +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +peer1.org2.example.com | [1f7 01-18 09:29:46.44 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer0.org1.example.com | [23a 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC +peer0.org2.example.com | [23f 01-18 09:29:46.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fee6f04d]Move state message COMPLETED +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +peer1.org1.example.com | [239 01-18 09:29:45.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7c9b919f]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org2.example.com | [1f8 01-18 09:29:46.44 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org1.example.com | [23b 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3a9518cc]Init get response status: 200 +peer0.org2.example.com | [240 01-18 09:29:46.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [fee6f04d]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +peer1.org1.example.com | [23a 01-18 09:29:45.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org1.example.com | [23c 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3a9518cc]Init succeeded. Sending COMPLETED +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [1f9 01-18 09:29:46.44 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer1.org1.example.com | [23b 01-18 09:29:45.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [7c9b919f]Received INIT, initializing chaincode +peer0.org2.example.com | [241 01-18 09:29:46.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fee6f04d]send state message COMPLETED +peer0.org1.example.com | [23d 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3a9518cc]Move state message COMPLETED +orderer.example.com | 2018-01-18 09:29:43.837 UTC [msp] Validate -> DEBU 161 MSP OrdererMSP validating identity +peer1.org2.example.com | [1fa 01-18 09:29:46.44 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer1.org1.example.com | [23c 01-18 09:29:45.81 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC +peer0.org1.example.com | [23e 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3a9518cc]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | 2018-01-18 09:29:43.838 UTC [msp] Setup -> DEBU 162 Setting up the MSP manager (3 msps) +peer0.org2.example.com | [242 01-18 09:29:46.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fee6f04d]Received message COMPLETED from shim +peer1.org2.example.com | [1fb 01-18 09:29:46.44 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer1.org1.example.com | [23d 01-18 09:29:45.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7c9b919f]Init get response status: 200 +peer0.org1.example.com | [23f 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3a9518cc]send state message COMPLETED +orderer.example.com | 2018-01-18 09:29:43.838 UTC [msp] Setup -> DEBU 163 MSP manager setup complete, setup 3 msps +peer1.org2.example.com | [1fc 01-18 09:29:46.45 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +peer0.org2.example.com | [243 01-18 09:29:46.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [fee6f04d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [23e 01-18 09:29:45.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7c9b919f]Init succeeded. Sending COMPLETED +orderer.example.com | 2018-01-18 09:29:43.838 UTC [policies] GetPolicy -> DEBU 164 Returning policy Admins for evaluation +peer0.org1.example.com | [240 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3a9518cc]Received message COMPLETED from shim +peer1.org2.example.com | [1fd 01-18 09:29:46.45 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +peer0.org2.example.com | [244 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [fee6f04d-5934-449d-9905-e7bd317adf52]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [23f 01-18 09:29:45.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7c9b919f]Move state message COMPLETED +orderer.example.com | 2018-01-18 09:29:43.838 UTC [policies] CommitProposals -> DEBU 165 In commit adding relative sub-policy Org1MSP/Admins to Application +peer0.org1.example.com | [241 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3a9518cc]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [1fe 01-18 09:29:46.45 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +peer1.org1.example.com | [240 01-18 09:29:45.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7c9b919f]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [245 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:fee6f04d-5934-449d-9905-e7bd317adf52 +orderer.example.com | 2018-01-18 09:29:43.838 UTC [policies] GetPolicy -> DEBU 166 Returning policy Readers for evaluation +peer1.org2.example.com | [1ff 01-18 09:29:46.45 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +peer1.org1.example.com | [241 01-18 09:29:45.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7c9b919f]send state message COMPLETED +peer0.org1.example.com | [242 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3a9518cc-f5b9-4b8a-9d7b-f16619acfe44]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [246 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +orderer.example.com | 2018-01-18 09:29:43.838 UTC [policies] CommitProposals -> DEBU 167 In commit adding relative sub-policy Org1MSP/Readers to Application +peer1.org2.example.com | [200 01-18 09:29:46.45 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer1.org1.example.com | [242 01-18 09:29:45.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7c9b919f]Received message COMPLETED from shim +peer0.org1.example.com | [243 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:3a9518cc-f5b9-4b8a-9d7b-f16619acfe44 +peer0.org2.example.com | [247 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed +orderer.example.com | 2018-01-18 09:29:43.838 UTC [policies] GetPolicy -> DEBU 168 Returning policy Writers for evaluation +peer1.org2.example.com | [201 01-18 09:29:46.45 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer1.org1.example.com | [243 01-18 09:29:45.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7c9b919f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [244 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [248 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [e27cbfe4-6430-4a31-8b6a-4682e2bef8c1] +peer1.org2.example.com | [202 01-18 09:29:46.45 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer1.org1.example.com | [244 01-18 09:29:45.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7c9b919f-2236-4852-a500-2da82ad2a0f8]HandleMessage- COMPLETED. Notify +orderer.example.com | 2018-01-18 09:29:43.838 UTC [policies] CommitProposals -> DEBU 169 In commit adding relative sub-policy Org1MSP/Writers to Application +peer0.org1.example.com | [245 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed +peer0.org2.example.com | [249 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org1.example.com | [245 01-18 09:29:45.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:7c9b919f-2236-4852-a500-2da82ad2a0f8 +peer1.org2.example.com | [203 01-18 09:29:46.45 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel +orderer.example.com | 2018-01-18 09:29:43.838 UTC [policies] GetPolicy -> DEBU 16a Returning policy Admins for evaluation +peer0.org1.example.com | [246 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [cfb1394e-e4fa-4259-8b66-8459becb452e] +peer0.org2.example.com | [24a 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [215e3edc-3f3a-4b63-95bf-2c62ae82296b] +peer1.org1.example.com | [246 01-18 09:29:45.82 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [204 01-18 09:29:46.45 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +orderer.example.com | 2018-01-18 09:29:43.839 UTC [policies] CommitProposals -> DEBU 16b In commit adding relative sub-policy Org2MSP/Admins to Application +peer0.org1.example.com | [247 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org2.example.com | [24b 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=f899473c-f413-422e-90ef-01431f5a2427,syscc=true,proposal=0x0,canname=lscc:1.0.2 +peer1.org1.example.com | [247 01-18 09:29:45.82 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed +peer1.org2.example.com | [205 01-18 09:29:46.45 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +orderer.example.com | 2018-01-18 09:29:43.839 UTC [policies] GetPolicy -> DEBU 16c Returning policy Readers for evaluation +peer0.org2.example.com | [24c 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 +peer0.org1.example.com | [248 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [8c235955-df0b-45df-8013-b8077862f68b] +peer1.org1.example.com | [248 01-18 09:29:45.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [f980b2f2-ceb8-4819-9672-556cf03a9ceb] +peer1.org2.example.com | [206 01-18 09:29:46.45 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +orderer.example.com | 2018-01-18 09:29:43.839 UTC [policies] CommitProposals -> DEBU 16d In commit adding relative sub-policy Org2MSP/Readers to Application +peer0.org2.example.com | [24d 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [249 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=e753c66b-e87d-401e-a767-b47d7d9d6a59,syscc=true,proposal=0x0,canname=lscc:1.0.2 +peer1.org1.example.com | [249 01-18 09:29:45.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org2.example.com | [207 01-18 09:29:46.45 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +orderer.example.com | 2018-01-18 09:29:43.839 UTC [policies] GetPolicy -> DEBU 16e Returning policy Writers for evaluation +peer0.org1.example.com | [24a 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 +peer1.org1.example.com | [24a 01-18 09:29:45.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [87957734-a1a5-4164-8085-96f7a2f4b6a4] +peer1.org2.example.com | [208 01-18 09:29:46.45 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +orderer.example.com | 2018-01-18 09:29:43.839 UTC [policies] CommitProposals -> DEBU 16f In commit adding relative sub-policy Org2MSP/Writers to Application +peer0.org2.example.com | [24e 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +peer1.org1.example.com | [24b 01-18 09:29:45.82 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=390f37fd-8525-495f-9d07-fcbfaad0dc23,syscc=true,proposal=0x0,canname=lscc:1.0.2 +peer1.org2.example.com | [209 01-18 09:29:46.45 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +orderer.example.com | 2018-01-18 09:29:43.839 UTC [policies] GetPolicy -> DEBU 170 Returning policy Admins for evaluation +peer0.org1.example.com | [24b 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [24f 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [f899473c]Inside sendExecuteMessage. Message INIT +peer1.org1.example.com | [24c 01-18 09:29:45.82 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 +peer1.org2.example.com | [20a 01-18 09:29:46.45 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +orderer.example.com | 2018-01-18 09:29:43.839 UTC [policies] GetPolicy -> DEBU 171 Returning policy Admins for evaluation +peer1.org1.example.com | [24d 01-18 09:29:45.82 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [24e 01-18 09:29:45.82 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +peer0.org2.example.com | [250 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | 2018-01-18 09:29:43.839 UTC [policies] GetPolicy -> DEBU 172 Returning policy Writers for evaluation +peer0.org1.example.com | [24c 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +peer1.org2.example.com | [20b 01-18 09:29:46.45 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer1.org1.example.com | [24f 01-18 09:29:45.82 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [390f37fd]Inside sendExecuteMessage. Message INIT +peer0.org2.example.com | [251 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [f899473c]sendExecuteMsg trigger event INIT +orderer.example.com | 2018-01-18 09:29:43.839 UTC [policies] CommitProposals -> DEBU 173 In commit adding relative sub-policy OrdererOrg/Writers to Orderer +peer0.org1.example.com | [24d 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [e753c66b]Inside sendExecuteMessage. Message INIT +peer1.org2.example.com | [20c 01-18 09:29:46.45 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer1.org1.example.com | [250 01-18 09:29:45.82 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [252 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f899473c]Move state message INIT +orderer.example.com | 2018-01-18 09:29:43.840 UTC [policies] GetPolicy -> DEBU 174 Returning policy Admins for evaluation +peer0.org1.example.com | [24e 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [20d 01-18 09:29:46.45 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer1.org1.example.com | [251 01-18 09:29:45.82 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [390f37fd]sendExecuteMsg trigger event INIT +peer0.org2.example.com | [253 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f899473c]Fabric side Handling ChaincodeMessage of type: INIT in state ready +orderer.example.com | 2018-01-18 09:29:43.840 UTC [policies] CommitProposals -> DEBU 175 In commit adding relative sub-policy OrdererOrg/Admins to Orderer +peer0.org1.example.com | [24f 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [e753c66b]sendExecuteMsg trigger event INIT +peer1.org2.example.com | [20e 01-18 09:29:46.45 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer1.org1.example.com | [252 01-18 09:29:45.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [390f37fd]Move state message INIT +peer0.org2.example.com | [254 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | 2018-01-18 09:29:43.840 UTC [policies] GetPolicy -> DEBU 176 Returning policy Readers for evaluation +peer0.org1.example.com | [250 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e753c66b]Move state message INIT +peer1.org2.example.com | [20f 01-18 09:29:46.45 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org1.example.com | [253 01-18 09:29:45.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [390f37fd]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org2.example.com | [255 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f899473c]sending state message INIT +orderer.example.com | 2018-01-18 09:29:43.840 UTC [policies] CommitProposals -> DEBU 177 In commit adding relative sub-policy OrdererOrg/Readers to Orderer +peer1.org1.example.com | [254 01-18 09:29:45.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [251 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e753c66b]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org2.example.com | [210 01-18 09:29:46.45 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [256 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f899473c]Received message INIT from shim +orderer.example.com | 2018-01-18 09:29:43.840 UTC [policies] GetPolicy -> DEBU 178 Returning policy Readers for evaluation +peer1.org1.example.com | [255 01-18 09:29:45.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [390f37fd]sending state message INIT +peer1.org1.example.com | [256 01-18 09:29:45.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [390f37fd]Received message INIT from shim +peer0.org2.example.com | [257 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f899473c]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org1.example.com | [257 01-18 09:29:45.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [390f37fd]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org1.example.com | [252 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | 2018-01-18 09:29:43.840 UTC [policies] GetPolicy -> DEBU 179 Returning policy Writers for evaluation +peer1.org2.example.com | [211 01-18 09:29:46.45 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +peer0.org2.example.com | [258 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org1.example.com | [258 01-18 09:29:45.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +orderer.example.com | 2018-01-18 09:29:43.840 UTC [policies] GetPolicy -> DEBU 17a Returning policy Admins for evaluation +peer0.org1.example.com | [253 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e753c66b]sending state message INIT +peer1.org2.example.com | [212 01-18 09:29:46.46 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org2.example.com | [259 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [f899473c]Received INIT, initializing chaincode +peer1.org1.example.com | [259 01-18 09:29:45.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [390f37fd]Received INIT, initializing chaincode +peer0.org1.example.com | [254 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e753c66b]Received message INIT from shim +orderer.example.com | 2018-01-18 09:29:43.840 UTC [policies] GetPolicy -> DEBU 17b Returning policy Writers for evaluation +peer1.org2.example.com | [213 01-18 09:29:46.46 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [25a 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f899473c]Init get response status: 200 +peer0.org1.example.com | [255 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e753c66b]Handling ChaincodeMessage of type: INIT(state:ready) +orderer.example.com | 2018-01-18 09:29:43.840 UTC [policies] GetPolicy -> DEBU 17c Returning policy Org1MSP/Admins for evaluation +peer1.org2.example.com | [214 01-18 09:29:46.46 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer1.org1.example.com | [25a 01-18 09:29:45.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [390f37fd]Init get response status: 200 +peer0.org2.example.com | [25b 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f899473c]Init succeeded. Sending COMPLETED +peer0.org1.example.com | [256 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +orderer.example.com | 2018-01-18 09:29:43.840 UTC [policies] CommitProposals -> DEBU 17d In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +peer1.org2.example.com | [215 01-18 09:29:46.46 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org1.example.com | [25b 01-18 09:29:45.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [390f37fd]Init succeeded. Sending COMPLETED +peer0.org2.example.com | [25c 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f899473c]Move state message COMPLETED +peer0.org1.example.com | [257 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [e753c66b]Received INIT, initializing chaincode +orderer.example.com | 2018-01-18 09:29:43.840 UTC [policies] GetPolicy -> DEBU 17e Returning policy Org1MSP/Readers for evaluation +peer1.org2.example.com | [216 01-18 09:29:46.46 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [258 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e753c66b]Init get response status: 200 +peer0.org1.example.com | [259 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e753c66b]Init succeeded. Sending COMPLETED +peer0.org2.example.com | [25d 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f899473c]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | 2018-01-18 09:29:43.840 UTC [policies] CommitProposals -> DEBU 17f In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +peer1.org1.example.com | [25c 01-18 09:29:45.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [390f37fd]Move state message COMPLETED +peer1.org2.example.com | [217 01-18 09:29:46.46 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [25a 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e753c66b]Move state message COMPLETED +peer0.org2.example.com | [25e 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f899473c]send state message COMPLETED +orderer.example.com | 2018-01-18 09:29:43.841 UTC [policies] GetPolicy -> DEBU 180 Returning policy Org1MSP/Writers for evaluation +peer1.org1.example.com | [25d 01-18 09:29:45.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [390f37fd]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [25b 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e753c66b]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [25c 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e753c66b]send state message COMPLETED +peer0.org2.example.com | [25f 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f899473c]Received message COMPLETED from shim +orderer.example.com | 2018-01-18 09:29:43.841 UTC [policies] CommitProposals -> DEBU 181 In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +orderer.example.com | 2018-01-18 09:29:43.841 UTC [policies] GetPolicy -> DEBU 182 Returning policy Org2MSP/Admins for evaluation +peer1.org2.example.com | [218 01-18 09:29:46.46 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [25d 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e753c66b]Received message COMPLETED from shim +peer1.org1.example.com | [25e 01-18 09:29:45.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [390f37fd]send state message COMPLETED +orderer.example.com | 2018-01-18 09:29:43.841 UTC [policies] CommitProposals -> DEBU 183 In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +peer0.org1.example.com | [25e 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e753c66b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [219 01-18 09:29:46.46 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [25f 01-18 09:29:45.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [390f37fd]Received message COMPLETED from shim +orderer.example.com | 2018-01-18 09:29:43.841 UTC [policies] GetPolicy -> DEBU 184 Returning policy Org2MSP/Readers for evaluation +peer0.org2.example.com | [260 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f899473c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [25f 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e753c66b-e87d-401e-a767-b47d7d9d6a59]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [260 01-18 09:29:45.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [390f37fd]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [21a 01-18 09:29:46.46 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer0.org2.example.com | [261 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f899473c-f413-422e-90ef-01431f5a2427]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [261 01-18 09:29:45.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [390f37fd-8525-495f-9d07-fcbfaad0dc23]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [262 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:f899473c-f413-422e-90ef-01431f5a2427 +orderer.example.com | 2018-01-18 09:29:43.841 UTC [policies] CommitProposals -> DEBU 185 In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +peer0.org1.example.com | [260 01-18 09:29:45.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:e753c66b-e87d-401e-a767-b47d7d9d6a59 +peer1.org2.example.com | [21b 01-18 09:29:46.46 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | 2018-01-18 09:29:43.842 UTC [policies] GetPolicy -> DEBU 186 Returning policy Org2MSP/Writers for evaluation +peer1.org1.example.com | [262 01-18 09:29:45.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:390f37fd-8525-495f-9d07-fcbfaad0dc23 +peer0.org1.example.com | [261 01-18 09:29:45.31 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [263 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [21c 01-18 09:29:46.46 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org2.example.com | [21d 01-18 09:29:46.46 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [21e 01-18 09:29:46.46 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer1.org2.example.com | [21f 01-18 09:29:46.46 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are +peer1.org2.example.com | [220 01-18 09:29:46.46 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer1.org2.example.com | [221 01-18 09:29:46.47 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +peer1.org2.example.com | [222 01-18 09:29:46.47 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer1.org2.example.com | [223 01-18 09:29:46.47 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +peer1.org1.example.com | [263 01-18 09:29:45.83 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [262 01-18 09:29:45.31 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed +peer0.org2.example.com | [264 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed +orderer.example.com | 2018-01-18 09:29:43.842 UTC [policies] CommitProposals -> DEBU 187 In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +peer1.org2.example.com | [224 01-18 09:29:46.49 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +peer1.org1.example.com | [264 01-18 09:29:45.83 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed +peer0.org1.example.com | [263 01-18 09:29:45.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [8c235955-df0b-45df-8013-b8077862f68b] +peer0.org2.example.com | [265 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [215e3edc-3f3a-4b63-95bf-2c62ae82296b] +orderer.example.com | 2018-01-18 09:29:43.842 UTC [policies] GetPolicy -> DEBU 188 Returning policy ChannelCreationPolicy for evaluation +peer1.org2.example.com | [225 01-18 09:29:46.49 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +peer1.org1.example.com | [265 01-18 09:29:45.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [87957734-a1a5-4164-8085-96f7a2f4b6a4] +peer0.org2.example.com | [266 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +orderer.example.com | 2018-01-18 09:29:43.842 UTC [policies] CommitProposals -> DEBU 189 In commit adding relative sub-policy Application/ChannelCreationPolicy to Channel +peer1.org2.example.com | [226 01-18 09:29:46.49 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +peer0.org1.example.com | [264 01-18 09:29:45.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org1.example.com | [266 01-18 09:29:45.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org2.example.com | [267 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [4ae5f961-1c1a-4f8d-83e8-3c5515a13a68] +peer1.org2.example.com | [227 01-18 09:29:46.49 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +peer1.org1.example.com | [267 01-18 09:29:45.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [740a6d2a-551a-467e-8e54-e5c1c57a6f98] +orderer.example.com | 2018-01-18 09:29:43.842 UTC [policies] GetPolicy -> DEBU 18a Returning policy OrdererOrg/Admins for evaluation +peer0.org1.example.com | [265 01-18 09:29:45.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [5a7cdc4b-7cdb-479d-bb5d-8b00dc7215cd] +peer0.org2.example.com | [268 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=9e2fddb7-0c96-4657-8fc9-ad26fdb53cb4,syscc=true,proposal=0x0,canname=escc:1.0.2 +orderer.example.com | 2018-01-18 09:29:43.842 UTC [policies] CommitProposals -> DEBU 18b In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +peer0.org1.example.com | [266 01-18 09:29:45.31 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=de073d8d-90a6-4216-8210-6737b32ef099,syscc=true,proposal=0x0,canname=escc:1.0.2 +peer1.org2.example.com | [228 01-18 09:29:46.49 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.InitChain -> DEBU Init chain businesschannel +peer1.org1.example.com | [268 01-18 09:29:45.83 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=04627d08-97ce-4892-903e-b0eb5e683dc3,syscc=true,proposal=0x0,canname=escc:1.0.2 +peer0.org2.example.com | [269 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 +peer0.org2.example.com | [26a 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [267 01-18 09:29:45.31 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 +peer1.org1.example.com | [269 01-18 09:29:45.83 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 +peer1.org1.example.com | [26a 01-18 09:29:45.83 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [26b 01-18 09:29:45.83 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 +peer1.org1.example.com | [26c 01-18 09:29:45.83 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [04627d08]Inside sendExecuteMessage. Message INIT +peer1.org1.example.com | [26d 01-18 09:29:45.83 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [26e 01-18 09:29:45.83 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [04627d08]sendExecuteMsg trigger event INIT +peer1.org1.example.com | [26f 01-18 09:29:45.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [04627d08]Move state message INIT +orderer.example.com | 2018-01-18 09:29:43.842 UTC [policies] GetPolicy -> DEBU 18c Returning policy OrdererOrg/Readers for evaluation +peer0.org2.example.com | [26b 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 +peer0.org2.example.com | [26c 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [9e2fddb7]Inside sendExecuteMessage. Message INIT +peer0.org2.example.com | [26d 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [26e 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [9e2fddb7]sendExecuteMsg trigger event INIT +peer1.org2.example.com | [229 01-18 09:29:46.49 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.joinChain.InitChain.func2 -> DEBU Deploying system CC, for chain +peer1.org1.example.com | [270 01-18 09:29:45.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [04627d08]Fabric side Handling ChaincodeMessage of type: INIT in state ready +orderer.example.com | 2018-01-18 09:29:43.842 UTC [policies] CommitProposals -> DEBU 18d In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +peer0.org1.example.com | [268 01-18 09:29:45.31 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [26f 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9e2fddb7]Move state message INIT +peer1.org2.example.com | [22a 01-18 09:29:46.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org1.example.com | [271 01-18 09:29:45.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [272 01-18 09:29:45.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [04627d08]sending state message INIT +orderer.example.com | 2018-01-18 09:29:43.842 UTC [policies] GetPolicy -> DEBU 18e Returning policy Readers for evaluation +peer1.org2.example.com | [22b 01-18 09:29:46.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [7e766b26-391a-4600-9140-9462743900dc] +peer1.org1.example.com | [273 01-18 09:29:45.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [04627d08]Received message INIT from shim +peer0.org1.example.com | [269 01-18 09:29:45.31 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 +orderer.example.com | 2018-01-18 09:29:43.842 UTC [policies] CommitProposals -> DEBU 18f In commit adding relative sub-policy Orderer/Readers to Channel +peer0.org2.example.com | [270 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9e2fddb7]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org2.example.com | [271 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [272 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9e2fddb7]sending state message INIT +peer0.org2.example.com | [273 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9e2fddb7]Received message INIT from shim +peer0.org2.example.com | [274 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9e2fddb7]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org2.example.com | [22c 01-18 09:29:46.49 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=cscc,version=1.0.2,txid=d62e5c33-f59e-4706-92c0-1b1c6d39879c,syscc=true,proposal=0x0,canname=cscc:1.0.2 +peer1.org1.example.com | [274 01-18 09:29:45.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [04627d08]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org1.example.com | [26a 01-18 09:29:45.31 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [de073d8d]Inside sendExecuteMessage. Message INIT +orderer.example.com | 2018-01-18 09:29:43.842 UTC [policies] GetPolicy -> DEBU 190 Returning policy Writers for evaluation +peer0.org2.example.com | [275 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org2.example.com | [22d 01-18 09:29:46.50 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.0.2 +peer1.org2.example.com | [22e 01-18 09:29:46.50 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [22f 01-18 09:29:46.50 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.2 +peer1.org2.example.com | [230 01-18 09:29:46.50 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [d62e5c33]Inside sendExecuteMessage. Message INIT +peer1.org2.example.com | [231 01-18 09:29:46.50 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [232 01-18 09:29:46.50 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [d62e5c33]sendExecuteMsg trigger event INIT +peer1.org2.example.com | [233 01-18 09:29:46.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d62e5c33]Move state message INIT +peer1.org1.example.com | [275 01-18 09:29:45.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org1.example.com | [26b 01-18 09:29:45.31 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [26c 01-18 09:29:45.31 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [de073d8d]sendExecuteMsg trigger event INIT +peer0.org2.example.com | [276 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [9e2fddb7]Received INIT, initializing chaincode +peer1.org2.example.com | [234 01-18 09:29:46.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d62e5c33]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org1.example.com | [276 01-18 09:29:45.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [04627d08]Received INIT, initializing chaincode +peer1.org1.example.com | [277 01-18 09:29:45.84 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC +peer1.org1.example.com | [278 01-18 09:29:45.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [04627d08]Init get response status: 200 +orderer.example.com | 2018-01-18 09:29:43.842 UTC [policies] CommitProposals -> DEBU 191 In commit adding relative sub-policy Orderer/Writers to Channel +peer1.org2.example.com | [235 01-18 09:29:46.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [26d 01-18 09:29:45.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [de073d8d]Move state message INIT +peer0.org1.example.com | [26e 01-18 09:29:45.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [de073d8d]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org1.example.com | [26f 01-18 09:29:45.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [270 01-18 09:29:45.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [de073d8d]sending state message INIT +peer0.org1.example.com | [271 01-18 09:29:45.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [de073d8d]Received message INIT from shim +peer0.org1.example.com | [272 01-18 09:29:45.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [de073d8d]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org1.example.com | [273 01-18 09:29:45.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org1.example.com | [274 01-18 09:29:45.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [de073d8d]Received INIT, initializing chaincode +peer0.org1.example.com | [275 01-18 09:29:45.31 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC +peer0.org1.example.com | [276 01-18 09:29:45.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [de073d8d]Init get response status: 200 +peer0.org1.example.com | [277 01-18 09:29:45.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [de073d8d]Init succeeded. Sending COMPLETED +peer0.org1.example.com | [278 01-18 09:29:45.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [de073d8d]Move state message COMPLETED +peer0.org2.example.com | [277 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC +peer1.org2.example.com | [236 01-18 09:29:46.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d62e5c33]sending state message INIT +peer1.org2.example.com | [237 01-18 09:29:46.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d62e5c33]Received message INIT from shim +peer1.org2.example.com | [238 01-18 09:29:46.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d62e5c33]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org2.example.com | [239 01-18 09:29:46.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org2.example.com | [23a 01-18 09:29:46.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [d62e5c33]Received INIT, initializing chaincode +peer1.org2.example.com | [23b 01-18 09:29:46.50 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC +peer1.org2.example.com | [23c 01-18 09:29:46.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d62e5c33]Init get response status: 200 +peer1.org2.example.com | [23d 01-18 09:29:46.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d62e5c33]Init succeeded. Sending COMPLETED +peer1.org2.example.com | [23e 01-18 09:29:46.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d62e5c33]Move state message COMPLETED +peer1.org2.example.com | [23f 01-18 09:29:46.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d62e5c33]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [240 01-18 09:29:46.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d62e5c33]send state message COMPLETED +peer1.org1.example.com | [279 01-18 09:29:45.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [04627d08]Init succeeded. Sending COMPLETED +peer0.org1.example.com | [279 01-18 09:29:45.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [de073d8d]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [278 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9e2fddb7]Init get response status: 200 +peer1.org2.example.com | [241 01-18 09:29:46.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d62e5c33]Received message COMPLETED from shim +peer1.org2.example.com | [242 01-18 09:29:46.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d62e5c33]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [243 01-18 09:29:46.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d62e5c33-f59e-4706-92c0-1b1c6d39879c]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [244 01-18 09:29:46.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:d62e5c33-f59e-4706-92c0-1b1c6d39879c +peer1.org2.example.com | [245 01-18 09:29:46.50 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [246 01-18 09:29:46.50 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed +peer1.org2.example.com | [247 01-18 09:29:46.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [7e766b26-391a-4600-9140-9462743900dc] +peer1.org2.example.com | [248 01-18 09:29:46.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +orderer.example.com | 2018-01-18 09:29:43.842 UTC [policies] GetPolicy -> DEBU 192 Returning policy Admins for evaluation +peer1.org2.example.com | [249 01-18 09:29:46.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [b6a26e89-d259-4e58-a563-80352c7863e4] +peer0.org2.example.com | [279 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9e2fddb7]Init succeeded. Sending COMPLETED +peer1.org1.example.com | [27a 01-18 09:29:45.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [04627d08]Move state message COMPLETED +peer1.org1.example.com | [27b 01-18 09:29:45.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [04627d08]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [27c 01-18 09:29:45.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [04627d08]send state message COMPLETED +peer1.org1.example.com | [27d 01-18 09:29:45.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [04627d08]Received message COMPLETED from shim +peer1.org1.example.com | [27e 01-18 09:29:45.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [04627d08]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [27f 01-18 09:29:45.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [04627d08-97ce-4892-903e-b0eb5e683dc3]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [280 01-18 09:29:45.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:04627d08-97ce-4892-903e-b0eb5e683dc3 +peer1.org1.example.com | [281 01-18 09:29:45.84 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [282 01-18 09:29:45.84 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode escc/businesschannel(github.com/hyperledger/fabric/core/scc/escc) deployed +peer1.org1.example.com | [283 01-18 09:29:45.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [740a6d2a-551a-467e-8e54-e5c1c57a6f98] +peer1.org1.example.com | [284 01-18 09:29:45.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org1.example.com | [285 01-18 09:29:45.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [6110ca20-2b8b-47a8-96f8-134733cd4dbf] +orderer.example.com | 2018-01-18 09:29:43.842 UTC [policies] CommitProposals -> DEBU 193 In commit adding relative sub-policy Orderer/Admins to Channel +peer0.org1.example.com | [27a 01-18 09:29:45.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [de073d8d]send state message COMPLETED +peer0.org2.example.com | [27a 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9e2fddb7]Move state message COMPLETED +peer1.org2.example.com | [24a 01-18 09:29:46.50 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=b73964a5-3bd7-4fe4-a188-643cbba0be9b,syscc=true,proposal=0x0,canname=lscc:1.0.2 +peer1.org2.example.com | [24b 01-18 09:29:46.50 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 +peer1.org2.example.com | [24c 01-18 09:29:46.50 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [24d 01-18 09:29:46.50 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +peer1.org2.example.com | [24e 01-18 09:29:46.50 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [b73964a5]Inside sendExecuteMessage. Message INIT +peer1.org2.example.com | [24f 01-18 09:29:46.50 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [250 01-18 09:29:46.50 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [b73964a5]sendExecuteMsg trigger event INIT +peer1.org1.example.com | [286 01-18 09:29:45.84 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=4e7cacbf-d2da-4057-997d-b756f40c2e51,syscc=true,proposal=0x0,canname=vscc:1.0.2 +peer1.org1.example.com | [287 01-18 09:29:45.84 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 +orderer.example.com | 2018-01-18 09:29:43.843 UTC [policies] GetPolicy -> DEBU 194 Returning policy BlockValidation for evaluation +orderer.example.com | 2018-01-18 09:29:43.843 UTC [policies] CommitProposals -> DEBU 195 In commit adding relative sub-policy Orderer/BlockValidation to Channel +peer0.org1.example.com | [27b 01-18 09:29:45.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [de073d8d]Received message COMPLETED from shim +peer0.org2.example.com | [27b 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9e2fddb7]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [27c 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9e2fddb7]send state message COMPLETED +peer1.org1.example.com | [288 01-18 09:29:45.85 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +orderer.example.com | 2018-01-18 09:29:43.843 UTC [policies] GetPolicy -> DEBU 196 Returning policy OrdererOrg/Writers for evaluation +peer0.org1.example.com | [27c 01-18 09:29:45.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [de073d8d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [251 01-18 09:29:46.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b73964a5]Move state message INIT +peer1.org2.example.com | [252 01-18 09:29:46.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b73964a5]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org2.example.com | [253 01-18 09:29:46.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [27d 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9e2fddb7]Received message COMPLETED from shim +orderer.example.com | 2018-01-18 09:29:43.843 UTC [policies] CommitProposals -> DEBU 197 In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +orderer.example.com | 2018-01-18 09:29:43.843 UTC [policies] GetPolicy -> DEBU 198 Returning dummy reject all policy because Writers could not be found in /Application/Writers +orderer.example.com | 2018-01-18 09:29:43.843 UTC [policies] GetPolicy -> DEBU 199 Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:43.843 UTC [policies] GetPolicy -> DEBU 19a Returning dummy reject all policy because Admins could not be found in /Application/Admins +orderer.example.com | 2018-01-18 09:29:43.843 UTC [policies] GetPolicy -> DEBU 19b Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:43.843 UTC [policies] GetPolicy -> DEBU 19c Returning dummy reject all policy because Readers could not be found in /Application/Readers +orderer.example.com | 2018-01-18 09:29:43.843 UTC [policies] GetPolicy -> DEBU 19d Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:43.844 UTC [common/configtx] addToMap -> DEBU 19e Adding to config map: [Groups] /Channel +orderer.example.com | 2018-01-18 09:29:43.844 UTC [common/configtx] addToMap -> DEBU 19f Adding to config map: [Groups] /Channel/Application +orderer.example.com | 2018-01-18 09:29:43.844 UTC [common/configtx] addToMap -> DEBU 1a0 Adding to config map: [Groups] /Channel/Application/Org1MSP +peer1.org1.example.com | [289 01-18 09:29:45.85 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 +peer1.org1.example.com | [28a 01-18 09:29:45.85 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [4e7cacbf]Inside sendExecuteMessage. Message INIT +peer1.org1.example.com | [28b 01-18 09:29:45.85 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [27e 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9e2fddb7]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [27f 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9e2fddb7-0c96-4657-8fc9-ad26fdb53cb4]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [280 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:9e2fddb7-0c96-4657-8fc9-ad26fdb53cb4 +peer0.org2.example.com | [281 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [282 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode escc/businesschannel(github.com/hyperledger/fabric/core/scc/escc) deployed +peer0.org2.example.com | [283 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [4ae5f961-1c1a-4f8d-83e8-3c5515a13a68] +peer1.org2.example.com | [254 01-18 09:29:46.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b73964a5]sending state message INIT +peer1.org2.example.com | [255 01-18 09:29:46.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b73964a5]Received message INIT from shim +orderer.example.com | 2018-01-18 09:29:43.844 UTC [common/configtx] addToMap -> DEBU 1a1 Adding to config map: [Groups] /Channel/Application/Org2MSP +peer1.org1.example.com | [28c 01-18 09:29:45.85 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [4e7cacbf]sendExecuteMsg trigger event INIT +peer0.org1.example.com | [27d 01-18 09:29:45.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [de073d8d-90a6-4216-8210-6737b32ef099]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [27e 01-18 09:29:45.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:de073d8d-90a6-4216-8210-6737b32ef099 +peer0.org1.example.com | [27f 01-18 09:29:45.31 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [284 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org2.example.com | [256 01-18 09:29:46.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b73964a5]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org1.example.com | [28d 01-18 09:29:45.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4e7cacbf]Move state message INIT +peer0.org1.example.com | [280 01-18 09:29:45.31 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode escc/businesschannel(github.com/hyperledger/fabric/core/scc/escc) deployed +orderer.example.com | 2018-01-18 09:29:43.844 UTC [common/configtx] addToMap -> DEBU 1a2 Adding to config map: [Values] /Channel/Consortium +peer0.org2.example.com | [285 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [9f09d267-711c-4c29-acb7-fab4ce19a8ab] +peer1.org1.example.com | [28e 01-18 09:29:45.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4e7cacbf]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org1.example.com | [28f 01-18 09:29:45.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [281 01-18 09:29:45.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [5a7cdc4b-7cdb-479d-bb5d-8b00dc7215cd] +peer1.org2.example.com | [257 01-18 09:29:46.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org1.example.com | [290 01-18 09:29:45.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4e7cacbf]sending state message INIT +orderer.example.com | 2018-01-18 09:29:43.844 UTC [common/configtx] addToMap -> DEBU 1a3 Adding to config map: [Groups] /Channel +peer0.org2.example.com | [286 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=2408236d-3ebe-4a10-8638-dc513778eda0,syscc=true,proposal=0x0,canname=vscc:1.0.2 +peer0.org1.example.com | [282 01-18 09:29:45.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org2.example.com | [258 01-18 09:29:46.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [b73964a5]Received INIT, initializing chaincode +peer1.org1.example.com | [291 01-18 09:29:45.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4e7cacbf]Received message INIT from shim +peer0.org1.example.com | [283 01-18 09:29:45.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [c81f1be4-0c1a-4830-b1bc-34a822556c14] +peer0.org2.example.com | [287 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 +peer0.org2.example.com | [288 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [289 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 +peer1.org2.example.com | [259 01-18 09:29:46.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b73964a5]Init get response status: 200 +peer0.org1.example.com | [284 01-18 09:29:45.32 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=c4b5c134-e999-4d08-a0f4-0edc8dcb19ed,syscc=true,proposal=0x0,canname=vscc:1.0.2 +orderer.example.com | 2018-01-18 09:29:43.845 UTC [common/configtx] addToMap -> DEBU 1a4 Adding to config map: [Groups] /Channel/Application +peer1.org1.example.com | [292 01-18 09:29:45.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4e7cacbf]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org2.example.com | [28a 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [2408236d]Inside sendExecuteMessage. Message INIT +peer1.org2.example.com | [25a 01-18 09:29:46.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b73964a5]Init succeeded. Sending COMPLETED +peer0.org1.example.com | [285 01-18 09:29:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 +orderer.example.com | 2018-01-18 09:29:43.845 UTC [common/configtx] addToMap -> DEBU 1a5 Adding to config map: [Groups] /Channel/Application/Org1MSP +peer1.org1.example.com | [293 01-18 09:29:45.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org2.example.com | [28b 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [25b 01-18 09:29:46.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b73964a5]Move state message COMPLETED +peer1.org2.example.com | [25c 01-18 09:29:46.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b73964a5]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | 2018-01-18 09:29:43.845 UTC [common/configtx] addToMap -> DEBU 1a6 Adding to config map: [Groups] /Channel/Application/Org2MSP +peer0.org2.example.com | [28c 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [2408236d]sendExecuteMsg trigger event INIT +peer0.org1.example.com | [286 01-18 09:29:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [287 01-18 09:29:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 +peer1.org2.example.com | [25d 01-18 09:29:46.50 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b73964a5]send state message COMPLETED +orderer.example.com | 2018-01-18 09:29:43.845 UTC [common/configtx] addToMap -> DEBU 1a7 Adding to config map: [Policy] /Channel/Application/Writers +peer0.org2.example.com | [28d 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2408236d]Move state message INIT +peer1.org1.example.com | [294 01-18 09:29:45.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [4e7cacbf]Received INIT, initializing chaincode +peer0.org1.example.com | [288 01-18 09:29:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [c4b5c134]Inside sendExecuteMessage. Message INIT +peer0.org1.example.com | [289 01-18 09:29:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [25e 01-18 09:29:46.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b73964a5]Received message COMPLETED from shim +peer0.org2.example.com | [28e 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2408236d]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org2.example.com | [28f 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [295 01-18 09:29:45.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4e7cacbf]Init get response status: 200 +peer0.org1.example.com | [28a 01-18 09:29:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [c4b5c134]sendExecuteMsg trigger event INIT +orderer.example.com | 2018-01-18 09:29:43.845 UTC [common/configtx] addToMap -> DEBU 1a8 Adding to config map: [Policy] /Channel/Application/Readers +orderer.example.com | 2018-01-18 09:29:43.845 UTC [common/configtx] addToMap -> DEBU 1a9 Adding to config map: [Policy] /Channel/Application/Admins +peer0.org2.example.com | [290 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2408236d]sending state message INIT +peer1.org2.example.com | [25f 01-18 09:29:46.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b73964a5]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [28b 01-18 09:29:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c4b5c134]Move state message INIT +peer0.org1.example.com | [28c 01-18 09:29:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c4b5c134]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org1.example.com | [296 01-18 09:29:45.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4e7cacbf]Init succeeded. Sending COMPLETED +orderer.example.com | 2018-01-18 09:29:43.845 UTC [common/configtx] addToMap -> DEBU 1aa Adding to config map: [Values] /Channel/Consortium +peer1.org2.example.com | [260 01-18 09:29:46.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b73964a5-3bd7-4fe4-a188-643cbba0be9b]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [261 01-18 09:29:46.50 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:b73964a5-3bd7-4fe4-a188-643cbba0be9b +peer1.org2.example.com | [262 01-18 09:29:46.50 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [297 01-18 09:29:45.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4e7cacbf]Move state message COMPLETED +orderer.example.com | 2018-01-18 09:29:43.846 UTC [policies] GetPolicy -> DEBU 1ab Returning policy ChannelCreationPolicy for evaluation +peer0.org2.example.com | [291 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2408236d]Received message INIT from shim +peer0.org1.example.com | [28d 01-18 09:29:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [263 01-18 09:29:46.50 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed +peer1.org1.example.com | [298 01-18 09:29:45.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4e7cacbf]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | 2018-01-18 09:29:43.846 UTC [cauthdsl] func1 -> DEBU 1ac 0xc420026968 gate 1516267783846317358 evaluation starts +peer0.org2.example.com | [292 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2408236d]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org1.example.com | [28e 01-18 09:29:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c4b5c134]sending state message INIT +peer1.org2.example.com | [264 01-18 09:29:46.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [b6a26e89-d259-4e58-a563-80352c7863e4] +peer1.org1.example.com | [299 01-18 09:29:45.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4e7cacbf]send state message COMPLETED +peer0.org2.example.com | [293 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +orderer.example.com | 2018-01-18 09:29:43.846 UTC [cauthdsl] func2 -> DEBU 1ad 0xc420026968 signed by 0 principal evaluation starts (used [false]) +peer0.org1.example.com | [28f 01-18 09:29:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c4b5c134]Received message INIT from shim +peer1.org2.example.com | [265 01-18 09:29:46.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org1.example.com | [29a 01-18 09:29:45.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4e7cacbf]Received message COMPLETED from shim +peer0.org2.example.com | [294 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [2408236d]Received INIT, initializing chaincode +orderer.example.com | 2018-01-18 09:29:43.846 UTC [cauthdsl] func2 -> DEBU 1ae 0xc420026968 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +peer0.org1.example.com | [290 01-18 09:29:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c4b5c134]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org1.example.com | [29b 01-18 09:29:45.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4e7cacbf]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [266 01-18 09:29:46.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [439b30ce-67d7-412a-9de3-5743979ac379] +peer0.org2.example.com | [295 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2408236d]Init get response status: 200 +orderer.example.com | 2018-01-18 09:29:43.847 UTC [msp/identity] newIdentity -> DEBU 1af Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [291 01-18 09:29:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org1.example.com | [292 01-18 09:29:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [c4b5c134]Received INIT, initializing chaincode +peer0.org1.example.com | [293 01-18 09:29:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c4b5c134]Init get response status: 200 +peer1.org2.example.com | [267 01-18 09:29:46.51 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=821ab791-f075-4857-b38b-1fa9811ed067,syscc=true,proposal=0x0,canname=escc:1.0.2 +peer1.org1.example.com | [29c 01-18 09:29:45.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4e7cacbf-d2da-4057-997d-b756f40c2e51]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [294 01-18 09:29:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c4b5c134]Init succeeded. Sending COMPLETED +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +peer1.org2.example.com | [268 01-18 09:29:46.51 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 +peer0.org2.example.com | [296 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2408236d]Init succeeded. Sending COMPLETED +peer0.org1.example.com | [295 01-18 09:29:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c4b5c134]Move state message COMPLETED +peer1.org1.example.com | [29d 01-18 09:29:45.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:4e7cacbf-d2da-4057-997d-b756f40c2e51 +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org2.example.com | [269 01-18 09:29:46.51 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [296 01-18 09:29:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c4b5c134]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [297 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2408236d]Move state message COMPLETED +peer0.org2.example.com | [298 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2408236d]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [299 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2408236d]send state message COMPLETED +peer0.org2.example.com | [29a 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2408236d]Received message COMPLETED from shim +peer0.org2.example.com | [29b 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2408236d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [29c 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2408236d-3ebe-4a10-8638-dc513778eda0]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [29d 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:2408236d-3ebe-4a10-8638-dc513778eda0 +peer0.org2.example.com | [29e 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [29e 01-18 09:29:45.85 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org2.example.com | [26a 01-18 09:29:46.51 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 +peer0.org1.example.com | [297 01-18 09:29:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c4b5c134]send state message COMPLETED +peer0.org2.example.com | [29f 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/businesschannel(github.com/hyperledger/fabric/core/scc/vscc) deployed +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +peer1.org1.example.com | [29f 01-18 09:29:45.86 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/businesschannel(github.com/hyperledger/fabric/core/scc/vscc) deployed +peer1.org2.example.com | [26b 01-18 09:29:46.51 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [821ab791]Inside sendExecuteMessage. Message INIT +peer0.org1.example.com | [298 01-18 09:29:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c4b5c134]Received message COMPLETED from shim +peer0.org2.example.com | [2a0 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [9f09d267-711c-4c29-acb7-fab4ce19a8ab] +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer1.org1.example.com | [2a0 01-18 09:29:45.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [6110ca20-2b8b-47a8-96f8-134733cd4dbf] +peer1.org1.example.com | [2a1 01-18 09:29:45.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org2.example.com | [26c 01-18 09:29:46.51 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [2a1 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +peer0.org1.example.com | [299 01-18 09:29:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c4b5c134]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [2a2 01-18 09:29:45.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [18816068-3f29-48ea-9d8e-6daefc02888a] +peer1.org1.example.com | [2a3 01-18 09:29:45.90 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.0.2,txid=cb17d68b-f706-4b43-a186-0411d27cdaf0,syscc=true,proposal=0x0,canname=qscc:1.0.2 +peer0.org2.example.com | [2a2 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [85794706-fa8f-4119-b599-e6487c53490f] +peer0.org1.example.com | [29a 01-18 09:29:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c4b5c134-e999-4d08-a0f4-0edc8dcb19ed]HandleMessage- COMPLETED. Notify +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +peer1.org2.example.com | [26d 01-18 09:29:46.51 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [821ab791]sendExecuteMsg trigger event INIT +peer1.org1.example.com | [2a4 01-18 09:29:45.90 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.0.2 +peer0.org2.example.com | [2a3 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.0.2,txid=6304d7fa-62fb-442d-9819-e79c24d4f7c3,syscc=true,proposal=0x0,canname=qscc:1.0.2 +peer0.org1.example.com | [29b 01-18 09:29:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:c4b5c134-e999-4d08-a0f4-0edc8dcb19ed +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:43.848 UTC [msp] SatisfiesPrincipal -> DEBU 1b0 Checking if identity satisfies ADMIN role for Org1MSP +orderer.example.com | 2018-01-18 09:29:43.848 UTC [cauthdsl] func2 -> DEBU 1b1 0xc420026968 principal matched by identity 0 +orderer.example.com | 2018-01-18 09:29:43.848 UTC [msp/identity] Verify -> DEBU 1b2 Verify: digest = 00000000 c2 fe 17 b4 c8 3b c1 d6 17 b0 19 ac b7 be a1 8c |.....;..........| +orderer.example.com | 00000010 b9 9f 4f e4 be 55 e9 d4 15 9e 05 c0 ee c6 5c 37 |..O..U........\7| +orderer.example.com | 2018-01-18 09:29:43.848 UTC [msp/identity] Verify -> DEBU 1b3 Verify: sig = 00000000 30 45 02 21 00 91 a7 72 c6 06 52 e5 fc dc 81 54 |0E.!...r..R....T| +orderer.example.com | 00000010 76 54 81 da 3e 58 9e 11 df f1 67 fb 92 ed 61 ef |vT..>X....g...a.| +orderer.example.com | 00000020 bc ae 13 4e 1c 02 20 3d 4a 89 e2 1b 4e e0 cd 08 |...N.. =J...N...| +orderer.example.com | 00000030 aa 9f b4 66 db 3a 4a 2f 16 cc ff a7 a1 0c 8b ca |...f.:J/........| +orderer.example.com | 00000040 0f 7a a5 e9 a8 21 9c |.z...!.| +peer1.org1.example.com | [2a5 01-18 09:29:45.90 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [2a4 01-18 09:29:46.25 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.0.2 +peer1.org2.example.com | [26e 01-18 09:29:46.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [821ab791]Move state message INIT +orderer.example.com | 2018-01-18 09:29:43.849 UTC [cauthdsl] func2 -> DEBU 1b4 0xc420026968 principal evaluation succeeds for identity 0 +peer0.org1.example.com | [29c 01-18 09:29:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [2a6 01-18 09:29:45.90 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.2 +peer1.org2.example.com | [26f 01-18 09:29:46.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [821ab791]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org2.example.com | [2a5 01-18 09:29:46.26 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +orderer.example.com | 2018-01-18 09:29:43.849 UTC [cauthdsl] func1 -> DEBU 1b5 0xc420026968 gate 1516267783846317358 evaluation succeeds +peer1.org1.example.com | [2a7 01-18 09:29:45.90 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [cb17d68b]Inside sendExecuteMessage. Message INIT +peer1.org1.example.com | [2a8 01-18 09:29:45.90 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [2a9 01-18 09:29:45.90 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [cb17d68b]sendExecuteMsg trigger event INIT +orderer.example.com | 2018-01-18 09:29:43.849 UTC [common/configtx] recurseConfigMap -> DEBU 1b6 Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [29d 01-18 09:29:45.32 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/businesschannel(github.com/hyperledger/fabric/core/scc/vscc) deployed +peer1.org2.example.com | [270 01-18 09:29:46.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [2aa 01-18 09:29:45.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cb17d68b]Move state message INIT +peer0.org2.example.com | [2a6 01-18 09:29:46.26 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.2 +orderer.example.com | 2018-01-18 09:29:43.850 UTC [common/configtx] recurseConfigMap -> DEBU 1b7 Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [29e 01-18 09:29:45.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [c81f1be4-0c1a-4830-b1bc-34a822556c14] +peer1.org2.example.com | [271 01-18 09:29:46.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [821ab791]sending state message INIT +peer1.org2.example.com | [272 01-18 09:29:46.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [821ab791]Received message INIT from shim +peer0.org2.example.com | [2a7 01-18 09:29:46.26 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [6304d7fa]Inside sendExecuteMessage. Message INIT +orderer.example.com | 2018-01-18 09:29:43.850 UTC [common/configtx] recurseConfigMap -> DEBU 1b8 Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [29f 01-18 09:29:45.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org2.example.com | [2a8 01-18 09:29:46.26 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | 2018-01-18 09:29:43.850 UTC [common/configtx] recurseConfigMap -> DEBU 1b9 Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [2ab 01-18 09:29:45.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [cb17d68b]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org2.example.com | [273 01-18 09:29:46.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [821ab791]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org1.example.com | [2a0 01-18 09:29:45.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [5d697c86-a4db-44c3-a09b-a99e5eb3d033] +peer0.org2.example.com | [2a9 01-18 09:29:46.26 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [6304d7fa]sendExecuteMsg trigger event INIT +orderer.example.com | 2018-01-18 09:29:43.850 UTC [common/configtx] recurseConfigMap -> DEBU 1ba Setting policy for key BlockValidation to policy: mod_policy:"Admins" +peer1.org1.example.com | [2ac 01-18 09:29:45.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [2a1 01-18 09:29:45.32 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.0.2,txid=f6d7e4fc-6d86-4a15-b697-9c02096c9427,syscc=true,proposal=0x0,canname=qscc:1.0.2 +peer0.org1.example.com | [2a2 01-18 09:29:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.0.2 +peer0.org1.example.com | [2a3 01-18 09:29:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [2aa 01-18 09:29:46.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6304d7fa]Move state message INIT +peer1.org2.example.com | [274 01-18 09:29:46.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org1.example.com | [2ad 01-18 09:29:45.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cb17d68b]sending state message INIT +peer0.org1.example.com | [2a4 01-18 09:29:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.2 +orderer.example.com | 2018-01-18 09:29:43.850 UTC [common/configtx] recurseConfigMap -> DEBU 1bb Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org2.example.com | [2ab 01-18 09:29:46.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [6304d7fa]Fabric side Handling ChaincodeMessage of type: INIT in state ready +orderer.example.com | 2018-01-18 09:29:43.850 UTC [common/configtx] recurseConfigMap -> DEBU 1bc Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org1.example.com | [2ae 01-18 09:29:45.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cb17d68b]Received message INIT from shim +peer1.org2.example.com | [275 01-18 09:29:46.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [821ab791]Received INIT, initializing chaincode +peer0.org1.example.com | [2a5 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [f6d7e4fc]Inside sendExecuteMessage. Message INIT +peer1.org1.example.com | [2af 01-18 09:29:45.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [cb17d68b]Handling ChaincodeMessage of type: INIT(state:ready) +orderer.example.com | 2018-01-18 09:29:43.851 UTC [common/configtx] recurseConfigMap -> DEBU 1bd Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org2.example.com | [2ac 01-18 09:29:46.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [276 01-18 09:29:46.51 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC +peer0.org1.example.com | [2a6 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [2b0 01-18 09:29:45.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org2.example.com | [2ad 01-18 09:29:46.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6304d7fa]sending state message INIT +orderer.example.com | 2018-01-18 09:29:43.851 UTC [common/configtx] recurseConfigMap -> DEBU 1be Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:43.851 UTC [common/configtx] recurseConfigMap -> DEBU 1bf Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [277 01-18 09:29:46.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [821ab791]Init get response status: 200 +peer0.org2.example.com | [2ae 01-18 09:29:46.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6304d7fa]Received message INIT from shim +peer0.org1.example.com | [2a7 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [f6d7e4fc]sendExecuteMsg trigger event INIT +peer1.org1.example.com | [2b1 01-18 09:29:45.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [cb17d68b]Received INIT, initializing chaincode +orderer.example.com | 2018-01-18 09:29:43.852 UTC [common/configtx] recurseConfigMap -> DEBU 1c0 Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [278 01-18 09:29:46.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [821ab791]Init succeeded. Sending COMPLETED +peer0.org2.example.com | [2af 01-18 09:29:46.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [6304d7fa]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org1.example.com | [2b2 01-18 09:29:45.91 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC +orderer.example.com | 2018-01-18 09:29:43.852 UTC [common/configtx] recurseConfigMap -> DEBU 1c1 Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [279 01-18 09:29:46.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [821ab791]Move state message COMPLETED +peer0.org2.example.com | [2b0 01-18 09:29:46.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org1.example.com | [2b3 01-18 09:29:45.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cb17d68b]Init get response status: 200 +peer1.org1.example.com | [2b4 01-18 09:29:45.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cb17d68b]Init succeeded. Sending COMPLETED +peer1.org1.example.com | [2b5 01-18 09:29:45.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cb17d68b]Move state message COMPLETED +peer0.org2.example.com | [2b1 01-18 09:29:46.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [6304d7fa]Received INIT, initializing chaincode +peer0.org2.example.com | [2b2 01-18 09:29:46.26 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC +orderer.example.com | 2018-01-18 09:29:43.852 UTC [common/configtx] recurseConfigMap -> DEBU 1c2 Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [2a8 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f6d7e4fc]Move state message INIT +peer1.org2.example.com | [27a 01-18 09:29:46.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [821ab791]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [2b6 01-18 09:29:45.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [cb17d68b]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | 2018-01-18 09:29:43.852 UTC [common/configtx] recurseConfigMap -> DEBU 1c3 Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [2a9 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f6d7e4fc]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org2.example.com | [27b 01-18 09:29:46.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [821ab791]send state message COMPLETED +peer0.org2.example.com | [2b3 01-18 09:29:46.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6304d7fa]Init get response status: 200 +peer1.org1.example.com | [2b7 01-18 09:29:45.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cb17d68b]send state message COMPLETED +peer1.org2.example.com | [27c 01-18 09:29:46.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [821ab791]Received message COMPLETED from shim +peer0.org1.example.com | [2aa 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [2b4 01-18 09:29:46.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6304d7fa]Init succeeded. Sending COMPLETED +peer1.org1.example.com | [2b8 01-18 09:29:45.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cb17d68b]Received message COMPLETED from shim +orderer.example.com | 2018-01-18 09:29:43.852 UTC [common/configtx] recurseConfigMap -> DEBU 1c4 Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [27d 01-18 09:29:46.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [821ab791]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [2ab 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f6d7e4fc]sending state message INIT +peer0.org1.example.com | [2ac 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f6d7e4fc]Received message INIT from shim +peer1.org1.example.com | [2b9 01-18 09:29:45.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [cb17d68b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | 2018-01-18 09:29:43.852 UTC [common/configtx] recurseConfigMap -> DEBU 1c5 Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [27e 01-18 09:29:46.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [821ab791-f075-4857-b38b-1fa9811ed067]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [2b5 01-18 09:29:46.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6304d7fa]Move state message COMPLETED +peer0.org1.example.com | [2ad 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f6d7e4fc]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org1.example.com | [2ba 01-18 09:29:45.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [cb17d68b-f706-4b43-a186-0411d27cdaf0]HandleMessage- COMPLETED. Notify +orderer.example.com | 2018-01-18 09:29:43.853 UTC [common/configtx] recurseConfigMap -> DEBU 1c6 Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [27f 01-18 09:29:46.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:821ab791-f075-4857-b38b-1fa9811ed067 +peer0.org1.example.com | [2ae 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org2.example.com | [2b6 01-18 09:29:46.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [6304d7fa]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [2bb 01-18 09:29:45.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:cb17d68b-f706-4b43-a186-0411d27cdaf0 +peer1.org2.example.com | [280 01-18 09:29:46.51 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [2af 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [f6d7e4fc]Received INIT, initializing chaincode +peer0.org2.example.com | [2b7 01-18 09:29:46.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6304d7fa]send state message COMPLETED +peer0.org2.example.com | [2b8 01-18 09:29:46.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6304d7fa]Received message COMPLETED from shim +orderer.example.com | 2018-01-18 09:29:43.853 UTC [common/configtx] recurseConfigMap -> DEBU 1c7 Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [281 01-18 09:29:46.51 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode escc/businesschannel(github.com/hyperledger/fabric/core/scc/escc) deployed +peer0.org1.example.com | [2b0 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC +peer1.org1.example.com | [2bc 01-18 09:29:45.91 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [2b9 01-18 09:29:46.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [6304d7fa]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | 2018-01-18 09:29:43.855 UTC [common/configtx] recurseConfigMap -> DEBU 1c8 Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [2b1 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f6d7e4fc]Init get response status: 200 +peer1.org2.example.com | [282 01-18 09:29:46.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [439b30ce-67d7-412a-9de3-5743979ac379] +peer1.org1.example.com | [2bd 01-18 09:29:45.91 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/chaincode/qscc) deployed +peer0.org1.example.com | [2b2 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f6d7e4fc]Init succeeded. Sending COMPLETED +peer1.org2.example.com | [283 01-18 09:29:46.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org2.example.com | [2ba 01-18 09:29:46.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [6304d7fa-62fb-442d-9819-e79c24d4f7c3]HandleMessage- COMPLETED. Notify +orderer.example.com | 2018-01-18 09:29:43.855 UTC [common/configtx] processConfig -> DEBU 1c9 Beginning new config for channel businesschannel +peer1.org2.example.com | [284 01-18 09:29:46.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [665df2c6-e2bb-4a23-9627-07fbd4e7d912] +peer0.org1.example.com | [2b3 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f6d7e4fc]Move state message COMPLETED +peer1.org1.example.com | [2be 01-18 09:29:45.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [18816068-3f29-48ea-9d8e-6daefc02888a] +peer0.org2.example.com | [2bb 01-18 09:29:46.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:6304d7fa-62fb-442d-9819-e79c24d4f7c3 +orderer.example.com | 2018-01-18 09:29:43.855 UTC [common/config] NewStandardValues -> DEBU 1ca Initializing protos for *config.ChannelProtos +peer1.org2.example.com | [285 01-18 09:29:46.51 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=d3d1c964-7942-433e-873d-7b942e653968,syscc=true,proposal=0x0,canname=vscc:1.0.2 +peer1.org1.example.com | [2bf 01-18 09:29:45.91 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Entry +peer0.org1.example.com | [2b4 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f6d7e4fc]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | 2018-01-18 09:29:43.855 UTC [common/config] initializeProtosStruct -> DEBU 1cb Processing field: HashingAlgorithm +peer1.org2.example.com | [286 01-18 09:29:46.51 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 +peer0.org2.example.com | [2bc 01-18 09:29:46.26 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [2c0 01-18 09:29:45.91 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [0] +peer0.org1.example.com | [2b5 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f6d7e4fc]send state message COMPLETED +peer0.org1.example.com | [2b6 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f6d7e4fc]Received message COMPLETED from shim +peer1.org2.example.com | [287 01-18 09:29:46.51 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [2bd 01-18 09:29:46.26 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/chaincode/qscc) deployed +peer1.org1.example.com | [2c1 01-18 09:29:45.91 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Entry +orderer.example.com | 2018-01-18 09:29:43.855 UTC [common/config] initializeProtosStruct -> DEBU 1cc Processing field: BlockDataHashingStructure +peer0.org1.example.com | [2b7 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f6d7e4fc]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [2b8 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f6d7e4fc-6d86-4a15-b697-9c02096c9427]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [2b9 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:f6d7e4fc-6d86-4a15-b697-9c02096c9427 +peer1.org2.example.com | [288 01-18 09:29:46.51 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 +orderer.example.com | 2018-01-18 09:29:43.855 UTC [common/config] initializeProtosStruct -> DEBU 1cd Processing field: OrdererAddresses +peer0.org2.example.com | [2be 01-18 09:29:46.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [85794706-fa8f-4119-b599-e6487c53490f] +peer1.org1.example.com | [2c2 01-18 09:29:45.91 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer0.org1.example.com | [2ba 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [289 01-18 09:29:46.51 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [d3d1c964]Inside sendExecuteMessage. Message INIT +orderer.example.com | 2018-01-18 09:29:43.856 UTC [common/config] initializeProtosStruct -> DEBU 1ce Processing field: Consortium +peer1.org1.example.com | [2c3 01-18 09:29:45.91 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer0.org2.example.com | [2bf 01-18 09:29:46.26 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Entry +peer1.org2.example.com | [28a 01-18 09:29:46.51 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | 2018-01-18 09:29:43.856 UTC [policies] ProposePolicy -> DEBU 1cf Proposed new policy Writers for Channel +peer0.org1.example.com | [2bb 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/chaincode/qscc) deployed +peer0.org1.example.com | [2bc 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [5d697c86-a4db-44c3-a09b-a99e5eb3d033] +peer0.org2.example.com | [2c0 01-18 09:29:46.26 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [0] +peer1.org2.example.com | [28b 01-18 09:29:46.51 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [d3d1c964]sendExecuteMsg trigger event INIT +orderer.example.com | 2018-01-18 09:29:43.856 UTC [policies] ProposePolicy -> DEBU 1d0 Proposed new policy Admins for Channel +peer0.org2.example.com | [2c1 01-18 09:29:46.26 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Entry +peer1.org2.example.com | [28c 01-18 09:29:46.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d3d1c964]Move state message INIT +peer1.org1.example.com | [2c4 01-18 09:29:45.91 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Exit +peer0.org1.example.com | [2bd 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Entry +orderer.example.com | 2018-01-18 09:29:43.856 UTC [policies] ProposePolicy -> DEBU 1d1 Proposed new policy Readers for Channel +peer0.org2.example.com | [2c2 01-18 09:29:46.26 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer1.org2.example.com | [28d 01-18 09:29:46.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d3d1c964]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org1.example.com | [2c5 01-18 09:29:45.91 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Exit +peer1.org1.example.com | [2c6 01-18 09:29:45.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9614df70]Transaction completed. Sending COMPLETED +orderer.example.com | 2018-01-18 09:29:43.856 UTC [common/config] NewStandardValues -> DEBU 1d2 Initializing protos for *config.OrdererProtos +peer0.org2.example.com | [2c3 01-18 09:29:46.26 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer1.org2.example.com | [28e 01-18 09:29:46.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [2be 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [0] +peer1.org1.example.com | [2c7 01-18 09:29:45.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9614df70]Move state message COMPLETED +orderer.example.com | 2018-01-18 09:29:43.856 UTC [common/config] initializeProtosStruct -> DEBU 1d3 Processing field: ConsensusType +peer0.org2.example.com | [2c4 01-18 09:29:46.26 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Exit +peer1.org2.example.com | [28f 01-18 09:29:46.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d3d1c964]sending state message INIT +peer0.org1.example.com | [2bf 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Entry +peer1.org1.example.com | [2c8 01-18 09:29:45.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9614df70]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | 2018-01-18 09:29:43.856 UTC [common/config] initializeProtosStruct -> DEBU 1d4 Processing field: BatchSize +peer0.org2.example.com | [2c5 01-18 09:29:46.26 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Exit +peer1.org2.example.com | [290 01-18 09:29:46.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d3d1c964]Received message INIT from shim +peer0.org1.example.com | [2c0 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer1.org1.example.com | [2c9 01-18 09:29:45.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9614df70]send state message COMPLETED +peer1.org1.example.com | [2ca 01-18 09:29:45.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9614df70]Received message COMPLETED from shim +orderer.example.com | 2018-01-18 09:29:43.856 UTC [common/config] initializeProtosStruct -> DEBU 1d5 Processing field: BatchTimeout +peer1.org2.example.com | [291 01-18 09:29:46.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d3d1c964]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org1.example.com | [2c1 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer1.org1.example.com | [2cb 01-18 09:29:45.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9614df70]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | 2018-01-18 09:29:43.856 UTC [common/config] initializeProtosStruct -> DEBU 1d6 Processing field: KafkaBrokers +peer1.org2.example.com | [292 01-18 09:29:46.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org2.example.com | [2c6 01-18 09:29:46.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [17c52eea]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [2c2 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Exit +peer1.org1.example.com | [2cc 01-18 09:29:45.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9614df70e67c837184934c831b1f713fc5f7e7da1f0488eef88364836d311695]HandleMessage- COMPLETED. Notify +orderer.example.com | 2018-01-18 09:29:43.856 UTC [common/config] initializeProtosStruct -> DEBU 1d7 Processing field: ChannelRestrictions +peer1.org2.example.com | [293 01-18 09:29:46.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [d3d1c964]Received INIT, initializing chaincode +peer0.org2.example.com | [2c7 01-18 09:29:46.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [17c52eea]Move state message COMPLETED +peer0.org1.example.com | [2c3 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Exit +peer1.org2.example.com | [294 01-18 09:29:46.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d3d1c964]Init get response status: 200 +peer1.org1.example.com | [2cd 01-18 09:29:45.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:9614df70e67c837184934c831b1f713fc5f7e7da1f0488eef88364836d311695 +peer0.org2.example.com | [2c8 01-18 09:29:46.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [17c52eea]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | 2018-01-18 09:29:43.857 UTC [policies] ProposePolicy -> DEBU 1d8 Proposed new policy Writers for Orderer +peer0.org1.example.com | [2c4 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cd1eaf52]Transaction completed. Sending COMPLETED +peer1.org2.example.com | [295 01-18 09:29:46.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d3d1c964]Init succeeded. Sending COMPLETED +peer0.org2.example.com | [2c9 01-18 09:29:46.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [17c52eea]send state message COMPLETED +orderer.example.com | 2018-01-18 09:29:43.857 UTC [policies] ProposePolicy -> DEBU 1d9 Proposed new policy Admins for Orderer +peer1.org1.example.com | [2ce 01-18 09:29:45.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [2c5 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cd1eaf52]Move state message COMPLETED +peer1.org2.example.com | [296 01-18 09:29:46.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d3d1c964]Move state message COMPLETED +peer1.org2.example.com | [297 01-18 09:29:46.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d3d1c964]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [2c6 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [cd1eaf52]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | 2018-01-18 09:29:43.857 UTC [policies] ProposePolicy -> DEBU 1da Proposed new policy BlockValidation for Orderer +peer0.org2.example.com | [2ca 01-18 09:29:46.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [17c52eea]Received message COMPLETED from shim +peer1.org2.example.com | [298 01-18 09:29:46.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d3d1c964]send state message COMPLETED +peer1.org1.example.com | [2cf 01-18 09:29:45.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [2c7 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cd1eaf52]send state message COMPLETED +orderer.example.com | 2018-01-18 09:29:43.857 UTC [policies] ProposePolicy -> DEBU 1db Proposed new policy Readers for Orderer +peer1.org2.example.com | [299 01-18 09:29:46.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d3d1c964]Received message COMPLETED from shim +peer0.org2.example.com | [2cb 01-18 09:29:46.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [17c52eea]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [2d0 01-18 09:29:45.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +peer1.org1.example.com | [2d1 01-18 09:29:45.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer1.org1.example.com | [2d2 01-18 09:29:51.80 UTC] [github.com/hyperledger/fabric/core/deliverservice] leaderElection.beLeader.func1.StartDeliverForChannel -> DEBU This peer will pass blocks from orderer service to other peers for channel businesschannel +peer1.org2.example.com | [29a 01-18 09:29:46.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d3d1c964]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [2cc 01-18 09:29:46.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [17c52eea260e85f7bdcf440e00080086fa6d23425b198c3c8107d0ff24627d29]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [2c8 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cd1eaf52]Received message COMPLETED from shim +orderer.example.com | 2018-01-18 09:29:43.857 UTC [common/config] NewStandardValues -> DEBU 1dc Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:43.857 UTC [common/config] initializeProtosStruct -> DEBU 1dd Processing field: MSP +peer1.org1.example.com | [2d3 01-18 09:29:51.80 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Connected to orderer.example.com:7050 +peer1.org2.example.com | [29b 01-18 09:29:46.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d3d1c964-7942-433e-873d-7b942e653968]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [2cd 01-18 09:29:46.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:17c52eea260e85f7bdcf440e00080086fa6d23425b198c3c8107d0ff24627d29 +peer0.org1.example.com | [2c9 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [cd1eaf52]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | 2018-01-18 09:29:43.857 UTC [policies] ProposePolicy -> DEBU 1de Proposed new policy Writers for OrdererOrg +peer1.org1.example.com | [2d4 01-18 09:29:51.80 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Establishing gRPC stream with orderer.example.com:7050 ... +peer1.org2.example.com | [29c 01-18 09:29:46.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:d3d1c964-7942-433e-873d-7b942e653968 +peer0.org2.example.com | [2ce 01-18 09:29:46.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [2ca 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [cd1eaf52a53d002bbdb24e980ef6bbd201f81405edc8a213f22f571fbe612492]HandleMessage- COMPLETED. Notify +orderer.example.com | 2018-01-18 09:29:43.857 UTC [policies] ProposePolicy -> DEBU 1df Proposed new policy Admins for OrdererOrg +peer1.org1.example.com | [2d5 01-18 09:29:51.80 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Entering +peer1.org2.example.com | [29d 01-18 09:29:46.51 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [2cb 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:cd1eaf52a53d002bbdb24e980ef6bbd201f81405edc8a213f22f571fbe612492 +peer0.org2.example.com | [2cf 01-18 09:29:46.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer1.org2.example.com | [29e 01-18 09:29:46.51 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/businesschannel(github.com/hyperledger/fabric/core/scc/vscc) deployed +peer1.org1.example.com | [2d6 01-18 09:29:51.81 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect.func1.RequestBlocks -> DEBU Starting deliver with block [1] for channel businesschannel +peer1.org1.example.com | [2d7 01-18 09:29:51.81 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Exiting +orderer.example.com | 2018-01-18 09:29:43.858 UTC [policies] ProposePolicy -> DEBU 1e0 Proposed new policy Readers for OrdererOrg +peer1.org2.example.com | [29f 01-18 09:29:46.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [665df2c6-e2bb-4a23-9627-07fbd4e7d912] +peer0.org2.example.com | [2d0 01-18 09:29:46.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org1.example.com | [2cc 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [2d8 01-18 09:29:51.82 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [1], peers number [0] +orderer.example.com | 2018-01-18 09:29:43.858 UTC [common/config] NewStandardValues -> DEBU 1e1 Initializing protos for *struct {} +orderer.example.com | 2018-01-18 09:29:43.858 UTC [policies] ProposePolicy -> DEBU 1e2 Proposed new policy Readers for Application +peer1.org2.example.com | [2a0 01-18 09:29:46.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org1.example.com | [2cd 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [2ce 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org2.example.com | [2d1 01-18 09:29:46.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +orderer.example.com | 2018-01-18 09:29:43.858 UTC [policies] ProposePolicy -> DEBU 1e3 Proposed new policy Admins for Application +peer1.org2.example.com | [2a1 01-18 09:29:46.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [f6eccb23-5334-45e4-937f-39722337bf34] +peer1.org2.example.com | [2a2 01-18 09:29:46.52 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.0.2,txid=77808696-d59f-4e9e-8376-9d921afe6af4,syscc=true,proposal=0x0,canname=qscc:1.0.2 +peer1.org1.example.com | [2d9 01-18 09:29:51.82 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [1], peers number [0] +orderer.example.com | 2018-01-18 09:29:43.858 UTC [policies] ProposePolicy -> DEBU 1e4 Proposed new policy Writers for Application +peer0.org2.example.com | [2d2 01-18 09:29:52.25 UTC] [github.com/hyperledger/fabric/core/deliverservice] leaderElection.beLeader.func1.StartDeliverForChannel -> DEBU This peer will pass blocks from orderer service to other peers for channel businesschannel +peer0.org1.example.com | [2cf 01-18 09:29:45.34 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer1.org2.example.com | [2a3 01-18 09:29:46.52 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.0.2 +peer1.org1.example.com | [2da 01-18 09:29:51.82 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer0.org2.example.com | [2d3 01-18 09:29:52.27 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Connected to orderer.example.com:7050 +orderer.example.com | 2018-01-18 09:29:43.858 UTC [common/config] NewStandardValues -> DEBU 1e5 Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [2d0 01-18 09:29:51.30 UTC] [github.com/hyperledger/fabric/core/deliverservice] leaderElection.beLeader.func1.StartDeliverForChannel -> DEBU This peer will pass blocks from orderer service to other peers for channel businesschannel +peer1.org2.example.com | [2a4 01-18 09:29:46.52 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [2d4 01-18 09:29:52.27 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Establishing gRPC stream with orderer.example.com:7050 ... +peer1.org1.example.com | [2db 01-18 09:29:51.82 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +peer0.org1.example.com | [2d1 01-18 09:29:51.30 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Connected to orderer.example.com:7050 +peer0.org1.example.com | [2d2 01-18 09:29:51.30 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Establishing gRPC stream with orderer.example.com:7050 ... +peer1.org2.example.com | [2a5 01-18 09:29:46.52 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.2 +orderer.example.com | 2018-01-18 09:29:43.858 UTC [common/config] initializeProtosStruct -> DEBU 1e6 Processing field: MSP +orderer.example.com | 2018-01-18 09:29:43.858 UTC [common/config] NewStandardValues -> DEBU 1e7 Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | 2018-01-18 09:29:43.858 UTC [common/config] initializeProtosStruct -> DEBU 1e8 Processing field: AnchorPeers +orderer.example.com | 2018-01-18 09:29:43.858 UTC [common/config] NewStandardValues -> DEBU 1e9 Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [2d3 01-18 09:29:51.31 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Entering +peer1.org2.example.com | [2a6 01-18 09:29:46.52 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [77808696]Inside sendExecuteMessage. Message INIT +peer1.org2.example.com | [2a7 01-18 09:29:46.52 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | 2018-01-18 09:29:43.858 UTC [common/config] initializeProtosStruct -> DEBU 1ea Processing field: MSP +peer1.org1.example.com | [2dc 01-18 09:29:51.82 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer0.org1.example.com | [2d4 01-18 09:29:51.31 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect.func1.RequestBlocks -> DEBU Starting deliver with block [1] for channel businesschannel +peer0.org2.example.com | [2d5 01-18 09:29:52.27 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Entering +peer1.org2.example.com | [2a8 01-18 09:29:46.52 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [77808696]sendExecuteMsg trigger event INIT +orderer.example.com | 2018-01-18 09:29:43.859 UTC [policies] ProposePolicy -> DEBU 1eb Proposed new policy Admins for Org1MSP +peer1.org1.example.com | [2dd 01-18 09:29:51.82 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4219f05a0 +peer1.org1.example.com | [2de 01-18 09:29:51.82 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\212\322\201\323\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030\251U0\341\006n\346y$7\264o\305\320\211\232\\\025\312\332\032\271+?" +peer0.org1.example.com | [2d5 01-18 09:29:51.34 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Exiting +peer0.org2.example.com | [2d6 01-18 09:29:52.27 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect.func1.RequestBlocks -> DEBU Starting deliver with block [1] for channel businesschannel +peer1.org2.example.com | [2a9 01-18 09:29:46.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [77808696]Move state message INIT +orderer.example.com | 2018-01-18 09:29:43.859 UTC [policies] ProposePolicy -> DEBU 1ec Proposed new policy Readers for Org1MSP +peer0.org1.example.com | [2d6 01-18 09:29:51.38 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [1], peers number [0] +peer1.org2.example.com | [2aa 01-18 09:29:46.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [77808696]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org1.example.com | [2df 01-18 09:29:51.82 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +orderer.example.com | 2018-01-18 09:29:43.859 UTC [policies] ProposePolicy -> DEBU 1ed Proposed new policy Writers for Org1MSP +peer0.org1.example.com | [2d7 01-18 09:29:51.38 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [1], peers number [0] +peer0.org2.example.com | [2d7 01-18 09:29:52.28 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Exiting +peer1.org2.example.com | [2ab 01-18 09:29:46.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [2e0 01-18 09:29:51.82 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | 2018-01-18 09:29:43.859 UTC [common/config] NewStandardValues -> DEBU 1ee Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [2d8 01-18 09:29:51.40 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [2], peers number [0] +peer0.org2.example.com | [2d8 01-18 09:29:52.28 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [1], peers number [1] +peer1.org2.example.com | [2ac 01-18 09:29:46.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [77808696]sending state message INIT +peer1.org1.example.com | [2e1 01-18 09:29:51.82 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [2], peers number [0] +orderer.example.com | 2018-01-18 09:29:43.859 UTC [common/config] initializeProtosStruct -> DEBU 1ef Processing field: MSP +peer0.org1.example.com | [2d9 01-18 09:29:51.41 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer0.org1.example.com | [2da 01-18 09:29:51.41 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +peer1.org2.example.com | [2ad 01-18 09:29:46.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [77808696]Received message INIT from shim +peer1.org1.example.com | [2e2 01-18 09:29:51.82 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 685c3e542c5c7e71cc8ac51ff9728a4a798d38a5cb22c31b73b7dddaa87ffa02} +orderer.example.com | 2018-01-18 09:29:43.859 UTC [common/config] NewStandardValues -> DEBU 1f0 Initializing protos for *config.ApplicationOrgProtos +peer0.org2.example.com | [2da 01-18 09:29:52.28 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer0.org1.example.com | [2db 01-18 09:29:51.41 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer1.org1.example.com | [2e3 01-18 09:29:51.82 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +orderer.example.com | 2018-01-18 09:29:43.859 UTC [common/config] initializeProtosStruct -> DEBU 1f1 Processing field: AnchorPeers +peer1.org2.example.com | [2ae 01-18 09:29:46.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [77808696]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org2.example.com | [2db 01-18 09:29:52.29 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +peer0.org1.example.com | [2dc 01-18 09:29:51.41 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4219599b0 +peer1.org2.example.com | [2af 01-18 09:29:46.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org1.example.com | [2e4 01-18 09:29:51.82 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [2], peers number [0] +orderer.example.com | 2018-01-18 09:29:43.859 UTC [common/config] NewStandardValues -> DEBU 1f2 Initializing protos for *config.OrganizationProtos +peer0.org2.example.com | [2dc 01-18 09:29:52.29 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer0.org1.example.com | [2dd 01-18 09:29:51.41 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\212\322\201\323\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030\251U0\341\006n\346y$7\264o\305\320\211\232\\\025\312\332\032\271+?" +peer1.org1.example.com | [2e5 01-18 09:29:51.83 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | 2018-01-18 09:29:43.859 UTC [common/config] initializeProtosStruct -> DEBU 1f3 Processing field: MSP +peer1.org2.example.com | [2b0 01-18 09:29:46.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [77808696]Received INIT, initializing chaincode +peer1.org1.example.com | [2e6 01-18 09:29:51.83 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc421a9d000, header channel_header:"\010\001\032\006\010\212\322\201\323\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030\251U0\341\006n\346y$7\264o\305\320\211\232\\\025\312\332\032\271+?" +peer1.org1.example.com | [2e7 01-18 09:29:51.83 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +peer1.org1.example.com | [2e8 01-18 09:29:51.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer0.org1.example.com | [2de 01-18 09:29:51.41 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer1.org2.example.com | [2b1 01-18 09:29:46.52 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC +peer0.org2.example.com | [2dd 01-18 09:29:52.29 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421f531a0 +orderer.example.com | 2018-01-18 09:29:43.860 UTC [policies] ProposePolicy -> DEBU 1f4 Proposed new policy Writers for Org2MSP +peer1.org1.example.com | [2e9 01-18 09:29:51.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +peer0.org1.example.com | [2df 01-18 09:29:51.41 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org2.example.com | [2de 01-18 09:29:52.29 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\212\322\201\323\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030\251U0\341\006n\346y$7\264o\305\320\211\232\\\025\312\332\032\271+?" +peer1.org2.example.com | [2b2 01-18 09:29:46.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [77808696]Init get response status: 200 +peer1.org1.example.com | [2ea 01-18 09:29:51.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +orderer.example.com | 2018-01-18 09:29:43.860 UTC [policies] ProposePolicy -> DEBU 1f5 Proposed new policy Admins for Org2MSP +peer0.org1.example.com | [2e0 01-18 09:29:51.41 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 685c3e542c5c7e71cc8ac51ff9728a4a798d38a5cb22c31b73b7dddaa87ffa02} +peer0.org2.example.com | [2df 01-18 09:29:52.29 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer1.org2.example.com | [2b3 01-18 09:29:46.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [77808696]Init succeeded. Sending COMPLETED +peer1.org1.example.com | [2eb 01-18 09:29:51.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +orderer.example.com | 2018-01-18 09:29:43.860 UTC [policies] ProposePolicy -> DEBU 1f6 Proposed new policy Readers for Org2MSP +peer0.org2.example.com | [2e0 01-18 09:29:52.29 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [2e1 01-18 09:29:51.41 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [2e2 01-18 09:29:51.41 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | 2018-01-18 09:29:43.860 UTC [common/config] validateMSP -> DEBU 1f7 Setting up MSP for org OrdererOrg +peer1.org1.example.com | [2ec 01-18 09:29:51.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer1.org2.example.com | [2b4 01-18 09:29:46.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [77808696]Move state message COMPLETED +peer0.org1.example.com | [2e3 01-18 09:29:51.41 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc421a56000, header channel_header:"\010\001\032\006\010\212\322\201\323\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030\251U0\341\006n\346y$7\264o\305\320\211\232\\\025\312\332\032\271+?" +orderer.example.com | 2018-01-18 09:29:43.860 UTC [msp] NewBccspMsp -> DEBU 1f8 Creating BCCSP-based MSP instance +peer0.org2.example.com | [2e1 01-18 09:29:52.30 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 685c3e542c5c7e71cc8ac51ff9728a4a798d38a5cb22c31b73b7dddaa87ffa02} +peer1.org1.example.com | [2ed 01-18 09:29:51.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer1.org2.example.com | [2b5 01-18 09:29:46.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [77808696]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [2e4 01-18 09:29:51.41 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +peer0.org2.example.com | [2e2 01-18 09:29:52.30 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org1.example.com | [2ee 01-18 09:29:51.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer1.org2.example.com | [2b6 01-18 09:29:46.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [77808696]send state message COMPLETED +orderer.example.com | 2018-01-18 09:29:43.861 UTC [msp] Setup -> DEBU 1f9 Setting up MSP instance OrdererMSP +peer0.org1.example.com | [2e5 01-18 09:29:51.41 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer0.org2.example.com | [2e3 01-18 09:29:52.30 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org1.example.com | [2ef 01-18 09:29:51.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +peer1.org2.example.com | [2b7 01-18 09:29:46.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [77808696]Received message COMPLETED from shim +orderer.example.com | 2018-01-18 09:29:43.861 UTC [msp/identity] newIdentity -> DEBU 1fa Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [2e6 01-18 09:29:51.41 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +peer0.org2.example.com | [2e4 01-18 09:29:52.30 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc4214fe000, header channel_header:"\010\001\032\006\010\212\322\201\323\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030\251U0\341\006n\346y$7\264o\305\320\211\232\\\025\312\332\032\271+?" +peer1.org1.example.com | [2f0 01-18 09:29:51.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +peer1.org2.example.com | [2b8 01-18 09:29:46.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [77808696]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL +peer0.org1.example.com | [2e7 01-18 09:29:51.41 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +peer1.org1.example.com | [2f1 01-18 09:29:51.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +peer1.org2.example.com | [2b9 01-18 09:29:46.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [77808696-d59f-4e9e-8376-9d921afe6af4]HandleMessage- COMPLETED. Notify +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org2.example.com | [2e5 01-18 09:29:52.30 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +peer1.org1.example.com | [2f2 01-18 09:29:51.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +peer1.org2.example.com | [2ba 01-18 09:29:46.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:77808696-d59f-4e9e-8376-9d921afe6af4 +peer0.org2.example.com | [2e6 01-18 09:29:52.30 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer1.org1.example.com | [2f3 01-18 09:29:51.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer0.org1.example.com | [2e8 01-18 09:29:51.41 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +peer1.org2.example.com | [2bb 01-18 09:29:46.52 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [2e7 01-18 09:29:52.30 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer1.org1.example.com | [2f4 01-18 09:29:51.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +orderer.example.com | cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV +peer0.org1.example.com | [2e9 01-18 09:29:51.41 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer1.org2.example.com | [2bc 01-18 09:29:46.52 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/chaincode/qscc) deployed +peer1.org1.example.com | [2f5 01-18 09:29:51.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer0.org1.example.com | [2ea 01-18 09:29:51.41 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +peer0.org2.example.com | [2d9 01-18 09:29:52.28 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [1], peers number [1] +peer1.org1.example.com | [2f6 01-18 09:29:51.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer1.org2.example.com | [2bd 01-18 09:29:46.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [f6eccb23-5334-45e4-937f-39722337bf34] +peer0.org1.example.com | [2eb 01-18 09:29:51.41 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer0.org2.example.com | [2e8 01-18 09:29:52.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +peer1.org1.example.com | [2f7 01-18 09:29:51.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +peer0.org2.example.com | [2ea 01-18 09:29:52.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +peer0.org1.example.com | [2ec 01-18 09:29:51.41 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +peer1.org1.example.com | [2f8 01-18 09:29:51.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW +peer0.org1.example.com | [2ee 01-18 09:29:51.41 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [2], peers number [0] +peer0.org2.example.com | [2eb 01-18 09:29:52.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +peer1.org1.example.com | [2f9 01-18 09:29:51.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +peer1.org2.example.com | [2be 01-18 09:29:46.52 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Entry +orderer.example.com | gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w +peer0.org1.example.com | [2ed 01-18 09:29:51.41 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +peer0.org2.example.com | [2ec 01-18 09:29:52.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer1.org1.example.com | [2fa 01-18 09:29:51.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +peer0.org1.example.com | [2ef 01-18 09:29:51.42 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +peer1.org2.example.com | [2bf 01-18 09:29:46.52 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [0] +peer0.org2.example.com | [2ed 01-18 09:29:52.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer1.org1.example.com | [2fb 01-18 09:29:51.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK +peer0.org1.example.com | [2f0 01-18 09:29:51.42 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +peer1.org2.example.com | [2c0 01-18 09:29:46.52 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Entry +peer0.org2.example.com | [2ee 01-18 09:29:52.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs +peer0.org1.example.com | [2f1 01-18 09:29:51.42 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer1.org2.example.com | [2c1 01-18 09:29:46.52 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer1.org1.example.com | [2fc 01-18 09:29:51.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer1.org2.example.com | [2c2 01-18 09:29:46.52 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer1.org1.example.com | [2fd 01-18 09:29:51.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org2.example.com | [2ef 01-18 09:29:52.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +peer0.org1.example.com | [2f2 01-18 09:29:51.42 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= +peer1.org2.example.com | [2c3 01-18 09:29:46.52 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Exit +peer1.org2.example.com | [2c4 01-18 09:29:46.52 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Exit +peer1.org2.example.com | [2c5 01-18 09:29:46.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [043912c3]Transaction completed. Sending COMPLETED +peer1.org2.example.com | [2c6 01-18 09:29:46.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [043912c3]Move state message COMPLETED +peer1.org2.example.com | [2c7 01-18 09:29:46.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [043912c3]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [2c8 01-18 09:29:46.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [043912c3]send state message COMPLETED +peer1.org2.example.com | [2c9 01-18 09:29:46.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [043912c3]Received message COMPLETED from shim +peer1.org2.example.com | [2ca 01-18 09:29:46.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [043912c3]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [2f0 01-18 09:29:52.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +peer1.org2.example.com | [2cb 01-18 09:29:46.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [043912c3b5d8fc0cf9f02a6d45d0c881515590c05d5edf9412776bd6654d476f]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [2cc 01-18 09:29:46.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:043912c3b5d8fc0cf9f02a6d45d0c881515590c05d5edf9412776bd6654d476f +peer1.org2.example.com | [2cd 01-18 09:29:46.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | -----END CERTIFICATE----- +peer0.org2.example.com | [2f1 01-18 09:29:52.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer0.org1.example.com | [2f3 01-18 09:29:51.42 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer1.org2.example.com | [2ce 01-18 09:29:46.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org2.example.com | [2f2 01-18 09:29:52.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer0.org2.example.com | [2f3 01-18 09:29:52.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org2.example.com | [2f4 01-18 09:29:52.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +orderer.example.com | 2018-01-18 09:29:43.862 UTC [msp/identity] newIdentity -> DEBU 1fb Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [2cf 01-18 09:29:46.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org1.example.com | [2f4 01-18 09:29:51.42 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer1.org1.example.com | [2fe 01-18 09:29:51.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +peer1.org1.example.com | [2ff 01-18 09:29:51.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +peer1.org1.example.com | [300 01-18 09:29:51.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer1.org1.example.com | [301 01-18 09:29:51.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer1.org1.example.com | [302 01-18 09:29:51.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer1.org1.example.com | [303 01-18 09:29:51.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer1.org1.example.com | [304 01-18 09:29:51.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer1.org1.example.com | [305 01-18 09:29:51.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer1.org1.example.com | [306 01-18 09:29:51.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +peer1.org1.example.com | [307 01-18 09:29:51.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +peer1.org1.example.com | [308 01-18 09:29:51.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +peer1.org1.example.com | [309 01-18 09:29:51.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +peer1.org1.example.com | [30a 01-18 09:29:51.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer1.org1.example.com | [30b 01-18 09:29:51.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer1.org1.example.com | [30c 01-18 09:29:51.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer1.org1.example.com | [30d 01-18 09:29:51.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer1.org1.example.com | [30e 01-18 09:29:51.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer1.org1.example.com | [30f 01-18 09:29:51.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +peer0.org2.example.com | [2f5 01-18 09:29:52.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer1.org2.example.com | [2d0 01-18 09:29:46.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer1.org2.example.com | [2d1 01-18 09:29:52.36 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer1.org2.example.com | [2d2 01-18 09:29:52.36 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +peer1.org2.example.com | [2d3 01-18 09:29:52.37 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer1.org2.example.com | [2d4 01-18 09:29:52.37 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421b9e660 +peer1.org1.example.com | [310 01-18 09:29:51.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +peer1.org1.example.com | [311 01-18 09:29:51.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer1.org1.example.com | [312 01-18 09:29:51.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer1.org1.example.com | [313 01-18 09:29:51.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer1.org1.example.com | [314 01-18 09:29:51.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer1.org1.example.com | [315 01-18 09:29:51.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer1.org1.example.com | [316 01-18 09:29:51.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +peer1.org1.example.com | [317 01-18 09:29:51.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +peer0.org1.example.com | [2f5 01-18 09:29:51.42 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer0.org1.example.com | [2f6 01-18 09:29:51.42 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +peer0.org1.example.com | [2f7 01-18 09:29:51.42 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +peer0.org1.example.com | [2f8 01-18 09:29:51.42 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +peer0.org1.example.com | [2f9 01-18 09:29:51.42 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org1.example.com | [2fa 01-18 09:29:51.42 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer0.org1.example.com | [2fb 01-18 09:29:51.43 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer0.org1.example.com | [2fc 01-18 09:29:51.43 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +peer0.org1.example.com | [2fd 01-18 09:29:51.43 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +peer0.org2.example.com | [2f6 01-18 09:29:52.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer1.org2.example.com | [2d5 01-18 09:29:52.37 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\212\322\201\323\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030\251U0\341\006n\346y$7\264o\305\320\211\232\\\025\312\332\032\271+?" +peer1.org1.example.com | [318 01-18 09:29:51.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +peer0.org2.example.com | [2f7 01-18 09:29:52.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +peer0.org1.example.com | [2fe 01-18 09:29:51.43 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +peer1.org2.example.com | [2d6 01-18 09:29:52.38 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer1.org2.example.com | [2d7 01-18 09:29:52.38 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org1.example.com | [319 01-18 09:29:51.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer1.org1.example.com | [31a 01-18 09:29:51.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer1.org1.example.com | [31b 01-18 09:29:51.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer1.org1.example.com | [31c 01-18 09:29:51.86 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org1.example.com | [31d 01-18 09:29:51.86 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org1.example.com | [31e 01-18 09:29:51.86 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org2.example.com | [2f8 01-18 09:29:52.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +peer0.org1.example.com | [2ff 01-18 09:29:51.43 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [31f 01-18 09:29:51.86 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org2.example.com | [2f9 01-18 09:29:52.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +peer0.org2.example.com | [2fa 01-18 09:29:52.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer0.org2.example.com | [2fb 01-18 09:29:52.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer0.org2.example.com | [2fc 01-18 09:29:52.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer1.org2.example.com | [2d8 01-18 09:29:52.38 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 685c3e542c5c7e71cc8ac51ff9728a4a798d38a5cb22c31b73b7dddaa87ffa02} +peer1.org2.example.com | [2d9 01-18 09:29:52.38 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org2.example.com | [2da 01-18 09:29:52.38 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [300 01-18 09:29:51.43 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org1.example.com | [301 01-18 09:29:51.43 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer0.org1.example.com | [302 01-18 09:29:51.43 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer0.org1.example.com | [303 01-18 09:29:51.43 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer0.org1.example.com | [304 01-18 09:29:51.43 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +peer0.org1.example.com | [305 01-18 09:29:51.43 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +peer1.org1.example.com | [320 01-18 09:29:51.86 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org1.example.com | [321 01-18 09:29:51.86 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [322 01-18 09:29:51.86 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +peer1.org1.example.com | [323 01-18 09:29:51.86 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +peer1.org1.example.com | [324 01-18 09:29:51.86 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +peer1.org1.example.com | [325 01-18 09:29:51.86 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +peer1.org1.example.com | [326 01-18 09:29:51.86 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:43.863 UTC [msp/identity] newIdentity -> DEBU 1fc Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:43.864 UTC [msp] Validate -> DEBU 1fd MSP OrdererMSP validating identity +orderer.example.com | 2018-01-18 09:29:43.865 UTC [common/config] Validate -> DEBU 1fe Anchor peers for org Org1MSP are +orderer.example.com | 2018-01-18 09:29:43.865 UTC [common/config] validateMSP -> DEBU 1ff Setting up MSP for org Org1MSP +orderer.example.com | 2018-01-18 09:29:43.865 UTC [msp] NewBccspMsp -> DEBU 200 Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-18 09:29:43.865 UTC [msp] Setup -> DEBU 201 Setting up MSP instance Org1MSP +orderer.example.com | 2018-01-18 09:29:43.866 UTC [msp/identity] newIdentity -> DEBU 202 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +orderer.example.com | BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf +orderer.example.com | db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx +orderer.example.com | JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi +orderer.example.com | /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ +orderer.example.com | H7n8z1pj5w== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:43.866 UTC [msp/identity] newIdentity -> DEBU 203 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:43.867 UTC [msp/identity] newIdentity -> DEBU 204 Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org2.example.com | [2fd 01-18 09:29:52.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +peer0.org2.example.com | [2fe 01-18 09:29:52.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +peer0.org2.example.com | [2ff 01-18 09:29:52.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +peer0.org2.example.com | [300 01-18 09:29:52.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +peer0.org2.example.com | [2e9 01-18 09:29:52.31 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [2], peers number [1] +peer0.org2.example.com | [301 01-18 09:29:52.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer0.org2.example.com | [302 01-18 09:29:52.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer0.org2.example.com | [303 01-18 09:29:52.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer0.org2.example.com | [304 01-18 09:29:52.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer0.org2.example.com | [305 01-18 09:29:52.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +peer0.org2.example.com | [306 01-18 09:29:52.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +peer0.org2.example.com | [307 01-18 09:29:52.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +peer0.org2.example.com | [308 01-18 09:29:52.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +peer0.org2.example.com | [309 01-18 09:29:52.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer0.org2.example.com | [30a 01-18 09:29:52.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer0.org2.example.com | [30b 01-18 09:29:52.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer0.org2.example.com | [30c 01-18 09:29:52.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer0.org2.example.com | [30d 01-18 09:29:52.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer0.org2.example.com | [30e 01-18 09:29:52.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +peer0.org2.example.com | [30f 01-18 09:29:52.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +peer0.org2.example.com | [310 01-18 09:29:52.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer0.org2.example.com | [311 01-18 09:29:52.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org2.example.com | [312 01-18 09:29:52.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer0.org2.example.com | [313 01-18 09:29:52.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer0.org2.example.com | [314 01-18 09:29:52.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer0.org2.example.com | [315 01-18 09:29:52.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +peer0.org2.example.com | [316 01-18 09:29:52.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +peer0.org2.example.com | [317 01-18 09:29:52.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +peer0.org2.example.com | [318 01-18 09:29:52.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org2.example.com | [319 01-18 09:29:52.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer0.org2.example.com | [31a 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer0.org2.example.com | [31b 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [2], peers number [1] +peer1.org2.example.com | [2db 01-18 09:29:52.38 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc421bc6000, header channel_header:"\010\001\032\006\010\212\322\201\323\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030\251U0\341\006n\346y$7\264o\305\320\211\232\\\025\312\332\032\271+?" +peer1.org2.example.com | [2dc 01-18 09:29:52.38 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +peer1.org2.example.com | [2dd 01-18 09:29:52.38 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer1.org2.example.com | [2de 01-18 09:29:52.38 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +peer1.org2.example.com | [2df 01-18 09:29:52.38 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +peer1.org2.example.com | [2e0 01-18 09:29:52.38 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +peer1.org2.example.com | [2e1 01-18 09:29:52.38 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer1.org2.example.com | [2e2 01-18 09:29:52.38 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer1.org2.example.com | [2e3 01-18 09:29:52.38 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer0.org1.example.com | [306 01-18 09:29:51.43 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +peer0.org1.example.com | [307 01-18 09:29:51.43 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +peer0.org1.example.com | [308 01-18 09:29:51.43 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer0.org1.example.com | [309 01-18 09:29:51.43 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer0.org1.example.com | [30a 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer0.org1.example.com | [30b 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer1.org1.example.com | [327 01-18 09:29:51.86 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [30c 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:43.868 UTC [msp] Validate -> DEBU 205 MSP Org1MSP validating identity +orderer.example.com | 2018-01-18 09:29:43.872 UTC [common/config] Validate -> DEBU 206 Anchor peers for org Org2MSP are +orderer.example.com | 2018-01-18 09:29:43.872 UTC [common/config] validateMSP -> DEBU 207 Setting up MSP for org Org2MSP +orderer.example.com | 2018-01-18 09:29:43.872 UTC [msp] NewBccspMsp -> DEBU 208 Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-18 09:29:43.872 UTC [msp] Setup -> DEBU 209 Setting up MSP instance Org2MSP +orderer.example.com | 2018-01-18 09:29:43.873 UTC [msp/identity] newIdentity -> DEBU 20a Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +orderer.example.com | mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 +orderer.example.com | sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ +orderer.example.com | xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv +orderer.example.com | WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk +orderer.example.com | SCjyRdD3aQ== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:43.874 UTC [msp/identity] newIdentity -> DEBU 20b Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +peer0.org2.example.com | [31c 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org2.example.com | [31d 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org2.example.com | [31e 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org2.example.com | [31f 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +peer0.org2.example.com | [320 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org2.example.com | [321 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org2.example.com | [322 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [2e4 01-18 09:29:52.38 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +peer1.org1.example.com | [328 01-18 09:29:51.86 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org1.example.com | [329 01-18 09:29:51.86 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org1.example.com | [32a 01-18 09:29:51.86 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org1.example.com | [32b 01-18 09:29:51.86 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [32c 01-18 09:29:51.86 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org1.example.com | [32d 01-18 09:29:51.86 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [30d 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +peer0.org1.example.com | [30e 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer1.org2.example.com | [2e5 01-18 09:29:52.38 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +peer1.org2.example.com | [2e6 01-18 09:29:52.38 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +peer1.org2.example.com | [2e7 01-18 09:29:52.38 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +peer1.org2.example.com | [2e8 01-18 09:29:52.38 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer1.org2.example.com | [2e9 01-18 09:29:52.38 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer1.org2.example.com | [2ea 01-18 09:29:52.38 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer1.org2.example.com | [2eb 01-18 09:29:52.39 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer1.org2.example.com | [2ec 01-18 09:29:52.39 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer1.org1.example.com | [32e 01-18 09:29:51.87 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org2.example.com | [323 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org2.example.com | [324 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org2.example.com | [325 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org2.example.com | [326 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +peer0.org2.example.com | [327 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +peer0.org2.example.com | [328 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +peer0.org2.example.com | [329 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [30f 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +peer1.org2.example.com | [2ed 01-18 09:29:52.39 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +peer1.org2.example.com | [2ee 01-18 09:29:52.39 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +peer1.org2.example.com | [2ef 01-18 09:29:52.39 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +peer1.org1.example.com | [32f 01-18 09:29:51.87 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel +peer1.org1.example.com | [330 01-18 09:29:51.87 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +peer1.org1.example.com | [331 01-18 09:29:51.87 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer1.org1.example.com | [332 01-18 09:29:51.87 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer1.org1.example.com | [333 01-18 09:29:51.87 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer1.org1.example.com | [334 01-18 09:29:51.87 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org1.example.com | [310 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer0.org1.example.com | [311 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org1.example.com | [312 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer0.org1.example.com | [313 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer0.org1.example.com | [314 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +peer0.org1.example.com | [315 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +peer0.org1.example.com | [316 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +peer0.org2.example.com | [32a 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org2.example.com | [32b 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org2.example.com | [32c 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org2.example.com | [32d 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org2.example.com | [32e 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org2.example.com | [32f 01-18 09:29:52.33 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel +peer0.org2.example.com | [330 01-18 09:29:52.33 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +peer0.org2.example.com | [331 01-18 09:29:52.33 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer1.org2.example.com | [2f0 01-18 09:29:52.39 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer1.org1.example.com | [335 01-18 09:29:51.87 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +peer1.org1.example.com | [336 01-18 09:29:51.87 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer1.org1.example.com | [337 01-18 09:29:51.87 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer1.org1.example.com | [338 01-18 09:29:51.87 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer1.org1.example.com | [339 01-18 09:29:51.87 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer1.org1.example.com | [33a 01-18 09:29:51.87 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer1.org1.example.com | [33b 01-18 09:29:51.87 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [317 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +peer0.org2.example.com | [332 01-18 09:29:52.33 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer1.org1.example.com | [33c 01-18 09:29:51.87 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [318 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org1.example.com | [319 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer0.org1.example.com | [31a 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [31b 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [31c 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +peer0.org2.example.com | [333 01-18 09:29:52.33 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer1.org2.example.com | [2f1 01-18 09:29:52.39 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer0.org1.example.com | [31d 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org1.example.com | [33d 01-18 09:29:51.87 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +peer1.org2.example.com | [2f2 01-18 09:29:52.40 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer1.org2.example.com | [2f3 01-18 09:29:52.40 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +peer1.org2.example.com | [2f4 01-18 09:29:52.40 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +peer0.org2.example.com | [334 01-18 09:29:52.33 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org2.example.com | [335 01-18 09:29:52.33 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +peer0.org2.example.com | [336 01-18 09:29:52.33 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org2.example.com | [337 01-18 09:29:52.33 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [338 01-18 09:29:52.33 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +orderer.example.com | AXYxULZpXYDQXt1KaLI= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:43.874 UTC [msp/identity] newIdentity -> DEBU 20c Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +orderer.example.com | AXYxULZpXYDQXt1KaLI= +orderer.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [33e 01-18 09:29:51.87 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org2.example.com | [2f5 01-18 09:29:52.40 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer0.org1.example.com | [31e 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:43.875 UTC [msp] Validate -> DEBU 20d MSP Org2MSP validating identity +orderer.example.com | 2018-01-18 09:29:43.875 UTC [msp] Setup -> DEBU 20e Setting up the MSP manager (3 msps) +orderer.example.com | 2018-01-18 09:29:43.875 UTC [msp] Setup -> DEBU 20f MSP manager setup complete, setup 3 msps +orderer.example.com | 2018-01-18 09:29:43.875 UTC [msp] GetLocalMSP -> DEBU 210 Returning existing local MSP +peer1.org2.example.com | [2f6 01-18 09:29:52.40 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer1.org2.example.com | [2f7 01-18 09:29:52.40 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer1.org2.example.com | [2f8 01-18 09:29:52.41 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer1.org2.example.com | [2f9 01-18 09:29:52.41 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer1.org2.example.com | [2fa 01-18 09:29:52.41 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer1.org2.example.com | [2fb 01-18 09:29:52.41 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +peer1.org2.example.com | [2fc 01-18 09:29:52.41 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +peer1.org2.example.com | [2fd 01-18 09:29:52.41 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +peer0.org1.example.com | [31f 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +peer0.org1.example.com | [320 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [321 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +peer0.org1.example.com | [322 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +peer0.org1.example.com | [323 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +peer1.org1.example.com | [33f 01-18 09:29:51.87 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [340 01-18 09:29:51.87 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer1.org1.example.com | [341 01-18 09:29:51.87 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org1.example.com | [342 01-18 09:29:51.87 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org2.example.com | [339 01-18 09:29:52.33 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org2.example.com | [33a 01-18 09:29:52.33 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org2.example.com | [33b 01-18 09:29:52.33 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [33c 01-18 09:29:52.33 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org2.example.com | [33d 01-18 09:29:52.33 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [33e 01-18 09:29:52.34 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer0.org2.example.com | [33f 01-18 09:29:52.34 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org1.example.com | [324 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:43.875 UTC [msp] GetDefaultSigningIdentity -> DEBU 211 Obtaining default signing identity +peer0.org2.example.com | [340 01-18 09:29:52.34 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org2.example.com | [341 01-18 09:29:52.34 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [342 01-18 09:29:52.34 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +peer0.org2.example.com | [343 01-18 09:29:52.34 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer0.org2.example.com | [344 01-18 09:29:52.34 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer0.org2.example.com | [345 01-18 09:29:52.34 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer0.org2.example.com | [346 01-18 09:29:52.34 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer1.org1.example.com | [343 01-18 09:29:51.87 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [325 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [2fe 01-18 09:29:52.41 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +orderer.example.com | 2018-01-18 09:29:43.876 UTC [msp] GetLocalMSP -> DEBU 212 Returning existing local MSP +orderer.example.com | 2018-01-18 09:29:43.876 UTC [msp] GetDefaultSigningIdentity -> DEBU 213 Obtaining default signing identity +orderer.example.com | 2018-01-18 09:29:43.876 UTC [msp/identity] Sign -> DEBU 214 Sign: plaintext: 0AB7060A1B08011A060887D281D30522...0116551F711215A0A2EFC5888CE5FD05 +orderer.example.com | 2018-01-18 09:29:43.876 UTC [msp/identity] Sign -> DEBU 215 Sign: digest: C1171847013CB89899CA8BAEF1218DA1FF229E283947DE7DBEEBFBE18137ADF0 +orderer.example.com | 2018-01-18 09:29:43.876 UTC [msp] GetLocalMSP -> DEBU 216 Returning existing local MSP +orderer.example.com | 2018-01-18 09:29:43.877 UTC [msp] GetDefaultSigningIdentity -> DEBU 217 Obtaining default signing identity +orderer.example.com | 2018-01-18 09:29:43.877 UTC [msp] GetLocalMSP -> DEBU 218 Returning existing local MSP +peer0.org2.example.com | [347 01-18 09:29:52.34 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer1.org1.example.com | [344 01-18 09:29:51.87 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org2.example.com | [2ff 01-18 09:29:52.41 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer0.org1.example.com | [326 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:43.877 UTC [msp] GetDefaultSigningIdentity -> DEBU 219 Obtaining default signing identity +orderer.example.com | 2018-01-18 09:29:43.877 UTC [msp/identity] Sign -> DEBU 21a Sign: plaintext: 0AB3060A1708041A060887D281D30522...93617C2154C63487E6BDF84CB589381F +orderer.example.com | 2018-01-18 09:29:43.877 UTC [msp/identity] Sign -> DEBU 21b Sign: digest: B50EA34ABCD8AEFCCEF92618AE87B256A86301BCE0C14CB8837056E3E8D586BC +orderer.example.com | 2018-01-18 09:29:43.878 UTC [orderer/common/broadcast] Handle -> DEBU 21c [channel: testchainid] Broadcast is filtering message of type ORDERER_TRANSACTION +orderer.example.com | 2018-01-18 09:29:43.878 UTC [policies] GetPolicy -> DEBU 21d Returning policy Writers for evaluation +peer0.org2.example.com | [348 01-18 09:29:52.34 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org1.example.com | [345 01-18 09:29:51.87 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [346 01-18 09:29:51.87 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer1.org1.example.com | [347 01-18 09:29:51.87 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org1.example.com | [348 01-18 09:29:51.87 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org1.example.com | [349 01-18 09:29:51.87 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [327 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [300 01-18 09:29:52.41 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer1.org1.example.com | [34a 01-18 09:29:51.87 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer1.org1.example.com | [34b 01-18 09:29:51.87 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +peer1.org1.example.com | [34c 01-18 09:29:51.87 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer1.org1.example.com | [34d 01-18 09:29:51.87 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +peer1.org1.example.com | [34e 01-18 09:29:51.87 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer0.org2.example.com | [349 01-18 09:29:52.34 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [34a 01-18 09:29:52.34 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +peer0.org2.example.com | [34b 01-18 09:29:52.34 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer0.org2.example.com | [34c 01-18 09:29:52.35 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +peer0.org2.example.com | [34d 01-18 09:29:52.35 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer0.org2.example.com | [34e 01-18 09:29:52.35 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +orderer.example.com | 2018-01-18 09:29:43.878 UTC [cauthdsl] func1 -> DEBU 21e 0xc420026d28 gate 1516267783878178619 evaluation starts +orderer.example.com | 2018-01-18 09:29:43.878 UTC [cauthdsl] func2 -> DEBU 21f 0xc420026d28 signed by 0 principal evaluation starts (used [false]) +peer0.org1.example.com | [328 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org1.example.com | [34f 01-18 09:29:51.90 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +peer0.org2.example.com | [34f 01-18 09:29:52.36 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +peer1.org2.example.com | [301 01-18 09:29:52.41 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +orderer.example.com | 2018-01-18 09:29:43.878 UTC [cauthdsl] func2 -> DEBU 220 0xc420026d28 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:29:43.878 UTC [msp/identity] newIdentity -> DEBU 221 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw +peer0.org1.example.com | [329 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [32a 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org1.example.com | [350 01-18 09:29:51.92 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +peer1.org1.example.com | [351 01-18 09:29:51.92 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +peer1.org1.example.com | [352 01-18 09:29:51.92 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq +orderer.example.com | hkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz +orderer.example.com | MKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw +orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN +orderer.example.com | RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH +orderer.example.com | /4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:43.879 UTC [msp] SatisfiesPrincipal -> DEBU 222 Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | 2018-01-18 09:29:43.879 UTC [msp] Validate -> DEBU 223 MSP OrdererMSP validating identity +orderer.example.com | 2018-01-18 09:29:43.880 UTC [cauthdsl] func2 -> DEBU 224 0xc420026d28 principal matched by identity 0 +orderer.example.com | 2018-01-18 09:29:43.880 UTC [msp/identity] Verify -> DEBU 225 Verify: digest = 00000000 b5 0e a3 4a bc d8 ae fc ce f9 26 18 ae 87 b2 56 |...J......&....V| +orderer.example.com | 00000010 a8 63 01 bc e0 c1 4c b8 83 70 56 e3 e8 d5 86 bc |.c....L..pV.....| +orderer.example.com | 2018-01-18 09:29:43.880 UTC [msp/identity] Verify -> DEBU 226 Verify: sig = 00000000 30 45 02 21 00 b7 4d ae e7 de c0 7a 42 8c aa fb |0E.!..M....zB...| +orderer.example.com | 00000010 1c c8 34 20 f4 dc 17 30 c8 8f d8 cf 3b 20 ea d5 |..4 ...0....; ..| +orderer.example.com | 00000020 cb 94 ce 1b 1e 02 20 4d a8 cf db 60 ce fd 3d ca |...... M...`..=.| +orderer.example.com | 00000030 87 0a 42 4c 3e 9a 71 10 b0 ee 3f 1a 3f 40 b5 81 |..BL>.q...?.?@..| +peer0.org1.example.com | [32b 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [302 01-18 09:29:52.41 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer0.org2.example.com | [350 01-18 09:29:52.39 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +peer0.org2.example.com | [351 01-18 09:29:52.39 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +peer0.org2.example.com | [352 01-18 09:29:52.39 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +peer0.org2.example.com | [353 01-18 09:29:52.39 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +peer0.org2.example.com | [354 01-18 09:29:52.41 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU config transaction received for chain businesschannel +peer0.org2.example.com | [355 01-18 09:29:52.41 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer0.org2.example.com | [356 01-18 09:29:52.42 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Received configuration update, calling CSCC ConfigUpdate +peer0.org2.example.com | [357 01-18 09:29:52.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +orderer.example.com | 00000040 9a 87 ba 88 52 27 46 |....R'F| +peer0.org1.example.com | [32c 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [32d 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel +peer0.org1.example.com | [32e 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +peer0.org1.example.com | [32f 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer0.org1.example.com | [330 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer0.org1.example.com | [331 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer0.org1.example.com | [332 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org1.example.com | [333 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +peer0.org1.example.com | [334 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [335 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [336 01-18 09:29:51.45 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer0.org1.example.com | [337 01-18 09:29:51.45 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org1.example.com | [338 01-18 09:29:51.45 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org2.example.com | [303 01-18 09:29:52.41 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer1.org2.example.com | [304 01-18 09:29:52.41 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +peer1.org1.example.com | [353 01-18 09:29:51.92 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +peer0.org2.example.com | [358 01-18 09:29:52.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc421e42cc0), Data:(*common.BlockData)(0xc42023e420), Metadata:(*common.BlockMetadata)(0xc42023e460)}, doMVCCValidation=true +peer0.org2.example.com | [359 01-18 09:29:52.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +orderer.example.com | 2018-01-18 09:29:43.880 UTC [cauthdsl] func2 -> DEBU 227 0xc420026d28 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-18 09:29:43.880 UTC [cauthdsl] func1 -> DEBU 228 0xc420026d28 gate 1516267783878178619 evaluation succeeds +orderer.example.com | 2018-01-18 09:29:43.880 UTC [orderer/common/sigfilter] Apply -> DEBU 229 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [Writers %!s(*policies.implicitMetaPolicy=&{0xc420371d80 1 [0xc420026490]})]} +orderer.example.com | 2018-01-18 09:29:43.881 UTC [msp] GetLocalMSP -> DEBU 22a Returning existing local MSP +orderer.example.com | 2018-01-18 09:29:43.881 UTC [msp] GetDefaultSigningIdentity -> DEBU 22b Obtaining default signing identity +orderer.example.com | 2018-01-18 09:29:43.881 UTC [msp] GetLocalMSP -> DEBU 22c Returning existing local MSP +orderer.example.com | 2018-01-18 09:29:43.881 UTC [msp] GetDefaultSigningIdentity -> DEBU 22d Obtaining default signing identity +orderer.example.com | 2018-01-18 09:29:43.882 UTC [msp/identity] Sign -> DEBU 22e Sign: plaintext: 0AB7060A1B08011A060887D281D30522...41646D696E7310021A0641646D696E73 +orderer.example.com | 2018-01-18 09:29:43.882 UTC [msp/identity] Sign -> DEBU 22f Sign: digest: BA4F5A0F436FBAD5C9272CC5413A6356B56057DF8EF33F85D0E0A73BFA465BDC +orderer.example.com | 2018-01-18 09:29:43.882 UTC [common/config] NewStandardValues -> DEBU 230 Initializing protos for *config.ChannelProtos +orderer.example.com | 2018-01-18 09:29:43.882 UTC [common/config] initializeProtosStruct -> DEBU 231 Processing field: HashingAlgorithm +orderer.example.com | 2018-01-18 09:29:43.882 UTC [common/config] initializeProtosStruct -> DEBU 232 Processing field: BlockDataHashingStructure +orderer.example.com | 2018-01-18 09:29:43.883 UTC [common/config] initializeProtosStruct -> DEBU 233 Processing field: OrdererAddresses +peer1.org2.example.com | [305 01-18 09:29:52.41 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +peer1.org1.example.com | [354 01-18 09:29:51.92 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU config transaction received for chain businesschannel +peer0.org2.example.com | [35a 01-18 09:29:52.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [1] Transaction index [0] because, the transaction type is [CONFIG] +peer1.org2.example.com | [306 01-18 09:29:52.41 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer0.org1.example.com | [339 01-18 09:29:51.45 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | 2018-01-18 09:29:43.883 UTC [common/config] initializeProtosStruct -> DEBU 234 Processing field: Consortium +orderer.example.com | 2018-01-18 09:29:43.883 UTC [common/configtx] addToMap -> DEBU 235 Adding to config map: [Groups] /Channel +peer1.org1.example.com | [355 01-18 09:29:51.92 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer0.org2.example.com | [35b 01-18 09:29:52.43 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0x6c, 0xef, 0x8, 0x85, 0xb1, 0xd, 0xe7, 0xda, 0xc6, 0xd0, 0x92, 0x80, 0xa6, 0x9f, 0x76, 0x95, 0xfa, 0x31, 0xc3, 0x51, 0x60, 0x86, 0x44, 0xcf, 0xf7, 0xdc, 0x39, 0xba, 0xf0, 0x8, 0xf8, 0x13} txOffsets= +peer1.org2.example.com | [307 01-18 09:29:52.41 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer1.org2.example.com | [308 01-18 09:29:52.42 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org1.example.com | [33a 01-18 09:29:51.45 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:43.883 UTC [common/configtx] addToMap -> DEBU 236 Adding to config map: [Groups] /Channel/Application +peer1.org1.example.com | [356 01-18 09:29:51.92 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Received configuration update, calling CSCC ConfigUpdate +peer0.org2.example.com | txId= locPointer=offset=70, bytesLength=11914 +peer0.org1.example.com | [33b 01-18 09:29:51.45 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [309 01-18 09:29:52.42 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer1.org1.example.com | [357 01-18 09:29:51.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer1.org1.example.com | [358 01-18 09:29:51.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc42166bf00), Data:(*common.BlockData)(0xc4219e3c00), Metadata:(*common.BlockMetadata)(0xc4219e3c40)}, doMVCCValidation=true +peer1.org1.example.com | [359 01-18 09:29:51.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +peer1.org1.example.com | [35a 01-18 09:29:51.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [1] Transaction index [0] because, the transaction type is [CONFIG] +peer0.org2.example.com | ] +peer0.org2.example.com | [35c 01-18 09:29:52.43 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12005, bytesLength=11914] for tx ID: [] to index +peer0.org2.example.com | [35d 01-18 09:29:52.43 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12005, bytesLength=11914] for tx number:[0] ID: [] to blockNumTranNum index +peer0.org2.example.com | [35e 01-18 09:29:52.43 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[25669], isChainEmpty=[false], lastBlockNumber=[1] +peer0.org2.example.com | [35f 01-18 09:29:52.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [1] with 1 transaction(s) +peer0.org2.example.com | [360 01-18 09:29:52.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +peer0.org2.example.com | [361 01-18 09:29:52.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +peer1.org2.example.com | [30a 01-18 09:29:52.42 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer0.org1.example.com | [33c 01-18 09:29:51.46 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer0.org1.example.com | [33d 01-18 09:29:51.46 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org1.example.com | [33e 01-18 09:29:51.46 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [33f 01-18 09:29:51.46 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [340 01-18 09:29:51.46 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +peer0.org1.example.com | [341 01-18 09:29:51.46 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer0.org1.example.com | [342 01-18 09:29:51.46 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer0.org1.example.com | [343 01-18 09:29:51.47 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer1.org1.example.com | [35b 01-18 09:29:51.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0x6c, 0xef, 0x8, 0x85, 0xb1, 0xd, 0xe7, 0xda, 0xc6, 0xd0, 0x92, 0x80, 0xa6, 0x9f, 0x76, 0x95, 0xfa, 0x31, 0xc3, 0x51, 0x60, 0x86, 0x44, 0xcf, 0xf7, 0xdc, 0x39, 0xba, 0xf0, 0x8, 0xf8, 0x13} txOffsets= +peer1.org1.example.com | txId= locPointer=offset=70, bytesLength=11914 +peer1.org1.example.com | ] +peer1.org1.example.com | [35c 01-18 09:29:51.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12005, bytesLength=11914] for tx ID: [] to index +peer1.org1.example.com | [35d 01-18 09:29:51.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12005, bytesLength=11914] for tx number:[0] ID: [] to blockNumTranNum index +peer1.org1.example.com | [35e 01-18 09:29:51.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[25669], isChainEmpty=[false], lastBlockNumber=[1] +peer1.org1.example.com | [35f 01-18 09:29:51.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [1] with 1 transaction(s) +peer1.org1.example.com | [360 01-18 09:29:51.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +peer1.org1.example.com | [361 01-18 09:29:51.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +peer1.org2.example.com | [30b 01-18 09:29:52.42 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +peer1.org2.example.com | [30c 01-18 09:29:52.42 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +orderer.example.com | 2018-01-18 09:29:43.883 UTC [common/configtx] addToMap -> DEBU 237 Adding to config map: [Groups] /Channel/Application/Org2MSP +peer1.org1.example.com | [362 01-18 09:29:51.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +peer1.org1.example.com | [363 01-18 09:29:51.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [1] with [1] transactions +peer1.org1.example.com | [364 01-18 09:29:51.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +peer1.org1.example.com | [365 01-18 09:29:51.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [1] +peer1.org1.example.com | [366 01-18 09:29:51.93 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer1.org1.example.com | [367 01-18 09:29:51.93 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [1] +peer1.org1.example.com | [368 01-18 09:29:51.93 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +peer1.org1.example.com | [369 01-18 09:29:51.93 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer1.org1.example.com | [36a 01-18 09:29:51.93 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer1.org1.example.com | [36b 01-18 09:29:51.93 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +peer1.org1.example.com | [36c 01-18 09:29:51.93 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +peer1.org1.example.com | [36d 01-18 09:29:51.93 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer1.org1.example.com | [36e 01-18 09:29:51.93 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +peer1.org1.example.com | [36f 01-18 09:29:51.93 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer1.org1.example.com | [370 01-18 09:29:51.93 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc42186b0b0 +peer1.org1.example.com | [371 01-18 09:29:51.93 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\215\322\201\323\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030'\320Q\024\221m\341A)\315\367\334T\374\242\205n\201\234\262\265\275J\264" +peer1.org1.example.com | [372 01-18 09:29:51.93 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer1.org1.example.com | [373 01-18 09:29:51.93 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org1.example.com | [374 01-18 09:29:51.93 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 685c3e542c5c7e71cc8ac51ff9728a4a798d38a5cb22c31b73b7dddaa87ffa02} +peer1.org1.example.com | [375 01-18 09:29:51.93 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org1.example.com | [376 01-18 09:29:51.93 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org1.example.com | [377 01-18 09:29:51.93 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc421427000, header channel_header:"\010\001\032\006\010\215\322\201\323\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030'\320Q\024\221m\341A)\315\367\334T\374\242\205n\201\234\262\265\275J\264" +peer1.org1.example.com | [378 01-18 09:29:51.93 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +peer1.org1.example.com | [379 01-18 09:29:51.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer1.org1.example.com | [37a 01-18 09:29:51.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +peer1.org1.example.com | [37b 01-18 09:29:51.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +peer1.org1.example.com | [37c 01-18 09:29:51.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +peer1.org1.example.com | [37d 01-18 09:29:51.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer1.org1.example.com | [37e 01-18 09:29:51.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer1.org1.example.com | [37f 01-18 09:29:51.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer1.org1.example.com | [380 01-18 09:29:51.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +peer0.org2.example.com | [362 01-18 09:29:52.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +peer0.org2.example.com | [363 01-18 09:29:52.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [1] with [1] transactions +peer0.org2.example.com | [364 01-18 09:29:52.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +peer0.org2.example.com | [365 01-18 09:29:52.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [1] +peer0.org2.example.com | [366 01-18 09:29:52.44 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer0.org2.example.com | [367 01-18 09:29:52.44 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [1] +peer0.org2.example.com | [368 01-18 09:29:52.44 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +peer0.org2.example.com | [369 01-18 09:29:52.44 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer0.org1.example.com | [344 01-18 09:29:51.47 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer0.org1.example.com | [345 01-18 09:29:51.47 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer0.org1.example.com | [346 01-18 09:29:51.47 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [347 01-18 09:29:51.47 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [348 01-18 09:29:51.47 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +peer0.org1.example.com | [349 01-18 09:29:51.47 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer0.org1.example.com | [34a 01-18 09:29:51.48 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +peer0.org1.example.com | [34b 01-18 09:29:51.48 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer1.org2.example.com | [30d 01-18 09:29:52.42 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +peer1.org1.example.com | [381 01-18 09:29:51.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +peer1.org1.example.com | [382 01-18 09:29:51.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +peer0.org2.example.com | [36a 01-18 09:29:52.44 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +orderer.example.com | 2018-01-18 09:29:43.883 UTC [common/configtx] addToMap -> DEBU 238 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +peer0.org1.example.com | [34c 01-18 09:29:51.49 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer0.org1.example.com | [34d 01-18 09:29:51.50 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +peer0.org1.example.com | [34e 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +peer0.org1.example.com | [34f 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +peer0.org1.example.com | [350 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +peer0.org1.example.com | [351 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +peer0.org1.example.com | [352 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU config transaction received for chain businesschannel +peer0.org1.example.com | [353 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer0.org1.example.com | [354 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Received configuration update, calling CSCC ConfigUpdate +peer0.org1.example.com | [355 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer1.org2.example.com | [30e 01-18 09:29:52.43 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer1.org2.example.com | [30f 01-18 09:29:52.43 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer1.org2.example.com | [310 01-18 09:29:52.43 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer1.org2.example.com | [311 01-18 09:29:52.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [312 01-18 09:29:52.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [313 01-18 09:29:52.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [314 01-18 09:29:52.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +peer1.org2.example.com | [315 01-18 09:29:52.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [316 01-18 09:29:52.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [317 01-18 09:29:52.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [318 01-18 09:29:52.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +peer1.org2.example.com | [319 01-18 09:29:52.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +peer1.org2.example.com | [31a 01-18 09:29:52.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +peer1.org2.example.com | [31b 01-18 09:29:52.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [31c 01-18 09:29:52.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [31d 01-18 09:29:52.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [31e 01-18 09:29:52.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [31f 01-18 09:29:52.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [320 01-18 09:29:52.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org1.example.com | [383 01-18 09:29:51.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +peer0.org2.example.com | [36b 01-18 09:29:52.44 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +peer0.org2.example.com | [36c 01-18 09:29:52.44 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +peer0.org1.example.com | [356 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc4219cc0c0), Data:(*common.BlockData)(0xc42198de80), Metadata:(*common.BlockMetadata)(0xc42198dec0)}, doMVCCValidation=true +orderer.example.com | 2018-01-18 09:29:43.884 UTC [common/configtx] addToMap -> DEBU 239 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer0.org2.example.com | [36d 01-18 09:29:52.44 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer1.org1.example.com | [384 01-18 09:29:51.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer1.org1.example.com | [385 01-18 09:29:51.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer1.org1.example.com | [386 01-18 09:29:51.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer1.org1.example.com | [387 01-18 09:29:51.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer1.org1.example.com | [388 01-18 09:29:51.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer1.org1.example.com | [389 01-18 09:29:51.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +peer1.org2.example.com | [321 01-18 09:29:52.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [357 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +peer0.org2.example.com | [36e 01-18 09:29:52.44 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +peer1.org1.example.com | [38a 01-18 09:29:51.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers +peer1.org2.example.com | [322 01-18 09:29:52.45 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [323 01-18 09:29:52.45 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [324 01-18 09:29:52.45 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel +peer1.org2.example.com | [325 01-18 09:29:52.45 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +peer1.org2.example.com | [326 01-18 09:29:52.45 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer1.org2.example.com | [327 01-18 09:29:52.45 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer0.org1.example.com | [358 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [1] Transaction index [0] because, the transaction type is [CONFIG] +peer0.org2.example.com | [36f 01-18 09:29:52.44 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer0.org2.example.com | [370 01-18 09:29:52.44 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421a10840 +peer1.org1.example.com | [38b 01-18 09:29:51.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +peer1.org1.example.com | [38c 01-18 09:29:51.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer1.org1.example.com | [38d 01-18 09:29:51.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer1.org1.example.com | [38e 01-18 09:29:51.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer1.org1.example.com | [38f 01-18 09:29:51.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +peer1.org1.example.com | [390 01-18 09:29:51.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +peer1.org1.example.com | [391 01-18 09:29:51.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +peer1.org2.example.com | [328 01-18 09:29:52.45 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer1.org2.example.com | [329 01-18 09:29:52.45 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer1.org2.example.com | [32a 01-18 09:29:52.45 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +peer1.org2.example.com | [32b 01-18 09:29:52.45 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org2.example.com | [32c 01-18 09:29:52.45 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [32d 01-18 09:29:52.45 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer1.org2.example.com | [32e 01-18 09:29:52.45 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org1.example.com | [359 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0x6c, 0xef, 0x8, 0x85, 0xb1, 0xd, 0xe7, 0xda, 0xc6, 0xd0, 0x92, 0x80, 0xa6, 0x9f, 0x76, 0x95, 0xfa, 0x31, 0xc3, 0x51, 0x60, 0x86, 0x44, 0xcf, 0xf7, 0xdc, 0x39, 0xba, 0xf0, 0x8, 0xf8, 0x13} txOffsets= +peer0.org2.example.com | [371 01-18 09:29:52.44 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\215\322\201\323\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030'\320Q\024\221m\341A)\315\367\334T\374\242\205n\201\234\262\265\275J\264" +peer0.org2.example.com | [372 01-18 09:29:52.44 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer0.org2.example.com | [373 01-18 09:29:52.44 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org2.example.com | [374 01-18 09:29:52.44 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 685c3e542c5c7e71cc8ac51ff9728a4a798d38a5cb22c31b73b7dddaa87ffa02} +peer0.org2.example.com | [375 01-18 09:29:52.44 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org2.example.com | [376 01-18 09:29:52.45 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org2.example.com | [377 01-18 09:29:52.45 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc421d4d000, header channel_header:"\010\001\032\006\010\215\322\201\323\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030'\320Q\024\221m\341A)\315\367\334T\374\242\205n\201\234\262\265\275J\264" +peer0.org2.example.com | [378 01-18 09:29:52.45 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +peer0.org2.example.com | [379 01-18 09:29:52.45 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer0.org2.example.com | [37a 01-18 09:29:52.45 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +peer0.org2.example.com | [37b 01-18 09:29:52.45 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +peer0.org2.example.com | [37c 01-18 09:29:52.45 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +peer0.org2.example.com | [37d 01-18 09:29:52.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer0.org2.example.com | [37e 01-18 09:29:52.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer0.org2.example.com | [37f 01-18 09:29:52.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer0.org2.example.com | [380 01-18 09:29:52.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +peer1.org1.example.com | [392 01-18 09:29:51.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer1.org2.example.com | [32f 01-18 09:29:52.46 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | txId= locPointer=offset=70, bytesLength=11914 +peer0.org1.example.com | ] +peer0.org1.example.com | [35a 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12005, bytesLength=11914] for tx ID: [] to index +peer0.org1.example.com | [35b 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12005, bytesLength=11914] for tx number:[0] ID: [] to blockNumTranNum index +peer0.org1.example.com | [35c 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[25669], isChainEmpty=[false], lastBlockNumber=[1] +peer0.org2.example.com | [381 01-18 09:29:52.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +peer0.org2.example.com | [382 01-18 09:29:52.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +peer1.org1.example.com | [393 01-18 09:29:51.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org1.example.com | [35d 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [1] with 1 transaction(s) +orderer.example.com | 2018-01-18 09:29:43.884 UTC [common/configtx] addToMap -> DEBU 23a Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer1.org2.example.com | [330 01-18 09:29:52.46 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [383 01-18 09:29:52.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +peer1.org2.example.com | [331 01-18 09:29:52.46 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [35e 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +peer0.org2.example.com | [384 01-18 09:29:52.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +orderer.example.com | 2018-01-18 09:29:43.884 UTC [common/configtx] addToMap -> DEBU 23b Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer1.org1.example.com | [394 01-18 09:29:51.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer1.org1.example.com | [395 01-18 09:29:51.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer1.org1.example.com | [396 01-18 09:29:51.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer1.org1.example.com | [397 01-18 09:29:51.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer1.org1.example.com | [398 01-18 09:29:51.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +peer1.org1.example.com | [399 01-18 09:29:51.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +peer1.org1.example.com | [39a 01-18 09:29:51.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +peer1.org2.example.com | [332 01-18 09:29:52.46 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [333 01-18 09:29:52.46 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer1.org2.example.com | [334 01-18 09:29:52.46 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org2.example.com | [335 01-18 09:29:52.46 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org2.example.com | [336 01-18 09:29:52.46 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [337 01-18 09:29:52.46 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +peer1.org2.example.com | [338 01-18 09:29:52.46 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer1.org2.example.com | [339 01-18 09:29:52.46 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer1.org2.example.com | [33a 01-18 09:29:52.46 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer1.org2.example.com | [33b 01-18 09:29:52.46 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer1.org2.example.com | [33c 01-18 09:29:52.46 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer1.org2.example.com | [33d 01-18 09:29:52.46 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org2.example.com | [33e 01-18 09:29:52.46 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [33f 01-18 09:29:52.46 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +peer1.org2.example.com | [340 01-18 09:29:52.46 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer1.org2.example.com | [341 01-18 09:29:52.46 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +peer1.org2.example.com | [342 01-18 09:29:52.46 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer1.org2.example.com | [343 01-18 09:29:52.46 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer1.org2.example.com | [344 01-18 09:29:52.49 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +peer1.org2.example.com | [345 01-18 09:29:52.50 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +peer1.org2.example.com | [346 01-18 09:29:52.50 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +peer1.org2.example.com | [347 01-18 09:29:52.50 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +peer1.org2.example.com | [348 01-18 09:29:52.50 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +peer1.org2.example.com | [349 01-18 09:29:52.50 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU config transaction received for chain businesschannel +peer1.org2.example.com | [34a 01-18 09:29:52.50 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer0.org2.example.com | [385 01-18 09:29:52.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer1.org2.example.com | [34b 01-18 09:29:52.50 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Received configuration update, calling CSCC ConfigUpdate +peer1.org1.example.com | [39b 01-18 09:29:51.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +peer0.org1.example.com | [35f 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +orderer.example.com | 2018-01-18 09:29:43.884 UTC [common/configtx] addToMap -> DEBU 23c Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | 2018-01-18 09:29:43.884 UTC [common/configtx] addToMap -> DEBU 23d Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +orderer.example.com | 2018-01-18 09:29:43.884 UTC [common/configtx] addToMap -> DEBU 23e Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | 2018-01-18 09:29:43.885 UTC [common/configtx] addToMap -> DEBU 23f Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | 2018-01-18 09:29:43.885 UTC [common/configtx] addToMap -> DEBU 240 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | 2018-01-18 09:29:43.885 UTC [common/configtx] addToMap -> DEBU 241 Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy +orderer.example.com | 2018-01-18 09:29:43.885 UTC [common/configtx] addToMap -> DEBU 242 Adding to config map: [Groups] /Channel/Orderer +peer1.org2.example.com | [34c 01-18 09:29:52.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer1.org1.example.com | [39c 01-18 09:29:51.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer1.org1.example.com | [39d 01-18 09:29:51.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer1.org1.example.com | [39e 01-18 09:29:51.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer1.org1.example.com | [39f 01-18 09:29:51.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer1.org1.example.com | [3a0 01-18 09:29:51.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer1.org1.example.com | [3a1 01-18 09:29:51.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +peer1.org1.example.com | [3a2 01-18 09:29:51.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +peer1.org1.example.com | [3a3 01-18 09:29:51.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org2.example.com | [386 01-18 09:29:52.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer0.org1.example.com | [360 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +peer1.org2.example.com | [34d 01-18 09:29:52.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc421b962c0), Data:(*common.BlockData)(0xc421bbe2e0), Metadata:(*common.BlockMetadata)(0xc421bbe320)}, doMVCCValidation=true +peer1.org1.example.com | [3a4 01-18 09:29:51.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer1.org2.example.com | [34e 01-18 09:29:52.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +peer1.org2.example.com | [34f 01-18 09:29:52.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [1] Transaction index [0] because, the transaction type is [CONFIG] +peer1.org2.example.com | [350 01-18 09:29:52.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0x6c, 0xef, 0x8, 0x85, 0xb1, 0xd, 0xe7, 0xda, 0xc6, 0xd0, 0x92, 0x80, 0xa6, 0x9f, 0x76, 0x95, 0xfa, 0x31, 0xc3, 0x51, 0x60, 0x86, 0x44, 0xcf, 0xf7, 0xdc, 0x39, 0xba, 0xf0, 0x8, 0xf8, 0x13} txOffsets= +peer0.org1.example.com | [361 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [1] with [1] transactions +peer1.org1.example.com | [3a5 01-18 09:29:51.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer1.org1.example.com | [3a6 01-18 09:29:51.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer1.org1.example.com | [3a7 01-18 09:29:51.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer1.org1.example.com | [3a8 01-18 09:29:51.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +peer1.org1.example.com | [3a9 01-18 09:29:51.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers +peer1.org1.example.com | [3aa 01-18 09:29:51.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +peer1.org1.example.com | [3ab 01-18 09:29:51.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer0.org2.example.com | [387 01-18 09:29:52.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +orderer.example.com | 2018-01-18 09:29:43.885 UTC [common/configtx] addToMap -> DEBU 243 Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +orderer.example.com | 2018-01-18 09:29:43.886 UTC [common/configtx] addToMap -> DEBU 244 Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +orderer.example.com | 2018-01-18 09:29:43.886 UTC [common/configtx] addToMap -> DEBU 245 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer1.org2.example.com | txId= locPointer=offset=70, bytesLength=11914 +peer1.org2.example.com | ] +peer1.org2.example.com | [351 01-18 09:29:52.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12005, bytesLength=11914] for tx ID: [] to index +peer0.org1.example.com | [362 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +orderer.example.com | 2018-01-18 09:29:43.887 UTC [common/configtx] addToMap -> DEBU 246 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer0.org2.example.com | [388 01-18 09:29:52.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer1.org1.example.com | [3ac 01-18 09:29:51.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer1.org1.example.com | [3ad 01-18 09:29:51.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer1.org2.example.com | [352 01-18 09:29:52.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12005, bytesLength=11914] for tx number:[0] ID: [] to blockNumTranNum index +orderer.example.com | 2018-01-18 09:29:43.888 UTC [common/configtx] addToMap -> DEBU 247 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +orderer.example.com | 2018-01-18 09:29:43.888 UTC [common/configtx] addToMap -> DEBU 248 Adding to config map: [Values] /Channel/Orderer/BatchTimeout +orderer.example.com | 2018-01-18 09:29:43.888 UTC [common/configtx] addToMap -> DEBU 249 Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +orderer.example.com | 2018-01-18 09:29:43.889 UTC [common/configtx] addToMap -> DEBU 24a Adding to config map: [Values] /Channel/Orderer/ConsensusType +orderer.example.com | 2018-01-18 09:29:43.890 UTC [common/configtx] addToMap -> DEBU 24b Adding to config map: [Values] /Channel/Orderer/BatchSize +orderer.example.com | 2018-01-18 09:29:43.890 UTC [common/configtx] addToMap -> DEBU 24c Adding to config map: [Policy] /Channel/Orderer/Writers +orderer.example.com | 2018-01-18 09:29:43.890 UTC [common/configtx] addToMap -> DEBU 24d Adding to config map: [Policy] /Channel/Orderer/Admins +orderer.example.com | 2018-01-18 09:29:43.891 UTC [common/configtx] addToMap -> DEBU 24e Adding to config map: [Policy] /Channel/Orderer/BlockValidation +orderer.example.com | 2018-01-18 09:29:43.891 UTC [common/configtx] addToMap -> DEBU 24f Adding to config map: [Policy] /Channel/Orderer/Readers +orderer.example.com | 2018-01-18 09:29:43.892 UTC [common/configtx] addToMap -> DEBU 250 Adding to config map: [Values] /Channel/Consortium +orderer.example.com | 2018-01-18 09:29:43.892 UTC [common/configtx] addToMap -> DEBU 251 Adding to config map: [Values] /Channel/BlockDataHashingStructure +orderer.example.com | 2018-01-18 09:29:43.892 UTC [common/configtx] addToMap -> DEBU 252 Adding to config map: [Values] /Channel/OrdererAddresses +orderer.example.com | 2018-01-18 09:29:43.892 UTC [common/configtx] addToMap -> DEBU 253 Adding to config map: [Values] /Channel/HashingAlgorithm +orderer.example.com | 2018-01-18 09:29:43.892 UTC [common/configtx] addToMap -> DEBU 254 Adding to config map: [Policy] /Channel/Readers +orderer.example.com | 2018-01-18 09:29:43.892 UTC [common/configtx] addToMap -> DEBU 255 Adding to config map: [Policy] /Channel/Writers +orderer.example.com | 2018-01-18 09:29:43.892 UTC [common/configtx] addToMap -> DEBU 256 Adding to config map: [Policy] /Channel/Admins +orderer.example.com | 2018-01-18 09:29:43.892 UTC [common/configtx] processConfig -> DEBU 257 Beginning new config for channel businesschannel +orderer.example.com | 2018-01-18 09:29:43.893 UTC [common/config] NewStandardValues -> DEBU 258 Initializing protos for *config.ChannelProtos +orderer.example.com | 2018-01-18 09:29:43.893 UTC [common/config] initializeProtosStruct -> DEBU 259 Processing field: HashingAlgorithm +orderer.example.com | 2018-01-18 09:29:43.893 UTC [common/config] initializeProtosStruct -> DEBU 25a Processing field: BlockDataHashingStructure +orderer.example.com | 2018-01-18 09:29:43.894 UTC [common/config] initializeProtosStruct -> DEBU 25b Processing field: OrdererAddresses +orderer.example.com | 2018-01-18 09:29:43.894 UTC [common/config] initializeProtosStruct -> DEBU 25c Processing field: Consortium +orderer.example.com | 2018-01-18 09:29:43.894 UTC [policies] ProposePolicy -> DEBU 25d Proposed new policy Readers for Channel +orderer.example.com | 2018-01-18 09:29:43.894 UTC [policies] ProposePolicy -> DEBU 25e Proposed new policy Writers for Channel +orderer.example.com | 2018-01-18 09:29:43.894 UTC [policies] ProposePolicy -> DEBU 25f Proposed new policy Admins for Channel +orderer.example.com | 2018-01-18 09:29:43.894 UTC [common/config] NewStandardValues -> DEBU 260 Initializing protos for *config.OrdererProtos +orderer.example.com | 2018-01-18 09:29:43.894 UTC [common/config] initializeProtosStruct -> DEBU 261 Processing field: ConsensusType +orderer.example.com | 2018-01-18 09:29:43.894 UTC [common/config] initializeProtosStruct -> DEBU 262 Processing field: BatchSize +orderer.example.com | 2018-01-18 09:29:43.895 UTC [common/config] initializeProtosStruct -> DEBU 263 Processing field: BatchTimeout +orderer.example.com | 2018-01-18 09:29:43.895 UTC [common/config] initializeProtosStruct -> DEBU 264 Processing field: KafkaBrokers +orderer.example.com | 2018-01-18 09:29:43.895 UTC [common/config] initializeProtosStruct -> DEBU 265 Processing field: ChannelRestrictions +orderer.example.com | 2018-01-18 09:29:43.895 UTC [policies] ProposePolicy -> DEBU 266 Proposed new policy Writers for Orderer +orderer.example.com | 2018-01-18 09:29:43.895 UTC [policies] ProposePolicy -> DEBU 267 Proposed new policy Admins for Orderer +orderer.example.com | 2018-01-18 09:29:43.895 UTC [policies] ProposePolicy -> DEBU 268 Proposed new policy BlockValidation for Orderer +orderer.example.com | 2018-01-18 09:29:43.895 UTC [policies] ProposePolicy -> DEBU 269 Proposed new policy Readers for Orderer +orderer.example.com | 2018-01-18 09:29:43.895 UTC [common/config] NewStandardValues -> DEBU 26a Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:43.895 UTC [common/config] initializeProtosStruct -> DEBU 26b Processing field: MSP +orderer.example.com | 2018-01-18 09:29:43.895 UTC [policies] ProposePolicy -> DEBU 26c Proposed new policy Admins for OrdererOrg +orderer.example.com | 2018-01-18 09:29:43.895 UTC [policies] ProposePolicy -> DEBU 26d Proposed new policy Readers for OrdererOrg +orderer.example.com | 2018-01-18 09:29:43.895 UTC [policies] ProposePolicy -> DEBU 26e Proposed new policy Writers for OrdererOrg +orderer.example.com | 2018-01-18 09:29:43.895 UTC [common/config] NewStandardValues -> DEBU 26f Initializing protos for *struct {} +orderer.example.com | 2018-01-18 09:29:43.895 UTC [policies] ProposePolicy -> DEBU 270 Proposed new policy ChannelCreationPolicy for Application +orderer.example.com | 2018-01-18 09:29:43.895 UTC [common/config] NewStandardValues -> DEBU 271 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:43.895 UTC [common/config] initializeProtosStruct -> DEBU 272 Processing field: MSP +orderer.example.com | 2018-01-18 09:29:43.895 UTC [common/config] NewStandardValues -> DEBU 273 Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | 2018-01-18 09:29:43.896 UTC [common/config] initializeProtosStruct -> DEBU 274 Processing field: AnchorPeers +orderer.example.com | 2018-01-18 09:29:43.896 UTC [common/config] NewStandardValues -> DEBU 275 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:43.896 UTC [common/config] initializeProtosStruct -> DEBU 276 Processing field: MSP +peer0.org2.example.com | [389 01-18 09:29:52.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +peer0.org1.example.com | [363 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [1] +peer0.org1.example.com | [364 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer0.org1.example.com | [365 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [1] +peer0.org1.example.com | [366 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +peer1.org1.example.com | [3ae 01-18 09:29:51.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [3af 01-18 09:29:51.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [353 01-18 09:29:52.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[25669], isChainEmpty=[false], lastBlockNumber=[1] +peer0.org1.example.com | [367 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer0.org2.example.com | [38a 01-18 09:29:52.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers +peer0.org2.example.com | [38b 01-18 09:29:52.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +peer0.org2.example.com | [38c 01-18 09:29:52.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer0.org2.example.com | [38d 01-18 09:29:52.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer1.org2.example.com | [354 01-18 09:29:52.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [1] with 1 transaction(s) +peer0.org1.example.com | [368 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +orderer.example.com | 2018-01-18 09:29:43.896 UTC [policies] ProposePolicy -> DEBU 277 Proposed new policy Admins for Org1MSP +peer0.org2.example.com | [38e 01-18 09:29:52.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer1.org2.example.com | [355 01-18 09:29:52.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +peer1.org1.example.com | [3b0 01-18 09:29:51.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [369 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +peer0.org1.example.com | [36a 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +peer0.org1.example.com | [36b 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer0.org1.example.com | [36c 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +peer0.org1.example.com | [36d 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer0.org1.example.com | [36e 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc420162840 +peer1.org1.example.com | [3b1 01-18 09:29:51.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +peer1.org1.example.com | [3b2 01-18 09:29:51.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org2.example.com | [38f 01-18 09:29:52.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | 2018-01-18 09:29:43.896 UTC [policies] ProposePolicy -> DEBU 278 Proposed new policy Readers for Org1MSP +orderer.example.com | 2018-01-18 09:29:43.896 UTC [policies] ProposePolicy -> DEBU 279 Proposed new policy Writers for Org1MSP +orderer.example.com | 2018-01-18 09:29:43.896 UTC [common/config] NewStandardValues -> DEBU 27a Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:43.897 UTC [common/config] initializeProtosStruct -> DEBU 27b Processing field: MSP +orderer.example.com | 2018-01-18 09:29:43.897 UTC [common/config] NewStandardValues -> DEBU 27c Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | 2018-01-18 09:29:43.897 UTC [common/config] initializeProtosStruct -> DEBU 27d Processing field: AnchorPeers +peer0.org1.example.com | [36f 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\215\322\201\323\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030'\320Q\024\221m\341A)\315\367\334T\374\242\205n\201\234\262\265\275J\264" +peer1.org2.example.com | [356 01-18 09:29:52.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +peer1.org1.example.com | [3b3 01-18 09:29:51.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org1.example.com | [3b4 01-18 09:29:51.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [3b5 01-18 09:29:51.95 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org2.example.com | [390 01-18 09:29:52.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +orderer.example.com | 2018-01-18 09:29:43.897 UTC [common/config] NewStandardValues -> DEBU 27e Initializing protos for *config.OrganizationProtos +peer1.org1.example.com | [3b6 01-18 09:29:51.95 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [3b7 01-18 09:29:51.95 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org1.example.com | [3b8 01-18 09:29:51.95 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +peer1.org1.example.com | [3b9 01-18 09:29:51.95 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +peer0.org1.example.com | [370 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +orderer.example.com | 2018-01-18 09:29:43.897 UTC [common/config] initializeProtosStruct -> DEBU 27f Processing field: MSP +peer1.org2.example.com | [357 01-18 09:29:52.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +peer0.org2.example.com | [391 01-18 09:29:52.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +peer1.org1.example.com | [3ba 01-18 09:29:51.95 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +peer1.org1.example.com | [3bb 01-18 09:29:51.95 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org1.example.com | [3bc 01-18 09:29:51.95 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org1.example.com | [3bd 01-18 09:29:51.95 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [3be 01-18 09:29:51.95 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org1.example.com | [3bf 01-18 09:29:51.95 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org1.example.com | [3c0 01-18 09:29:51.95 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [3c1 01-18 09:29:51.95 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel +peer1.org2.example.com | [358 01-18 09:29:52.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [1] with [1] transactions +peer1.org2.example.com | [359 01-18 09:29:52.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +peer1.org2.example.com | [35a 01-18 09:29:52.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [1] +peer0.org1.example.com | [371 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | 2018-01-18 09:29:43.897 UTC [policies] ProposePolicy -> DEBU 280 Proposed new policy Admins for Org2MSP +peer0.org2.example.com | [392 01-18 09:29:52.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer0.org2.example.com | [393 01-18 09:29:52.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org2.example.com | [394 01-18 09:29:52.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer0.org2.example.com | [395 01-18 09:29:52.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +orderer.example.com | 2018-01-18 09:29:43.897 UTC [policies] ProposePolicy -> DEBU 281 Proposed new policy Readers for Org2MSP +peer1.org1.example.com | [3c2 01-18 09:29:51.95 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +peer1.org2.example.com | [35b 01-18 09:29:52.52 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer1.org2.example.com | [35c 01-18 09:29:52.52 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [1] +peer1.org2.example.com | [35d 01-18 09:29:52.52 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +peer1.org2.example.com | [35e 01-18 09:29:52.52 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer1.org2.example.com | [35f 01-18 09:29:52.52 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer1.org2.example.com | [360 01-18 09:29:52.52 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +peer1.org2.example.com | [361 01-18 09:29:52.52 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +peer1.org2.example.com | [362 01-18 09:29:52.52 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer1.org2.example.com | [363 01-18 09:29:52.53 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +peer1.org2.example.com | [364 01-18 09:29:52.53 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer1.org2.example.com | [365 01-18 09:29:52.53 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4218037a0 +peer0.org1.example.com | [372 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 685c3e542c5c7e71cc8ac51ff9728a4a798d38a5cb22c31b73b7dddaa87ffa02} +peer0.org1.example.com | [373 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [374 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org2.example.com | [396 01-18 09:29:52.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer1.org2.example.com | [366 01-18 09:29:52.53 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\215\322\201\323\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030'\320Q\024\221m\341A)\315\367\334T\374\242\205n\201\234\262\265\275J\264" +peer1.org2.example.com | [367 01-18 09:29:52.53 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer0.org1.example.com | [375 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc42145b000, header channel_header:"\010\001\032\006\010\215\322\201\323\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030'\320Q\024\221m\341A)\315\367\334T\374\242\205n\201\234\262\265\275J\264" +peer0.org1.example.com | [376 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +peer1.org1.example.com | [3c3 01-18 09:29:51.95 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer1.org2.example.com | [368 01-18 09:29:52.53 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | 2018-01-18 09:29:43.897 UTC [policies] ProposePolicy -> DEBU 282 Proposed new policy Writers for Org2MSP +peer0.org2.example.com | [397 01-18 09:29:52.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer0.org2.example.com | [398 01-18 09:29:52.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +peer0.org2.example.com | [399 01-18 09:29:52.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +peer0.org2.example.com | [39a 01-18 09:29:52.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +peer0.org2.example.com | [39b 01-18 09:29:52.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +peer0.org2.example.com | [39c 01-18 09:29:52.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer0.org2.example.com | [39d 01-18 09:29:52.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer0.org2.example.com | [39e 01-18 09:29:52.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer0.org2.example.com | [39f 01-18 09:29:52.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer0.org1.example.com | [377 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer0.org1.example.com | [378 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +peer0.org1.example.com | [379 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +peer0.org1.example.com | [37a 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +peer0.org1.example.com | [37b 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer1.org1.example.com | [3c4 01-18 09:29:51.95 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer1.org2.example.com | [369 01-18 09:29:52.53 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 685c3e542c5c7e71cc8ac51ff9728a4a798d38a5cb22c31b73b7dddaa87ffa02} +peer1.org2.example.com | [36a 01-18 09:29:52.53 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org2.example.com | [3a0 01-18 09:29:52.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer0.org2.example.com | [3a1 01-18 09:29:52.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +peer0.org2.example.com | [3a2 01-18 09:29:52.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +peer0.org2.example.com | [3a3 01-18 09:29:52.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer0.org2.example.com | [3a4 01-18 09:29:52.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org2.example.com | [3a5 01-18 09:29:52.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer0.org2.example.com | [3a6 01-18 09:29:52.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer0.org2.example.com | [3a7 01-18 09:29:52.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer0.org1.example.com | [37c 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer1.org1.example.com | [3c5 01-18 09:29:51.95 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer1.org2.example.com | [36b 01-18 09:29:52.53 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org2.example.com | [3a8 01-18 09:29:52.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +peer0.org1.example.com | [37d 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +orderer.example.com | 2018-01-18 09:29:43.897 UTC [common/config] validateMSP -> DEBU 283 Setting up MSP for org OrdererOrg +orderer.example.com | 2018-01-18 09:29:43.897 UTC [msp] NewBccspMsp -> DEBU 284 Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-18 09:29:43.897 UTC [msp] Setup -> DEBU 285 Setting up MSP instance OrdererMSP +peer1.org1.example.com | [3c6 01-18 09:29:51.95 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer1.org1.example.com | [3c7 01-18 09:29:51.95 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +peer1.org1.example.com | [3c8 01-18 09:29:51.95 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org1.example.com | [3c9 01-18 09:29:51.95 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | 2018-01-18 09:29:43.898 UTC [msp/identity] newIdentity -> DEBU 286 Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [36c 01-18 09:29:52.53 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc421439000, header channel_header:"\010\001\032\006\010\215\322\201\323\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030'\320Q\024\221m\341A)\315\367\334T\374\242\205n\201\234\262\265\275J\264" +peer1.org2.example.com | [36d 01-18 09:29:52.53 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +peer1.org2.example.com | [36e 01-18 09:29:52.53 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer1.org2.example.com | [36f 01-18 09:29:52.53 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +peer1.org2.example.com | [370 01-18 09:29:52.53 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +peer1.org2.example.com | [371 01-18 09:29:52.53 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +peer1.org2.example.com | [372 01-18 09:29:52.53 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer0.org1.example.com | [37e 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +peer0.org2.example.com | [3a9 01-18 09:29:52.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers +peer1.org1.example.com | [3ca 01-18 09:29:51.95 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer1.org1.example.com | [3cb 01-18 09:29:51.95 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org1.example.com | [3cc 01-18 09:29:51.95 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org1.example.com | [3cd 01-18 09:29:51.95 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [37f 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +peer0.org2.example.com | [3aa 01-18 09:29:52.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +peer0.org2.example.com | [3ab 01-18 09:29:52.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer1.org2.example.com | [373 01-18 09:29:52.53 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer1.org2.example.com | [374 01-18 09:29:52.53 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer0.org1.example.com | [380 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +peer1.org1.example.com | [3ce 01-18 09:29:51.95 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL +peer0.org2.example.com | [3ac 01-18 09:29:52.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer1.org2.example.com | [375 01-18 09:29:52.53 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +peer1.org2.example.com | [376 01-18 09:29:52.53 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +peer1.org2.example.com | [377 01-18 09:29:52.53 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +peer1.org2.example.com | [378 01-18 09:29:52.53 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +peer1.org2.example.com | [379 01-18 09:29:52.53 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer1.org2.example.com | [37a 01-18 09:29:52.53 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer1.org2.example.com | [37b 01-18 09:29:52.53 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer1.org2.example.com | [37c 01-18 09:29:52.53 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer1.org2.example.com | [37d 01-18 09:29:52.53 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer0.org1.example.com | [381 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +peer0.org1.example.com | [382 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer0.org1.example.com | [383 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer0.org1.example.com | [384 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer0.org1.example.com | [385 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer0.org1.example.com | [386 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer1.org1.example.com | [3cf 01-18 09:29:51.95 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [37e 01-18 09:29:52.53 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +peer0.org1.example.com | [387 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +peer1.org1.example.com | [3d0 01-18 09:29:51.95 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer0.org2.example.com | [3ad 01-18 09:29:52.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org2.example.com | [37f 01-18 09:29:52.53 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +peer0.org1.example.com | [388 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +peer1.org1.example.com | [3d1 01-18 09:29:51.95 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org2.example.com | [3ae 01-18 09:29:52.46 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +peer0.org1.example.com | [389 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers +peer1.org1.example.com | [3d2 01-18 09:29:51.95 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org2.example.com | [380 01-18 09:29:52.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers +peer0.org2.example.com | [3af 01-18 09:29:52.47 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV +peer0.org1.example.com | [38a 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer1.org1.example.com | [3d3 01-18 09:29:51.95 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [381 01-18 09:29:52.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org2.example.com | [3b0 01-18 09:29:52.47 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +peer0.org1.example.com | [38b 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer1.org1.example.com | [3d4 01-18 09:29:51.95 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +peer0.org2.example.com | [3b1 01-18 09:29:52.47 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +peer1.org2.example.com | [382 01-18 09:29:52.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +peer0.org1.example.com | [38c 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org2.example.com | [3b2 01-18 09:29:52.47 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +peer1.org1.example.com | [3d5 01-18 09:29:51.95 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW +peer1.org2.example.com | [383 01-18 09:29:52.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer0.org2.example.com | [3b3 01-18 09:29:52.47 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +peer0.org1.example.com | [38d 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w +peer1.org1.example.com | [3d6 01-18 09:29:51.95 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer0.org2.example.com | [3b4 01-18 09:29:52.47 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [384 01-18 09:29:52.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +peer0.org1.example.com | [38e 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +peer1.org1.example.com | [3d7 01-18 09:29:51.95 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer0.org2.example.com | [3b5 01-18 09:29:52.47 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [385 01-18 09:29:52.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +peer0.org1.example.com | [38f 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +peer1.org1.example.com | [3d8 01-18 09:29:51.95 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +orderer.example.com | AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK +peer0.org2.example.com | [3b6 01-18 09:29:52.47 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [386 01-18 09:29:52.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +peer0.org1.example.com | [390 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer0.org1.example.com | [391 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer1.org1.example.com | [3d9 01-18 09:29:51.95 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer0.org2.example.com | [3b7 01-18 09:29:52.47 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [387 01-18 09:29:52.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs +peer0.org1.example.com | [392 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer0.org1.example.com | [393 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer1.org1.example.com | [3da 01-18 09:29:51.95 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org2.example.com | [3b8 01-18 09:29:52.47 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= +peer1.org2.example.com | [388 01-18 09:29:52.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org1.example.com | [394 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer1.org1.example.com | [3db 01-18 09:29:51.95 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [3dc 01-18 09:29:51.95 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +peer0.org2.example.com | [3b9 01-18 09:29:52.47 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [395 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer1.org2.example.com | [389 01-18 09:29:52.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | 2018-01-18 09:29:43.898 UTC [msp/identity] newIdentity -> DEBU 287 Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org1.example.com | [3dd 01-18 09:29:51.95 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer0.org2.example.com | [3ba 01-18 09:29:52.47 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [396 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +peer0.org1.example.com | [397 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +peer0.org1.example.com | [398 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +peer1.org1.example.com | [3de 01-18 09:29:51.95 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +peer1.org1.example.com | [3df 01-18 09:29:51.95 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer1.org1.example.com | [3e0 01-18 09:29:51.96 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer1.org1.example.com | [3e1 01-18 09:29:51.98 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +peer1.org1.example.com | [3e2 01-18 09:29:51.98 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +peer1.org1.example.com | [3e3 01-18 09:29:51.98 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +peer1.org1.example.com | [3e4 01-18 09:29:51.98 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +peer1.org1.example.com | [3e5 01-18 09:29:51.98 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +peer1.org1.example.com | [3e6 01-18 09:29:51.99 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU config transaction received for chain businesschannel +peer0.org1.example.com | [399 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +peer0.org2.example.com | [3bb 01-18 09:29:52.47 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +peer1.org2.example.com | [38a 01-18 09:29:52.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer1.org1.example.com | [3e7 01-18 09:29:51.99 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer0.org1.example.com | [39a 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer0.org2.example.com | [3bc 01-18 09:29:52.47 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer1.org2.example.com | [38b 01-18 09:29:52.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer1.org1.example.com | [3e8 01-18 09:29:51.99 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Received configuration update, calling CSCC ConfigUpdate +peer0.org1.example.com | [39b 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer0.org2.example.com | [3bd 01-18 09:29:52.47 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer1.org2.example.com | [38c 01-18 09:29:52.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer1.org2.example.com | [38d 01-18 09:29:52.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +peer1.org2.example.com | [38e 01-18 09:29:52.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +peer1.org1.example.com | [3e9 01-18 09:29:51.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +peer0.org1.example.com | [39c 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer1.org2.example.com | [38f 01-18 09:29:52.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +peer1.org1.example.com | [3ea 01-18 09:29:51.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc42015be40), Data:(*common.BlockData)(0xc421902a20), Metadata:(*common.BlockMetadata)(0xc421902a60)}, doMVCCValidation=true +peer1.org1.example.com | [3eb 01-18 09:29:51.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +peer1.org1.example.com | [3ec 01-18 09:29:51.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [2] Transaction index [0] because, the transaction type is [CONFIG] +peer1.org1.example.com | [3ed 01-18 09:29:51.99 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0xee, 0x42, 0x73, 0x43, 0x9f, 0x78, 0x50, 0xc6, 0xa0, 0xfa, 0x48, 0x1, 0x7b, 0x5c, 0xa5, 0xf0, 0xab, 0x77, 0x31, 0x9d, 0xaf, 0x30, 0x17, 0xcc, 0x6f, 0xfc, 0x28, 0x70, 0xf7, 0xc4, 0x5f, 0xf} txOffsets= +peer1.org1.example.com | txId= locPointer=offset=70, bytesLength=11971 +peer1.org1.example.com | ] +peer1.org1.example.com | [3ee 01-18 09:29:51.99 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=25739, bytesLength=11971] for tx ID: [] to index +peer1.org1.example.com | [3ef 01-18 09:29:51.99 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=25739, bytesLength=11971] for tx number:[0] ID: [] to blockNumTranNum index +peer0.org2.example.com | [3be 01-18 09:29:52.47 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org2.example.com | [3bf 01-18 09:29:52.47 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org2.example.com | [3c0 01-18 09:29:52.47 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org2.example.com | [3c1 01-18 09:29:52.47 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel +peer0.org2.example.com | [3c2 01-18 09:29:52.47 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +peer0.org2.example.com | [3c3 01-18 09:29:52.47 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer0.org2.example.com | [3c4 01-18 09:29:52.47 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer0.org1.example.com | [39d 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer1.org2.example.com | [390 01-18 09:29:52.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +peer1.org2.example.com | [391 01-18 09:29:52.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer1.org1.example.com | [3f0 01-18 09:29:51.99 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[39461], isChainEmpty=[false], lastBlockNumber=[2] +peer0.org2.example.com | [3c5 01-18 09:29:52.47 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer0.org1.example.com | [39e 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer1.org2.example.com | [392 01-18 09:29:52.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer1.org1.example.com | [3f1 01-18 09:29:51.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [2] with 1 transaction(s) +peer0.org2.example.com | [3c6 01-18 09:29:52.47 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer0.org1.example.com | [39f 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +peer1.org1.example.com | [3f2 01-18 09:29:51.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +peer1.org2.example.com | [393 01-18 09:29:52.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer0.org2.example.com | [3c7 01-18 09:29:52.47 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +peer0.org1.example.com | [3a0 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +peer1.org2.example.com | [394 01-18 09:29:52.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer1.org1.example.com | [3f3 01-18 09:29:51.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +peer0.org2.example.com | [3c8 01-18 09:29:52.47 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +peer1.org1.example.com | [3f4 01-18 09:29:51.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +peer0.org2.example.com | [3c9 01-18 09:29:52.47 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer0.org1.example.com | [3a1 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer1.org2.example.com | [395 01-18 09:29:52.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +peer1.org1.example.com | [3f5 01-18 09:29:51.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [2] with [1] transactions +peer1.org1.example.com | [3f6 01-18 09:29:51.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +peer1.org1.example.com | [3f7 01-18 09:29:51.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [2] +peer1.org1.example.com | [3f8 01-18 09:29:51.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer1.org1.example.com | [3f9 01-18 09:29:51.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [2] +peer0.org1.example.com | [3a2 01-18 09:29:51.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer0.org2.example.com | [3ca 01-18 09:29:52.47 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer1.org1.example.com | [3fa 01-18 09:29:52.00 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +peer1.org2.example.com | [396 01-18 09:29:52.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +peer1.org2.example.com | [397 01-18 09:29:52.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +peer1.org2.example.com | [398 01-18 09:29:52.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer0.org1.example.com | [3a3 01-18 09:29:51.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer1.org1.example.com | [3fb 01-18 09:29:52.00 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer0.org2.example.com | [3cb 01-18 09:29:52.47 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer0.org2.example.com | [3cc 01-18 09:29:52.47 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer0.org1.example.com | [3a4 01-18 09:29:51.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer1.org1.example.com | [3fc 01-18 09:29:52.00 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer1.org2.example.com | [399 01-18 09:29:52.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer0.org2.example.com | [3cd 01-18 09:29:52.47 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [3a5 01-18 09:29:51.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer1.org1.example.com | [3fd 01-18 09:29:52.00 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +peer1.org1.example.com | [3fe 01-18 09:29:52.00 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +peer1.org1.example.com | [3ff 01-18 09:29:53.03 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer1.org2.example.com | [39a 01-18 09:29:52.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer1.org2.example.com | [39b 01-18 09:29:52.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer1.org2.example.com | [39c 01-18 09:29:52.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer1.org2.example.com | [39d 01-18 09:29:52.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +peer0.org1.example.com | [3a6 01-18 09:29:51.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +peer1.org1.example.com | [400 01-18 09:29:53.03 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421d51d70 +peer1.org1.example.com | [401 01-18 09:29:53.03 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org1.example.com | [402 01-18 09:29:53.03 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [3a7 01-18 09:29:51.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers +peer1.org2.example.com | [39e 01-18 09:29:52.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers +peer1.org1.example.com | [403 01-18 09:29:53.03 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +peer1.org1.example.com | [404 01-18 09:29:53.03 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org1.example.com | [405 01-18 09:29:53.03 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [3a8 01-18 09:29:51.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +peer0.org1.example.com | [3a9 01-18 09:29:51.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer1.org2.example.com | [39f 01-18 09:29:52.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +peer1.org1.example.com | [406 01-18 09:29:53.03 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421d5d400, header 0xc421d51da0 +peer0.org2.example.com | [3ce 01-18 09:29:52.47 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [3aa 01-18 09:29:51.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer1.org2.example.com | [3a0 01-18 09:29:52.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +peer1.org1.example.com | [407 01-18 09:29:53.03 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +peer0.org2.example.com | [3cf 01-18 09:29:52.47 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +peer0.org1.example.com | [3ab 01-18 09:29:51.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer1.org1.example.com | [408 01-18 09:29:53.03 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 10978ca8bb1735dbcdfa6d96329effdf8a4f4db8bc5167467709291a605a26bb +peer1.org2.example.com | [3a1 01-18 09:29:52.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer0.org2.example.com | [3d0 01-18 09:29:52.47 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [3ac 01-18 09:29:51.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [3ad 01-18 09:29:51.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [3ae 01-18 09:29:51.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [3af 01-18 09:29:51.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +peer0.org1.example.com | [3b0 01-18 09:29:51.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [3b1 01-18 09:29:51.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [3b2 01-18 09:29:51.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [3b3 01-18 09:29:51.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [3b4 01-18 09:29:51.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [3b5 01-18 09:29:51.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [3b6 01-18 09:29:51.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +peer0.org1.example.com | [3b7 01-18 09:29:51.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +peer0.org1.example.com | [3b8 01-18 09:29:51.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +orderer.example.com | 2018-01-18 09:29:43.899 UTC [msp/identity] newIdentity -> DEBU 288 Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [3a2 01-18 09:29:52.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer0.org2.example.com | [3d1 01-18 09:29:52.47 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [409 01-18 09:29:53.03 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 10978ca8bb1735dbcdfa6d96329effdf8a4f4db8bc5167467709291a605a26bb channel id: +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org1.example.com | [3b9 01-18 09:29:51.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org2.example.com | [3d2 01-18 09:29:52.47 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer1.org1.example.com | [40a 01-18 09:29:53.03 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 10978ca8bb1735dbcdfa6d96329effdf8a4f4db8bc5167467709291a605a26bb channel id: version: 1.0.2 +peer1.org2.example.com | [3a3 01-18 09:29:52.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer0.org1.example.com | [3ba 01-18 09:29:51.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org1.example.com | [40b 01-18 09:29:53.03 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.0.2,txid=10978ca8bb1735dbcdfa6d96329effdf8a4f4db8bc5167467709291a605a26bb,syscc=true,proposal=0xc421d5d400,canname=lscc:1.0.2 +peer0.org2.example.com | [3d3 01-18 09:29:52.47 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org2.example.com | [3a4 01-18 09:29:52.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +peer0.org1.example.com | [3bb 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [40c 01-18 09:29:53.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 +peer0.org2.example.com | [3d4 01-18 09:29:52.47 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org2.example.com | [3a5 01-18 09:29:52.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer1.org1.example.com | [40d 01-18 09:29:53.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [3bc 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [3a6 01-18 09:29:52.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +peer1.org1.example.com | [40e 01-18 09:29:53.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +peer0.org2.example.com | [3d5 01-18 09:29:52.47 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [3bd 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [3a7 01-18 09:29:52.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +peer1.org1.example.com | [40f 01-18 09:29:53.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [10978ca8]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +peer0.org2.example.com | [3d6 01-18 09:29:52.47 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [3be 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [3a8 01-18 09:29:52.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +peer1.org1.example.com | [410 01-18 09:29:53.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +peer0.org2.example.com | [3d7 01-18 09:29:52.47 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [3bf 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel +peer1.org2.example.com | [3a9 01-18 09:29:52.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org1.example.com | [411 01-18 09:29:53.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | -----END CERTIFICATE----- +peer0.org2.example.com | [3d8 01-18 09:29:52.47 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer0.org1.example.com | [3c0 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +peer1.org2.example.com | [3aa 01-18 09:29:52.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [3ab 01-18 09:29:52.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [3ac 01-18 09:29:52.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [3ad 01-18 09:29:52.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [3ae 01-18 09:29:52.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [3c1 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +orderer.example.com | 2018-01-18 09:29:43.901 UTC [msp] Validate -> DEBU 289 MSP OrdererMSP validating identity +orderer.example.com | 2018-01-18 09:29:43.905 UTC [common/config] Validate -> DEBU 28a Anchor peers for org Org1MSP are +orderer.example.com | 2018-01-18 09:29:43.905 UTC [common/config] validateMSP -> DEBU 28b Setting up MSP for org Org1MSP +orderer.example.com | 2018-01-18 09:29:43.905 UTC [msp] NewBccspMsp -> DEBU 28c Creating BCCSP-based MSP instance +peer1.org2.example.com | [3af 01-18 09:29:52.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +peer1.org2.example.com | [3b0 01-18 09:29:52.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [3b1 01-18 09:29:52.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [3b2 01-18 09:29:52.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [3b3 01-18 09:29:52.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [3b4 01-18 09:29:52.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [3b5 01-18 09:29:52.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [3b6 01-18 09:29:52.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel +peer1.org2.example.com | [3b7 01-18 09:29:52.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +peer1.org2.example.com | [3b8 01-18 09:29:52.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer1.org2.example.com | [3b9 01-18 09:29:52.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer1.org2.example.com | [3ba 01-18 09:29:52.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer0.org2.example.com | [3d9 01-18 09:29:52.47 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org2.example.com | [3da 01-18 09:29:52.47 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [3c2 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer1.org1.example.com | [412 01-18 09:29:53.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [10978ca8]sendExecuteMsg trigger event TRANSACTION +peer1.org1.example.com | [413 01-18 09:29:53.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [10978ca8]Move state message TRANSACTION +peer1.org1.example.com | [414 01-18 09:29:53.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [10978ca8]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org1.example.com | [415 01-18 09:29:53.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [416 01-18 09:29:53.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [10978ca8]sending state message TRANSACTION +peer1.org1.example.com | [417 01-18 09:29:53.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [10978ca8]Received message TRANSACTION from shim +peer1.org1.example.com | [418 01-18 09:29:53.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [10978ca8]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org1.example.com | [419 01-18 09:29:53.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [10978ca8]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org1.example.com | [41a 01-18 09:29:53.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [10978ca8]Transaction completed. Sending COMPLETED +peer1.org1.example.com | [41b 01-18 09:29:53.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [10978ca8]Move state message COMPLETED +peer1.org1.example.com | [41c 01-18 09:29:53.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [10978ca8]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [41d 01-18 09:29:53.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [10978ca8]send state message COMPLETED +peer1.org1.example.com | [41e 01-18 09:29:53.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [10978ca8]Received message COMPLETED from shim +peer1.org1.example.com | [41f 01-18 09:29:53.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [10978ca8]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [420 01-18 09:29:53.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [10978ca8bb1735dbcdfa6d96329effdf8a4f4db8bc5167467709291a605a26bb]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [3bb 01-18 09:29:52.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer1.org2.example.com | [3bc 01-18 09:29:52.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +peer1.org2.example.com | [3bd 01-18 09:29:52.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org2.example.com | [3be 01-18 09:29:52.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [3bf 01-18 09:29:52.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | 2018-01-18 09:29:43.906 UTC [msp] Setup -> DEBU 28d Setting up MSP instance Org1MSP +peer0.org2.example.com | [3db 01-18 09:29:52.47 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [421 01-18 09:29:53.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:10978ca8bb1735dbcdfa6d96329effdf8a4f4db8bc5167467709291a605a26bb +peer0.org1.example.com | [3c3 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer1.org2.example.com | [3c0 01-18 09:29:52.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | 2018-01-18 09:29:43.906 UTC [msp/identity] newIdentity -> DEBU 28e Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org2.example.com | [3dc 01-18 09:29:52.47 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer1.org1.example.com | [422 01-18 09:29:53.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [3c4 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer1.org2.example.com | [3c1 01-18 09:29:52.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org2.example.com | [3c2 01-18 09:29:52.57 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [3c3 01-18 09:29:52.57 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org2.example.com | [3c4 01-18 09:29:52.57 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [3c5 01-18 09:29:52.57 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer1.org2.example.com | [3c6 01-18 09:29:52.57 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org2.example.com | [3dd 01-18 09:29:52.47 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +peer0.org2.example.com | [3de 01-18 09:29:52.47 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer0.org2.example.com | [3df 01-18 09:29:52.47 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +peer0.org2.example.com | [3e0 01-18 09:29:52.47 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer0.org2.example.com | [3e1 01-18 09:29:52.49 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +orderer.example.com | MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | [3c5 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +peer1.org2.example.com | [3c7 01-18 09:29:52.57 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org2.example.com | [3e2 01-18 09:29:52.51 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +peer1.org1.example.com | [423 01-18 09:29:53.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +peer0.org1.example.com | [3c6 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [3c7 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [3c8 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer0.org1.example.com | [3c9 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org1.example.com | [3ca 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org2.example.com | [3c8 01-18 09:29:52.57 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [3c9 01-18 09:29:52.57 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +peer1.org2.example.com | [3ca 01-18 09:29:52.57 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer1.org2.example.com | [3cb 01-18 09:29:52.57 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer1.org2.example.com | [3cc 01-18 09:29:52.57 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer1.org2.example.com | [3cd 01-18 09:29:52.57 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer0.org2.example.com | [3e3 01-18 09:29:52.51 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +peer0.org2.example.com | [3e4 01-18 09:29:52.51 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +peer0.org2.example.com | [3e5 01-18 09:29:52.52 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +peer0.org2.example.com | [3e6 01-18 09:29:52.52 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU config transaction received for chain businesschannel +orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +peer1.org2.example.com | [3ce 01-18 09:29:52.57 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer1.org2.example.com | [3cf 01-18 09:29:52.57 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org2.example.com | [3d0 01-18 09:29:52.57 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [3cb 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [3e7 01-18 09:29:52.52 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer1.org1.example.com | [424 01-18 09:29:53.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +peer1.org2.example.com | [3d1 01-18 09:29:52.57 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +orderer.example.com | BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf +peer0.org2.example.com | [3e8 01-18 09:29:52.52 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Received configuration update, calling CSCC ConfigUpdate +peer0.org2.example.com | [3e9 01-18 09:29:52.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer0.org2.example.com | [3ea 01-18 09:29:52.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc42158c0c0), Data:(*common.BlockData)(0xc421d1fc80), Metadata:(*common.BlockMetadata)(0xc421d1fcc0)}, doMVCCValidation=true +peer0.org2.example.com | [3eb 01-18 09:29:52.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +peer0.org2.example.com | [3ec 01-18 09:29:52.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [2] Transaction index [0] because, the transaction type is [CONFIG] +peer0.org2.example.com | [3ed 01-18 09:29:52.52 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0xee, 0x42, 0x73, 0x43, 0x9f, 0x78, 0x50, 0xc6, 0xa0, 0xfa, 0x48, 0x1, 0x7b, 0x5c, 0xa5, 0xf0, 0xab, 0x77, 0x31, 0x9d, 0xaf, 0x30, 0x17, 0xcc, 0x6f, 0xfc, 0x28, 0x70, 0xf7, 0xc4, 0x5f, 0xf} txOffsets= +peer0.org2.example.com | txId= locPointer=offset=70, bytesLength=11971 +peer0.org2.example.com | ] +peer0.org2.example.com | [3ee 01-18 09:29:52.52 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=25739, bytesLength=11971] for tx ID: [] to index +peer0.org2.example.com | [3ef 01-18 09:29:52.52 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=25739, bytesLength=11971] for tx number:[0] ID: [] to blockNumTranNum index +peer0.org2.example.com | [3f0 01-18 09:29:52.52 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[39461], isChainEmpty=[false], lastBlockNumber=[2] +peer0.org2.example.com | [3f1 01-18 09:29:52.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [2] with 1 transaction(s) +peer0.org2.example.com | [3f2 01-18 09:29:52.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +peer0.org2.example.com | [3f3 01-18 09:29:52.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +peer0.org2.example.com | [3f4 01-18 09:29:52.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +peer0.org2.example.com | [3f5 01-18 09:29:52.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [2] with [1] transactions +peer0.org2.example.com | [3f6 01-18 09:29:52.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +peer0.org2.example.com | [3f7 01-18 09:29:52.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [2] +peer0.org2.example.com | [3f8 01-18 09:29:52.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer0.org2.example.com | [3f9 01-18 09:29:52.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [2] +peer0.org2.example.com | [3fa 01-18 09:29:52.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +peer0.org2.example.com | [3fb 01-18 09:29:52.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer0.org2.example.com | [3fc 01-18 09:29:52.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer0.org2.example.com | [3fd 01-18 09:29:52.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +peer0.org2.example.com | [3fe 01-18 09:29:52.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +peer0.org2.example.com | [3ff 01-18 09:29:53.72 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer0.org2.example.com | [400 01-18 09:29:53.72 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422173500 +peer0.org2.example.com | [401 01-18 09:29:53.72 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org2.example.com | [402 01-18 09:29:53.72 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org2.example.com | [403 01-18 09:29:53.73 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} +peer0.org2.example.com | [404 01-18 09:29:53.73 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org2.example.com | [3d2 01-18 09:29:52.57 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer0.org1.example.com | [3cc 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +peer1.org1.example.com | [425 01-18 09:29:53.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer0.org2.example.com | [405 01-18 09:29:53.73 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org2.example.com | [3d3 01-18 09:29:52.58 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx +orderer.example.com | JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi +orderer.example.com | /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ +orderer.example.com | H7n8z1pj5w== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:43.907 UTC [msp/identity] newIdentity -> DEBU 28f Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +peer0.org2.example.com | [406 01-18 09:29:53.73 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422141c20, header 0xc422173530 +peer0.org2.example.com | [407 01-18 09:29:53.73 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +peer0.org2.example.com | [408 01-18 09:29:53.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 9b4d3e861ea5dc09685b11b4b41720ccb3b0ff900e4204c4a220bd556624ba77 +peer0.org2.example.com | [409 01-18 09:29:53.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 9b4d3e861ea5dc09685b11b4b41720ccb3b0ff900e4204c4a220bd556624ba77 channel id: +peer0.org2.example.com | [40a 01-18 09:29:53.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 9b4d3e861ea5dc09685b11b4b41720ccb3b0ff900e4204c4a220bd556624ba77 channel id: version: 1.0.2 +peer0.org2.example.com | [40b 01-18 09:29:53.73 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.0.2,txid=9b4d3e861ea5dc09685b11b4b41720ccb3b0ff900e4204c4a220bd556624ba77,syscc=true,proposal=0xc422141c20,canname=lscc:1.0.2 +peer0.org1.example.com | [3cd 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [3ce 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer0.org1.example.com | [3cf 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org1.example.com | [3d0 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [3d1 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [3d4 01-18 09:29:52.58 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer1.org2.example.com | [3d5 01-18 09:29:52.58 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:43.908 UTC [msp/identity] newIdentity -> DEBU 290 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:43.909 UTC [msp] Validate -> DEBU 291 MSP Org1MSP validating identity +orderer.example.com | 2018-01-18 09:29:43.909 UTC [common/config] Validate -> DEBU 292 Anchor peers for org Org2MSP are +orderer.example.com | 2018-01-18 09:29:43.909 UTC [common/config] validateMSP -> DEBU 293 Setting up MSP for org Org2MSP +orderer.example.com | 2018-01-18 09:29:43.910 UTC [msp] NewBccspMsp -> DEBU 294 Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-18 09:29:43.910 UTC [msp] Setup -> DEBU 295 Setting up MSP instance Org2MSP +orderer.example.com | 2018-01-18 09:29:43.910 UTC [msp/identity] newIdentity -> DEBU 296 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org1.example.com | [3d2 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +peer0.org2.example.com | [40c 01-18 09:29:53.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 +peer1.org2.example.com | [3d6 01-18 09:29:52.58 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +peer1.org1.example.com | [426 01-18 09:29:53.76 UTC] [github.com/hyperledger/fabric/gossip/gossip/channel] handleMessage.HandleMessage.handleStateInfSnapshot -> DEBU Channel businesschannel : Couldn't find org identity of peer �w0��o7��h���k��ldi� @�kNzK~�t message sent from /_��=�?P�`@[1e��W YW�/|�|p�{ +peer1.org1.example.com | [427 01-18 09:29:53.78 UTC] [github.com/hyperledger/fabric/gossip/gossip/channel] handleMessage.HandleMessage.handleStateInfSnapshot -> DEBU Channel businesschannel : Couldn't find org identity of peer �w0��o7��h���k��ldi� @�kNzK~�t message sent from C9|k�e{���r�%}�B��L ����qZ+�� +peer1.org1.example.com | [428 01-18 09:29:55.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> WARN Message GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes isn't valid +peer1.org1.example.com | [429 01-18 09:29:55.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> WARN Message GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes isn't valid +peer0.org2.example.com | [40d 01-18 09:29:53.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [40e 01-18 09:29:53.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +peer0.org2.example.com | [40f 01-18 09:29:53.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9b4d3e86]Inside sendExecuteMessage. Message TRANSACTION +peer0.org2.example.com | [410 01-18 09:29:53.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [411 01-18 09:29:53.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org2.example.com | [412 01-18 09:29:53.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9b4d3e86]sendExecuteMsg trigger event TRANSACTION +peer0.org2.example.com | [413 01-18 09:29:53.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9b4d3e86]Move state message TRANSACTION +peer1.org2.example.com | [3d7 01-18 09:29:52.60 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +peer1.org2.example.com | [3d8 01-18 09:29:52.60 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +peer1.org2.example.com | [3d9 01-18 09:29:52.60 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +peer1.org2.example.com | [3da 01-18 09:29:52.60 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +peer0.org1.example.com | [3d3 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer0.org1.example.com | [3d4 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer0.org1.example.com | [3d5 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer0.org1.example.com | [3d6 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer0.org1.example.com | [3d7 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer0.org1.example.com | [3d8 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org2.example.com | [414 01-18 09:29:53.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9b4d3e86]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org2.example.com | [415 01-18 09:29:53.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [416 01-18 09:29:53.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9b4d3e86]sending state message TRANSACTION +peer0.org2.example.com | [417 01-18 09:29:53.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9b4d3e86]Received message TRANSACTION from shim +peer0.org2.example.com | [418 01-18 09:29:53.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9b4d3e86]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org2.example.com | [419 01-18 09:29:53.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [9b4d3e86]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org2.example.com | [41a 01-18 09:29:53.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9b4d3e86]Transaction completed. Sending COMPLETED +peer0.org2.example.com | [41b 01-18 09:29:53.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9b4d3e86]Move state message COMPLETED +peer0.org2.example.com | [41c 01-18 09:29:53.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9b4d3e86]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [41d 01-18 09:29:53.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9b4d3e86]send state message COMPLETED +peer0.org2.example.com | [41e 01-18 09:29:53.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9b4d3e86]Received message COMPLETED from shim +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa +peer1.org2.example.com | [3db 01-18 09:29:52.60 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU config transaction received for chain businesschannel +peer1.org2.example.com | [3dc 01-18 09:29:52.60 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer1.org2.example.com | [3dd 01-18 09:29:52.60 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Received configuration update, calling CSCC ConfigUpdate +peer1.org2.example.com | [3de 01-18 09:29:52.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer0.org1.example.com | [3d9 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [3da 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +peer0.org1.example.com | [3db 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer0.org1.example.com | [3dc 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +peer0.org1.example.com | [3dd 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer0.org2.example.com | [41f 01-18 09:29:53.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9b4d3e86]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [3de 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer0.org1.example.com | [3df 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +peer0.org1.example.com | [3e0 01-18 09:29:51.59 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +peer1.org2.example.com | [3df 01-18 09:29:52.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc421b967c0), Data:(*common.BlockData)(0xc4217b3560), Metadata:(*common.BlockMetadata)(0xc4217b35a0)}, doMVCCValidation=true +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +peer1.org1.example.com | [42a 01-18 09:29:57.76 UTC] [github.com/hyperledger/fabric/gossip/gossip/channel] handleMessage.HandleMessage.handleStateInfSnapshot -> DEBU Channel businesschannel : Couldn't find org identity of peer �w0��o7��h���k��ldi� @�kNzK~�t message sent from C9|k�e{���r�%}�B��L ����qZ+�� +peer0.org1.example.com | [3e1 01-18 09:29:51.59 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +peer1.org2.example.com | [3e0 01-18 09:29:52.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +peer1.org2.example.com | [3e1 01-18 09:29:52.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [2] Transaction index [0] because, the transaction type is [CONFIG] +peer1.org2.example.com | [3e2 01-18 09:29:52.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0xee, 0x42, 0x73, 0x43, 0x9f, 0x78, 0x50, 0xc6, 0xa0, 0xfa, 0x48, 0x1, 0x7b, 0x5c, 0xa5, 0xf0, 0xab, 0x77, 0x31, 0x9d, 0xaf, 0x30, 0x17, 0xcc, 0x6f, 0xfc, 0x28, 0x70, 0xf7, 0xc4, 0x5f, 0xf} txOffsets= +peer1.org2.example.com | txId= locPointer=offset=70, bytesLength=11971 +peer1.org2.example.com | ] +peer0.org2.example.com | [420 01-18 09:29:53.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9b4d3e861ea5dc09685b11b4b41720ccb3b0ff900e4204c4a220bd556624ba77]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [421 01-18 09:29:53.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:9b4d3e861ea5dc09685b11b4b41720ccb3b0ff900e4204c4a220bd556624ba77 +peer0.org1.example.com | [3e2 01-18 09:29:51.59 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +peer1.org2.example.com | [3e3 01-18 09:29:52.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=25739, bytesLength=11971] for tx ID: [] to index +peer0.org2.example.com | [422 01-18 09:29:53.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +peer1.org1.example.com | [42b 01-18 09:29:57.78 UTC] [github.com/hyperledger/fabric/gossip/gossip/channel] handleMessage.HandleMessage.handleStateInfSnapshot -> DEBU Channel businesschannel : Couldn't find org identity of peer �w0��o7��h���k��ldi� @�kNzK~�t message sent from /_��=�?P�`@[1e��W YW�/|�|p�{ +peer1.org2.example.com | [3e4 01-18 09:29:52.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=25739, bytesLength=11971] for tx number:[0] ID: [] to blockNumTranNum index +peer0.org1.example.com | [3e3 01-18 09:29:51.59 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +peer0.org2.example.com | [423 01-18 09:29:53.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer1.org1.example.com | [42c 01-18 09:30:23.65 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [3], peers number [3] +peer1.org2.example.com | [3e5 01-18 09:29:52.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[39461], isChainEmpty=[false], lastBlockNumber=[2] +peer1.org1.example.com | [42d 01-18 09:30:23.65 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer0.org1.example.com | [3e4 01-18 09:29:51.59 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU config transaction received for chain businesschannel +peer0.org1.example.com | [3e5 01-18 09:29:51.59 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer0.org1.example.com | [3e6 01-18 09:29:51.59 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Received configuration update, calling CSCC ConfigUpdate +peer0.org1.example.com | [3e7 01-18 09:29:51.59 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer0.org1.example.com | [3e8 01-18 09:29:51.59 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc421d26800), Data:(*common.BlockData)(0xc420103de0), Metadata:(*common.BlockMetadata)(0xc420103e60)}, doMVCCValidation=true +peer0.org1.example.com | [3e9 01-18 09:29:51.59 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +orderer.example.com | mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 +peer0.org2.example.com | [424 01-18 09:29:53.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +peer1.org2.example.com | [3e6 01-18 09:29:52.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [2] with 1 transaction(s) +peer1.org2.example.com | [3e7 01-18 09:29:52.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +peer0.org1.example.com | [3ea 01-18 09:29:51.59 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [2] Transaction index [0] because, the transaction type is [CONFIG] +peer1.org1.example.com | [42e 01-18 09:30:23.65 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +orderer.example.com | sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ +orderer.example.com | xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv +peer0.org2.example.com | [425 01-18 09:29:53.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer1.org2.example.com | [3e8 01-18 09:29:52.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +peer1.org2.example.com | [3e9 01-18 09:29:52.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +peer1.org2.example.com | [3ea 01-18 09:29:52.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [2] with [1] transactions +peer1.org2.example.com | [3eb 01-18 09:29:52.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +peer1.org2.example.com | [3ec 01-18 09:29:52.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [2] +peer0.org1.example.com | [3eb 01-18 09:29:51.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0xee, 0x42, 0x73, 0x43, 0x9f, 0x78, 0x50, 0xc6, 0xa0, 0xfa, 0x48, 0x1, 0x7b, 0x5c, 0xa5, 0xf0, 0xab, 0x77, 0x31, 0x9d, 0xaf, 0x30, 0x17, 0xcc, 0x6f, 0xfc, 0x28, 0x70, 0xf7, 0xc4, 0x5f, 0xf} txOffsets= +orderer.example.com | WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk +peer0.org2.example.com | [426 01-18 09:30:22.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer0.org2.example.com | [427 01-18 09:30:22.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421d5daa0 +peer1.org2.example.com | [3ed 01-18 09:29:52.61 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer0.org1.example.com | txId= locPointer=offset=70, bytesLength=11971 +peer0.org1.example.com | ] +peer0.org1.example.com | [3ec 01-18 09:29:51.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=25739, bytesLength=11971] for tx ID: [] to index +peer0.org1.example.com | [3ed 01-18 09:29:51.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=25739, bytesLength=11971] for tx number:[0] ID: [] to blockNumTranNum index +peer0.org1.example.com | [3ee 01-18 09:29:51.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[39461], isChainEmpty=[false], lastBlockNumber=[2] +peer0.org1.example.com | [3ef 01-18 09:29:51.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [2] with 1 transaction(s) +peer0.org1.example.com | [3f0 01-18 09:29:51.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +peer0.org1.example.com | [3f1 01-18 09:29:51.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +orderer.example.com | SCjyRdD3aQ== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:43.912 UTC [msp/identity] newIdentity -> DEBU 297 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +orderer.example.com | AXYxULZpXYDQXt1KaLI= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:43.913 UTC [msp/identity] newIdentity -> DEBU 298 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +peer0.org2.example.com | [428 01-18 09:30:22.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org2.example.com | [429 01-18 09:30:22.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org2.example.com | [3ee 01-18 09:29:52.61 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [2] +peer1.org1.example.com | [42f 01-18 09:30:23.65 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | [3f2 01-18 09:29:51.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +peer0.org2.example.com | [42a 01-18 09:30:22.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} +peer0.org2.example.com | [42b 01-18 09:30:22.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org2.example.com | [42c 01-18 09:30:22.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org2.example.com | [42d 01-18 09:30:22.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421f7e820, header 0xc421d5dad0 +peer0.org2.example.com | [42e 01-18 09:30:22.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +orderer.example.com | AXYxULZpXYDQXt1KaLI= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:43.915 UTC [msp] Validate -> DEBU 299 MSP Org2MSP validating identity +orderer.example.com | 2018-01-18 09:29:43.915 UTC [msp] Setup -> DEBU 29a Setting up the MSP manager (3 msps) +peer1.org2.example.com | [3ef 01-18 09:29:52.61 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +peer0.org2.example.com | [42f 01-18 09:30:22.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 79910bc72d1a9ba3fd9ac6a98cdec470c2b4c2afd8dd6128c715aa89ad94672c +peer0.org2.example.com | [430 01-18 09:30:22.09 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [79910bc72d1a9ba3fd9ac6a98cdec470c2b4c2afd8dd6128c715aa89ad94672c] +peer0.org2.example.com | [431 01-18 09:30:22.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org2.example.com | [432 01-18 09:30:22.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [e85b93f3-ae99-430e-8124-997127168817] +peer0.org2.example.com | [433 01-18 09:30:22.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 79910bc72d1a9ba3fd9ac6a98cdec470c2b4c2afd8dd6128c715aa89ad94672c channel id: businesschannel +peer0.org2.example.com | [434 01-18 09:30:22.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 79910bc72d1a9ba3fd9ac6a98cdec470c2b4c2afd8dd6128c715aa89ad94672c channel id: businesschannel version: 1.0.2 +orderer.example.com | 2018-01-18 09:29:43.916 UTC [msp] Setup -> DEBU 29b MSP manager setup complete, setup 3 msps +peer1.org2.example.com | [3f0 01-18 09:29:52.61 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer0.org1.example.com | [3f3 01-18 09:29:51.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [2] with [1] transactions +peer0.org1.example.com | [3f4 01-18 09:29:51.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +peer0.org1.example.com | [3f5 01-18 09:29:51.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [2] +peer0.org1.example.com | [3f6 01-18 09:29:51.60 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer0.org1.example.com | [3f7 01-18 09:29:51.60 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [2] +peer0.org1.example.com | [3f8 01-18 09:29:51.60 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +peer0.org1.example.com | [3f9 01-18 09:29:51.60 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer0.org1.example.com | [3fa 01-18 09:29:51.60 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer0.org1.example.com | [3fb 01-18 09:29:51.60 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +peer0.org2.example.com | [435 01-18 09:30:22.09 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=79910bc72d1a9ba3fd9ac6a98cdec470c2b4c2afd8dd6128c715aa89ad94672c,syscc=true,proposal=0xc421f7e820,canname=lscc:1.0.2 +peer1.org2.example.com | [3f1 01-18 09:29:52.61 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer1.org2.example.com | [3f2 01-18 09:29:52.61 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +peer1.org2.example.com | [3f3 01-18 09:29:52.61 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +peer1.org2.example.com | [3f4 01-18 09:29:53.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg -> WARN StateInfo message GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\324q\233o<\375\230\200\232\213]7.\260\342s\252\364\007\264\342\021\273\311\232\025\313\024\337\263\257" channel_MAC:"-Go\033\310\231\234\261\352\333H\374L%\320\370\036Z\352\036\023$B\355\311U\212\214\006\317\006\374" > , Envelope: 105 bytes, Signature: 70 bytes is found invalid: PKIID wasn't found +peer1.org2.example.com | [3f5 01-18 09:29:53.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> WARN Message GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\324q\233o<\375\230\200\232\213]7.\260\342s\252\364\007\264\342\021\273\311\232\025\313\024\337\263\257" channel_MAC:"-Go\033\310\231\234\261\352\333H\374L%\320\370\036Z\352\036\023$B\355\311U\212\214\006\317\006\374" > , Envelope: 105 bytes, Signature: 70 bytes isn't valid +peer0.org1.example.com | [3fc 01-18 09:29:51.60 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +orderer.example.com | 2018-01-18 09:29:43.916 UTC [policies] GetPolicy -> DEBU 29c Returning policy Admins for evaluation +peer0.org2.example.com | [436 01-18 09:30:22.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 +peer0.org2.example.com | [437 01-18 09:30:22.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [438 01-18 09:30:22.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +peer0.org2.example.com | [439 01-18 09:30:22.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [79910bc7]Inside sendExecuteMessage. Message TRANSACTION +peer0.org2.example.com | [43a 01-18 09:30:22.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [43b 01-18 09:30:22.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org2.example.com | [3f6 01-18 09:29:53.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> WARN Message GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes isn't valid +peer1.org2.example.com | [3f7 01-18 09:29:54.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> WARN Message GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes isn't valid +peer1.org2.example.com | [3f8 01-18 09:29:54.48 UTC] [github.com/hyperledger/fabric/gossip/gossip/channel] handleMessage.HandleMessage.handleStateInfSnapshot -> DEBU Channel businesschannel : Couldn't find org identity of peer )�q�o<�����]7.��s�����ɚ�߳� message sent from C9|k�e{���r�%}�B��L ����qZ+�� +peer1.org2.example.com | [3f9 01-18 09:29:54.49 UTC] [github.com/hyperledger/fabric/gossip/gossip/channel] handleMessage.HandleMessage.handleStateInfSnapshot -> DEBU Channel businesschannel : Couldn't find org identity of peer )�q�o<�����]7.��s�����ɚ�߳� message sent from /_��=�?P�`@[1e��W YW�/|�|p�{ +peer1.org2.example.com | [3fa 01-18 09:29:55.17 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer1.org2.example.com | [3fb 01-18 09:29:55.17 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421f2c1e0 +peer1.org2.example.com | [3fc 01-18 09:29:55.17 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +orderer.example.com | 2018-01-18 09:29:43.916 UTC [policies] CommitProposals -> DEBU 29d In commit adding relative sub-policy OrdererOrg/Admins to Orderer +peer0.org1.example.com | [3fd 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer0.org2.example.com | [43c 01-18 09:30:22.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [79910bc7]sendExecuteMsg trigger event TRANSACTION +peer1.org1.example.com | [430 01-18 09:30:23.65 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4214f5770 +peer1.org2.example.com | [3fd 01-18 09:29:55.17 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org2.example.com | [43d 01-18 09:30:22.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [79910bc7]Move state message TRANSACTION +peer0.org1.example.com | [3fe 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4217edf20 +peer1.org1.example.com | [431 01-18 09:30:23.65 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\223\322\201\323\005\020\350\237\205\210\002\"\017businesschannel*@651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030\273\240\3642\341\013#\320\247\267\210\222\354\377n\237\303<(;\004\014\314y" +orderer.example.com | 2018-01-18 09:29:43.916 UTC [policies] GetPolicy -> DEBU 29e Returning policy Readers for evaluation +peer1.org2.example.com | [3fe 01-18 09:29:55.17 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} +peer1.org2.example.com | [3ff 01-18 09:29:55.17 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [3ff 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org2.example.com | [43e 01-18 09:30:22.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [79910bc7]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | 2018-01-18 09:29:43.916 UTC [policies] CommitProposals -> DEBU 29f In commit adding relative sub-policy OrdererOrg/Readers to Orderer +peer1.org1.example.com | [432 01-18 09:30:23.66 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org2.example.com | [400 01-18 09:29:55.17 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [400 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | 2018-01-18 09:29:43.916 UTC [policies] GetPolicy -> DEBU 2a0 Returning policy Writers for evaluation +peer0.org2.example.com | [43f 01-18 09:30:22.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [433 01-18 09:30:23.66 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org2.example.com | [401 01-18 09:29:55.17 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421c4f180, header 0xc421f2c210 +peer0.org1.example.com | [401 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +peer0.org2.example.com | [440 01-18 09:30:22.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [79910bc7]sending state message TRANSACTION +orderer.example.com | 2018-01-18 09:29:43.916 UTC [policies] CommitProposals -> DEBU 2a1 In commit adding relative sub-policy OrdererOrg/Writers to Orderer +peer1.org2.example.com | [402 01-18 09:29:55.17 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +peer1.org1.example.com | [434 01-18 09:30:23.66 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +peer0.org1.example.com | [402 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +orderer.example.com | 2018-01-18 09:29:43.917 UTC [policies] GetPolicy -> DEBU 2a2 Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:43.917 UTC [policies] GetPolicy -> DEBU 2a3 Returning policy Admins for evaluation +peer1.org2.example.com | [403 01-18 09:29:55.17 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 297d19378dad2f800b5c52e595ff8f396eceae8ff4dd30a5b72323261188c6bd +peer0.org1.example.com | [403 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org2.example.com | [441 01-18 09:30:22.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [79910bc7]Received message TRANSACTION from shim +peer1.org1.example.com | [435 01-18 09:30:23.66 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org1.example.com | [436 01-18 09:30:23.66 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org2.example.com | [404 01-18 09:29:55.17 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 297d19378dad2f800b5c52e595ff8f396eceae8ff4dd30a5b72323261188c6bd channel id: +peer1.org2.example.com | [405 01-18 09:29:55.17 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 297d19378dad2f800b5c52e595ff8f396eceae8ff4dd30a5b72323261188c6bd channel id: version: 1.0.2 +peer1.org2.example.com | [406 01-18 09:29:55.17 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.0.2,txid=297d19378dad2f800b5c52e595ff8f396eceae8ff4dd30a5b72323261188c6bd,syscc=true,proposal=0xc421c4f180,canname=lscc:1.0.2 +peer0.org1.example.com | [404 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421b9fdb0, header 0xc4217edf50 +peer0.org2.example.com | [442 01-18 09:30:22.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [79910bc7]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [405 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +orderer.example.com | 2018-01-18 09:29:43.917 UTC [policies] GetPolicy -> DEBU 2a4 Returning policy Writers for evaluation +peer1.org2.example.com | [407 01-18 09:29:55.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 +peer1.org1.example.com | [437 01-18 09:30:23.66 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc4219b3500, header channel_header:"\010\003\032\014\010\223\322\201\323\005\020\350\237\205\210\002\"\017businesschannel*@651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030\273\240\3642\341\013#\320\247\267\210\222\354\377n\237\303<(;\004\014\314y" +peer0.org1.example.com | [406 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 25a6f9d76aa52c533022afa31b53fbc82db82ffaf4c3ba9c076009e71d65cb1b +orderer.example.com | 2018-01-18 09:29:43.917 UTC [policies] GetPolicy -> DEBU 2a5 Returning policy Readers for evaluation +peer0.org2.example.com | [443 01-18 09:30:22.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [79910bc7]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | 2018-01-18 09:29:43.917 UTC [policies] GetPolicy -> DEBU 2a6 Returning policy Admins for evaluation +peer0.org1.example.com | [407 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 25a6f9d76aa52c533022afa31b53fbc82db82ffaf4c3ba9c076009e71d65cb1b channel id: +peer0.org1.example.com | [408 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 25a6f9d76aa52c533022afa31b53fbc82db82ffaf4c3ba9c076009e71d65cb1b channel id: version: 1.0.2 +peer0.org1.example.com | [409 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.0.2,txid=25a6f9d76aa52c533022afa31b53fbc82db82ffaf4c3ba9c076009e71d65cb1b,syscc=true,proposal=0xc421b9fdb0,canname=lscc:1.0.2 +peer0.org1.example.com | [40a 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 +peer0.org1.example.com | [40b 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [444 01-18 09:30:22.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [79910bc7]Sending GET_STATE +peer0.org2.example.com | [445 01-18 09:30:22.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [79910bc7]Received message GET_STATE from shim +peer1.org2.example.com | [408 01-18 09:29:55.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [438 01-18 09:30:23.66 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer0.org1.example.com | [40c 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +orderer.example.com | 2018-01-18 09:29:43.917 UTC [policies] CommitProposals -> DEBU 2a7 In commit adding relative sub-policy Org1MSP/Admins to Application +peer1.org1.example.com | [439 01-18 09:30:23.66 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer1.org1.example.com | [43a 01-18 09:30:23.67 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer1.org1.example.com | [43b 01-18 09:30:23.67 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +peer1.org1.example.com | [43c 01-18 09:30:23.67 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6] +peer1.org1.example.com | [43d 01-18 09:30:23.67 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +peer1.org1.example.com | [43f 01-18 09:30:23.67 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org1.example.com | [440 01-18 09:30:23.67 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [27795a91-0623-4206-8c2d-dec7cff0d64a] +peer0.org2.example.com | [446 01-18 09:30:22.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [79910bc7]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer0.org2.example.com | [447 01-18 09:30:22.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [79910bc7]Received GET_STATE, invoking get state from ledger +peer0.org2.example.com | [448 01-18 09:30:22.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [449 01-18 09:30:22.09 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [79910bc7] getting state for chaincode lscc, key exp02, channel businesschannel +peer1.org2.example.com | [409 01-18 09:29:55.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +peer1.org1.example.com | [43e 01-18 09:30:23.67 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [3], peers number [3] +peer0.org1.example.com | [40d 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [25a6f9d7]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | 2018-01-18 09:29:43.917 UTC [policies] GetPolicy -> DEBU 2a8 Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:43.917 UTC [policies] CommitProposals -> DEBU 2a9 In commit adding relative sub-policy Org1MSP/Readers to Application +orderer.example.com | 2018-01-18 09:29:43.917 UTC [policies] GetPolicy -> DEBU 2aa Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:43.917 UTC [policies] CommitProposals -> DEBU 2ab In commit adding relative sub-policy Org1MSP/Writers to Application +orderer.example.com | 2018-01-18 09:29:43.918 UTC [policies] GetPolicy -> DEBU 2ac Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:43.918 UTC [policies] CommitProposals -> DEBU 2ad In commit adding relative sub-policy Org2MSP/Admins to Application +orderer.example.com | 2018-01-18 09:29:43.918 UTC [policies] GetPolicy -> DEBU 2ae Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:43.918 UTC [policies] CommitProposals -> DEBU 2af In commit adding relative sub-policy Org2MSP/Readers to Application +orderer.example.com | 2018-01-18 09:29:43.918 UTC [policies] GetPolicy -> DEBU 2b0 Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:43.919 UTC [policies] CommitProposals -> DEBU 2b1 In commit adding relative sub-policy Org2MSP/Writers to Application +orderer.example.com | 2018-01-18 09:29:43.919 UTC [policies] GetPolicy -> DEBU 2b2 Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:43.919 UTC [policies] GetPolicy -> DEBU 2b3 Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:43.919 UTC [policies] GetPolicy -> DEBU 2b4 Returning policy Writers for evaluation +peer0.org2.example.com | [44a 01-18 09:30:22.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer0.org2.example.com | [44b 01-18 09:30:22.09 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [79910bc7]No state associated with key: exp02. Sending RESPONSE with an empty payload +peer1.org2.example.com | [40a 01-18 09:29:55.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [297d1937]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [40b 01-18 09:29:55.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | 2018-01-18 09:29:43.919 UTC [policies] CommitProposals -> DEBU 2b5 In commit adding relative sub-policy Orderer/Writers to Channel +orderer.example.com | 2018-01-18 09:29:43.919 UTC [policies] GetPolicy -> DEBU 2b6 Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:43.919 UTC [policies] CommitProposals -> DEBU 2b7 In commit adding relative sub-policy Orderer/Admins to Channel +orderer.example.com | 2018-01-18 09:29:43.920 UTC [policies] GetPolicy -> DEBU 2b8 Returning policy BlockValidation for evaluation +orderer.example.com | 2018-01-18 09:29:43.921 UTC [policies] CommitProposals -> DEBU 2b9 In commit adding relative sub-policy Orderer/BlockValidation to Channel +orderer.example.com | 2018-01-18 09:29:43.922 UTC [policies] GetPolicy -> DEBU 2ba Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:43.922 UTC [policies] CommitProposals -> DEBU 2bb In commit adding relative sub-policy Orderer/Readers to Channel +orderer.example.com | 2018-01-18 09:29:43.922 UTC [policies] GetPolicy -> DEBU 2bc Returning policy OrdererOrg/Admins for evaluation +orderer.example.com | 2018-01-18 09:29:43.922 UTC [policies] CommitProposals -> DEBU 2bd In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +orderer.example.com | 2018-01-18 09:29:43.923 UTC [policies] GetPolicy -> DEBU 2be Returning policy OrdererOrg/Readers for evaluation +orderer.example.com | 2018-01-18 09:29:43.923 UTC [policies] CommitProposals -> DEBU 2bf In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +orderer.example.com | 2018-01-18 09:29:43.923 UTC [policies] GetPolicy -> DEBU 2c0 Returning policy OrdererOrg/Writers for evaluation +orderer.example.com | 2018-01-18 09:29:43.923 UTC [policies] CommitProposals -> DEBU 2c1 In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +orderer.example.com | 2018-01-18 09:29:43.923 UTC [policies] GetPolicy -> DEBU 2c2 Returning policy Org2MSP/Admins for evaluation +orderer.example.com | 2018-01-18 09:29:43.923 UTC [policies] CommitProposals -> DEBU 2c3 In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +peer0.org2.example.com | [44c 01-18 09:30:22.09 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [79910bc7]handleGetState serial send RESPONSE +peer1.org2.example.com | [40c 01-18 09:29:55.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [40e 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [441 01-18 09:30:23.68 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=7afc7dfc-f7c9-4a42-b631-97ae4e5b7fe0,syscc=true,proposal=0x0,canname=vscc:1.0.2 +orderer.example.com | 2018-01-18 09:29:43.923 UTC [policies] GetPolicy -> DEBU 2c4 Returning policy Org2MSP/Readers for evaluation +peer0.org2.example.com | [44d 01-18 09:30:22.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [79910bc7]Received message RESPONSE from shim +peer0.org1.example.com | [40f 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org1.example.com | [442 01-18 09:30:23.68 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6 chaindID businesschannel +peer1.org2.example.com | [40d 01-18 09:29:55.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [297d1937]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | 2018-01-18 09:29:43.924 UTC [policies] CommitProposals -> DEBU 2c5 In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +peer0.org1.example.com | [410 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [25a6f9d7]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [411 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [25a6f9d7]Move state message TRANSACTION +peer0.org1.example.com | [412 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [25a6f9d7]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org2.example.com | [40e 01-18 09:29:55.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [297d1937]Move state message TRANSACTION +orderer.example.com | 2018-01-18 09:29:43.924 UTC [policies] GetPolicy -> DEBU 2c6 Returning policy Org2MSP/Writers for evaluation +peer0.org2.example.com | [44e 01-18 09:30:22.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [79910bc7]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer0.org1.example.com | [413 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [414 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [25a6f9d7]sending state message TRANSACTION +orderer.example.com | 2018-01-18 09:29:43.924 UTC [policies] CommitProposals -> DEBU 2c7 In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +peer1.org1.example.com | [443 01-18 09:30:23.68 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 +peer1.org1.example.com | [444 01-18 09:30:23.68 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [44f 01-18 09:30:22.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [79910bc7]before send +peer0.org1.example.com | [415 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [25a6f9d7]Received message TRANSACTION from shim +peer1.org2.example.com | [40f 01-18 09:29:55.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [297d1937]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | 2018-01-18 09:29:43.924 UTC [policies] GetPolicy -> DEBU 2c8 Returning policy ChannelCreationPolicy for evaluation +peer1.org1.example.com | [445 01-18 09:30:23.68 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 +peer0.org2.example.com | [450 01-18 09:30:22.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [79910bc7]after send +peer0.org2.example.com | [452 01-18 09:30:22.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [79910bc7]Received RESPONSE, communicated (state:ready) +peer0.org1.example.com | [416 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [25a6f9d7]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org2.example.com | [410 01-18 09:29:55.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | 2018-01-18 09:29:43.924 UTC [policies] CommitProposals -> DEBU 2c9 In commit adding relative sub-policy Application/ChannelCreationPolicy to Channel +peer1.org1.example.com | [446 01-18 09:30:23.68 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7afc7dfc]Inside sendExecuteMessage. Message TRANSACTION +peer0.org2.example.com | [451 01-18 09:30:22.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [79910bc7]GetState received payload RESPONSE +peer0.org1.example.com | [417 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [25a6f9d7]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org2.example.com | [411 01-18 09:29:55.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [297d1937]sending state message TRANSACTION +orderer.example.com | 2018-01-18 09:29:43.924 UTC [policies] GetPolicy -> DEBU 2ca Returning policy Org1MSP/Admins for evaluation +peer1.org1.example.com | [447 01-18 09:30:23.68 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [453 01-18 09:30:22.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.createChaincode.putChaincodeData.PutState.handlePutState -> DEBU [79910bc7]Inside putstate +peer0.org1.example.com | [418 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [25a6f9d7]Transaction completed. Sending COMPLETED +peer1.org2.example.com | [412 01-18 09:29:55.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [297d1937]Received message TRANSACTION from shim +orderer.example.com | 2018-01-18 09:29:43.924 UTC [policies] CommitProposals -> DEBU 2cb In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +peer1.org1.example.com | [448 01-18 09:30:23.68 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7afc7dfc]sendExecuteMsg trigger event TRANSACTION +peer0.org2.example.com | [454 01-18 09:30:22.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.createChaincode.putChaincodeData.PutState.handlePutState -> DEBU [79910bc7]Sending PUT_STATE +peer0.org1.example.com | [419 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [25a6f9d7]Move state message COMPLETED +peer1.org2.example.com | [413 01-18 09:29:55.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [297d1937]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | 2018-01-18 09:29:43.925 UTC [policies] GetPolicy -> DEBU 2cc Returning policy Org1MSP/Readers for evaluation +peer0.org1.example.com | [41a 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [25a6f9d7]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [455 01-18 09:30:22.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [79910bc7]Received message PUT_STATE from shim +peer0.org2.example.com | [456 01-18 09:30:22.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [79910bc7]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +peer0.org2.example.com | [457 01-18 09:30:22.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [458 01-18 09:30:22.10 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [79910bc7]state is ready +peer0.org2.example.com | [459 01-18 09:30:22.10 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [79910bc7]Completed PUT_STATE. Sending RESPONSE +peer0.org2.example.com | [45a 01-18 09:30:22.10 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [79910bc7]enterBusyState trigger event RESPONSE +peer0.org2.example.com | [45b 01-18 09:30:22.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [79910bc7]Move state message RESPONSE +peer0.org2.example.com | [45c 01-18 09:30:22.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [79910bc7]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +peer0.org2.example.com | [45d 01-18 09:30:22.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [45e 01-18 09:30:22.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [79910bc7]sending state message RESPONSE +peer0.org1.example.com | [41b 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [25a6f9d7]send state message COMPLETED +orderer.example.com | 2018-01-18 09:29:43.925 UTC [policies] CommitProposals -> DEBU 2cd In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +peer1.org1.example.com | [449 01-18 09:30:23.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7afc7dfc]Move state message TRANSACTION +peer0.org2.example.com | [45f 01-18 09:30:22.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [79910bc7]Received message RESPONSE from shim +peer1.org2.example.com | [414 01-18 09:29:55.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [297d1937]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org1.example.com | [44a 01-18 09:30:23.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7afc7dfc]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [41c 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [25a6f9d7]Received message COMPLETED from shim +orderer.example.com | 2018-01-18 09:29:43.925 UTC [policies] GetPolicy -> DEBU 2ce Returning policy Org1MSP/Writers for evaluation +peer0.org2.example.com | [460 01-18 09:30:22.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [79910bc7]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer1.org2.example.com | [415 01-18 09:29:55.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [297d1937]Transaction completed. Sending COMPLETED +orderer.example.com | 2018-01-18 09:29:43.925 UTC [policies] CommitProposals -> DEBU 2cf In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +peer0.org2.example.com | [461 01-18 09:30:22.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [79910bc7]before send +peer0.org1.example.com | [41d 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [25a6f9d7]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [44b 01-18 09:30:23.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [416 01-18 09:29:55.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [297d1937]Move state message COMPLETED +peer0.org2.example.com | [463 01-18 09:30:22.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.createChaincode.putChaincodeData.PutState.handlePutState -> DEBU [79910bc7]Received RESPONSE. Successfully updated state +orderer.example.com | 2018-01-18 09:29:43.925 UTC [policies] GetPolicy -> DEBU 2d0 Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:43.925 UTC [policies] GetPolicy -> DEBU 2d1 Returning dummy reject all policy because Readers could not be found in /Application/Readers +orderer.example.com | 2018-01-18 09:29:43.925 UTC [policies] GetPolicy -> DEBU 2d2 Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:43.926 UTC [policies] GetPolicy -> DEBU 2d3 Returning dummy reject all policy because Writers could not be found in /Application/Writers +orderer.example.com | 2018-01-18 09:29:43.926 UTC [policies] GetPolicy -> DEBU 2d4 Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:43.926 UTC [policies] GetPolicy -> DEBU 2d5 Returning dummy reject all policy because Admins could not be found in /Application/Admins +orderer.example.com | 2018-01-18 09:29:43.926 UTC [common/configtx] addToMap -> DEBU 2d6 Adding to config map: [Groups] /Channel +orderer.example.com | 2018-01-18 09:29:43.926 UTC [common/configtx] addToMap -> DEBU 2d7 Adding to config map: [Groups] /Channel/Application +orderer.example.com | 2018-01-18 09:29:43.926 UTC [common/configtx] addToMap -> DEBU 2d8 Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | 2018-01-18 09:29:43.927 UTC [common/configtx] addToMap -> DEBU 2d9 Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | 2018-01-18 09:29:43.927 UTC [common/configtx] addToMap -> DEBU 2da Adding to config map: [Values] /Channel/Consortium +orderer.example.com | 2018-01-18 09:29:43.927 UTC [common/configtx] addToMap -> DEBU 2db Adding to config map: [Groups] /Channel +orderer.example.com | 2018-01-18 09:29:43.927 UTC [common/configtx] addToMap -> DEBU 2dc Adding to config map: [Groups] /Channel/Application +orderer.example.com | 2018-01-18 09:29:43.927 UTC [common/configtx] addToMap -> DEBU 2dd Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | 2018-01-18 09:29:43.927 UTC [common/configtx] addToMap -> DEBU 2de Adding to config map: [Groups] /Channel/Application/Org2MSP +peer0.org1.example.com | [41e 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [25a6f9d76aa52c533022afa31b53fbc82db82ffaf4c3ba9c076009e71d65cb1b]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [417 01-18 09:29:55.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [297d1937]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [44c 01-18 09:30:23.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7afc7dfc]sending state message TRANSACTION +orderer.example.com | 2018-01-18 09:29:43.928 UTC [common/configtx] addToMap -> DEBU 2df Adding to config map: [Policy] /Channel/Application/Admins +peer0.org2.example.com | [462 01-18 09:30:22.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [79910bc7]after send +peer0.org1.example.com | [41f 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:25a6f9d76aa52c533022afa31b53fbc82db82ffaf4c3ba9c076009e71d65cb1b +peer0.org1.example.com | [420 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [421 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [422 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org1.example.com | [423 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer0.org1.example.com | [424 01-18 09:29:55.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer0.org1.example.com | [425 01-18 09:29:55.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc420294300 +peer0.org1.example.com | [426 01-18 09:29:55.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [427 01-18 09:29:55.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [428 01-18 09:29:55.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +peer0.org1.example.com | [429 01-18 09:29:55.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [42a 01-18 09:29:55.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [42b 01-18 09:29:55.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421b9e050, header 0xc420294330 +peer0.org1.example.com | [42c 01-18 09:29:55.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +peer0.org1.example.com | [42d 01-18 09:29:55.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6 +peer0.org1.example.com | [42e 01-18 09:29:55.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6] +peer0.org1.example.com | [42f 01-18 09:29:55.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org1.example.com | [430 01-18 09:29:55.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [88548cdd-23d2-49e3-a12a-182fe7598ef2] +peer0.org1.example.com | [431 01-18 09:29:55.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6 channel id: businesschannel +peer0.org1.example.com | [432 01-18 09:29:55.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6 channel id: businesschannel version: 1.0.2 +peer1.org2.example.com | [418 01-18 09:29:55.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [297d1937]send state message COMPLETED +orderer.example.com | 2018-01-18 09:29:43.928 UTC [common/configtx] addToMap -> DEBU 2e0 Adding to config map: [Policy] /Channel/Application/Writers +peer1.org1.example.com | [44d 01-18 09:30:23.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7afc7dfc]Received message TRANSACTION from shim +peer0.org1.example.com | [433 01-18 09:29:55.55 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6,syscc=true,proposal=0xc421b9e050,canname=lscc:1.0.2 +peer0.org2.example.com | [464 01-18 09:30:22.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [79910bc7]Received RESPONSE, communicated (state:ready) +peer1.org2.example.com | [419 01-18 09:29:55.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [297d1937]Received message COMPLETED from shim +orderer.example.com | 2018-01-18 09:29:43.928 UTC [common/configtx] addToMap -> DEBU 2e1 Adding to config map: [Policy] /Channel/Application/Readers +peer1.org1.example.com | [44e 01-18 09:30:23.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7afc7dfc]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [434 01-18 09:29:55.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 +peer1.org2.example.com | [41a 01-18 09:29:55.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [297d1937]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [465 01-18 09:30:22.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [79910bc7]Transaction completed. Sending COMPLETED +orderer.example.com | 2018-01-18 09:29:43.928 UTC [common/configtx] addToMap -> DEBU 2e2 Adding to config map: [Values] /Channel/Consortium +orderer.example.com | 2018-01-18 09:29:43.928 UTC [policies] GetPolicy -> DEBU 2e3 Returning policy ChannelCreationPolicy for evaluation +peer1.org2.example.com | [41b 01-18 09:29:55.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [297d19378dad2f800b5c52e595ff8f396eceae8ff4dd30a5b72323261188c6bd]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [44f 01-18 09:30:23.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [7afc7dfc]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [435 01-18 09:29:55.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [41c 01-18 09:29:55.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:297d19378dad2f800b5c52e595ff8f396eceae8ff4dd30a5b72323261188c6bd +orderer.example.com | 2018-01-18 09:29:43.928 UTC [cauthdsl] func1 -> DEBU 2e4 0xc420026910 gate 1516267783928984703 evaluation starts +peer0.org2.example.com | [466 01-18 09:30:22.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [79910bc7]Move state message COMPLETED +peer1.org1.example.com | [450 01-18 09:30:23.69 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer1.org1.example.com | [451 01-18 09:30:23.69 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +peer1.org2.example.com | [41d 01-18 09:29:55.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | 2018-01-18 09:29:43.929 UTC [cauthdsl] func2 -> DEBU 2e5 0xc420026910 signed by 0 principal evaluation starts (used [false]) +peer0.org2.example.com | [467 01-18 09:30:22.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [79910bc7]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [436 01-18 09:29:55.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +peer1.org1.example.com | [452 01-18 09:30:23.69 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC +peer1.org2.example.com | [41e 01-18 09:29:55.17 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer1.org2.example.com | [41f 01-18 09:29:55.17 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +orderer.example.com | 2018-01-18 09:29:43.929 UTC [cauthdsl] func2 -> DEBU 2e6 0xc420026910 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +peer0.org2.example.com | [468 01-18 09:30:22.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [79910bc7]send state message COMPLETED +peer0.org1.example.com | [437 01-18 09:29:55.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [651f2997]Inside sendExecuteMessage. Message TRANSACTION +peer1.org1.example.com | [453 01-18 09:30:23.69 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +orderer.example.com | 2018-01-18 09:29:43.929 UTC [msp/identity] newIdentity -> DEBU 2e7 Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org2.example.com | [469 01-18 09:30:22.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [79910bc7]Received message COMPLETED from shim +peer0.org1.example.com | [438 01-18 09:29:55.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [454 01-18 09:30:23.69 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +peer1.org2.example.com | [420 01-18 09:29:55.17 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | [439 01-18 09:29:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org1.example.com | [455 01-18 09:30:23.69 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace exp02 +peer0.org2.example.com | [46a 01-18 09:30:22.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [79910bc7]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [46b 01-18 09:30:22.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [79910bc72d1a9ba3fd9ac6a98cdec470c2b4c2afd8dd6128c715aa89ad94672c]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [421 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer1.org2.example.com | [422 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +peer1.org2.example.com | [423 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org2.example.com | [46c 01-18 09:30:22.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:79910bc72d1a9ba3fd9ac6a98cdec470c2b4c2afd8dd6128c715aa89ad94672c +peer0.org1.example.com | [43a 01-18 09:29:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [651f2997]sendExecuteMsg trigger event TRANSACTION +peer1.org1.example.com | [456 01-18 09:30:23.69 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc +peer1.org2.example.com | [424 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4225eaa20 +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +peer0.org2.example.com | [46d 01-18 09:30:22.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [457 01-18 09:30:23.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [76f0630e-4c7b-46eb-b5cb-321f7caa9aae] +peer0.org1.example.com | [43b 01-18 09:29:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [651f2997]Move state message TRANSACTION +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer1.org2.example.com | [425 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\223\322\201\323\005\020\350\237\205\210\002\"\017businesschannel*@651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030\273\240\3642\341\013#\320\247\267\210\222\354\377n\237\303<(;\004\014\314y" +peer1.org2.example.com | [426 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org2.example.com | [46e 01-18 09:30:22.10 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=exp02,version=1.0,txid=79910bc72d1a9ba3fd9ac6a98cdec470c2b4c2afd8dd6128c715aa89ad94672c,syscc=false,proposal=0xc421f7e820,canname=exp02:1.0 +peer1.org1.example.com | [458 01-18 09:30:23.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer0.org1.example.com | [43c 01-18 09:29:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [651f2997]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org2.example.com | [427 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +peer0.org2.example.com | [46f 01-18 09:30:22.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch -> DEBU launchAndWaitForRegister fetched 2248 bytes from file system +peer1.org1.example.com | [459 01-18 09:30:23.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [76f0630e-4c7b-46eb-b5cb-321f7caa9aae] +peer0.org1.example.com | [43d 01-18 09:29:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [428 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +peer1.org1.example.com | [45a 01-18 09:30:23.69 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 +peer0.org1.example.com | [43e 01-18 09:29:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [651f2997]sending state message TRANSACTION +peer1.org2.example.com | [429 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org2.example.com | [42a 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org2.example.com | [42b 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421ea6a80, header channel_header:"\010\003\032\014\010\223\322\201\323\005\020\350\237\205\210\002\"\017businesschannel*@651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030\273\240\3642\341\013#\320\247\267\210\222\354\377n\237\303<(;\004\014\314y" +peer1.org2.example.com | [42c 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer1.org2.example.com | [42d 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer1.org2.example.com | [42e 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer1.org2.example.com | [42f 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +peer1.org2.example.com | [430 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6] +peer1.org2.example.com | [431 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +peer1.org2.example.com | [432 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org2.example.com | [470 01-18 09:30:22.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode exp02:1.0 is being launched +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +peer0.org1.example.com | [43f 01-18 09:29:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [651f2997]Received message TRANSACTION from shim +peer1.org1.example.com | [45b 01-18 09:30:23.69 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x953df0)} +peer1.org2.example.com | [433 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [e77fd3d7-57c2-4f19-9ed7-d56323a0265d] +peer0.org2.example.com | [471 01-18 09:30:22.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:43.930 UTC [cauthdsl] func2 -> DEBU 2e8 0xc420026910 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got Org1MSP) +peer0.org1.example.com | [440 01-18 09:29:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [651f2997]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org2.example.com | [434 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=187ae0fa-4c4f-4110-b0c0-ce832f5cded6,syscc=true,proposal=0x0,canname=vscc:1.0.2 +peer0.org2.example.com | [472 01-18 09:30:22.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org2.example.com:7052] +peer1.org1.example.com | [45c 01-18 09:30:23.69 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +orderer.example.com | 2018-01-18 09:29:43.930 UTC [cauthdsl] func2 -> DEBU 2e9 0xc420026910 principal evaluation fails +peer0.org1.example.com | [441 01-18 09:29:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [651f2997]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [442 01-18 09:29:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [651f2997]Sending GET_STATE +peer0.org1.example.com | [443 01-18 09:29:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [651f2997]Received message GET_STATE from shim +peer0.org2.example.com | [473 01-18 09:30:22.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container: exp02:1.0(networkid:dev,peerid:peer0.org2.example.com) +orderer.example.com | 2018-01-18 09:29:43.930 UTC [cauthdsl] func1 -> DEBU 2ea 0xc420026910 gate 1516267783928984703 evaluation fails +peer1.org2.example.com | [435 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6 chaindID businesschannel +peer0.org1.example.com | [444 01-18 09:29:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [651f2997]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer1.org1.example.com | [45d 01-18 09:30:23.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7afc7dfc]Transaction completed. Sending COMPLETED +peer0.org2.example.com | [474 01-18 09:30:22.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org2.example.com:7052 +orderer.example.com | 2018-01-18 09:29:43.930 UTC [cauthdsl] func1 -> DEBU 2eb 0xc420026920 gate 1516267783930860965 evaluation starts +peer1.org2.example.com | [436 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 +peer0.org1.example.com | [445 01-18 09:29:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [651f2997]Received GET_STATE, invoking get state from ledger +peer0.org2.example.com | [475 01-18 09:30:22.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +peer1.org2.example.com | [437 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | 2018-01-18 09:29:43.930 UTC [cauthdsl] func2 -> DEBU 2ec 0xc420026920 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:29:43.931 UTC [cauthdsl] func2 -> DEBU 2ed 0xc420026920 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +peer0.org1.example.com | [446 01-18 09:29:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [447 01-18 09:29:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [651f2997] getting state for chaincode lscc, key exp02, channel businesschannel +peer0.org1.example.com | [448 01-18 09:29:55.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer1.org2.example.com | [438 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 +orderer.example.com | 2018-01-18 09:29:43.931 UTC [msp/identity] newIdentity -> DEBU 2ee Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org2.example.com | CORE_CHAINCODE_ID_NAME=exp02:1.0 +peer1.org1.example.com | [45e 01-18 09:30:23.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7afc7dfc]Move state message COMPLETED +peer0.org1.example.com | [449 01-18 09:29:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [651f2997]No state associated with key: exp02. Sending RESPONSE with an empty payload +peer1.org2.example.com | [439 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [187ae0fa]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +peer0.org2.example.com | CORE_PEER_TLS_ENABLED=true +peer0.org1.example.com | [44a 01-18 09:29:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [651f2997]handleGetState serial send RESPONSE +peer1.org1.example.com | [45f 01-18 09:30:23.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7afc7dfc]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [43a 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org1.example.com | [460 01-18 09:30:23.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7afc7dfc]send state message COMPLETED +peer1.org2.example.com | [43b 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [187ae0fa]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [44b 01-18 09:29:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [651f2997]Received message RESPONSE from shim +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org1.example.com | [461 01-18 09:30:23.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7afc7dfc]Received message COMPLETED from shim +peer1.org2.example.com | [43c 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [187ae0fa]Move state message TRANSACTION +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +peer0.org1.example.com | [44c 01-18 09:29:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [651f2997]Handling ChaincodeMessage of type: RESPONSE(state:ready) +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +peer1.org1.example.com | [462 01-18 09:30:23.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7afc7dfc]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [43d 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [187ae0fa]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org2.example.com | [476 01-18 09:30:22.10 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(dev-peer0.org2.example.com-exp02-1.0) lock +peer0.org1.example.com | [44d 01-18 09:29:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [651f2997]before send +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer1.org2.example.com | [43e 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [477 01-18 09:30:22.10 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (dev-peer0.org2.example.com-exp02-1.0) lock +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +peer0.org2.example.com | [478 01-18 09:30:22.10 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Cleanup container dev-peer0.org2.example.com-exp02-1.0 +peer0.org1.example.com | [44f 01-18 09:29:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [651f2997]GetState received payload RESPONSE +peer1.org1.example.com | [463 01-18 09:30:23.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7afc7dfc-f7c9-4a42-b631-97ae4e5b7fe0]HandleMessage- COMPLETED. Notify +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +peer1.org2.example.com | [43f 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [187ae0fa]sending state message TRANSACTION +peer1.org2.example.com | [440 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [187ae0fa]Received message TRANSACTION from shim +peer0.org2.example.com | [479 01-18 09:30:22.10 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Stop container dev-peer0.org2.example.com-exp02-1.0(No such container: dev-peer0.org2.example.com-exp02-1.0) +peer1.org1.example.com | [464 01-18 09:30:23.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:7afc7dfc-f7c9-4a42-b631-97ae4e5b7fe0 +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +peer0.org1.example.com | [44e 01-18 09:29:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [651f2997]after send +peer1.org2.example.com | [441 01-18 09:30:23.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [187ae0fa]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org2.example.com | [47a 01-18 09:30:22.10 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Kill container dev-peer0.org2.example.com-exp02-1.0 (No such container: dev-peer0.org2.example.com-exp02-1.0) +peer1.org1.example.com | [465 01-18 09:30:23.69 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +peer0.org1.example.com | [451 01-18 09:29:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.createChaincode.putChaincodeData.PutState.handlePutState -> DEBU [651f2997]Inside putstate +peer1.org2.example.com | [442 01-18 09:30:23.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [187ae0fa]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org2.example.com | [443 01-18 09:30:23.72 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer0.org2.example.com | [47b 01-18 09:30:22.10 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Remove container dev-peer0.org2.example.com-exp02-1.0 (No such container: dev-peer0.org2.example.com-exp02-1.0) +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +peer0.org1.example.com | [452 01-18 09:29:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.createChaincode.putChaincodeData.PutState.handlePutState -> DEBU [651f2997]Sending PUT_STATE +peer0.org1.example.com | [453 01-18 09:29:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [651f2997]Received message PUT_STATE from shim +peer1.org1.example.com | [466 01-18 09:30:23.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [27795a91-0623-4206-8c2d-dec7cff0d64a] +peer0.org2.example.com | [47c 01-18 09:30:22.10 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Start container dev-peer0.org2.example.com-exp02-1.0 +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +peer1.org2.example.com | [444 01-18 09:30:23.72 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +peer0.org1.example.com | [454 01-18 09:29:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [651f2997]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +peer1.org1.example.com | [467 01-18 09:30:23.69 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer0.org2.example.com | [47d 01-18 09:30:22.10 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: v102_default +orderer.example.com | xHTBvxfK6mAzmUitFmY= +peer1.org2.example.com | [445 01-18 09:30:23.72 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC +peer0.org1.example.com | [455 01-18 09:29:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [468 01-18 09:30:23.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer0.org2.example.com | [47e 01-18 09:30:22.11 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer0.org2.example.com-exp02-1.0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:43.932 UTC [msp] SatisfiesPrincipal -> DEBU 2ef Checking if identity satisfies ADMIN role for Org1MSP +orderer.example.com | 2018-01-18 09:29:43.932 UTC [cauthdsl] func2 -> DEBU 2f0 0xc420026920 principal matched by identity 0 +orderer.example.com | 2018-01-18 09:29:43.933 UTC [msp/identity] Verify -> DEBU 2f1 Verify: digest = 00000000 c2 fe 17 b4 c8 3b c1 d6 17 b0 19 ac b7 be a1 8c |.....;..........| +orderer.example.com | 00000010 b9 9f 4f e4 be 55 e9 d4 15 9e 05 c0 ee c6 5c 37 |..O..U........\7| +orderer.example.com | 2018-01-18 09:29:43.933 UTC [msp/identity] Verify -> DEBU 2f2 Verify: sig = 00000000 30 45 02 21 00 91 a7 72 c6 06 52 e5 fc dc 81 54 |0E.!...r..R....T| +orderer.example.com | 00000010 76 54 81 da 3e 58 9e 11 df f1 67 fb 92 ed 61 ef |vT..>X....g...a.| +orderer.example.com | 00000020 bc ae 13 4e 1c 02 20 3d 4a 89 e2 1b 4e e0 cd 08 |...N.. =J...N...| +peer1.org2.example.com | [446 01-18 09:30:23.72 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +peer0.org1.example.com | [456 01-18 09:29:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [651f2997]state is ready +peer0.org2.example.com | [47f 01-18 09:30:22.11 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-could not find image (container id ), because of ...attempt to recreate image +peer0.org2.example.com | [480 01-18 09:30:22.11 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms] do.do.Start.func1.GenerateDockerBuild.generateDockerfile -> DEBU +peer0.org2.example.com | FROM hyperledger/fabric-baseos:x86_64-0.3.2 +peer0.org2.example.com | ADD binpackage.tar /usr/local/bin +peer0.org2.example.com | LABEL org.hyperledger.fabric.chaincode.id.name="exp02" \ +peer0.org2.example.com | org.hyperledger.fabric.chaincode.id.version="1.0" \ +peer0.org2.example.com | org.hyperledger.fabric.chaincode.type="GOLANG" \ +peer0.org2.example.com | org.hyperledger.fabric.version="1.0.2" \ +peer0.org2.example.com | org.hyperledger.fabric.base.version="0.3.2" +peer0.org2.example.com | ENV CORE_CHAINCODE_BUILDLEVEL=1.0.2 +peer0.org2.example.com | ENV CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt +peer0.org2.example.com | COPY peer.crt /etc/hyperledger/fabric/peer.crt +peer0.org2.example.com | [481 01-18 09:30:22.12 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/util] generateDockerBuild.GenerateDockerBuild.DockerBuild -> DEBU Attempting build with image hyperledger/fabric-ccenv:x86_64-1.0.2 +peer0.org2.example.com | [482 01-18 09:30:23.65 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [3], peers number [3] +peer0.org2.example.com | [483 01-18 09:30:23.65 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [3], peers number [3] +orderer.example.com | 00000030 aa 9f b4 66 db 3a 4a 2f 16 cc ff a7 a1 0c 8b ca |...f.:J/........| +orderer.example.com | 00000040 0f 7a a5 e9 a8 21 9c |.z...!.| +orderer.example.com | 2018-01-18 09:29:43.933 UTC [cauthdsl] func2 -> DEBU 2f3 0xc420026920 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-18 09:29:43.933 UTC [cauthdsl] func1 -> DEBU 2f4 0xc420026920 gate 1516267783930860965 evaluation succeeds +orderer.example.com | 2018-01-18 09:29:43.934 UTC [common/configtx] recurseConfigMap -> DEBU 2f5 Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:43.934 UTC [common/configtx] recurseConfigMap -> DEBU 2f6 Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:43.934 UTC [common/configtx] recurseConfigMap -> DEBU 2f7 Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:43.934 UTC [common/configtx] recurseConfigMap -> DEBU 2f8 Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:43.935 UTC [common/configtx] recurseConfigMap -> DEBU 2f9 Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:43.935 UTC [common/configtx] recurseConfigMap -> DEBU 2fa Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:43.935 UTC [common/configtx] recurseConfigMap -> DEBU 2fb Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:43.935 UTC [common/configtx] recurseConfigMap -> DEBU 2fc Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [457 01-18 09:29:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [651f2997]Completed PUT_STATE. Sending RESPONSE +peer0.org2.example.com | [484 01-18 09:30:23.65 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer1.org1.example.com | [469 01-18 09:30:23.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc4217c6d00), Data:(*common.BlockData)(0xc4216361c0), Metadata:(*common.BlockMetadata)(0xc421636200)}, doMVCCValidation=true +orderer.example.com | 2018-01-18 09:29:43.935 UTC [common/configtx] recurseConfigMap -> DEBU 2fd Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [447 01-18 09:30:23.72 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +peer0.org1.example.com | [458 01-18 09:29:55.57 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [651f2997]enterBusyState trigger event RESPONSE +peer0.org1.example.com | [459 01-18 09:29:55.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [651f2997]Move state message RESPONSE +peer0.org1.example.com | [45a 01-18 09:29:55.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [651f2997]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +peer0.org2.example.com | [485 01-18 09:30:23.65 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +peer0.org2.example.com | [486 01-18 09:30:23.65 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer0.org2.example.com | [487 01-18 09:30:23.65 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc422612f90 +peer0.org2.example.com | [488 01-18 09:30:23.65 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\223\322\201\323\005\020\350\237\205\210\002\"\017businesschannel*@651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030\273\240\3642\341\013#\320\247\267\210\222\354\377n\237\303<(;\004\014\314y" +peer1.org2.example.com | [448 01-18 09:30:23.72 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace exp02 +peer1.org2.example.com | [449 01-18 09:30:23.72 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc +peer1.org2.example.com | [44a 01-18 09:30:23.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [6fc38307-2619-4b38-a098-2fa7385017f7] +peer1.org2.example.com | [44b 01-18 09:30:23.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer1.org2.example.com | [44c 01-18 09:30:23.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [6fc38307-2619-4b38-a098-2fa7385017f7] +orderer.example.com | 2018-01-18 09:29:43.936 UTC [common/configtx] recurseConfigMap -> DEBU 2fe Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [45b 01-18 09:29:55.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [489 01-18 09:30:23.65 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org1.example.com | [46a 01-18 09:30:23.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +peer1.org1.example.com | [46b 01-18 09:30:23.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer1.org2.example.com | [44d 01-18 09:30:23.72 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 +orderer.example.com | 2018-01-18 09:29:43.936 UTC [common/configtx] recurseConfigMap -> DEBU 2ff Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org2.example.com | [48a 01-18 09:30:23.65 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [45c 01-18 09:29:55.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [651f2997]sending state message RESPONSE +peer1.org1.example.com | [46c 01-18 09:30:23.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [3] Transaction index [0] TxId [651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6] marked as valid by state validator +peer1.org2.example.com | [44e 01-18 09:30:23.72 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x953df0)} +orderer.example.com | 2018-01-18 09:29:43.936 UTC [common/configtx] recurseConfigMap -> DEBU 300 Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [450 01-18 09:29:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [651f2997]Received RESPONSE, communicated (state:ready) +peer0.org2.example.com | [48b 01-18 09:30:23.65 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +peer1.org2.example.com | [44f 01-18 09:30:23.72 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +orderer.example.com | 2018-01-18 09:29:43.936 UTC [common/configtx] recurseConfigMap -> DEBU 301 Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org1.example.com | [46d 01-18 09:30:23.69 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0x8a, 0x53, 0x56, 0xf, 0x7f, 0x2f, 0x8e, 0x2d, 0xd8, 0x4c, 0x3b, 0x34, 0x50, 0xc5, 0x52, 0x82, 0xe4, 0xc0, 0x8c, 0x36, 0x63, 0x95, 0x3a, 0xc, 0x39, 0x9b, 0xb8, 0x1a, 0x82, 0x88, 0x47, 0xb9} txOffsets= +peer0.org2.example.com | [48c 01-18 09:30:23.65 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org2.example.com | [450 01-18 09:30:23.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [187ae0fa]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [45d 01-18 09:29:55.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [651f2997]Received message RESPONSE from shim +orderer.example.com | 2018-01-18 09:29:43.936 UTC [common/configtx] recurseConfigMap -> DEBU 302 Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | txId=651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6 locPointer=offset=70, bytesLength=3393 +peer1.org2.example.com | [451 01-18 09:30:23.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [187ae0fa]Move state message COMPLETED +peer0.org2.example.com | [48d 01-18 09:30:23.65 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [45e 01-18 09:29:55.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [651f2997]Handling ChaincodeMessage of type: RESPONSE(state:ready) +orderer.example.com | 2018-01-18 09:29:43.936 UTC [common/configtx] recurseConfigMap -> DEBU 303 Setting policy for key BlockValidation to policy: mod_policy:"Admins" +peer1.org1.example.com | ] +peer1.org2.example.com | [452 01-18 09:30:23.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [187ae0fa]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [48e 01-18 09:30:23.65 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421838000, header channel_header:"\010\003\032\014\010\223\322\201\323\005\020\350\237\205\210\002\"\017businesschannel*@651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030\273\240\3642\341\013#\320\247\267\210\222\354\377n\237\303<(;\004\014\314y" +peer0.org1.example.com | [45f 01-18 09:29:55.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [651f2997]before send +orderer.example.com | 2018-01-18 09:29:43.937 UTC [common/configtx] recurseConfigMap -> DEBU 304 Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org1.example.com | [46e 01-18 09:30:23.69 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=39531, bytesLength=3393] for tx ID: [651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6] to index +peer1.org2.example.com | [453 01-18 09:30:23.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [187ae0fa]send state message COMPLETED +peer0.org2.example.com | [48f 01-18 09:30:23.66 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer0.org1.example.com | [460 01-18 09:29:55.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [651f2997]after send +orderer.example.com | 2018-01-18 09:29:43.937 UTC [common/configtx] recurseConfigMap -> DEBU 305 Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org1.example.com | [46f 01-18 09:30:23.69 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=39531, bytesLength=3393] for tx number:[0] ID: [651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6] to blockNumTranNum index +peer1.org2.example.com | [454 01-18 09:30:23.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [187ae0fa]Received message COMPLETED from shim +peer0.org2.example.com | [490 01-18 09:30:23.66 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer1.org1.example.com | [470 01-18 09:30:23.69 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[44674], isChainEmpty=[false], lastBlockNumber=[3] +orderer.example.com | 2018-01-18 09:29:43.938 UTC [common/configtx] recurseConfigMap -> DEBU 306 Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [461 01-18 09:29:55.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.createChaincode.putChaincodeData.PutState.handlePutState -> DEBU [651f2997]Received RESPONSE. Successfully updated state +peer1.org2.example.com | [455 01-18 09:30:23.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [187ae0fa]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [471 01-18 09:30:23.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [3] with 1 transaction(s) +orderer.example.com | 2018-01-18 09:29:43.938 UTC [common/configtx] recurseConfigMap -> DEBU 307 Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [462 01-18 09:29:55.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [651f2997]Transaction completed. Sending COMPLETED +peer1.org2.example.com | [456 01-18 09:30:23.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [187ae0fa-4c4f-4110-b0c0-ce832f5cded6]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [491 01-18 09:30:23.66 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer1.org1.example.com | [472 01-18 09:30:23.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +orderer.example.com | 2018-01-18 09:29:43.938 UTC [common/configtx] processConfig -> DEBU 308 Beginning new config for channel businesschannel +peer0.org1.example.com | [463 01-18 09:29:55.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [651f2997]Received RESPONSE, communicated (state:ready) +peer1.org2.example.com | [457 01-18 09:30:23.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:187ae0fa-4c4f-4110-b0c0-ce832f5cded6 +peer0.org2.example.com | [492 01-18 09:30:23.66 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +peer1.org1.example.com | [473 01-18 09:30:23.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +peer0.org1.example.com | [464 01-18 09:29:55.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [651f2997]Move state message COMPLETED +peer1.org2.example.com | [458 01-18 09:30:23.74 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | 2018-01-18 09:29:43.938 UTC [common/config] NewStandardValues -> DEBU 309 Initializing protos for *config.ChannelProtos +peer0.org2.example.com | [493 01-18 09:30:23.66 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6] +peer1.org1.example.com | [474 01-18 09:30:23.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] +peer0.org1.example.com | [465 01-18 09:29:55.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [651f2997]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [459 01-18 09:30:23.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [e77fd3d7-57c2-4f19-9ed7-d56323a0265d] +orderer.example.com | 2018-01-18 09:29:43.939 UTC [common/config] initializeProtosStruct -> DEBU 30a Processing field: HashingAlgorithm +peer0.org2.example.com | [494 01-18 09:30:23.67 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +peer1.org1.example.com | [475 01-18 09:30:23.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] +peer1.org2.example.com | [45a 01-18 09:30:23.74 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer0.org1.example.com | [466 01-18 09:29:55.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [651f2997]send state message COMPLETED +orderer.example.com | 2018-01-18 09:29:43.939 UTC [common/config] initializeProtosStruct -> DEBU 30b Processing field: BlockDataHashingStructure +peer0.org2.example.com | [495 01-18 09:30:23.67 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org1.example.com | [476 01-18 09:30:23.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6c, 0x73, 0x63, 0x63, 0x0, 0x65, 0x78, 0x70, 0x30, 0x32}] +peer0.org2.example.com | [496 01-18 09:30:23.67 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [4cb3a486-9075-42ff-b7c5-a53800e16ea5] +peer1.org2.example.com | [45b 01-18 09:30:23.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +orderer.example.com | 2018-01-18 09:29:43.939 UTC [common/config] initializeProtosStruct -> DEBU 30c Processing field: OrdererAddresses +peer0.org1.example.com | [467 01-18 09:29:55.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [651f2997]Received message COMPLETED from shim +peer0.org2.example.com | [497 01-18 09:30:23.67 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=82a62d9c-8171-4739-958e-7fbcf29044ff,syscc=true,proposal=0x0,canname=vscc:1.0.2 +peer1.org2.example.com | [45c 01-18 09:30:23.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc42264e300), Data:(*common.BlockData)(0xc421f38440), Metadata:(*common.BlockMetadata)(0xc421f38480)}, doMVCCValidation=true +orderer.example.com | 2018-01-18 09:29:43.939 UTC [common/config] initializeProtosStruct -> DEBU 30d Processing field: Consortium +peer1.org1.example.com | [477 01-18 09:30:23.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +peer0.org2.example.com | [498 01-18 09:30:23.67 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6 chaindID businesschannel +peer0.org1.example.com | [468 01-18 09:29:55.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [651f2997]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [478 01-18 09:30:23.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [3] with [1] transactions +peer1.org1.example.com | [479 01-18 09:30:23.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [3] +peer1.org2.example.com | [45d 01-18 09:30:23.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +peer0.org1.example.com | [469 01-18 09:29:55.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [499 01-18 09:30:23.67 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 +orderer.example.com | 2018-01-18 09:29:43.939 UTC [policies] ProposePolicy -> DEBU 30e Proposed new policy Admins for Channel +peer1.org1.example.com | [47a 01-18 09:30:23.70 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer1.org2.example.com | [45e 01-18 09:30:23.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer0.org1.example.com | [46a 01-18 09:29:55.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6 +peer0.org2.example.com | [49a 01-18 09:30:23.67 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | 2018-01-18 09:29:43.939 UTC [policies] ProposePolicy -> DEBU 30f Proposed new policy Readers for Channel +peer1.org1.example.com | [47b 01-18 09:30:23.70 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: 651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6 +peer1.org2.example.com | [45f 01-18 09:30:23.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [3] Transaction index [0] TxId [651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6] marked as valid by state validator +peer0.org1.example.com | [46b 01-18 09:29:55.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | 2018-01-18 09:29:43.940 UTC [policies] ProposePolicy -> DEBU 310 Proposed new policy Writers for Channel +peer1.org2.example.com | [460 01-18 09:30:23.75 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0x8a, 0x53, 0x56, 0xf, 0x7f, 0x2f, 0x8e, 0x2d, 0xd8, 0x4c, 0x3b, 0x34, 0x50, 0xc5, 0x52, 0x82, 0xe4, 0xc0, 0x8c, 0x36, 0x63, 0x95, 0x3a, 0xc, 0x39, 0x9b, 0xb8, 0x1a, 0x82, 0x88, 0x47, 0xb9} txOffsets= +peer1.org1.example.com | [47c 01-18 09:30:23.70 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [3] +peer0.org2.example.com | [49b 01-18 09:30:23.67 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 +peer0.org1.example.com | [46c 01-18 09:29:55.57 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=exp02,version=1.0,txid=651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6,syscc=false,proposal=0xc421b9e050,canname=exp02:1.0 +orderer.example.com | 2018-01-18 09:29:43.940 UTC [common/config] NewStandardValues -> DEBU 311 Initializing protos for *struct {} +peer1.org2.example.com | txId=651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6 locPointer=offset=70, bytesLength=3393 +peer1.org2.example.com | ] +peer1.org1.example.com | [47d 01-18 09:30:23.70 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +orderer.example.com | 2018-01-18 09:29:43.940 UTC [policies] ProposePolicy -> DEBU 312 Proposed new policy Writers for Application +peer0.org2.example.com | [49c 01-18 09:30:23.67 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [82a62d9c]Inside sendExecuteMessage. Message TRANSACTION +peer1.org1.example.com | [47e 01-18 09:30:23.70 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer1.org2.example.com | [461 01-18 09:30:23.75 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=39531, bytesLength=3393] for tx ID: [651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6] to index +orderer.example.com | 2018-01-18 09:29:43.940 UTC [policies] ProposePolicy -> DEBU 313 Proposed new policy Readers for Application +peer0.org2.example.com | [49d 01-18 09:30:23.67 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [46d 01-18 09:29:55.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch -> DEBU launchAndWaitForRegister fetched 2248 bytes from file system +peer1.org1.example.com | [47f 01-18 09:30:23.70 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer1.org2.example.com | [462 01-18 09:30:23.75 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=39531, bytesLength=3393] for tx number:[0] ID: [651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6] to blockNumTranNum index +orderer.example.com | 2018-01-18 09:29:43.940 UTC [policies] ProposePolicy -> DEBU 314 Proposed new policy Admins for Application +peer0.org2.example.com | [49e 01-18 09:30:23.67 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [82a62d9c]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [46e 01-18 09:29:55.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode exp02:1.0 is being launched +peer0.org1.example.com | [46f 01-18 09:29:55.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +peer0.org1.example.com | [470 01-18 09:29:55.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] +peer0.org2.example.com | [49f 01-18 09:30:23.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [82a62d9c]Move state message TRANSACTION +peer1.org1.example.com | [480 01-18 09:30:23.70 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +peer1.org1.example.com | [481 01-18 09:30:23.70 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +peer1.org2.example.com | [463 01-18 09:30:23.75 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[44674], isChainEmpty=[false], lastBlockNumber=[3] +orderer.example.com | 2018-01-18 09:29:43.940 UTC [common/config] NewStandardValues -> DEBU 315 Initializing protos for *config.OrganizationProtos +peer0.org2.example.com | [4a0 01-18 09:30:23.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [82a62d9c]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [471 01-18 09:29:55.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container: exp02:1.0(networkid:dev,peerid:peer0.org1.example.com) +peer1.org1.example.com | [482 01-18 09:30:47.12 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [4], peers number [3] +peer1.org2.example.com | [464 01-18 09:30:23.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [3] with 1 transaction(s) +orderer.example.com | 2018-01-18 09:29:43.940 UTC [common/config] initializeProtosStruct -> DEBU 316 Processing field: MSP +peer0.org2.example.com | [4a1 01-18 09:30:23.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [472 01-18 09:29:55.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 +peer1.org2.example.com | [465 01-18 09:30:23.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +orderer.example.com | 2018-01-18 09:29:43.941 UTC [common/config] NewStandardValues -> DEBU 317 Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | 2018-01-18 09:29:43.941 UTC [common/config] initializeProtosStruct -> DEBU 318 Processing field: AnchorPeers +peer0.org2.example.com | [4a2 01-18 09:30:23.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [82a62d9c]sending state message TRANSACTION +peer0.org1.example.com | [473 01-18 09:29:55.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +peer1.org1.example.com | [484 01-18 09:30:47.12 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer1.org1.example.com | [485 01-18 09:30:47.12 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +peer1.org1.example.com | [486 01-18 09:30:47.12 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer1.org1.example.com | [487 01-18 09:30:47.12 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421c31350 +peer1.org1.example.com | [488 01-18 09:30:47.12 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\256\322\201\323\005\020\353\233\354*\"\017businesschannel*@79910bc72d1a9ba3fd9ac6a98cdec470c2b4c2afd8dd6128c715aa89ad94672c:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\030\343\0211\005\250w\252\312\31341o<\362\302P\273g>4\340\275\032\306" +peer1.org1.example.com | [489 01-18 09:30:47.12 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org1.example.com | [48a 01-18 09:30:47.12 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org1.example.com | [48b 01-18 09:30:47.12 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} +peer1.org1.example.com | [48c 01-18 09:30:47.12 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org1.example.com | [48d 01-18 09:30:47.12 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org1.example.com | [48e 01-18 09:30:47.12 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc4215f2000, header channel_header:"\010\003\032\013\010\256\322\201\323\005\020\353\233\354*\"\017businesschannel*@79910bc72d1a9ba3fd9ac6a98cdec470c2b4c2afd8dd6128c715aa89ad94672c:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\030\343\0211\005\250w\252\312\31341o<\362\302P\273g>4\340\275\032\306" +peer1.org1.example.com | [48f 01-18 09:30:47.12 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer1.org1.example.com | [490 01-18 09:30:47.12 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer1.org1.example.com | [491 01-18 09:30:47.12 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer1.org2.example.com | [466 01-18 09:30:23.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=exp02:1.0 +peer0.org2.example.com | [4a3 01-18 09:30:23.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [82a62d9c]Received message TRANSACTION from shim +peer1.org1.example.com | [492 01-18 09:30:47.12 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +orderer.example.com | 2018-01-18 09:29:43.941 UTC [common/config] NewStandardValues -> DEBU 319 Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true +peer1.org2.example.com | [467 01-18 09:30:23.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] +peer0.org2.example.com | [4a4 01-18 09:30:23.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [82a62d9c]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org1.example.com | [493 01-18 09:30:47.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [79910bc72d1a9ba3fd9ac6a98cdec470c2b4c2afd8dd6128c715aa89ad94672c] +orderer.example.com | 2018-01-18 09:29:43.941 UTC [common/config] initializeProtosStruct -> DEBU 31a Processing field: MSP +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer1.org2.example.com | [468 01-18 09:30:23.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] +peer0.org2.example.com | [4a5 01-18 09:30:23.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [82a62d9c]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | 2018-01-18 09:29:43.941 UTC [policies] ProposePolicy -> DEBU 31b Proposed new policy Writers for Org1MSP +peer1.org1.example.com | [494 01-18 09:30:47.12 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer1.org2.example.com | [469 01-18 09:30:23.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6c, 0x73, 0x63, 0x63, 0x0, 0x65, 0x78, 0x70, 0x30, 0x32}] +peer0.org2.example.com | [4a6 01-18 09:30:23.68 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer1.org1.example.com | [495 01-18 09:30:47.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +peer1.org2.example.com | [46a 01-18 09:30:23.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +orderer.example.com | 2018-01-18 09:29:43.942 UTC [policies] ProposePolicy -> DEBU 31c Proposed new policy Admins for Org1MSP +peer1.org1.example.com | [496 01-18 09:30:47.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [6730a7f1-a121-4295-89bb-128518d6718b] +peer0.org1.example.com | [474 01-18 09:29:55.57 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(dev-peer0.org1.example.com-exp02-1.0) lock +peer1.org2.example.com | [46b 01-18 09:30:23.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [3] with [1] transactions +orderer.example.com | 2018-01-18 09:29:43.942 UTC [policies] ProposePolicy -> DEBU 31d Proposed new policy Readers for Org1MSP +peer0.org2.example.com | [4a7 01-18 09:30:23.68 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +peer1.org1.example.com | [497 01-18 09:30:47.12 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=e3eb2066-44ca-4f3e-9b50-b724f5593441,syscc=true,proposal=0x0,canname=vscc:1.0.2 +peer1.org2.example.com | [46c 01-18 09:30:23.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [3] +orderer.example.com | 2018-01-18 09:29:43.942 UTC [common/config] NewStandardValues -> DEBU 31e Initializing protos for *config.OrganizationProtos +peer0.org2.example.com | [4a8 01-18 09:30:23.68 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC +peer0.org1.example.com | [475 01-18 09:29:55.57 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (dev-peer0.org1.example.com-exp02-1.0) lock +peer1.org1.example.com | [498 01-18 09:30:47.12 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 79910bc72d1a9ba3fd9ac6a98cdec470c2b4c2afd8dd6128c715aa89ad94672c chaindID businesschannel +peer0.org2.example.com | [4a9 01-18 09:30:23.68 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +peer0.org1.example.com | [476 01-18 09:29:55.57 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Cleanup container dev-peer0.org1.example.com-exp02-1.0 +peer1.org2.example.com | [46d 01-18 09:30:23.75 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +orderer.example.com | 2018-01-18 09:29:43.942 UTC [common/config] initializeProtosStruct -> DEBU 31f Processing field: MSP +orderer.example.com | 2018-01-18 09:29:43.943 UTC [common/config] NewStandardValues -> DEBU 320 Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | 2018-01-18 09:29:43.943 UTC [common/config] initializeProtosStruct -> DEBU 321 Processing field: AnchorPeers +peer0.org1.example.com | [477 01-18 09:29:55.57 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Stop container dev-peer0.org1.example.com-exp02-1.0(No such container: dev-peer0.org1.example.com-exp02-1.0) +peer1.org2.example.com | [46e 01-18 09:30:23.75 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: 651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6 +peer0.org2.example.com | [4aa 01-18 09:30:23.68 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +peer1.org1.example.com | [499 01-18 09:30:47.12 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 +peer0.org1.example.com | [478 01-18 09:29:55.58 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Kill container dev-peer0.org1.example.com-exp02-1.0 (No such container: dev-peer0.org1.example.com-exp02-1.0) +orderer.example.com | 2018-01-18 09:29:43.943 UTC [common/config] NewStandardValues -> DEBU 322 Initializing protos for *config.OrganizationProtos +peer1.org2.example.com | [46f 01-18 09:30:23.75 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [3] +peer0.org2.example.com | [4ab 01-18 09:30:23.70 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace exp02 +peer1.org1.example.com | [49a 01-18 09:30:47.12 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [479 01-18 09:29:55.58 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Remove container dev-peer0.org1.example.com-exp02-1.0 (No such container: dev-peer0.org1.example.com-exp02-1.0) +orderer.example.com | 2018-01-18 09:29:43.943 UTC [common/config] initializeProtosStruct -> DEBU 323 Processing field: MSP +peer1.org2.example.com | [470 01-18 09:30:23.75 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +peer0.org2.example.com | [4ac 01-18 09:30:23.70 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc +peer1.org1.example.com | [49b 01-18 09:30:47.12 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 +peer0.org1.example.com | [47a 01-18 09:29:55.58 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Start container dev-peer0.org1.example.com-exp02-1.0 +orderer.example.com | 2018-01-18 09:29:43.944 UTC [policies] ProposePolicy -> DEBU 324 Proposed new policy Writers for Org2MSP +peer0.org2.example.com | [4ad 01-18 09:30:23.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [65226b77-8b95-4338-a43c-242674be4897] +peer1.org2.example.com | [471 01-18 09:30:23.75 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer1.org1.example.com | [49c 01-18 09:30:47.12 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [e3eb2066]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [47b 01-18 09:29:55.58 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: v102_default +orderer.example.com | 2018-01-18 09:29:43.944 UTC [policies] ProposePolicy -> DEBU 325 Proposed new policy Admins for Org2MSP +peer0.org2.example.com | [4ae 01-18 09:30:23.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer1.org2.example.com | [472 01-18 09:30:23.75 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer1.org1.example.com | [49d 01-18 09:30:47.12 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [47c 01-18 09:29:55.58 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer0.org1.example.com-exp02-1.0 +peer0.org2.example.com | [4af 01-18 09:30:23.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [65226b77-8b95-4338-a43c-242674be4897] +peer1.org2.example.com | [473 01-18 09:30:23.75 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +peer1.org1.example.com | [49e 01-18 09:30:47.12 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [e3eb2066]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [47d 01-18 09:29:55.58 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-could not find image (container id ), because of ...attempt to recreate image +orderer.example.com | 2018-01-18 09:29:43.944 UTC [policies] ProposePolicy -> DEBU 326 Proposed new policy Readers for Org2MSP +peer1.org2.example.com | [474 01-18 09:30:23.75 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +peer0.org2.example.com | [4b0 01-18 09:30:23.70 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 +peer0.org1.example.com | [47e 01-18 09:29:55.59 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms] do.do.Start.func1.GenerateDockerBuild.generateDockerfile -> DEBU +peer1.org2.example.com | [475 01-18 09:30:45.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +orderer.example.com | 2018-01-18 09:29:43.944 UTC [common/config] NewStandardValues -> DEBU 327 Initializing protos for *config.OrdererProtos +peer1.org1.example.com | [49f 01-18 09:30:47.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e3eb2066]Move state message TRANSACTION +peer0.org2.example.com | [4b1 01-18 09:30:23.70 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x953df0)} +peer0.org1.example.com | FROM hyperledger/fabric-baseos:x86_64-0.3.2 +peer1.org2.example.com | [476 01-18 09:30:45.47 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421bb30e0 +peer1.org1.example.com | [4a0 01-18 09:30:47.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e3eb2066]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org2.example.com | [4b2 01-18 09:30:23.70 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +orderer.example.com | 2018-01-18 09:29:43.944 UTC [common/config] initializeProtosStruct -> DEBU 328 Processing field: ConsensusType +peer0.org1.example.com | ADD binpackage.tar /usr/local/bin +peer1.org2.example.com | [477 01-18 09:30:45.47 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org1.example.com | [4a1 01-18 09:30:47.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [4b3 01-18 09:30:23.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [82a62d9c]Transaction completed. Sending COMPLETED +orderer.example.com | 2018-01-18 09:29:43.945 UTC [common/config] initializeProtosStruct -> DEBU 329 Processing field: BatchSize +peer0.org1.example.com | LABEL org.hyperledger.fabric.chaincode.id.name="exp02" \ +peer0.org1.example.com | org.hyperledger.fabric.chaincode.id.version="1.0" \ +peer0.org1.example.com | org.hyperledger.fabric.chaincode.type="GOLANG" \ +peer0.org1.example.com | org.hyperledger.fabric.version="1.0.2" \ +peer0.org1.example.com | org.hyperledger.fabric.base.version="0.3.2" +peer0.org1.example.com | ENV CORE_CHAINCODE_BUILDLEVEL=1.0.2 +peer0.org1.example.com | ENV CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt +peer0.org1.example.com | COPY peer.crt /etc/hyperledger/fabric/peer.crt +peer0.org1.example.com | [47f 01-18 09:29:55.59 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/util] generateDockerBuild.GenerateDockerBuild.DockerBuild -> DEBU Attempting build with image hyperledger/fabric-ccenv:x86_64-1.0.2 +peer1.org2.example.com | [478 01-18 09:30:45.47 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org1.example.com | [4a2 01-18 09:30:47.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e3eb2066]sending state message TRANSACTION +peer0.org1.example.com | [480 01-18 09:29:56.32 UTC] [github.com/hyperledger/fabric/core/deliverservice] handleMessage.stopBeingLeader.func1.StopDeliverForChannel.Stop.Close -> DEBU Entering +orderer.example.com | 2018-01-18 09:29:43.945 UTC [common/config] initializeProtosStruct -> DEBU 32a Processing field: BatchTimeout +peer1.org2.example.com | [479 01-18 09:30:45.47 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} +peer1.org2.example.com | [47a 01-18 09:30:45.47 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org2.example.com | [47b 01-18 09:30:45.47 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org1.example.com | [4a3 01-18 09:30:47.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e3eb2066]Received message TRANSACTION from shim +orderer.example.com | 2018-01-18 09:29:43.945 UTC [common/config] initializeProtosStruct -> DEBU 32b Processing field: KafkaBrokers +peer0.org2.example.com | [4b4 01-18 09:30:23.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [82a62d9c]Move state message COMPLETED +peer1.org2.example.com | [47c 01-18 09:30:45.47 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421a4f810, header 0xc421bb3110 +peer1.org1.example.com | [4a4 01-18 09:30:47.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e3eb2066]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org2.example.com | [4b5 01-18 09:30:23.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [82a62d9c]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | 2018-01-18 09:29:43.945 UTC [common/config] initializeProtosStruct -> DEBU 32c Processing field: ChannelRestrictions +peer0.org1.example.com | [481 01-18 09:29:56.32 UTC] [github.com/hyperledger/fabric/core/deliverservice] handleMessage.stopBeingLeader.func1.StopDeliverForChannel.Stop.Close -> DEBU Exiting +peer1.org2.example.com | [47d 01-18 09:30:45.47 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"exp02" +peer1.org1.example.com | [4a5 01-18 09:30:47.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [e3eb2066]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | 2018-01-18 09:29:43.945 UTC [policies] ProposePolicy -> DEBU 32d Proposed new policy Writers for Orderer +peer0.org2.example.com | [4b6 01-18 09:30:23.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [82a62d9c]send state message COMPLETED +peer1.org2.example.com | [47e 01-18 09:30:45.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 43828daec956e8fe45a73d09bbc04d491c0f2d91818edf37d3252f09bf25f02a +peer0.org1.example.com | [482 01-18 09:29:56.32 UTC] [github.com/hyperledger/fabric/core/deliverservice] handleMessage.stopBeingLeader.func1.StopDeliverForChannel -> DEBU This peer will stop pass blocks from orderer service to other peers +peer1.org1.example.com | [4a6 01-18 09:30:47.12 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +orderer.example.com | 2018-01-18 09:29:43.945 UTC [policies] ProposePolicy -> DEBU 32e Proposed new policy Admins for Orderer +peer0.org2.example.com | [4b7 01-18 09:30:23.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [82a62d9c]Received message COMPLETED from shim +peer1.org2.example.com | [47f 01-18 09:30:45.47 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [43828daec956e8fe45a73d09bbc04d491c0f2d91818edf37d3252f09bf25f02a] +peer0.org1.example.com | [483 01-18 09:29:56.32 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.Disconnect -> DEBU Entering +peer1.org1.example.com | [4a7 01-18 09:30:47.12 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +orderer.example.com | 2018-01-18 09:29:43.945 UTC [policies] ProposePolicy -> DEBU 32f Proposed new policy BlockValidation for Orderer +peer0.org2.example.com | [4b8 01-18 09:30:23.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [82a62d9c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [480 01-18 09:30:45.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org1.example.com | [484 01-18 09:29:56.32 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.Disconnect -> DEBU Exiting +peer1.org1.example.com | [4a8 01-18 09:30:47.13 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC +orderer.example.com | 2018-01-18 09:29:43.945 UTC [policies] ProposePolicy -> DEBU 330 Proposed new policy Readers for Orderer +peer0.org2.example.com | [4b9 01-18 09:30:23.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [82a62d9c-8171-4739-958e-7fbcf29044ff]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [481 01-18 09:30:45.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [fa74c9a8-6681-4aa7-86bc-84d5236ea329] +peer1.org2.example.com | [482 01-18 09:30:45.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 43828daec956e8fe45a73d09bbc04d491c0f2d91818edf37d3252f09bf25f02a channel id: businesschannel +peer1.org2.example.com | [483 01-18 09:30:45.47 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=43828daec956e8fe45a73d09bbc04d491c0f2d91818edf37d3252f09bf25f02a,syscc=true,proposal=0xc421a4f810,canname=lscc:1.0.2 +peer1.org2.example.com | [484 01-18 09:30:45.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 +peer1.org2.example.com | [485 01-18 09:30:45.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [485 01-18 09:29:56.32 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try -> WARN Got error: rpc error: code = Internal desc = transport is closing ,at 1 attempt. Retrying in 1s +peer0.org1.example.com | [486 01-18 09:29:56.32 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> WARN [businesschannel] Receive error: Client is closing +peer0.org1.example.com | [487 01-18 09:29:56.33 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Close -> DEBU Entering +peer0.org1.example.com | [488 01-18 09:29:56.33 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Close -> DEBU Exiting +peer0.org1.example.com | [489 01-18 09:30:20.55 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.deployImage -> DEBU Created image: dev-peer0.org1.example.com-exp02-1.0-207541cceae707183f8108fcfc8ad03b450411570fb69827d3d40dc2ffdddbb4 +peer0.org1.example.com | [48a 01-18 09:30:20.55 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-recreated image successfully +peer0.org1.example.com | [48b 01-18 09:30:20.55 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer0.org1.example.com-exp02-1.0 +peer1.org1.example.com | [4a9 01-18 09:30:47.13 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +orderer.example.com | 2018-01-18 09:29:43.945 UTC [common/config] NewStandardValues -> DEBU 331 Initializing protos for *config.OrganizationProtos +peer1.org2.example.com | [486 01-18 09:30:45.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +peer1.org2.example.com | [487 01-18 09:30:45.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [43828dae]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [488 01-18 09:30:45.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [489 01-18 09:30:45.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org2.example.com | [48a 01-18 09:30:45.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [43828dae]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [48b 01-18 09:30:45.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [43828dae]Move state message TRANSACTION +peer1.org2.example.com | [48c 01-18 09:30:45.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [43828dae]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org2.example.com | [4ba 01-18 09:30:23.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:82a62d9c-8171-4739-958e-7fbcf29044ff +peer0.org1.example.com | [48c 01-18 09:30:20.65 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Created container: dev-peer0.org1.example.com-exp02-1.0-207541cceae707183f8108fcfc8ad03b450411570fb69827d3d40dc2ffdddbb4 +peer0.org1.example.com | [48d 01-18 09:30:21.26 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Started container dev-peer0.org1.example.com-exp02-1.0 +peer0.org1.example.com | [48e 01-18 09:30:21.26 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(dev-peer0.org1.example.com-exp02-1.0) +peer0.org1.example.com | [48f 01-18 09:30:21.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer0.org1.example.com | [490 01-18 09:30:21.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer0.org1.example.com | [491 01-18 09:30:21.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer0.org1.example.com | [492 01-18 09:30:21.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer1.org1.example.com | [4aa 01-18 09:30:47.13 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +peer1.org1.example.com | [4ab 01-18 09:30:47.15 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace exp02 +peer1.org1.example.com | [4ac 01-18 09:30:47.15 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc +peer1.org1.example.com | [4ad 01-18 09:30:47.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [4fd81978-51f3-4cb6-81eb-7c7f5ca50cd2] +peer1.org1.example.com | [4ae 01-18 09:30:47.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer1.org1.example.com | [4af 01-18 09:30:47.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [4fd81978-51f3-4cb6-81eb-7c7f5ca50cd2] +peer1.org1.example.com | [4b0 01-18 09:30:47.16 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 +peer1.org1.example.com | [4b1 01-18 09:30:47.16 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x953df0)} +peer1.org1.example.com | [483 01-18 09:30:47.12 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [4], peers number [3] +peer1.org1.example.com | [4b2 01-18 09:30:47.17 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode exp02 is already instantiated +orderer.example.com | 2018-01-18 09:29:43.946 UTC [common/config] initializeProtosStruct -> DEBU 332 Processing field: MSP +orderer.example.com | 2018-01-18 09:29:43.946 UTC [policies] ProposePolicy -> DEBU 333 Proposed new policy Admins for OrdererOrg +orderer.example.com | 2018-01-18 09:29:43.946 UTC [policies] ProposePolicy -> DEBU 334 Proposed new policy Readers for OrdererOrg +orderer.example.com | 2018-01-18 09:29:43.946 UTC [policies] ProposePolicy -> DEBU 335 Proposed new policy Writers for OrdererOrg +orderer.example.com | 2018-01-18 09:29:43.947 UTC [common/config] Validate -> DEBU 336 Anchor peers for org Org1MSP are +orderer.example.com | 2018-01-18 09:29:43.947 UTC [common/config] validateMSP -> DEBU 337 Setting up MSP for org Org1MSP +orderer.example.com | 2018-01-18 09:29:43.947 UTC [msp] NewBccspMsp -> DEBU 338 Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-18 09:29:43.947 UTC [msp] Setup -> DEBU 339 Setting up MSP instance Org1MSP +orderer.example.com | 2018-01-18 09:29:43.948 UTC [msp/identity] newIdentity -> DEBU 33a Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +peer1.org2.example.com | [48d 01-18 09:30:45.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [4bb 01-18 09:30:23.70 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [493 01-18 09:30:21.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode exp02:1.0 +peer0.org1.example.com | [494 01-18 09:30:21.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"exp02:1.0" , sending back REGISTERED +peer0.org1.example.com | [495 01-18 09:30:21.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer0.org1.example.com | [496 01-18 09:30:21.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode exp02:1.0 launch seq completed +peer0.org1.example.com | [497 01-18 09:30:21.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.sendReady.ready -> DEBU sending READY +peer0.org1.example.com | [498 01-18 09:30:21.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [4b3 01-18 09:30:47.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e3eb2066]Transaction completed. Sending COMPLETED +peer1.org1.example.com | [4b4 01-18 09:30:47.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e3eb2066]Move state message COMPLETED +peer1.org1.example.com | [4b5 01-18 09:30:47.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e3eb2066]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [4b6 01-18 09:30:47.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e3eb2066]send state message COMPLETED +peer1.org1.example.com | [4b7 01-18 09:30:47.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e3eb2066]Received message COMPLETED from shim +peer1.org1.example.com | [4b8 01-18 09:30:47.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e3eb2066]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [4b9 01-18 09:30:47.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e3eb2066-44ca-4f3e-9b50-b724f5593441]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [4ba 01-18 09:30:47.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:e3eb2066-44ca-4f3e-9b50-b724f5593441 +peer1.org1.example.com | [4bb 01-18 09:30:47.19 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [4bc 01-18 09:30:47.19 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> ERRO VSCC check failed for transaction txid=79910bc72d1a9ba3fd9ac6a98cdec470c2b4c2afd8dd6128c715aa89ad94672c, error Chaincode exp02 is already instantiated +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer1.org2.example.com | [48e 01-18 09:30:45.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [43828dae]sending state message TRANSACTION +peer0.org2.example.com | [4bc 01-18 09:30:23.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [4cb3a486-9075-42ff-b7c5-a53800e16ea5] +peer0.org2.example.com | [4bd 01-18 09:30:23.70 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer0.org2.example.com | [4be 01-18 09:30:23.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer0.org2.example.com | [4bf 01-18 09:30:23.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc421e435c0), Data:(*common.BlockData)(0xc421d44920), Metadata:(*common.BlockMetadata)(0xc421d44960)}, doMVCCValidation=true +peer0.org2.example.com | [4c0 01-18 09:30:23.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +peer0.org2.example.com | [4c1 01-18 09:30:23.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer0.org2.example.com | [4c2 01-18 09:30:23.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [3] Transaction index [0] TxId [651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6] marked as valid by state validator +peer0.org1.example.com | [499 01-18 09:30:21.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [49a 01-18 09:30:21.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [651f2997]Move state message READY +peer0.org1.example.com | [49b 01-18 09:30:21.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [651f2997]Fabric side Handling ChaincodeMessage of type: READY in state established +peer0.org1.example.com | [49c 01-18 09:30:21.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [651f2997]Entered state ready +peer0.org1.example.com | [49d 01-18 09:30:21.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6 +peer0.org1.example.com | [49e 01-18 09:30:21.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [651f2997]sending state message READY +peer0.org1.example.com | [49f 01-18 09:30:21.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch -> DEBU sending init completed +peer0.org1.example.com | [4a0 01-18 09:30:21.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch -> DEBU LaunchChaincode complete +peer0.org1.example.com | [4a1 01-18 09:30:21.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [4a2 01-18 09:30:21.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute -> DEBU chaincode canonical name: exp02:1.0 +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +orderer.example.com | BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf +orderer.example.com | db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx +orderer.example.com | JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi +peer1.org1.example.com | [4bd 01-18 09:30:47.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [6730a7f1-a121-4295-89bb-128518d6718b] +peer1.org1.example.com | [4be 01-18 09:30:47.19 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> ERRO VSCCValidateTx for transaction txId = 79910bc72d1a9ba3fd9ac6a98cdec470c2b4c2afd8dd6128c715aa89ad94672c returned error Chaincode exp02 is already instantiated +peer1.org1.example.com | [4bf 01-18 09:30:47.19 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer1.org1.example.com | [4c0 01-18 09:30:47.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer1.org1.example.com | [4c1 01-18 09:30:47.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc42005fe00), Data:(*common.BlockData)(0xc4214835a0), Metadata:(*common.BlockMetadata)(0xc4214835e0)}, doMVCCValidation=true +peer1.org1.example.com | [4c2 01-18 09:30:47.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +peer1.org1.example.com | [4c3 01-18 09:30:47.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> WARN Block [4] Transaction index [0] marked as invalid by committer. Reason code [10] +peer1.org2.example.com | [48f 01-18 09:30:45.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [43828dae]Received message TRANSACTION from shim +peer1.org2.example.com | [490 01-18 09:30:45.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [43828dae]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org2.example.com | [491 01-18 09:30:45.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [43828dae]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org2.example.com | [492 01-18 09:30:45.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [43828dae]Sending GET_STATE +peer1.org2.example.com | [493 01-18 09:30:45.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [43828dae]Received message GET_STATE from shim +peer1.org2.example.com | [494 01-18 09:30:45.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [43828dae]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer1.org2.example.com | [495 01-18 09:30:45.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [43828dae]Received GET_STATE, invoking get state from ledger +peer1.org2.example.com | [496 01-18 09:30:45.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [4c4 01-18 09:30:47.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0x93, 0xa4, 0xeb, 0x23, 0x11, 0xc5, 0x82, 0x3, 0x71, 0xbf, 0xef, 0x31, 0x5d, 0x62, 0x4, 0x79, 0xce, 0xd9, 0xc3, 0x8e, 0xe0, 0x77, 0x29, 0xaf, 0x45, 0x72, 0x23, 0x4e, 0x53, 0x11, 0xbd, 0x26} txOffsets= +peer1.org1.example.com | txId=79910bc72d1a9ba3fd9ac6a98cdec470c2b4c2afd8dd6128c715aa89ad94672c locPointer=offset=70, bytesLength=3393 +peer1.org2.example.com | [497 01-18 09:30:45.47 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [43828dae] getting state for chaincode lscc, key exp02, channel businesschannel +peer0.org1.example.com | [4a3 01-18 09:30:21.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage -> DEBU [651f2997]Inside sendExecuteMessage. Message INIT +peer0.org2.example.com | [4c3 01-18 09:30:23.72 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0x8a, 0x53, 0x56, 0xf, 0x7f, 0x2f, 0x8e, 0x2d, 0xd8, 0x4c, 0x3b, 0x34, 0x50, 0xc5, 0x52, 0x82, 0xe4, 0xc0, 0x8c, 0x36, 0x63, 0x95, 0x3a, 0xc, 0x39, 0x9b, 0xb8, 0x1a, 0x82, 0x88, 0x47, 0xb9} txOffsets= +orderer.example.com | /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ +peer1.org1.example.com | ] +peer0.org1.example.com | [4a4 01-18 09:30:21.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | txId=651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6 locPointer=offset=70, bytesLength=3393 +orderer.example.com | H7n8z1pj5w== +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [498 01-18 09:30:45.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer0.org1.example.com | [4a5 01-18 09:30:21.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org1.example.com | [4c5 01-18 09:30:47.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=44744, bytesLength=3393] for tx ID: [79910bc72d1a9ba3fd9ac6a98cdec470c2b4c2afd8dd6128c715aa89ad94672c] to index +peer1.org1.example.com | [4c6 01-18 09:30:47.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=44744, bytesLength=3393] for tx number:[0] ID: [79910bc72d1a9ba3fd9ac6a98cdec470c2b4c2afd8dd6128c715aa89ad94672c] to blockNumTranNum index +peer1.org1.example.com | [4c7 01-18 09:30:47.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[49888], isChainEmpty=[false], lastBlockNumber=[4] +peer1.org1.example.com | [4c8 01-18 09:30:47.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [4] with 1 transaction(s) +peer1.org1.example.com | [4c9 01-18 09:30:47.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +peer1.org1.example.com | [4ca 01-18 09:30:47.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +peer1.org1.example.com | [4cb 01-18 09:30:47.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +peer1.org2.example.com | [499 01-18 09:30:45.47 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [43828dae]Got state. Sending RESPONSE +peer0.org2.example.com | ] +peer0.org2.example.com | [4c4 01-18 09:30:23.72 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=39531, bytesLength=3393] for tx ID: [651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6] to index +peer0.org2.example.com | [4c5 01-18 09:30:23.72 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=39531, bytesLength=3393] for tx number:[0] ID: [651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6] to blockNumTranNum index +peer0.org2.example.com | [4c6 01-18 09:30:23.73 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[44674], isChainEmpty=[false], lastBlockNumber=[3] +peer0.org2.example.com | [4c7 01-18 09:30:23.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [3] with 1 transaction(s) +peer0.org2.example.com | [4c8 01-18 09:30:23.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +peer0.org2.example.com | [4c9 01-18 09:30:44.35 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.deployImage -> DEBU Created image: dev-peer0.org2.example.com-exp02-1.0-a1c0bed0de208402b290701943af8662423c1e8c10dbff920b90a3d16eb3fb80 +peer0.org2.example.com | [4ca 01-18 09:30:44.35 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-recreated image successfully +orderer.example.com | 2018-01-18 09:29:43.949 UTC [msp/identity] newIdentity -> DEBU 33b Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +peer0.org1.example.com | [4a6 01-18 09:30:21.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage -> DEBU [651f2997]sendExecuteMsg trigger event INIT +peer0.org1.example.com | [4a7 01-18 09:30:21.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [651f2997]Move state message INIT +peer0.org1.example.com | [4a8 01-18 09:30:21.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [651f2997]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org1.example.com | [4a9 01-18 09:30:21.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [4aa 01-18 09:30:21.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [651f2997]sending state message INIT +peer0.org1.example.com | [4ab 01-18 09:30:21.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [651f2997]Received message PUT_STATE from shim +peer0.org1.example.com | [4ac 01-18 09:30:21.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [651f2997]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +peer0.org1.example.com | [4ad 01-18 09:30:21.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [4ae 01-18 09:30:21.48 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [651f2997]state is ready +peer0.org1.example.com | [4af 01-18 09:30:21.48 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [651f2997]Completed PUT_STATE. Sending RESPONSE +peer1.org1.example.com | [4cc 01-18 09:30:47.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [4] with [1] transactions +peer1.org2.example.com | [49a 01-18 09:30:45.47 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [43828dae]handleGetState serial send RESPONSE +peer0.org2.example.com | [4cb 01-18 09:30:44.35 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer0.org2.example.com-exp02-1.0 +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +peer0.org1.example.com | [4b0 01-18 09:30:21.48 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [651f2997]enterBusyState trigger event RESPONSE +peer0.org1.example.com | [4b1 01-18 09:30:21.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [651f2997]Move state message RESPONSE +peer1.org2.example.com | [49b 01-18 09:30:45.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [43828dae]Received message RESPONSE from shim +peer1.org2.example.com | [49c 01-18 09:30:45.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [43828dae]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer1.org2.example.com | [49d 01-18 09:30:45.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [43828dae]before send +peer1.org2.example.com | [49e 01-18 09:30:45.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [43828dae]after send +peer1.org2.example.com | [49f 01-18 09:30:45.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [43828dae]Received RESPONSE, communicated (state:ready) +peer1.org2.example.com | [4a0 01-18 09:30:45.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [43828dae]GetState received payload RESPONSE +peer1.org1.example.com | [4cd 01-18 09:30:47.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Skipping history write for invalid transaction number 0 +peer1.org1.example.com | [4ce 01-18 09:30:47.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [4] +peer1.org1.example.com | [4cf 01-18 09:30:47.22 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer1.org1.example.com | [4d0 01-18 09:30:47.22 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: 79910bc72d1a9ba3fd9ac6a98cdec470c2b4c2afd8dd6128c715aa89ad94672c +peer1.org1.example.com | [4d1 01-18 09:30:47.22 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [4] +peer1.org1.example.com | [4d2 01-18 09:30:47.22 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +peer1.org1.example.com | [4d3 01-18 09:30:47.22 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer1.org1.example.com | [4d4 01-18 09:30:47.22 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer1.org1.example.com | [4d5 01-18 09:30:47.22 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +peer1.org1.example.com | [4d6 01-18 09:30:47.22 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +peer0.org2.example.com | [4cc 01-18 09:30:44.44 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Created container: dev-peer0.org2.example.com-exp02-1.0-a1c0bed0de208402b290701943af8662423c1e8c10dbff920b90a3d16eb3fb80 +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +peer1.org2.example.com | [4a1 01-18 09:30:45.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [43828dae]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [4b2 01-18 09:30:21.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [651f2997]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +peer1.org1.example.com | [4d7 01-18 09:31:07.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer1.org1.example.com | [4d8 01-18 09:31:07.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421d0d230 +peer1.org1.example.com | [4d9 01-18 09:31:07.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [4a2 01-18 09:30:45.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [43828dae]Move state message COMPLETED +peer1.org2.example.com | [4a3 01-18 09:30:45.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [43828dae]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [4a4 01-18 09:30:45.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [43828dae]send state message COMPLETED +peer1.org2.example.com | [4a5 01-18 09:30:45.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [43828dae]Received message COMPLETED from shim +peer1.org2.example.com | [4a6 01-18 09:30:45.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [43828dae]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [4b3 01-18 09:30:21.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [4b4 01-18 09:30:21.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [651f2997]sending state message RESPONSE +peer0.org1.example.com | [4b5 01-18 09:30:21.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [651f2997]Received message PUT_STATE from shim +orderer.example.com | 2018-01-18 09:29:43.950 UTC [msp/identity] newIdentity -> DEBU 33c Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [4a7 01-18 09:30:45.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [43828daec956e8fe45a73d09bbc04d491c0f2d91818edf37d3252f09bf25f02a]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [4a8 01-18 09:30:45.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:43828daec956e8fe45a73d09bbc04d491c0f2d91818edf37d3252f09bf25f02a +peer1.org2.example.com | [4a9 01-18 09:30:45.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [4aa 01-18 09:30:45.47 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache +peer1.org2.example.com | [4ab 01-18 09:30:45.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 43828daec956e8fe45a73d09bbc04d491c0f2d91818edf37d3252f09bf25f02a channel id: businesschannel version: 1.0 +peer1.org2.example.com | [4ac 01-18 09:30:45.47 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=exp02,version=1.0,txid=43828daec956e8fe45a73d09bbc04d491c0f2d91818edf37d3252f09bf25f02a,syscc=false,proposal=0xc421a4f810,canname=exp02:1.0 +peer1.org2.example.com | [4ad 01-18 09:30:45.47 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=43828daec956e8fe45a73d09bbc04d491c0f2d91818edf37d3252f09bf25f02a,syscc=true,proposal=0xc421a4f810,canname=lscc:1.0.2 +peer1.org2.example.com | [4ae 01-18 09:30:45.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 +peer1.org2.example.com | [4af 01-18 09:30:45.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [4b0 01-18 09:30:45.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +peer1.org1.example.com | [4da 01-18 09:31:07.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org1.example.com | [4db 01-18 09:31:07.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +peer1.org1.example.com | [4dc 01-18 09:31:07.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [4b6 01-18 09:30:21.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [651f2997]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +peer1.org2.example.com | [4b1 01-18 09:30:45.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [43828dae]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [4b2 01-18 09:30:45.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [4b3 01-18 09:30:45.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org2.example.com | [4cd 01-18 09:30:44.97 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Started container dev-peer0.org2.example.com-exp02-1.0 +peer0.org1.example.com | [4b7 01-18 09:30:21.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [4b8 01-18 09:30:21.49 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [651f2997]state is ready +peer0.org1.example.com | [4b9 01-18 09:30:21.49 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [651f2997]Completed PUT_STATE. Sending RESPONSE +peer0.org1.example.com | [4ba 01-18 09:30:21.49 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [651f2997]enterBusyState trigger event RESPONSE +peer0.org2.example.com | [4ce 01-18 09:30:44.97 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(dev-peer0.org2.example.com-exp02-1.0) +peer1.org2.example.com | [4b4 01-18 09:30:45.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [43828dae]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [4bb 01-18 09:30:21.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [651f2997]Move state message RESPONSE +peer0.org1.example.com | [4bc 01-18 09:30:21.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [651f2997]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +peer0.org2.example.com | [4cf 01-18 09:30:45.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer0.org2.example.com | [4d0 01-18 09:30:45.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer0.org1.example.com | [4bd 01-18 09:30:21.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [4b5 01-18 09:30:45.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [43828dae]Move state message TRANSACTION +peer1.org1.example.com | [4dd 01-18 09:31:07.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org2.example.com | [4d1 01-18 09:30:45.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer0.org1.example.com | [4be 01-18 09:30:21.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [651f2997]sending state message RESPONSE +peer0.org1.example.com | [4bf 01-18 09:30:21.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [651f2997]Received message COMPLETED from shim +peer0.org1.example.com | [4c0 01-18 09:30:21.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [651f2997]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [4b6 01-18 09:30:45.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [43828dae]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org2.example.com | [4d2 01-18 09:30:45.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer1.org1.example.com | [4de 01-18 09:31:07.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4220f7f90, header 0xc421d0d260 +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org1.example.com | [4c1 01-18 09:30:21.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [4b7 01-18 09:30:45.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [4d3 01-18 09:30:45.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode exp02:1.0 +peer0.org1.example.com | [4c2 01-18 09:30:21.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6 +peer1.org2.example.com | [4b8 01-18 09:30:45.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [43828dae]sending state message TRANSACTION +peer1.org1.example.com | [4df 01-18 09:31:07.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"exp02" +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +peer0.org2.example.com | [4d4 01-18 09:30:45.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"exp02:1.0" , sending back REGISTERED +peer0.org1.example.com | [4c3 01-18 09:30:21.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org2.example.com | [4d5 01-18 09:30:45.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer0.org1.example.com | [4c4 01-18 09:30:21.51 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer1.org1.example.com | [4e0 01-18 09:31:07.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: f7368f8b9d6d39ab61fbc1a11965e7f3932147871b48df6101516e37372b2cee +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +peer0.org2.example.com | [4d6 01-18 09:30:45.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode exp02:1.0 launch seq completed +peer1.org2.example.com | [4b9 01-18 09:30:45.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [43828dae]Received message TRANSACTION from shim +peer0.org1.example.com | [4c5 01-18 09:30:21.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer1.org1.example.com | [4e1 01-18 09:31:07.32 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [f7368f8b9d6d39ab61fbc1a11965e7f3932147871b48df6101516e37372b2cee] +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +peer0.org2.example.com | [4d7 01-18 09:30:45.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.sendReady.ready -> DEBU sending READY +peer0.org1.example.com | [4c6 01-18 09:30:21.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [88548cdd-23d2-49e3-a12a-182fe7598ef2] +peer1.org2.example.com | [4ba 01-18 09:30:45.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [43828dae]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org1.example.com | [4e2 01-18 09:31:07.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +peer0.org2.example.com | [4d8 01-18 09:30:45.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [4bb 01-18 09:30:45.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [43828dae]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org1.example.com | [4e3 01-18 09:31:07.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [7a2a01db-e0e7-4f7a-b7ba-16cf4f21effd] +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +peer0.org2.example.com | [4d9 01-18 09:30:45.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [4c7 01-18 09:30:21.51 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +peer1.org1.example.com | [4e4 01-18 09:31:07.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: f7368f8b9d6d39ab61fbc1a11965e7f3932147871b48df6101516e37372b2cee channel id: businesschannel +peer0.org2.example.com | [4da 01-18 09:30:45.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [79910bc7]Move state message READY +peer0.org1.example.com | [4c8 01-18 09:30:21.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6 channel id: businesschannel chaincode id: name:"lscc" +peer0.org1.example.com | [4c9 01-18 09:30:21.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +peer0.org2.example.com | [4db 01-18 09:30:45.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [79910bc7]Fabric side Handling ChaincodeMessage of type: READY in state established +peer1.org2.example.com | [4bc 01-18 09:30:45.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [43828dae]Sending GET_STATE +peer1.org2.example.com | [4bd 01-18 09:30:45.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [43828dae]Received message GET_STATE from shim +peer1.org2.example.com | [4be 01-18 09:30:45.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [43828dae]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer1.org2.example.com | [4bf 01-18 09:30:45.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [43828dae]Received GET_STATE, invoking get state from ledger +peer1.org2.example.com | [4c0 01-18 09:30:45.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [4c1 01-18 09:30:45.48 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [43828dae] getting state for chaincode lscc, key exp02, channel businesschannel +peer0.org1.example.com | [4ca 01-18 09:30:21.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6 channel id: businesschannel version: 1.0.2 +peer1.org1.example.com | [4e5 01-18 09:31:07.33 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=f7368f8b9d6d39ab61fbc1a11965e7f3932147871b48df6101516e37372b2cee,syscc=true,proposal=0xc4220f7f90,canname=lscc:1.0.2 +peer0.org2.example.com | [4dc 01-18 09:30:45.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [79910bc7]Entered state ready +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +peer1.org2.example.com | [4c2 01-18 09:30:45.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer0.org1.example.com | [4cb 01-18 09:30:21.52 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6,syscc=true,proposal=0xc421b9e050,canname=escc:1.0.2 +peer0.org1.example.com | [4cc 01-18 09:30:21.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 +peer0.org1.example.com | [4cd 01-18 09:30:21.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [4e6 01-18 09:31:07.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 +peer1.org1.example.com | [4e7 01-18 09:31:07.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [4e8 01-18 09:31:07.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +peer1.org1.example.com | [4e9 01-18 09:31:07.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f7368f8b]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:43.951 UTC [msp] Validate -> DEBU 33d MSP Org1MSP validating identity +orderer.example.com | 2018-01-18 09:29:43.952 UTC [common/config] Validate -> DEBU 33e Anchor peers for org Org2MSP are +orderer.example.com | 2018-01-18 09:29:43.952 UTC [common/config] validateMSP -> DEBU 33f Setting up MSP for org Org2MSP +orderer.example.com | 2018-01-18 09:29:43.952 UTC [msp] NewBccspMsp -> DEBU 340 Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-18 09:29:43.952 UTC [msp] Setup -> DEBU 341 Setting up MSP instance Org2MSP +orderer.example.com | 2018-01-18 09:29:43.954 UTC [msp/identity] newIdentity -> DEBU 342 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +orderer.example.com | mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 +orderer.example.com | sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ +orderer.example.com | xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv +peer0.org1.example.com | [4ce 01-18 09:30:21.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 +peer0.org1.example.com | [4cf 01-18 09:30:21.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [651f2997]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [4c3 01-18 09:30:45.48 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [43828dae]Got state. Sending RESPONSE +peer1.org2.example.com | [4c4 01-18 09:30:45.48 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [43828dae]handleGetState serial send RESPONSE +peer1.org2.example.com | [4c5 01-18 09:30:45.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [43828dae]Received message RESPONSE from shim +peer1.org2.example.com | [4c6 01-18 09:30:45.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [43828dae]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer1.org2.example.com | [4c7 01-18 09:30:45.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [43828dae]before send +peer1.org2.example.com | [4c8 01-18 09:30:45.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [43828dae]after send +peer1.org2.example.com | [4c9 01-18 09:30:45.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [43828dae]Received RESPONSE, communicated (state:ready) +peer1.org2.example.com | [4ca 01-18 09:30:45.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [43828dae]GetState received payload RESPONSE +peer1.org1.example.com | [4ea 01-18 09:31:07.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk +orderer.example.com | SCjyRdD3aQ== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:43.955 UTC [msp/identity] newIdentity -> DEBU 343 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +orderer.example.com | AXYxULZpXYDQXt1KaLI= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:43.956 UTC [msp/identity] newIdentity -> DEBU 344 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +orderer.example.com | AXYxULZpXYDQXt1KaLI= +peer0.org2.example.com | [4dd 01-18 09:30:45.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:79910bc72d1a9ba3fd9ac6a98cdec470c2b4c2afd8dd6128c715aa89ad94672c +peer0.org1.example.com | [4d0 01-18 09:30:21.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [4cb 01-18 09:30:45.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [43828dae]Transaction completed. Sending COMPLETED +peer1.org1.example.com | [4eb 01-18 09:31:07.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org1.example.com | [4ec 01-18 09:31:07.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f7368f8b]sendExecuteMsg trigger event TRANSACTION +peer1.org1.example.com | [4ed 01-18 09:31:07.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f7368f8b]Move state message TRANSACTION +peer1.org1.example.com | [4ee 01-18 09:31:07.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f7368f8b]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org1.example.com | [4ef 01-18 09:31:07.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [4f0 01-18 09:31:07.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f7368f8b]sending state message TRANSACTION +peer1.org1.example.com | [4f1 01-18 09:31:07.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f7368f8b]Received message TRANSACTION from shim +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [4d1 01-18 09:30:21.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org2.example.com | [4cc 01-18 09:30:45.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [43828dae]Move state message COMPLETED +peer1.org1.example.com | [4f2 01-18 09:31:07.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f7368f8b]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org1.example.com | [4f3 01-18 09:31:07.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [f7368f8b]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org1.example.com | [4f4 01-18 09:31:07.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [f7368f8b]Sending GET_STATE +peer1.org1.example.com | [4f5 01-18 09:31:07.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f7368f8b]Received message GET_STATE from shim +peer1.org1.example.com | [4f6 01-18 09:31:07.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f7368f8b]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer1.org1.example.com | [4f7 01-18 09:31:07.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [f7368f8b]Received GET_STATE, invoking get state from ledger +peer0.org2.example.com | [4de 01-18 09:30:45.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [79910bc7]sending state message READY +peer0.org2.example.com | [4df 01-18 09:30:45.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch -> DEBU sending init completed +peer0.org1.example.com | [4d2 01-18 09:30:21.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [651f2997]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | 2018-01-18 09:29:43.958 UTC [msp] Validate -> DEBU 345 MSP Org2MSP validating identity +peer1.org2.example.com | [4cd 01-18 09:30:45.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [43828dae]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [4e0 01-18 09:30:45.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch -> DEBU LaunchChaincode complete +peer0.org2.example.com | [4e1 01-18 09:30:45.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [4f8 01-18 09:31:07.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [4f9 01-18 09:31:07.33 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [f7368f8b] getting state for chaincode lscc, key exp02, channel businesschannel +peer1.org1.example.com | [4fa 01-18 09:31:07.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer1.org1.example.com | [4fb 01-18 09:31:07.33 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [f7368f8b]Got state. Sending RESPONSE +peer1.org1.example.com | [4fc 01-18 09:31:07.33 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [f7368f8b]handleGetState serial send RESPONSE +peer1.org1.example.com | [4fd 01-18 09:31:07.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f7368f8b]Received message RESPONSE from shim +peer1.org1.example.com | [4fe 01-18 09:31:07.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f7368f8b]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer1.org1.example.com | [4ff 01-18 09:31:07.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [f7368f8b]before send +peer1.org1.example.com | [500 01-18 09:31:07.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [f7368f8b]after send +peer1.org1.example.com | [501 01-18 09:31:07.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [f7368f8b]Received RESPONSE, communicated (state:ready) +peer1.org1.example.com | [502 01-18 09:31:07.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [f7368f8b]GetState received payload RESPONSE +peer1.org1.example.com | [503 01-18 09:31:07.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f7368f8b]Transaction completed. Sending COMPLETED +peer1.org1.example.com | [504 01-18 09:31:07.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f7368f8b]Move state message COMPLETED +peer1.org1.example.com | [505 01-18 09:31:07.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f7368f8b]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [506 01-18 09:31:07.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f7368f8b]send state message COMPLETED +peer1.org1.example.com | [507 01-18 09:31:07.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f7368f8b]Received message COMPLETED from shim +peer1.org1.example.com | [508 01-18 09:31:07.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f7368f8b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [509 01-18 09:31:07.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f7368f8b9d6d39ab61fbc1a11965e7f3932147871b48df6101516e37372b2cee]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [50a 01-18 09:31:07.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:f7368f8b9d6d39ab61fbc1a11965e7f3932147871b48df6101516e37372b2cee +peer1.org1.example.com | [50b 01-18 09:31:07.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [50c 01-18 09:31:07.33 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache +peer1.org1.example.com | [50d 01-18 09:31:07.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: f7368f8b9d6d39ab61fbc1a11965e7f3932147871b48df6101516e37372b2cee channel id: businesschannel version: 1.0 +peer1.org1.example.com | [50e 01-18 09:31:07.33 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=exp02,version=1.0,txid=f7368f8b9d6d39ab61fbc1a11965e7f3932147871b48df6101516e37372b2cee,syscc=false,proposal=0xc4220f7f90,canname=exp02:1.0 +peer1.org1.example.com | [50f 01-18 09:31:07.33 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=f7368f8b9d6d39ab61fbc1a11965e7f3932147871b48df6101516e37372b2cee,syscc=true,proposal=0xc4220f7f90,canname=lscc:1.0.2 +peer1.org1.example.com | [510 01-18 09:31:07.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 +peer1.org1.example.com | [511 01-18 09:31:07.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [512 01-18 09:31:07.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +peer1.org1.example.com | [513 01-18 09:31:07.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f7368f8b]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [4d3 01-18 09:30:21.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [651f2997]Move state message TRANSACTION +orderer.example.com | 2018-01-18 09:29:43.958 UTC [common/config] validateMSP -> DEBU 346 Setting up MSP for org OrdererOrg +peer1.org2.example.com | [4ce 01-18 09:30:45.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [43828dae]send state message COMPLETED +orderer.example.com | 2018-01-18 09:29:43.958 UTC [msp] NewBccspMsp -> DEBU 347 Creating BCCSP-based MSP instance +peer1.org1.example.com | [514 01-18 09:31:07.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [4e2 01-18 09:30:45.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute -> DEBU chaincode canonical name: exp02:1.0 +orderer.example.com | 2018-01-18 09:29:43.958 UTC [msp] Setup -> DEBU 348 Setting up MSP instance OrdererMSP +peer1.org1.example.com | [515 01-18 09:31:07.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [4d4 01-18 09:30:21.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [651f2997]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org2.example.com | [4e3 01-18 09:30:45.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage -> DEBU [79910bc7]Inside sendExecuteMessage. Message INIT +peer1.org2.example.com | [4cf 01-18 09:30:45.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [43828dae]Received message COMPLETED from shim +peer1.org1.example.com | [516 01-18 09:31:07.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f7368f8b]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [4d5 01-18 09:30:21.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [4d0 01-18 09:30:45.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [43828dae]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [517 01-18 09:31:07.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f7368f8b]Move state message TRANSACTION +orderer.example.com | 2018-01-18 09:29:43.959 UTC [msp/identity] newIdentity -> DEBU 349 Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org2.example.com | [4e4 01-18 09:30:45.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL +peer0.org1.example.com | [4d6 01-18 09:30:21.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [651f2997]sending state message TRANSACTION +peer0.org1.example.com | [4d7 01-18 09:30:21.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [651f2997]Received message TRANSACTION from shim +peer0.org1.example.com | [4d8 01-18 09:30:21.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [651f2997]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org2.example.com | [4d1 01-18 09:30:45.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [43828daec956e8fe45a73d09bbc04d491c0f2d91818edf37d3252f09bf25f02a]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [518 01-18 09:31:07.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f7368f8b]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org2.example.com | [4e5 01-18 09:30:45.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org2.example.com | [4d2 01-18 09:30:45.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:43828daec956e8fe45a73d09bbc04d491c0f2d91818edf37d3252f09bf25f02a +peer1.org2.example.com | [4d3 01-18 09:30:45.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [4d4 01-18 09:30:45.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode exp02:1.0 is being launched +peer1.org2.example.com | [4d5 01-18 09:30:45.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +peer1.org2.example.com | [4d6 01-18 09:30:45.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer1.org2.example.com:7052] +peer0.org1.example.com | [4d9 01-18 09:30:21.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [651f2997]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [4da 01-18 09:30:21.53 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer1.org1.example.com | [519 01-18 09:31:07.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +peer1.org2.example.com | [4d7 01-18 09:30:45.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container: exp02:1.0(networkid:dev,peerid:peer1.org2.example.com) +peer1.org2.example.com | [4d8 01-18 09:30:45.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer1.org2.example.com:7052 +peer1.org2.example.com | [4d9 01-18 09:30:45.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +peer1.org2.example.com | CORE_CHAINCODE_ID_NAME=exp02:1.0 +peer1.org2.example.com | CORE_PEER_TLS_ENABLED=true +peer1.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer1.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer1.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +peer1.org2.example.com | [4da 01-18 09:30:45.48 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(dev-peer1.org2.example.com-exp02-1.0) lock +peer1.org2.example.com | [4db 01-18 09:30:45.48 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (dev-peer1.org2.example.com-exp02-1.0) lock +peer1.org2.example.com | [4dc 01-18 09:30:45.48 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Cleanup container dev-peer1.org2.example.com-exp02-1.0 +peer1.org2.example.com | [4dd 01-18 09:30:45.48 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Stop container dev-peer1.org2.example.com-exp02-1.0(No such container: dev-peer1.org2.example.com-exp02-1.0) +peer1.org2.example.com | [4de 01-18 09:30:45.48 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Kill container dev-peer1.org2.example.com-exp02-1.0 (No such container: dev-peer1.org2.example.com-exp02-1.0) +peer0.org2.example.com | [4e6 01-18 09:30:45.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage -> DEBU [79910bc7]sendExecuteMsg trigger event INIT +peer0.org2.example.com | [4e7 01-18 09:30:45.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [79910bc7]Move state message INIT +peer0.org2.example.com | [4e8 01-18 09:30:45.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [79910bc7]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org2.example.com | [4e9 01-18 09:30:45.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [4ea 01-18 09:30:45.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [79910bc7]sending state message INIT +peer0.org2.example.com | [4eb 01-18 09:30:45.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [79910bc7]Received message PUT_STATE from shim +peer0.org2.example.com | [4ec 01-18 09:30:45.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [79910bc7]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +peer1.org1.example.com | [51a 01-18 09:31:07.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f7368f8b]sending state message TRANSACTION +orderer.example.com | cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW +orderer.example.com | gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +orderer.example.com | AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK +orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs +orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:43.960 UTC [msp/identity] newIdentity -> DEBU 34a Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer0.org1.example.com | [4db 01-18 09:30:21.53 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer0.org1.example.com | [4dc 01-18 09:30:21.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [651f2997]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [4dd 01-18 09:30:21.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [651f2997]Move state message COMPLETED +peer0.org1.example.com | [4de 01-18 09:30:21.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [651f2997]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [4df 01-18 09:30:21.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [651f2997]send state message COMPLETED +peer0.org1.example.com | [4e0 01-18 09:30:21.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [651f2997]Received message COMPLETED from shim +peer0.org1.example.com | [4e1 01-18 09:30:21.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [651f2997]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [4e2 01-18 09:30:21.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [4e3 01-18 09:30:21.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6 +peer1.org2.example.com | [4df 01-18 09:30:45.48 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Remove container dev-peer1.org2.example.com-exp02-1.0 (No such container: dev-peer1.org2.example.com-exp02-1.0) +peer1.org2.example.com | [4e0 01-18 09:30:45.48 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Start container dev-peer1.org2.example.com-exp02-1.0 +peer1.org2.example.com | [4e1 01-18 09:30:45.48 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: v102_default +peer1.org2.example.com | [4e2 01-18 09:30:45.49 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer1.org2.example.com-exp02-1.0 +peer1.org2.example.com | [4e3 01-18 09:30:45.49 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-could not find image (container id ), because of ...attempt to recreate image +peer1.org2.example.com | [4e4 01-18 09:30:45.50 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms] do.do.Start.func1.GenerateDockerBuild.generateDockerfile -> DEBU +peer1.org2.example.com | FROM hyperledger/fabric-baseos:x86_64-0.3.2 +peer1.org2.example.com | ADD binpackage.tar /usr/local/bin +peer1.org2.example.com | LABEL org.hyperledger.fabric.chaincode.id.name="exp02" \ +peer1.org2.example.com | org.hyperledger.fabric.chaincode.id.version="1.0" \ +peer1.org2.example.com | org.hyperledger.fabric.chaincode.type="GOLANG" \ +peer1.org2.example.com | org.hyperledger.fabric.version="1.0.2" \ +peer1.org2.example.com | org.hyperledger.fabric.base.version="0.3.2" +peer1.org2.example.com | ENV CORE_CHAINCODE_BUILDLEVEL=1.0.2 +peer1.org2.example.com | ENV CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt +peer1.org2.example.com | COPY peer.crt /etc/hyperledger/fabric/peer.crt +peer1.org2.example.com | [4e5 01-18 09:30:45.50 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/util] generateDockerBuild.GenerateDockerBuild.DockerBuild -> DEBU Attempting build with image hyperledger/fabric-ccenv:x86_64-1.0.2 +peer0.org2.example.com | [4ed 01-18 09:30:45.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [51b 01-18 09:31:07.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f7368f8b]Received message TRANSACTION from shim +peer1.org1.example.com | [51c 01-18 09:31:07.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f7368f8b]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [4e4 01-18 09:30:21.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [4e6 01-18 09:30:47.15 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer1.org2.example.com | [4e7 01-18 09:30:47.15 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +peer1.org2.example.com | [4e8 01-18 09:30:47.15 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer1.org2.example.com | [4e9 01-18 09:30:47.15 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421e89e90 +peer1.org2.example.com | [4ea 01-18 09:30:47.15 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\256\322\201\323\005\020\353\233\354*\"\017businesschannel*@79910bc72d1a9ba3fd9ac6a98cdec470c2b4c2afd8dd6128c715aa89ad94672c:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\030\343\0211\005\250w\252\312\31341o<\362\302P\273g>4\340\275\032\306" +peer0.org2.example.com | [4ee 01-18 09:30:45.01 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [79910bc7]state is ready +peer0.org2.example.com | [4ef 01-18 09:30:45.01 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [79910bc7]Completed PUT_STATE. Sending RESPONSE +peer0.org2.example.com | [4f0 01-18 09:30:45.01 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [79910bc7]enterBusyState trigger event RESPONSE +peer0.org2.example.com | [4f1 01-18 09:30:45.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [79910bc7]Move state message RESPONSE +peer0.org2.example.com | [4f2 01-18 09:30:45.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [79910bc7]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +peer0.org2.example.com | [4f3 01-18 09:30:45.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [4f4 01-18 09:30:45.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [79910bc7]sending state message RESPONSE +peer0.org2.example.com | [4f5 01-18 09:30:45.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [79910bc7]Received message PUT_STATE from shim +peer0.org2.example.com | [4f6 01-18 09:30:45.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [79910bc7]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +peer0.org2.example.com | [4f7 01-18 09:30:45.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [4f8 01-18 09:30:45.02 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [79910bc7]state is ready +peer0.org2.example.com | [4f9 01-18 09:30:45.02 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [79910bc7]Completed PUT_STATE. Sending RESPONSE +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:43.961 UTC [msp/identity] newIdentity -> DEBU 34b Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer1.org1.example.com | [51d 01-18 09:31:07.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [f7368f8b]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org2.example.com | [4eb 01-18 09:30:47.15 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org2.example.com | [4fa 01-18 09:30:45.02 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [79910bc7]enterBusyState trigger event RESPONSE +peer0.org1.example.com | [4e5 01-18 09:30:21.54 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer1.org1.example.com | [51e 01-18 09:31:07.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [f7368f8b]Sending GET_STATE +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +peer1.org2.example.com | [4ec 01-18 09:30:47.15 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org2.example.com | [4ed 01-18 09:30:47.16 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} +peer1.org2.example.com | [4ee 01-18 09:30:47.16 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org2.example.com | [4ef 01-18 09:30:47.16 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org2.example.com | [4fb 01-18 09:30:45.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [79910bc7]Move state message RESPONSE +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +peer0.org1.example.com | [4e6 01-18 09:30:21.54 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org1.example.com | [4e7 01-18 09:30:21.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [88548cdd-23d2-49e3-a12a-182fe7598ef2] +peer0.org1.example.com | [4e8 01-18 09:30:21.54 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer0.org1.example.com | [4e9 01-18 09:30:23.70 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer0.org1.example.com | [4ea 01-18 09:30:23.70 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +peer0.org1.example.com | [4eb 01-18 09:30:23.70 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer0.org1.example.com | [4ec 01-18 09:30:23.70 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc422619b90 +peer1.org1.example.com | [51f 01-18 09:31:07.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f7368f8b]Received message GET_STATE from shim +peer1.org1.example.com | [520 01-18 09:31:07.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f7368f8b]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer1.org1.example.com | [521 01-18 09:31:07.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [f7368f8b]Received GET_STATE, invoking get state from ledger +peer1.org1.example.com | [522 01-18 09:31:07.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [4f0 01-18 09:30:47.16 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421ea6a80, header channel_header:"\010\003\032\013\010\256\322\201\323\005\020\353\233\354*\"\017businesschannel*@79910bc72d1a9ba3fd9ac6a98cdec470c2b4c2afd8dd6128c715aa89ad94672c:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\030\343\0211\005\250w\252\312\31341o<\362\302P\273g>4\340\275\032\306" +peer1.org2.example.com | [4f1 01-18 09:30:47.16 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer0.org2.example.com | [4fc 01-18 09:30:45.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [79910bc7]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +peer1.org1.example.com | [523 01-18 09:31:07.34 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [f7368f8b] getting state for chaincode lscc, key exp02, channel businesschannel +peer0.org1.example.com | [4ed 01-18 09:30:23.70 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\223\322\201\323\005\020\350\237\205\210\002\"\017businesschannel*@651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030\273\240\3642\341\013#\320\247\267\210\222\354\377n\237\303<(;\004\014\314y" +peer1.org2.example.com | [4f2 01-18 09:30:47.16 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer0.org2.example.com | [4fd 01-18 09:30:45.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [4fe 01-18 09:30:45.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [79910bc7]sending state message RESPONSE +peer0.org2.example.com | [4ff 01-18 09:30:45.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [79910bc7]Received message COMPLETED from shim +peer0.org2.example.com | [500 01-18 09:30:45.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [79910bc7]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [501 01-18 09:30:45.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [79910bc72d1a9ba3fd9ac6a98cdec470c2b4c2afd8dd6128c715aa89ad94672c]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [502 01-18 09:30:45.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:79910bc72d1a9ba3fd9ac6a98cdec470c2b4c2afd8dd6128c715aa89ad94672c +peer0.org2.example.com | [503 01-18 09:30:45.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [504 01-18 09:30:45.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org2.example.com | [505 01-18 09:30:45.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer0.org2.example.com | [506 01-18 09:30:45.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [e85b93f3-ae99-430e-8124-997127168817] +peer0.org2.example.com | [507 01-18 09:30:45.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org2.example.com | [508 01-18 09:30:45.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 79910bc72d1a9ba3fd9ac6a98cdec470c2b4c2afd8dd6128c715aa89ad94672c channel id: businesschannel chaincode id: name:"lscc" +peer0.org2.example.com | [509 01-18 09:30:45.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc +peer0.org2.example.com | [50a 01-18 09:30:45.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 79910bc72d1a9ba3fd9ac6a98cdec470c2b4c2afd8dd6128c715aa89ad94672c channel id: businesschannel version: 1.0.2 +peer0.org2.example.com | [50b 01-18 09:30:45.02 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=79910bc72d1a9ba3fd9ac6a98cdec470c2b4c2afd8dd6128c715aa89ad94672c,syscc=true,proposal=0xc421f7e820,canname=escc:1.0.2 +peer1.org1.example.com | [524 01-18 09:31:07.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer1.org1.example.com | [525 01-18 09:31:07.34 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [f7368f8b]Got state. Sending RESPONSE +peer1.org1.example.com | [526 01-18 09:31:07.34 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [f7368f8b]handleGetState serial send RESPONSE +peer1.org2.example.com | [4f3 01-18 09:30:47.16 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer1.org2.example.com | [4f4 01-18 09:30:47.16 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +peer1.org2.example.com | [4f5 01-18 09:30:47.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [79910bc72d1a9ba3fd9ac6a98cdec470c2b4c2afd8dd6128c715aa89ad94672c] +peer1.org2.example.com | [4f6 01-18 09:30:47.16 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +peer1.org2.example.com | [4f7 01-18 09:30:47.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org2.example.com | [4f8 01-18 09:30:47.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [c66bd0c2-0357-4c34-b9d1-99dbcddf9b64] +peer1.org2.example.com | [4f9 01-18 09:30:47.16 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=b3b0fdd0-12aa-429c-bdfa-f8465e92b32a,syscc=true,proposal=0x0,canname=vscc:1.0.2 +peer0.org1.example.com | [4ee 01-18 09:30:23.70 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [4ef 01-18 09:30:23.70 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [4f0 01-18 09:30:23.70 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +peer0.org1.example.com | [4f1 01-18 09:30:23.70 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [4f2 01-18 09:30:23.70 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org2.example.com | [50c 01-18 09:30:45.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 +peer1.org1.example.com | [527 01-18 09:31:07.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f7368f8b]Received message RESPONSE from shim +peer1.org2.example.com | [4fa 01-18 09:30:47.16 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 79910bc72d1a9ba3fd9ac6a98cdec470c2b4c2afd8dd6128c715aa89ad94672c chaindID businesschannel +peer1.org2.example.com | [4fb 01-18 09:30:47.16 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 +peer1.org2.example.com | [4fc 01-18 09:30:47.16 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [4fd 01-18 09:30:47.16 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 +peer1.org2.example.com | [4fe 01-18 09:30:47.16 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b3b0fdd0]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [4ff 01-18 09:30:47.16 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [500 01-18 09:30:47.16 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b3b0fdd0]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [501 01-18 09:30:47.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b3b0fdd0]Move state message TRANSACTION +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:43.963 UTC [msp] Validate -> DEBU 34c MSP OrdererMSP validating identity +orderer.example.com | 2018-01-18 09:29:43.964 UTC [msp] Setup -> DEBU 34d Setting up the MSP manager (3 msps) +orderer.example.com | 2018-01-18 09:29:43.964 UTC [msp] Setup -> DEBU 34e MSP manager setup complete, setup 3 msps +orderer.example.com | 2018-01-18 09:29:43.964 UTC [common/configtx] addToMap -> DEBU 34f Adding to config map: [Groups] /Channel +orderer.example.com | 2018-01-18 09:29:43.965 UTC [common/configtx] addToMap -> DEBU 350 Adding to config map: [Groups] /Channel/Orderer +peer0.org1.example.com | [4f3 01-18 09:30:23.70 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421ce0a80, header channel_header:"\010\003\032\014\010\223\322\201\323\005\020\350\237\205\210\002\"\017businesschannel*@651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030\273\240\3642\341\013#\320\247\267\210\222\354\377n\237\303<(;\004\014\314y" +peer1.org1.example.com | [528 01-18 09:31:07.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f7368f8b]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer1.org1.example.com | [529 01-18 09:31:07.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [f7368f8b]before send +peer1.org1.example.com | [52a 01-18 09:31:07.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [f7368f8b]after send +peer1.org1.example.com | [52b 01-18 09:31:07.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [f7368f8b]Received RESPONSE, communicated (state:ready) +peer1.org1.example.com | [52c 01-18 09:31:07.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [f7368f8b]GetState received payload RESPONSE +peer1.org1.example.com | [52d 01-18 09:31:07.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f7368f8b]Transaction completed. Sending COMPLETED +peer1.org1.example.com | [52e 01-18 09:31:07.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f7368f8b]Move state message COMPLETED +peer1.org1.example.com | [52f 01-18 09:31:07.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f7368f8b]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [530 01-18 09:31:07.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f7368f8b]send state message COMPLETED +peer1.org1.example.com | [531 01-18 09:31:07.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f7368f8b]Received message COMPLETED from shim +peer1.org1.example.com | [532 01-18 09:31:07.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f7368f8b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [50d 01-18 09:30:45.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [50e 01-18 09:30:45.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 +peer0.org2.example.com | [50f 01-18 09:30:45.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [79910bc7]Inside sendExecuteMessage. Message TRANSACTION +peer0.org2.example.com | [510 01-18 09:30:45.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [511 01-18 09:30:45.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org2.example.com | [512 01-18 09:30:45.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [79910bc7]sendExecuteMsg trigger event TRANSACTION +peer0.org2.example.com | [513 01-18 09:30:45.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [79910bc7]Move state message TRANSACTION +peer1.org2.example.com | [502 01-18 09:30:47.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b3b0fdd0]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | 2018-01-18 09:29:43.965 UTC [common/configtx] addToMap -> DEBU 351 Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +peer1.org1.example.com | [533 01-18 09:31:07.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f7368f8b9d6d39ab61fbc1a11965e7f3932147871b48df6101516e37372b2cee]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [534 01-18 09:31:07.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:f7368f8b9d6d39ab61fbc1a11965e7f3932147871b48df6101516e37372b2cee +peer1.org1.example.com | [535 01-18 09:31:07.34 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [536 01-18 09:31:07.34 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode exp02:1.0 is being launched +peer1.org1.example.com | [537 01-18 09:31:07.34 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +peer1.org1.example.com | [538 01-18 09:31:07.34 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer1.org1.example.com:7052] +peer1.org1.example.com | [539 01-18 09:31:07.34 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container: exp02:1.0(networkid:dev,peerid:peer1.org1.example.com) +peer0.org1.example.com | [4f4 01-18 09:30:23.70 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer0.org2.example.com | [514 01-18 09:30:45.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [79910bc7]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | 2018-01-18 09:29:43.965 UTC [common/configtx] addToMap -> DEBU 352 Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +orderer.example.com | 2018-01-18 09:29:43.966 UTC [common/configtx] addToMap -> DEBU 353 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | 2018-01-18 09:29:43.966 UTC [common/configtx] addToMap -> DEBU 354 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +orderer.example.com | 2018-01-18 09:29:43.966 UTC [common/configtx] addToMap -> DEBU 355 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +orderer.example.com | 2018-01-18 09:29:43.966 UTC [common/configtx] addToMap -> DEBU 356 Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +orderer.example.com | 2018-01-18 09:29:43.966 UTC [common/configtx] addToMap -> DEBU 357 Adding to config map: [Values] /Channel/Orderer/ConsensusType +orderer.example.com | 2018-01-18 09:29:43.967 UTC [common/configtx] addToMap -> DEBU 358 Adding to config map: [Values] /Channel/Orderer/BatchSize +peer1.org2.example.com | [503 01-18 09:30:47.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [53a 01-18 09:31:07.34 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer1.org1.example.com:7052 +peer0.org2.example.com | [515 01-18 09:30:45.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [516 01-18 09:30:45.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [79910bc7]sending state message TRANSACTION +peer0.org2.example.com | [517 01-18 09:30:45.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +peer0.org2.example.com | [518 01-18 09:30:45.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] +peer0.org2.example.com | [51a 01-18 09:30:45.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] +peer0.org2.example.com | [51b 01-18 09:30:45.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6c, 0x73, 0x63, 0x63, 0x0, 0x65, 0x78, 0x70, 0x30, 0x32}] +peer0.org2.example.com | [51c 01-18 09:30:45.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +peer0.org2.example.com | [51d 01-18 09:30:45.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [3] with [1] transactions +peer0.org1.example.com | [4f5 01-18 09:30:23.70 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer0.org1.example.com | [4f6 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer0.org1.example.com | [4f7 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +peer0.org1.example.com | [4f8 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6] +peer0.org1.example.com | [4f9 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +orderer.example.com | 2018-01-18 09:29:43.967 UTC [common/configtx] addToMap -> DEBU 359 Adding to config map: [Values] /Channel/Orderer/BatchTimeout +peer1.org2.example.com | [504 01-18 09:30:47.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b3b0fdd0]sending state message TRANSACTION +peer1.org2.example.com | [505 01-18 09:30:47.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b3b0fdd0]Received message TRANSACTION from shim +peer1.org1.example.com | [53b 01-18 09:31:07.34 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +peer0.org1.example.com | [4fa 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org1.example.com | [4fb 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [3f688420-871a-4c10-889c-4c84eacffa0b] +peer0.org1.example.com | [4fc 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=2164ce2d-b4b5-4838-bec8-ebad0b052c72,syscc=true,proposal=0x0,canname=vscc:1.0.2 +peer0.org1.example.com | [4fd 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6 chaindID businesschannel +peer0.org1.example.com | [4fe 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 +peer0.org1.example.com | [4ff 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [500 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 +orderer.example.com | 2018-01-18 09:29:43.967 UTC [common/configtx] addToMap -> DEBU 35a Adding to config map: [Policy] /Channel/Orderer/Writers +peer0.org2.example.com | [51e 01-18 09:30:45.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [3] +peer1.org2.example.com | [506 01-18 09:30:47.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b3b0fdd0]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org2.example.com | [507 01-18 09:30:47.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [b3b0fdd0]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [501 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [2164ce2d]Inside sendExecuteMessage. Message TRANSACTION +peer1.org1.example.com | CORE_CHAINCODE_ID_NAME=exp02:1.0 +peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +peer1.org1.example.com | [53c 01-18 09:31:07.34 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(dev-peer1.org1.example.com-exp02-1.0) lock +peer1.org1.example.com | [53d 01-18 09:31:07.34 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (dev-peer1.org1.example.com-exp02-1.0) lock +peer1.org1.example.com | [53e 01-18 09:31:07.34 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Cleanup container dev-peer1.org1.example.com-exp02-1.0 +peer1.org1.example.com | [53f 01-18 09:31:07.34 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Stop container dev-peer1.org1.example.com-exp02-1.0(No such container: dev-peer1.org1.example.com-exp02-1.0) +peer1.org1.example.com | [540 01-18 09:31:07.34 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Kill container dev-peer1.org1.example.com-exp02-1.0 (No such container: dev-peer1.org1.example.com-exp02-1.0) +peer1.org1.example.com | [541 01-18 09:31:07.34 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Remove container dev-peer1.org1.example.com-exp02-1.0 (No such container: dev-peer1.org1.example.com-exp02-1.0) +peer0.org2.example.com | [51f 01-18 09:30:45.02 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer1.org1.example.com | [542 01-18 09:31:07.34 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Start container dev-peer1.org1.example.com-exp02-1.0 +peer1.org1.example.com | [543 01-18 09:31:07.34 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: v102_default +orderer.example.com | 2018-01-18 09:29:43.967 UTC [common/configtx] addToMap -> DEBU 35b Adding to config map: [Policy] /Channel/Orderer/Admins +peer0.org1.example.com | [502 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [544 01-18 09:31:07.35 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer1.org1.example.com-exp02-1.0 +orderer.example.com | 2018-01-18 09:29:43.967 UTC [common/configtx] addToMap -> DEBU 35c Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer0.org1.example.com | [503 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [2164ce2d]sendExecuteMsg trigger event TRANSACTION +peer0.org2.example.com | [520 01-18 09:30:45.02 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: 651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6 +peer1.org2.example.com | [508 01-18 09:30:47.16 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer1.org1.example.com | [545 01-18 09:31:07.35 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-could not find image (container id ), because of ...attempt to recreate image +orderer.example.com | 2018-01-18 09:29:43.968 UTC [common/configtx] addToMap -> DEBU 35d Adding to config map: [Policy] /Channel/Orderer/Readers +peer0.org2.example.com | [521 01-18 09:30:45.02 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [3] +peer0.org1.example.com | [504 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2164ce2d]Move state message TRANSACTION +peer1.org2.example.com | [509 01-18 09:30:47.16 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +peer1.org1.example.com | [546 01-18 09:31:07.35 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms] do.do.Start.func1.GenerateDockerBuild.generateDockerfile -> DEBU +peer0.org2.example.com | [522 01-18 09:30:45.02 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +orderer.example.com | 2018-01-18 09:29:43.968 UTC [common/configtx] addToMap -> DEBU 35e Adding to config map: [Groups] /Channel/Application +peer0.org1.example.com | [505 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2164ce2d]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [506 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [50a 01-18 09:30:47.16 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC +orderer.example.com | 2018-01-18 09:29:43.968 UTC [common/configtx] addToMap -> DEBU 35f Adding to config map: [Groups] /Channel/Application/Org1MSP +peer0.org2.example.com | [523 01-18 09:30:45.02 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer0.org2.example.com | [524 01-18 09:30:45.02 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer1.org1.example.com | FROM hyperledger/fabric-baseos:x86_64-0.3.2 +peer1.org2.example.com | [50b 01-18 09:30:47.16 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +orderer.example.com | 2018-01-18 09:29:43.968 UTC [common/configtx] addToMap -> DEBU 360 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +peer0.org1.example.com | [507 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2164ce2d]sending state message TRANSACTION +peer0.org2.example.com | [525 01-18 09:30:45.02 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +peer1.org1.example.com | ADD binpackage.tar /usr/local/bin +peer1.org2.example.com | [50c 01-18 09:30:47.16 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +peer1.org2.example.com | [50d 01-18 09:30:47.16 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace exp02 +peer1.org2.example.com | [50e 01-18 09:30:47.16 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc +orderer.example.com | 2018-01-18 09:29:43.968 UTC [common/configtx] addToMap -> DEBU 361 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | 2018-01-18 09:29:43.969 UTC [common/configtx] addToMap -> DEBU 362 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | 2018-01-18 09:29:43.969 UTC [common/configtx] addToMap -> DEBU 363 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | 2018-01-18 09:29:43.969 UTC [common/configtx] addToMap -> DEBU 364 Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | 2018-01-18 09:29:43.969 UTC [common/configtx] addToMap -> DEBU 365 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +peer1.org1.example.com | LABEL org.hyperledger.fabric.chaincode.id.name="exp02" \ +peer1.org1.example.com | org.hyperledger.fabric.chaincode.id.version="1.0" \ +peer1.org1.example.com | org.hyperledger.fabric.chaincode.type="GOLANG" \ +peer1.org1.example.com | org.hyperledger.fabric.version="1.0.2" \ +peer0.org2.example.com | [519 01-18 09:30:45.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [79910bc7]Received message TRANSACTION from shim +peer0.org2.example.com | [526 01-18 09:30:45.04 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +peer0.org2.example.com | [527 01-18 09:30:45.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [79910bc7]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org2.example.com | [528 01-18 09:30:45.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [79910bc7]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org2.example.com | [529 01-18 09:30:45.05 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer0.org2.example.com | [52a 01-18 09:30:45.06 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer0.org2.example.com | [52b 01-18 09:30:45.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [79910bc7]Transaction completed. Sending COMPLETED +peer0.org2.example.com | [52c 01-18 09:30:45.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [79910bc7]Move state message COMPLETED +peer0.org2.example.com | [52d 01-18 09:30:45.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [79910bc7]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [52e 01-18 09:30:45.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [79910bc7]send state message COMPLETED +peer0.org2.example.com | [52f 01-18 09:30:45.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [79910bc7]Received message COMPLETED from shim +peer0.org2.example.com | [530 01-18 09:30:45.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [79910bc7]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [531 01-18 09:30:45.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [79910bc72d1a9ba3fd9ac6a98cdec470c2b4c2afd8dd6128c715aa89ad94672c]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [532 01-18 09:30:45.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:79910bc72d1a9ba3fd9ac6a98cdec470c2b4c2afd8dd6128c715aa89ad94672c +peer0.org2.example.com | [533 01-18 09:30:45.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [534 01-18 09:30:45.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer0.org2.example.com | [535 01-18 09:30:45.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org2.example.com | [536 01-18 09:30:45.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [e85b93f3-ae99-430e-8124-997127168817] +peer0.org2.example.com | [537 01-18 09:30:45.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer0.org2.example.com | [538 01-18 09:30:47.13 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [4], peers number [3] +peer0.org2.example.com | [539 01-18 09:30:47.13 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [4], peers number [3] +peer0.org2.example.com | [53a 01-18 09:30:47.13 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer0.org2.example.com | [53b 01-18 09:30:47.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +peer0.org2.example.com | [53c 01-18 09:30:47.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer0.org2.example.com | [53d 01-18 09:30:47.13 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc42279f740 +peer0.org2.example.com | [53e 01-18 09:30:47.13 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\256\322\201\323\005\020\353\233\354*\"\017businesschannel*@79910bc72d1a9ba3fd9ac6a98cdec470c2b4c2afd8dd6128c715aa89ad94672c:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\030\343\0211\005\250w\252\312\31341o<\362\302P\273g>4\340\275\032\306" +peer0.org2.example.com | [53f 01-18 09:30:47.13 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org2.example.com | [540 01-18 09:30:47.13 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | 2018-01-18 09:29:43.969 UTC [common/configtx] addToMap -> DEBU 366 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer0.org1.example.com | [508 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2164ce2d]Received message TRANSACTION from shim +peer1.org2.example.com | [50f 01-18 09:30:47.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [ecbf8ab1-fd25-4a2b-9252-72336b521d1f] +peer1.org1.example.com | org.hyperledger.fabric.base.version="0.3.2" +peer1.org1.example.com | ENV CORE_CHAINCODE_BUILDLEVEL=1.0.2 +peer1.org1.example.com | ENV CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt +peer1.org1.example.com | COPY peer.crt /etc/hyperledger/fabric/peer.crt +peer1.org1.example.com | [547 01-18 09:31:07.36 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/util] generateDockerBuild.GenerateDockerBuild.DockerBuild -> DEBU Attempting build with image hyperledger/fabric-ccenv:x86_64-1.0.2 +peer1.org1.example.com | [548 01-18 09:31:09.21 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [5], peers number [3] +orderer.example.com | 2018-01-18 09:29:43.969 UTC [common/configtx] addToMap -> DEBU 367 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer0.org2.example.com | [541 01-18 09:30:47.13 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} +peer0.org1.example.com | [509 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2164ce2d]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org2.example.com | [510 01-18 09:30:47.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer1.org1.example.com | [549 01-18 09:31:09.21 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [5], peers number [3] +orderer.example.com | 2018-01-18 09:29:43.969 UTC [common/configtx] addToMap -> DEBU 368 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | 2018-01-18 09:29:43.970 UTC [common/configtx] addToMap -> DEBU 369 Adding to config map: [Policy] /Channel/Application/Writers +orderer.example.com | 2018-01-18 09:29:43.970 UTC [common/configtx] addToMap -> DEBU 36a Adding to config map: [Policy] /Channel/Application/Readers +orderer.example.com | 2018-01-18 09:29:43.970 UTC [common/configtx] addToMap -> DEBU 36b Adding to config map: [Policy] /Channel/Application/Admins +orderer.example.com | 2018-01-18 09:29:43.970 UTC [common/configtx] addToMap -> DEBU 36c Adding to config map: [Values] /Channel/BlockDataHashingStructure +peer0.org2.example.com | [542 01-18 09:30:47.13 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org2.example.com | [543 01-18 09:30:47.13 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org2.example.com | [544 01-18 09:30:47.13 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc422786a80, header channel_header:"\010\003\032\013\010\256\322\201\323\005\020\353\233\354*\"\017businesschannel*@79910bc72d1a9ba3fd9ac6a98cdec470c2b4c2afd8dd6128c715aa89ad94672c:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\030\343\0211\005\250w\252\312\31341o<\362\302P\273g>4\340\275\032\306" +peer1.org2.example.com | [511 01-18 09:30:47.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [ecbf8ab1-fd25-4a2b-9252-72336b521d1f] +orderer.example.com | 2018-01-18 09:29:43.970 UTC [common/configtx] addToMap -> DEBU 36d Adding to config map: [Values] /Channel/OrdererAddresses +orderer.example.com | 2018-01-18 09:29:43.971 UTC [common/configtx] addToMap -> DEBU 36e Adding to config map: [Values] /Channel/HashingAlgorithm +orderer.example.com | 2018-01-18 09:29:43.971 UTC [common/configtx] addToMap -> DEBU 36f Adding to config map: [Values] /Channel/Consortium +orderer.example.com | 2018-01-18 09:29:43.971 UTC [common/configtx] addToMap -> DEBU 370 Adding to config map: [Policy] /Channel/Admins +orderer.example.com | 2018-01-18 09:29:43.971 UTC [common/configtx] addToMap -> DEBU 371 Adding to config map: [Policy] /Channel/Readers +orderer.example.com | 2018-01-18 09:29:43.972 UTC [common/configtx] addToMap -> DEBU 372 Adding to config map: [Policy] /Channel/Writers +orderer.example.com | 2018-01-18 09:29:43.973 UTC [common/configtx] addToMap -> DEBU 373 Adding to config map: [Groups] /Channel +orderer.example.com | 2018-01-18 09:29:43.973 UTC [common/configtx] addToMap -> DEBU 374 Adding to config map: [Groups] /Channel/Application +orderer.example.com | 2018-01-18 09:29:43.973 UTC [common/configtx] addToMap -> DEBU 375 Adding to config map: [Groups] /Channel/Application/Org1MSP +peer0.org1.example.com | [50a 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [2164ce2d]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [50b 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer0.org1.example.com | [50c 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +peer1.org1.example.com | [54a 01-18 09:31:09.21 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +orderer.example.com | 2018-01-18 09:29:43.973 UTC [common/configtx] addToMap -> DEBU 376 Adding to config map: [Groups] /Channel/Application/Org2MSP +peer0.org2.example.com | [545 01-18 09:30:47.13 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer1.org2.example.com | [512 01-18 09:30:47.16 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 +peer1.org2.example.com | [513 01-18 09:30:47.17 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x953df0)} +peer1.org2.example.com | [514 01-18 09:30:47.17 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode exp02 is already instantiated +peer1.org2.example.com | [515 01-18 09:30:47.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b3b0fdd0]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [50d 01-18 09:30:23.72 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC +peer0.org1.example.com | [50e 01-18 09:30:23.72 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +peer0.org1.example.com | [50f 01-18 09:30:23.72 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +peer0.org1.example.com | [510 01-18 09:30:23.72 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace exp02 +peer0.org1.example.com | [511 01-18 09:30:23.72 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc +peer1.org1.example.com | [54b 01-18 09:31:09.21 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +peer1.org1.example.com | [54c 01-18 09:31:09.21 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer1.org1.example.com | [54d 01-18 09:31:09.21 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421c4bd10 +peer1.org1.example.com | [54e 01-18 09:31:09.21 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\333\322\201\323\005\020\360\266\340\033\"\017businesschannel*@7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9:\t\022\007\022\005exp02" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030'A\264\276\244\\e\214\037\347\247\270\204\"\355\\\246\370f\331*\367Z~" +peer1.org2.example.com | [516 01-18 09:30:47.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b3b0fdd0]Move state message COMPLETED +peer1.org2.example.com | [517 01-18 09:30:47.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b3b0fdd0]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [518 01-18 09:30:47.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b3b0fdd0]send state message COMPLETED +peer1.org2.example.com | [519 01-18 09:30:47.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b3b0fdd0]Received message COMPLETED from shim +peer1.org2.example.com | [51a 01-18 09:30:47.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b3b0fdd0]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [51b 01-18 09:30:47.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b3b0fdd0-12aa-429c-bdfa-f8465e92b32a]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [51c 01-18 09:30:47.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:b3b0fdd0-12aa-429c-bdfa-f8465e92b32a +peer1.org2.example.com | [51d 01-18 09:30:47.17 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [51e 01-18 09:30:47.17 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> ERRO VSCC check failed for transaction txid=79910bc72d1a9ba3fd9ac6a98cdec470c2b4c2afd8dd6128c715aa89ad94672c, error Chaincode exp02 is already instantiated +peer1.org2.example.com | [51f 01-18 09:30:47.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [c66bd0c2-0357-4c34-b9d1-99dbcddf9b64] +peer1.org2.example.com | [520 01-18 09:30:47.17 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> ERRO VSCCValidateTx for transaction txId = 79910bc72d1a9ba3fd9ac6a98cdec470c2b4c2afd8dd6128c715aa89ad94672c returned error Chaincode exp02 is already instantiated +peer1.org2.example.com | [521 01-18 09:30:47.17 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer1.org2.example.com | [522 01-18 09:30:47.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer1.org2.example.com | [523 01-18 09:30:47.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc4225a7140), Data:(*common.BlockData)(0xc4201e2fc0), Metadata:(*common.BlockMetadata)(0xc4201e3000)}, doMVCCValidation=true +peer1.org2.example.com | [524 01-18 09:30:47.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +peer1.org2.example.com | [525 01-18 09:30:47.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> WARN Block [4] Transaction index [0] marked as invalid by committer. Reason code [10] +peer1.org2.example.com | [526 01-18 09:30:47.20 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0x93, 0xa4, 0xeb, 0x23, 0x11, 0xc5, 0x82, 0x3, 0x71, 0xbf, 0xef, 0x31, 0x5d, 0x62, 0x4, 0x79, 0xce, 0xd9, 0xc3, 0x8e, 0xe0, 0x77, 0x29, 0xaf, 0x45, 0x72, 0x23, 0x4e, 0x53, 0x11, 0xbd, 0x26} txOffsets= +peer1.org2.example.com | txId=79910bc72d1a9ba3fd9ac6a98cdec470c2b4c2afd8dd6128c715aa89ad94672c locPointer=offset=70, bytesLength=3393 +peer1.org2.example.com | ] +peer1.org2.example.com | [527 01-18 09:30:47.20 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=44744, bytesLength=3393] for tx ID: [79910bc72d1a9ba3fd9ac6a98cdec470c2b4c2afd8dd6128c715aa89ad94672c] to index +peer0.org2.example.com | [546 01-18 09:30:47.13 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer0.org2.example.com | [547 01-18 09:30:47.13 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer0.org2.example.com | [548 01-18 09:30:47.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +peer0.org2.example.com | [549 01-18 09:30:47.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [79910bc72d1a9ba3fd9ac6a98cdec470c2b4c2afd8dd6128c715aa89ad94672c] +peer0.org2.example.com | [54a 01-18 09:30:47.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +peer0.org2.example.com | [54b 01-18 09:30:47.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org2.example.com | [54c 01-18 09:30:47.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [04f742a1-524a-469f-8cd9-deaf936b17d7] +peer0.org1.example.com | [512 01-18 09:30:23.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [ce59b5c2-e1fb-4a1a-bd64-ecac3384cd0d] +peer1.org1.example.com | [54f 01-18 09:31:09.21 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org2.example.com | [528 01-18 09:30:47.20 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=44744, bytesLength=3393] for tx number:[0] ID: [79910bc72d1a9ba3fd9ac6a98cdec470c2b4c2afd8dd6128c715aa89ad94672c] to blockNumTranNum index +orderer.example.com | 2018-01-18 09:29:43.973 UTC [common/configtx] addToMap -> DEBU 377 Adding to config map: [Values] /Channel/Consortium +orderer.example.com | 2018-01-18 09:29:43.973 UTC [common/configtx] addToMap -> DEBU 378 Adding to config map: [Groups] /Channel +orderer.example.com | 2018-01-18 09:29:43.974 UTC [common/configtx] addToMap -> DEBU 379 Adding to config map: [Groups] /Channel/Application +orderer.example.com | 2018-01-18 09:29:43.974 UTC [common/configtx] addToMap -> DEBU 37a Adding to config map: [Groups] /Channel/Application/Org1MSP +peer0.org2.example.com | [54d 01-18 09:30:47.13 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=e82f952c-8ee0-42f7-a2b0-4fd59d8b5591,syscc=true,proposal=0x0,canname=vscc:1.0.2 +peer0.org2.example.com | [54e 01-18 09:30:47.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 79910bc72d1a9ba3fd9ac6a98cdec470c2b4c2afd8dd6128c715aa89ad94672c chaindID businesschannel +peer0.org2.example.com | [54f 01-18 09:30:47.13 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 +peer0.org2.example.com | [550 01-18 09:30:47.13 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [551 01-18 09:30:47.13 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 +peer0.org1.example.com | [513 01-18 09:30:23.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer0.org1.example.com | [514 01-18 09:30:23.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [ce59b5c2-e1fb-4a1a-bd64-ecac3384cd0d] +peer0.org1.example.com | [515 01-18 09:30:23.72 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 +peer0.org1.example.com | [516 01-18 09:30:23.72 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x953df0)} +peer0.org1.example.com | [517 01-18 09:30:23.72 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +peer1.org2.example.com | [529 01-18 09:30:47.20 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[49888], isChainEmpty=[false], lastBlockNumber=[4] +orderer.example.com | 2018-01-18 09:29:43.974 UTC [common/configtx] addToMap -> DEBU 37b Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | 2018-01-18 09:29:43.974 UTC [common/configtx] addToMap -> DEBU 37c Adding to config map: [Policy] /Channel/Application/Admins +orderer.example.com | 2018-01-18 09:29:43.975 UTC [common/configtx] addToMap -> DEBU 37d Adding to config map: [Policy] /Channel/Application/Writers +orderer.example.com | 2018-01-18 09:29:43.976 UTC [common/configtx] addToMap -> DEBU 37e Adding to config map: [Policy] /Channel/Application/Readers +peer1.org1.example.com | [550 01-18 09:31:09.21 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org2.example.com | [52a 01-18 09:30:47.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [4] with 1 transaction(s) +peer1.org2.example.com | [52b 01-18 09:30:47.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +peer1.org2.example.com | [52c 01-18 09:31:05.86 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.deployImage -> DEBU Created image: dev-peer1.org2.example.com-exp02-1.0-ac79f954ea10befb402e8d87d56741bcfae7738c8fd82aee62f22874f759e30d +peer1.org2.example.com | [52d 01-18 09:31:05.86 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-recreated image successfully +peer1.org2.example.com | [52e 01-18 09:31:05.86 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer1.org2.example.com-exp02-1.0 +peer0.org2.example.com | [552 01-18 09:30:47.13 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [e82f952c]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [518 01-18 09:30:23.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2164ce2d]Transaction completed. Sending COMPLETED +peer1.org1.example.com | [551 01-18 09:31:09.21 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +peer1.org1.example.com | [552 01-18 09:31:09.21 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org1.example.com | [553 01-18 09:31:09.22 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | 2018-01-18 09:29:43.976 UTC [common/configtx] addToMap -> DEBU 37f Adding to config map: [Values] /Channel/Consortium +peer1.org1.example.com | [554 01-18 09:31:09.22 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421614800, header channel_header:"\010\003\032\013\010\333\322\201\323\005\020\360\266\340\033\"\017businesschannel*@7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9:\t\022\007\022\005exp02" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030'A\264\276\244\\e\214\037\347\247\270\204\"\355\\\246\370f\331*\367Z~" +peer0.org1.example.com | [519 01-18 09:30:23.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2164ce2d]Move state message COMPLETED +peer0.org1.example.com | [51a 01-18 09:30:23.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2164ce2d]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [52f 01-18 09:31:05.93 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Created container: dev-peer1.org2.example.com-exp02-1.0-ac79f954ea10befb402e8d87d56741bcfae7738c8fd82aee62f22874f759e30d +peer1.org2.example.com | [530 01-18 09:31:06.79 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Started container dev-peer1.org2.example.com-exp02-1.0 +orderer.example.com | 2018-01-18 09:29:43.976 UTC [policies] GetPolicy -> DEBU 380 Returning policy ChannelCreationPolicy for evaluation +orderer.example.com | 2018-01-18 09:29:43.977 UTC [cauthdsl] func1 -> DEBU 381 0xc420026000 gate 1516267783977224371 evaluation starts +orderer.example.com | 2018-01-18 09:29:43.977 UTC [cauthdsl] func2 -> DEBU 382 0xc420026000 signed by 0 principal evaluation starts (used [false]) +peer0.org2.example.com | [553 01-18 09:30:47.13 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [554 01-18 09:30:47.13 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [e82f952c]sendExecuteMsg trigger event TRANSACTION +peer0.org2.example.com | [555 01-18 09:30:47.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e82f952c]Move state message TRANSACTION +peer0.org1.example.com | [51b 01-18 09:30:23.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2164ce2d]send state message COMPLETED +orderer.example.com | 2018-01-18 09:29:43.977 UTC [cauthdsl] func2 -> DEBU 383 0xc420026000 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +peer1.org2.example.com | [531 01-18 09:31:06.79 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(dev-peer1.org2.example.com-exp02-1.0) +peer1.org1.example.com | [555 01-18 09:31:09.22 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer1.org1.example.com | [556 01-18 09:31:09.22 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer0.org2.example.com | [556 01-18 09:30:47.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e82f952c]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [51c 01-18 09:30:23.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2164ce2d]Received message COMPLETED from shim +orderer.example.com | 2018-01-18 09:29:43.977 UTC [msp/identity] newIdentity -> DEBU 384 Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [532 01-18 09:31:06.82 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer1.org1.example.com | [557 01-18 09:31:09.22 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer1.org1.example.com | [558 01-18 09:31:09.22 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +peer0.org1.example.com | [51d 01-18 09:30:23.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2164ce2d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [559 01-18 09:31:09.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9] +peer0.org2.example.com | [557 01-18 09:30:47.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [533 01-18 09:31:06.82 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:43.977 UTC [cauthdsl] func2 -> DEBU 385 0xc420026000 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got Org1MSP) +orderer.example.com | 2018-01-18 09:29:43.977 UTC [cauthdsl] func2 -> DEBU 386 0xc420026000 principal evaluation fails +orderer.example.com | 2018-01-18 09:29:43.977 UTC [cauthdsl] func1 -> DEBU 387 0xc420026000 gate 1516267783977224371 evaluation fails +orderer.example.com | 2018-01-18 09:29:43.978 UTC [cauthdsl] func1 -> DEBU 388 0xc420026070 gate 1516267783977999684 evaluation starts +orderer.example.com | 2018-01-18 09:29:43.978 UTC [cauthdsl] func2 -> DEBU 389 0xc420026070 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:29:43.978 UTC [cauthdsl] func2 -> DEBU 38a 0xc420026070 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:29:43.978 UTC [msp/identity] newIdentity -> DEBU 38b Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:43.978 UTC [msp] SatisfiesPrincipal -> DEBU 38c Checking if identity satisfies ADMIN role for Org1MSP +orderer.example.com | 2018-01-18 09:29:43.978 UTC [cauthdsl] func2 -> DEBU 38d 0xc420026070 principal matched by identity 0 +orderer.example.com | 2018-01-18 09:29:43.978 UTC [msp/identity] Verify -> DEBU 38e Verify: digest = 00000000 c2 fe 17 b4 c8 3b c1 d6 17 b0 19 ac b7 be a1 8c |.....;..........| +orderer.example.com | 00000010 b9 9f 4f e4 be 55 e9 d4 15 9e 05 c0 ee c6 5c 37 |..O..U........\7| +orderer.example.com | 2018-01-18 09:29:43.978 UTC [msp/identity] Verify -> DEBU 38f Verify: sig = 00000000 30 45 02 21 00 91 a7 72 c6 06 52 e5 fc dc 81 54 |0E.!...r..R....T| +orderer.example.com | 00000010 76 54 81 da 3e 58 9e 11 df f1 67 fb 92 ed 61 ef |vT..>X....g...a.| +orderer.example.com | 00000020 bc ae 13 4e 1c 02 20 3d 4a 89 e2 1b 4e e0 cd 08 |...N.. =J...N...| +orderer.example.com | 00000030 aa 9f b4 66 db 3a 4a 2f 16 cc ff a7 a1 0c 8b ca |...f.:J/........| +orderer.example.com | 00000040 0f 7a a5 e9 a8 21 9c |.z...!.| +orderer.example.com | 2018-01-18 09:29:43.978 UTC [cauthdsl] func2 -> DEBU 390 0xc420026070 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-18 09:29:43.978 UTC [cauthdsl] func1 -> DEBU 391 0xc420026070 gate 1516267783977999684 evaluation succeeds +orderer.example.com | 2018-01-18 09:29:43.979 UTC [common/configtx] recurseConfigMap -> DEBU 392 Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:43.979 UTC [common/configtx] recurseConfigMap -> DEBU 393 Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:43.979 UTC [common/configtx] recurseConfigMap -> DEBU 394 Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:43.979 UTC [common/configtx] recurseConfigMap -> DEBU 395 Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [51e 01-18 09:30:23.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2164ce2d-b4b5-4838-bec8-ebad0b052c72]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [558 01-18 09:30:47.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e82f952c]sending state message TRANSACTION +peer0.org2.example.com | [559 01-18 09:30:47.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e82f952c]Received message TRANSACTION from shim +peer0.org2.example.com | [55a 01-18 09:30:47.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e82f952c]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | 2018-01-18 09:29:43.979 UTC [common/configtx] recurseConfigMap -> DEBU 396 Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org1.example.com | [55a 01-18 09:31:09.22 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +peer1.org2.example.com | [534 01-18 09:31:06.82 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer0.org1.example.com | [51f 01-18 09:30:23.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:2164ce2d-b4b5-4838-bec8-ebad0b052c72 +peer1.org1.example.com | [55b 01-18 09:31:09.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [50ff326e-93a4-4117-b906-7c197d9c5329] +peer1.org1.example.com | [55c 01-18 09:31:09.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer0.org2.example.com | [55b 01-18 09:30:47.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [e82f952c]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org2.example.com | [535 01-18 09:31:06.82 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +orderer.example.com | 2018-01-18 09:29:43.979 UTC [common/configtx] recurseConfigMap -> DEBU 397 Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [520 01-18 09:30:23.73 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [55d 01-18 09:31:09.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [50ff326e-93a4-4117-b906-7c197d9c5329] +peer1.org1.example.com | [55e 01-18 09:31:09.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org2.example.com | [55c 01-18 09:30:47.13 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +orderer.example.com | 2018-01-18 09:29:43.979 UTC [common/configtx] recurseConfigMap -> DEBU 398 Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [521 01-18 09:30:23.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [3f688420-871a-4c10-889c-4c84eacffa0b] +peer1.org2.example.com | [536 01-18 09:31:06.82 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode exp02:1.0 +peer1.org2.example.com | [537 01-18 09:31:06.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"exp02:1.0" , sending back REGISTERED +peer1.org2.example.com | [538 01-18 09:31:06.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer1.org1.example.com | [55f 01-18 09:31:09.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [76759593-ed6c-4c74-aa3d-39e464b24822] +peer0.org1.example.com | [522 01-18 09:30:23.74 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +orderer.example.com | 2018-01-18 09:29:43.979 UTC [common/configtx] recurseConfigMap -> DEBU 399 Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [523 01-18 09:30:23.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer0.org2.example.com | [55d 01-18 09:30:47.14 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +peer1.org1.example.com | [560 01-18 09:31:09.22 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=bf4a2c07-135f-4b66-903d-c754d3e1be99,syscc=true,proposal=0x0,canname=vscc:1.0.2 +peer1.org2.example.com | [539 01-18 09:31:06.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode exp02:1.0 launch seq completed +peer0.org1.example.com | [524 01-18 09:30:23.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc4225ab780), Data:(*common.BlockData)(0xc4222ca160), Metadata:(*common.BlockMetadata)(0xc4222ca1a0)}, doMVCCValidation=true +peer0.org1.example.com | [525 01-18 09:30:23.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +peer0.org1.example.com | [526 01-18 09:30:23.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer0.org1.example.com | [527 01-18 09:30:23.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [3] Transaction index [0] TxId [651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6] marked as valid by state validator +peer0.org1.example.com | [528 01-18 09:30:23.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0x8a, 0x53, 0x56, 0xf, 0x7f, 0x2f, 0x8e, 0x2d, 0xd8, 0x4c, 0x3b, 0x34, 0x50, 0xc5, 0x52, 0x82, 0xe4, 0xc0, 0x8c, 0x36, 0x63, 0x95, 0x3a, 0xc, 0x39, 0x9b, 0xb8, 0x1a, 0x82, 0x88, 0x47, 0xb9} txOffsets= +peer0.org1.example.com | txId=651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6 locPointer=offset=70, bytesLength=3393 +peer0.org1.example.com | ] +peer0.org1.example.com | [529 01-18 09:30:23.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=39531, bytesLength=3393] for tx ID: [651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6] to index +peer0.org1.example.com | [52a 01-18 09:30:23.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=39531, bytesLength=3393] for tx number:[0] ID: [651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6] to blockNumTranNum index +peer0.org1.example.com | [52b 01-18 09:30:23.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[44674], isChainEmpty=[false], lastBlockNumber=[3] +peer0.org1.example.com | [52c 01-18 09:30:23.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [3] with 1 transaction(s) +peer0.org1.example.com | [52d 01-18 09:30:23.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +peer0.org1.example.com | [52e 01-18 09:30:23.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +peer0.org1.example.com | [52f 01-18 09:30:23.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6c, 0x73, 0x63, 0x63, 0x0, 0x65, 0x78, 0x70, 0x30, 0x32}] +orderer.example.com | 2018-01-18 09:29:43.979 UTC [common/configtx] recurseConfigMap -> DEBU 39a Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:43.979 UTC [common/configtx] recurseConfigMap -> DEBU 39b Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:43.979 UTC [common/configtx] recurseConfigMap -> DEBU 39c Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org1.example.com | [561 01-18 09:31:09.22 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9 chaindID businesschannel +peer0.org1.example.com | [530 01-18 09:30:23.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] +peer1.org2.example.com | [53a 01-18 09:31:06.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.sendReady.ready -> DEBU sending READY +peer0.org2.example.com | [55e 01-18 09:30:47.15 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC +orderer.example.com | 2018-01-18 09:29:43.979 UTC [common/configtx] recurseConfigMap -> DEBU 39d Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [562 01-18 09:31:09.22 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 +peer0.org1.example.com | [531 01-18 09:30:23.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] +peer1.org2.example.com | [53b 01-18 09:31:06.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [53c 01-18 09:31:06.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org2.example.com | [53d 01-18 09:31:06.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [43828dae]Move state message READY +peer1.org2.example.com | [53e 01-18 09:31:06.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [43828dae]Fabric side Handling ChaincodeMessage of type: READY in state established +peer0.org2.example.com | [55f 01-18 09:30:47.15 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +orderer.example.com | 2018-01-18 09:29:43.979 UTC [common/configtx] recurseConfigMap -> DEBU 39e Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [53f 01-18 09:31:06.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [43828dae]Entered state ready +peer0.org1.example.com | [532 01-18 09:30:23.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +peer0.org1.example.com | [533 01-18 09:30:23.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [3] with [1] transactions +peer0.org1.example.com | [534 01-18 09:30:23.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [3] +peer0.org1.example.com | [535 01-18 09:30:23.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer0.org1.example.com | [536 01-18 09:30:23.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: 651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6 +peer0.org1.example.com | [537 01-18 09:30:23.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [3] +peer0.org1.example.com | [538 01-18 09:30:23.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +peer0.org1.example.com | [539 01-18 09:30:23.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer1.org1.example.com | [563 01-18 09:31:09.22 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [540 01-18 09:31:06.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:43828daec956e8fe45a73d09bbc04d491c0f2d91818edf37d3252f09bf25f02a +peer0.org2.example.com | [560 01-18 09:30:47.16 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +peer0.org2.example.com | [561 01-18 09:30:47.16 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace exp02 +peer0.org2.example.com | [562 01-18 09:30:47.16 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc +peer0.org2.example.com | [563 01-18 09:30:47.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [8bc3784d-ca10-496b-a3b0-9d3bb74680da] +peer0.org2.example.com | [564 01-18 09:30:47.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer0.org2.example.com | [565 01-18 09:30:47.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [8bc3784d-ca10-496b-a3b0-9d3bb74680da] +peer0.org2.example.com | [566 01-18 09:30:47.17 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 +peer0.org1.example.com | [53a 01-18 09:30:23.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer1.org1.example.com | [564 01-18 09:31:09.22 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 +orderer.example.com | 2018-01-18 09:29:43.979 UTC [common/configtx] recurseConfigMap -> DEBU 39f Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:43.979 UTC [common/configtx] recurseConfigMap -> DEBU 3a0 Setting policy for key BlockValidation to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:43.979 UTC [common/configtx] recurseConfigMap -> DEBU 3a1 Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [541 01-18 09:31:06.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [43828dae]sending state message READY +peer1.org1.example.com | [565 01-18 09:31:09.22 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [bf4a2c07]Inside sendExecuteMessage. Message TRANSACTION +peer0.org2.example.com | [567 01-18 09:30:47.17 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x953df0)} +peer0.org1.example.com | [53b 01-18 09:30:23.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +peer1.org2.example.com | [542 01-18 09:31:06.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU sending init completed +peer1.org1.example.com | [566 01-18 09:31:09.22 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [567 01-18 09:31:09.22 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [bf4a2c07]sendExecuteMsg trigger event TRANSACTION +peer1.org1.example.com | [568 01-18 09:31:09.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bf4a2c07]Move state message TRANSACTION +orderer.example.com | 2018-01-18 09:29:43.979 UTC [common/configtx] recurseConfigMap -> DEBU 3a2 Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org2.example.com | [568 01-18 09:30:47.18 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode exp02 is already instantiated +peer1.org2.example.com | [543 01-18 09:31:06.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU LaunchChaincode complete +peer0.org1.example.com | [53c 01-18 09:30:23.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +peer0.org2.example.com | [569 01-18 09:30:47.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e82f952c]Transaction completed. Sending COMPLETED +orderer.example.com | 2018-01-18 09:29:43.979 UTC [common/configtx] recurseConfigMap -> DEBU 3a3 Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [53d 01-18 09:30:47.22 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer0.org1.example.com | [53e 01-18 09:30:47.22 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +peer1.org1.example.com | [569 01-18 09:31:09.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bf4a2c07]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | 2018-01-18 09:29:43.979 UTC [common/configtx] recurseConfigMap -> DEBU 3a4 Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [544 01-18 09:31:06.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [56a 01-18 09:30:47.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e82f952c]Move state message COMPLETED +peer0.org1.example.com | [53f 01-18 09:30:47.22 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer1.org1.example.com | [56a 01-18 09:31:09.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | 2018-01-18 09:29:43.979 UTC [common/configtx] processConfig -> DEBU 3a5 Beginning new config for channel businesschannel +peer1.org2.example.com | [545 01-18 09:31:06.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: exp02:1.0 +peer0.org2.example.com | [56b 01-18 09:30:47.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e82f952c]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [56b 01-18 09:31:09.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bf4a2c07]sending state message TRANSACTION +peer0.org1.example.com | [540 01-18 09:30:47.22 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421967bc0 +peer1.org2.example.com | [546 01-18 09:31:06.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [43828dae]Inside sendExecuteMessage. Message TRANSACTION +peer1.org1.example.com | [56c 01-18 09:31:09.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bf4a2c07]Received message TRANSACTION from shim +peer0.org2.example.com | [56c 01-18 09:30:47.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e82f952c]send state message COMPLETED +peer0.org2.example.com | [56d 01-18 09:30:47.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e82f952c]Received message COMPLETED from shim +peer0.org2.example.com | [56e 01-18 09:30:47.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e82f952c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [56f 01-18 09:30:47.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e82f952c-8ee0-42f7-a2b0-4fd59d8b5591]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [570 01-18 09:30:47.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:e82f952c-8ee0-42f7-a2b0-4fd59d8b5591 +peer0.org2.example.com | [571 01-18 09:30:47.21 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [572 01-18 09:30:47.21 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> ERRO VSCC check failed for transaction txid=79910bc72d1a9ba3fd9ac6a98cdec470c2b4c2afd8dd6128c715aa89ad94672c, error Chaincode exp02 is already instantiated +orderer.example.com | 2018-01-18 09:29:43.979 UTC [common/config] NewStandardValues -> DEBU 3a6 Initializing protos for *config.ChannelProtos +peer0.org1.example.com | [541 01-18 09:30:47.22 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\256\322\201\323\005\020\353\233\354*\"\017businesschannel*@79910bc72d1a9ba3fd9ac6a98cdec470c2b4c2afd8dd6128c715aa89ad94672c:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\030\343\0211\005\250w\252\312\31341o<\362\302P\273g>4\340\275\032\306" +peer1.org2.example.com | [547 01-18 09:31:06.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [573 01-18 09:30:47.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [04f742a1-524a-469f-8cd9-deaf936b17d7] +orderer.example.com | 2018-01-18 09:29:43.979 UTC [common/config] initializeProtosStruct -> DEBU 3a7 Processing field: HashingAlgorithm +peer1.org1.example.com | [56d 01-18 09:31:09.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bf4a2c07]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [542 01-18 09:30:47.22 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org2.example.com | [548 01-18 09:31:06.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org2.example.com | [574 01-18 09:30:47.21 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> ERRO VSCCValidateTx for transaction txId = 79910bc72d1a9ba3fd9ac6a98cdec470c2b4c2afd8dd6128c715aa89ad94672c returned error Chaincode exp02 is already instantiated +orderer.example.com | 2018-01-18 09:29:43.979 UTC [common/config] initializeProtosStruct -> DEBU 3a8 Processing field: BlockDataHashingStructure +peer1.org1.example.com | [56e 01-18 09:31:09.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [bf4a2c07]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [543 01-18 09:30:47.22 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org2.example.com | [549 01-18 09:31:06.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [43828dae]sendExecuteMsg trigger event TRANSACTION +peer0.org2.example.com | [575 01-18 09:30:47.21 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +orderer.example.com | 2018-01-18 09:29:43.980 UTC [common/config] initializeProtosStruct -> DEBU 3a9 Processing field: OrdererAddresses +peer1.org2.example.com | [54a 01-18 09:31:06.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [43828dae]Move state message TRANSACTION +peer0.org1.example.com | [544 01-18 09:30:47.22 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} +peer0.org2.example.com | [576 01-18 09:30:47.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer1.org1.example.com | [56f 01-18 09:31:09.24 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer1.org1.example.com | [570 01-18 09:31:09.24 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +peer0.org1.example.com | [545 01-18 09:30:47.22 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [546 01-18 09:30:47.22 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [547 01-18 09:30:47.22 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc4214d6000, header channel_header:"\010\003\032\013\010\256\322\201\323\005\020\353\233\354*\"\017businesschannel*@79910bc72d1a9ba3fd9ac6a98cdec470c2b4c2afd8dd6128c715aa89ad94672c:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\030\343\0211\005\250w\252\312\31341o<\362\302P\273g>4\340\275\032\306" +orderer.example.com | 2018-01-18 09:29:43.980 UTC [common/config] initializeProtosStruct -> DEBU 3aa Processing field: Consortium +peer1.org1.example.com | [571 01-18 09:31:09.24 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +peer0.org2.example.com | [577 01-18 09:30:47.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc4227ca180), Data:(*common.BlockData)(0xc4227cd4a0), Metadata:(*common.BlockMetadata)(0xc4227cd4e0)}, doMVCCValidation=true +peer1.org2.example.com | [54b 01-18 09:31:06.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [43828dae]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org2.example.com | [578 01-18 09:30:47.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +peer0.org1.example.com | [548 01-18 09:30:47.22 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer1.org1.example.com | [572 01-18 09:31:09.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bf4a2c07]Transaction completed. Sending COMPLETED +orderer.example.com | 2018-01-18 09:29:43.980 UTC [policies] ProposePolicy -> DEBU 3ab Proposed new policy Writers for Channel +peer0.org2.example.com | [579 01-18 09:30:47.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> WARN Block [4] Transaction index [0] marked as invalid by committer. Reason code [10] +peer1.org2.example.com | [54c 01-18 09:31:06.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [573 01-18 09:31:09.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bf4a2c07]Move state message COMPLETED +peer1.org1.example.com | [574 01-18 09:31:09.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bf4a2c07]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [57a 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0x93, 0xa4, 0xeb, 0x23, 0x11, 0xc5, 0x82, 0x3, 0x71, 0xbf, 0xef, 0x31, 0x5d, 0x62, 0x4, 0x79, 0xce, 0xd9, 0xc3, 0x8e, 0xe0, 0x77, 0x29, 0xaf, 0x45, 0x72, 0x23, 0x4e, 0x53, 0x11, 0xbd, 0x26} txOffsets= +peer1.org2.example.com | [54d 01-18 09:31:06.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [43828dae]sending state message TRANSACTION +peer1.org1.example.com | [575 01-18 09:31:09.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bf4a2c07]send state message COMPLETED +peer0.org2.example.com | txId=79910bc72d1a9ba3fd9ac6a98cdec470c2b4c2afd8dd6128c715aa89ad94672c locPointer=offset=70, bytesLength=3393 +peer0.org1.example.com | [549 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +orderer.example.com | 2018-01-18 09:29:43.980 UTC [policies] ProposePolicy -> DEBU 3ac Proposed new policy Admins for Channel +peer1.org2.example.com | [54e 01-18 09:31:06.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [43828dae]Received message GET_STATE from shim +peer1.org1.example.com | [576 01-18 09:31:09.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bf4a2c07]Received message COMPLETED from shim +peer1.org1.example.com | [577 01-18 09:31:09.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bf4a2c07]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [578 01-18 09:31:09.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bf4a2c07-135f-4b66-903d-c754d3e1be99]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [579 01-18 09:31:09.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:bf4a2c07-135f-4b66-903d-c754d3e1be99 +peer1.org1.example.com | [57a 01-18 09:31:09.25 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [57b 01-18 09:31:09.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [76759593-ed6c-4c74-aa3d-39e464b24822] +peer1.org1.example.com | [57c 01-18 09:31:09.25 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer1.org1.example.com | [57d 01-18 09:31:09.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer1.org1.example.com | [57e 01-18 09:31:09.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc421e7a180), Data:(*common.BlockData)(0xc421aa59c0), Metadata:(*common.BlockMetadata)(0xc421aa5a00)}, doMVCCValidation=true +peer1.org1.example.com | [57f 01-18 09:31:09.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +peer0.org2.example.com | ] +peer0.org2.example.com | [57b 01-18 09:30:47.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=44744, bytesLength=3393] for tx ID: [79910bc72d1a9ba3fd9ac6a98cdec470c2b4c2afd8dd6128c715aa89ad94672c] to index +peer0.org2.example.com | [57c 01-18 09:30:47.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=44744, bytesLength=3393] for tx number:[0] ID: [79910bc72d1a9ba3fd9ac6a98cdec470c2b4c2afd8dd6128c715aa89ad94672c] to blockNumTranNum index +peer0.org2.example.com | [57d 01-18 09:30:47.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[49888], isChainEmpty=[false], lastBlockNumber=[4] +peer0.org2.example.com | [57e 01-18 09:30:47.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [4] with 1 transaction(s) +peer0.org1.example.com | [54a 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer1.org2.example.com | [54f 01-18 09:31:06.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [43828dae]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer1.org1.example.com | [580 01-18 09:31:09.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=exp02, key=a +peer1.org1.example.com | [581 01-18 09:31:09.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=exp02, key=b +peer1.org1.example.com | [582 01-18 09:31:09.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer0.org2.example.com | [57f 01-18 09:30:47.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +peer0.org2.example.com | [580 01-18 09:30:47.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +peer0.org2.example.com | [581 01-18 09:30:47.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +peer0.org2.example.com | [582 01-18 09:30:47.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [4] with [1] transactions +peer0.org2.example.com | [583 01-18 09:30:47.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Skipping history write for invalid transaction number 0 +peer0.org2.example.com | [584 01-18 09:30:47.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [4] +orderer.example.com | 2018-01-18 09:29:43.980 UTC [policies] ProposePolicy -> DEBU 3ad Proposed new policy Readers for Channel +peer1.org1.example.com | [583 01-18 09:31:09.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [5] Transaction index [0] TxId [7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9] marked as valid by state validator +peer0.org1.example.com | [54b 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +peer0.org1.example.com | [54c 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [79910bc72d1a9ba3fd9ac6a98cdec470c2b4c2afd8dd6128c715aa89ad94672c] +peer0.org1.example.com | [54d 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +peer0.org1.example.com | [54e 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org2.example.com | [550 01-18 09:31:06.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [43828dae]Received GET_STATE, invoking get state from ledger +peer1.org1.example.com | [584 01-18 09:31:09.25 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=5, blockHash=[]byte{0x14, 0x79, 0x5b, 0xd3, 0x7, 0x12, 0xdf, 0xbb, 0x6c, 0xf, 0xfc, 0x0, 0x56, 0xb5, 0xce, 0x33, 0x6a, 0x55, 0xf7, 0xe6, 0xf, 0x23, 0x39, 0xcd, 0x2d, 0xe9, 0xe3, 0xb1, 0x3, 0x84, 0xfe, 0x7c} txOffsets= +peer1.org1.example.com | txId=7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9 locPointer=offset=70, bytesLength=2855 +orderer.example.com | 2018-01-18 09:29:43.980 UTC [common/config] NewStandardValues -> DEBU 3ae Initializing protos for *struct {} +peer0.org1.example.com | [54f 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [0a141753-c2b4-4924-835d-66c67d12b5d9] +peer1.org2.example.com | [551 01-18 09:31:06.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [552 01-18 09:31:06.83 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [43828dae] getting state for chaincode exp02, key a, channel businesschannel +peer1.org2.example.com | [553 01-18 09:31:06.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=exp02, key=a +peer1.org2.example.com | [554 01-18 09:31:06.83 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [43828dae]Got state. Sending RESPONSE +peer1.org2.example.com | [555 01-18 09:31:06.83 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [43828dae]handleGetState serial send RESPONSE +peer0.org2.example.com | [585 01-18 09:30:47.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer1.org1.example.com | ] +peer1.org1.example.com | [585 01-18 09:31:09.25 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=49958, bytesLength=2855] for tx ID: [7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9] to index +peer1.org1.example.com | [586 01-18 09:31:09.25 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=49958, bytesLength=2855] for tx number:[0] ID: [7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9] to blockNumTranNum index +peer1.org1.example.com | [587 01-18 09:31:09.25 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[54564], isChainEmpty=[false], lastBlockNumber=[5] +peer1.org1.example.com | [588 01-18 09:31:09.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [5] with 1 transaction(s) +peer1.org1.example.com | [589 01-18 09:31:09.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +peer1.org1.example.com | [58a 01-18 09:31:26.82 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.deployImage -> DEBU Created image: dev-peer1.org1.example.com-exp02-1.0-ad23b8236c10c42b6301975e5f10d4f2d69b41948e9b0f767dd7c8e4f21cf449 +peer1.org1.example.com | [58b 01-18 09:31:26.82 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-recreated image successfully +peer1.org1.example.com | [58c 01-18 09:31:26.82 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer1.org1.example.com-exp02-1.0 +peer1.org1.example.com | [58d 01-18 09:31:26.92 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Created container: dev-peer1.org1.example.com-exp02-1.0-ad23b8236c10c42b6301975e5f10d4f2d69b41948e9b0f767dd7c8e4f21cf449 +peer1.org1.example.com | [58e 01-18 09:31:27.39 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Started container dev-peer1.org1.example.com-exp02-1.0 +peer1.org1.example.com | [58f 01-18 09:31:27.39 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(dev-peer1.org1.example.com-exp02-1.0) +peer1.org1.example.com | [590 01-18 09:31:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +orderer.example.com | 2018-01-18 09:29:43.980 UTC [policies] ProposePolicy -> DEBU 3af Proposed new policy Admins for Application +orderer.example.com | 2018-01-18 09:29:43.980 UTC [policies] ProposePolicy -> DEBU 3b0 Proposed new policy Writers for Application +orderer.example.com | 2018-01-18 09:29:43.980 UTC [policies] ProposePolicy -> DEBU 3b1 Proposed new policy Readers for Application +orderer.example.com | 2018-01-18 09:29:43.980 UTC [common/config] NewStandardValues -> DEBU 3b2 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:43.980 UTC [common/config] initializeProtosStruct -> DEBU 3b3 Processing field: MSP +orderer.example.com | 2018-01-18 09:29:43.980 UTC [common/config] NewStandardValues -> DEBU 3b4 Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | 2018-01-18 09:29:43.980 UTC [common/config] initializeProtosStruct -> DEBU 3b5 Processing field: AnchorPeers +orderer.example.com | 2018-01-18 09:29:43.980 UTC [common/config] NewStandardValues -> DEBU 3b6 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:43.980 UTC [common/config] initializeProtosStruct -> DEBU 3b7 Processing field: MSP +orderer.example.com | 2018-01-18 09:29:43.980 UTC [policies] ProposePolicy -> DEBU 3b8 Proposed new policy Writers for Org1MSP +orderer.example.com | 2018-01-18 09:29:43.980 UTC [policies] ProposePolicy -> DEBU 3b9 Proposed new policy Admins for Org1MSP +orderer.example.com | 2018-01-18 09:29:43.980 UTC [policies] ProposePolicy -> DEBU 3ba Proposed new policy Readers for Org1MSP +peer0.org1.example.com | [550 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=b2b5b60d-9d9b-488e-8813-afda1f17d357,syscc=true,proposal=0x0,canname=vscc:1.0.2 +peer1.org2.example.com | [556 01-18 09:31:06.84 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [43828dae]Received message COMPLETED from shim +peer1.org1.example.com | [591 01-18 09:31:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +orderer.example.com | 2018-01-18 09:29:43.980 UTC [common/config] NewStandardValues -> DEBU 3bb Initializing protos for *config.OrganizationProtos +peer0.org2.example.com | [586 01-18 09:30:47.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: 79910bc72d1a9ba3fd9ac6a98cdec470c2b4c2afd8dd6128c715aa89ad94672c +peer0.org2.example.com | [587 01-18 09:30:47.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [4] +peer0.org2.example.com | [588 01-18 09:30:47.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +peer0.org2.example.com | [589 01-18 09:30:47.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer0.org1.example.com | [551 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 79910bc72d1a9ba3fd9ac6a98cdec470c2b4c2afd8dd6128c715aa89ad94672c chaindID businesschannel +peer0.org1.example.com | [552 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 +peer0.org1.example.com | [553 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [554 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 +peer0.org1.example.com | [555 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b2b5b60d]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [556 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [557 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b2b5b60d]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | 2018-01-18 09:29:43.980 UTC [common/config] initializeProtosStruct -> DEBU 3bc Processing field: MSP +orderer.example.com | 2018-01-18 09:29:43.980 UTC [common/config] NewStandardValues -> DEBU 3bd Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | 2018-01-18 09:29:43.980 UTC [common/config] initializeProtosStruct -> DEBU 3be Processing field: AnchorPeers +orderer.example.com | 2018-01-18 09:29:43.980 UTC [common/config] NewStandardValues -> DEBU 3bf Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:43.980 UTC [common/config] initializeProtosStruct -> DEBU 3c0 Processing field: MSP +orderer.example.com | 2018-01-18 09:29:43.980 UTC [policies] ProposePolicy -> DEBU 3c1 Proposed new policy Admins for Org2MSP +orderer.example.com | 2018-01-18 09:29:43.980 UTC [policies] ProposePolicy -> DEBU 3c2 Proposed new policy Readers for Org2MSP +orderer.example.com | 2018-01-18 09:29:43.980 UTC [policies] ProposePolicy -> DEBU 3c3 Proposed new policy Writers for Org2MSP +orderer.example.com | 2018-01-18 09:29:43.980 UTC [common/config] NewStandardValues -> DEBU 3c4 Initializing protos for *config.OrdererProtos +orderer.example.com | 2018-01-18 09:29:43.980 UTC [common/config] initializeProtosStruct -> DEBU 3c5 Processing field: ConsensusType +orderer.example.com | 2018-01-18 09:29:43.980 UTC [common/config] initializeProtosStruct -> DEBU 3c6 Processing field: BatchSize +orderer.example.com | 2018-01-18 09:29:43.980 UTC [common/config] initializeProtosStruct -> DEBU 3c7 Processing field: BatchTimeout +orderer.example.com | 2018-01-18 09:29:43.980 UTC [common/config] initializeProtosStruct -> DEBU 3c8 Processing field: KafkaBrokers +orderer.example.com | 2018-01-18 09:29:43.980 UTC [common/config] initializeProtosStruct -> DEBU 3c9 Processing field: ChannelRestrictions +orderer.example.com | 2018-01-18 09:29:43.980 UTC [policies] ProposePolicy -> DEBU 3ca Proposed new policy Readers for Orderer +orderer.example.com | 2018-01-18 09:29:43.981 UTC [policies] ProposePolicy -> DEBU 3cb Proposed new policy Writers for Orderer +orderer.example.com | 2018-01-18 09:29:43.981 UTC [policies] ProposePolicy -> DEBU 3cc Proposed new policy Admins for Orderer +peer0.org2.example.com | [58a 01-18 09:30:47.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer1.org2.example.com | [557 01-18 09:31:06.84 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [43828dae]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [592 01-18 09:31:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer0.org1.example.com | [558 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b2b5b60d]Move state message TRANSACTION +orderer.example.com | 2018-01-18 09:29:43.981 UTC [policies] ProposePolicy -> DEBU 3cd Proposed new policy BlockValidation for Orderer +orderer.example.com | 2018-01-18 09:29:43.981 UTC [common/config] NewStandardValues -> DEBU 3ce Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:43.981 UTC [common/config] initializeProtosStruct -> DEBU 3cf Processing field: MSP +orderer.example.com | 2018-01-18 09:29:43.981 UTC [policies] ProposePolicy -> DEBU 3d0 Proposed new policy Readers for OrdererOrg +peer1.org2.example.com | [558 01-18 09:31:06.84 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [43828daec956e8fe45a73d09bbc04d491c0f2d91818edf37d3252f09bf25f02a]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [58b 01-18 09:30:47.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +peer1.org1.example.com | [593 01-18 09:31:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer0.org1.example.com | [559 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b2b5b60d]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | 2018-01-18 09:29:43.981 UTC [policies] ProposePolicy -> DEBU 3d1 Proposed new policy Writers for OrdererOrg +peer1.org2.example.com | [559 01-18 09:31:06.84 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:43828daec956e8fe45a73d09bbc04d491c0f2d91818edf37d3252f09bf25f02a +peer0.org2.example.com | [58c 01-18 09:30:47.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +peer1.org1.example.com | [594 01-18 09:31:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode exp02:1.0 +orderer.example.com | 2018-01-18 09:29:43.981 UTC [policies] ProposePolicy -> DEBU 3d2 Proposed new policy Admins for OrdererOrg +peer1.org1.example.com | [595 01-18 09:31:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"exp02:1.0" , sending back REGISTERED +peer1.org1.example.com | [596 01-18 09:31:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer1.org2.example.com | [55a 01-18 09:31:06.84 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [55b 01-18 09:31:06.84 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org2.example.com | [58d 01-18 09:31:09.20 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [5], peers number [3] +orderer.example.com | 2018-01-18 09:29:43.981 UTC [common/config] Validate -> DEBU 3d3 Anchor peers for org Org1MSP are +peer1.org1.example.com | [597 01-18 09:31:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode exp02:1.0 launch seq completed +peer0.org1.example.com | [55a 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [55c 01-18 09:31:06.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +orderer.example.com | 2018-01-18 09:29:43.981 UTC [common/config] validateMSP -> DEBU 3d4 Setting up MSP for org Org1MSP +peer0.org2.example.com | [58e 01-18 09:31:09.21 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [5], peers number [3] +peer0.org1.example.com | [55b 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b2b5b60d]sending state message TRANSACTION +peer1.org1.example.com | [598 01-18 09:31:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.sendReady.ready -> DEBU sending READY +orderer.example.com | 2018-01-18 09:29:43.981 UTC [msp] NewBccspMsp -> DEBU 3d5 Creating BCCSP-based MSP instance +peer0.org2.example.com | [58f 01-18 09:31:09.21 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer1.org2.example.com | [55d 01-18 09:31:06.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [fa74c9a8-6681-4aa7-86bc-84d5236ea329] +orderer.example.com | 2018-01-18 09:29:43.982 UTC [msp] Setup -> DEBU 3d6 Setting up MSP instance Org1MSP +peer0.org1.example.com | [55c 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b2b5b60d]Received message TRANSACTION from shim +peer1.org1.example.com | [599 01-18 09:31:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [590 01-18 09:31:09.21 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +peer1.org2.example.com | [55e 01-18 09:31:06.84 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +orderer.example.com | 2018-01-18 09:29:43.982 UTC [msp/identity] newIdentity -> DEBU 3d7 Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [55d 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b2b5b60d]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org1.example.com | [59a 01-18 09:31:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL +peer1.org2.example.com | [55f 01-18 09:31:06.84 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 43828daec956e8fe45a73d09bbc04d491c0f2d91818edf37d3252f09bf25f02a channel id: businesschannel chaincode id: name:"exp02" +peer1.org2.example.com | [560 01-18 09:31:06.84 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"exp02" is escc +peer1.org2.example.com | [561 01-18 09:31:06.84 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 43828daec956e8fe45a73d09bbc04d491c0f2d91818edf37d3252f09bf25f02a channel id: businesschannel version: 1.0.2 +peer1.org2.example.com | [562 01-18 09:31:06.84 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=43828daec956e8fe45a73d09bbc04d491c0f2d91818edf37d3252f09bf25f02a,syscc=true,proposal=0xc421a4f810,canname=escc:1.0.2 +peer0.org2.example.com | [591 01-18 09:31:09.21 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer0.org1.example.com | [55e 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [b2b5b60d]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org1.example.com | [59b 01-18 09:31:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f7368f8b]Move state message READY +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org2.example.com | [563 01-18 09:31:06.84 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 +peer0.org1.example.com | [55f 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer0.org2.example.com | [592 01-18 09:31:09.21 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421ebf560 +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +peer0.org1.example.com | [560 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +peer0.org2.example.com | [593 01-18 09:31:09.21 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\333\322\201\323\005\020\360\266\340\033\"\017businesschannel*@7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9:\t\022\007\022\005exp02" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030'A\264\276\244\\e\214\037\347\247\270\204\"\355\\\246\370f\331*\367Z~" +peer1.org2.example.com | [564 01-18 09:31:06.84 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org2.example.com | [594 01-18 09:31:09.21 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [561 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC +peer1.org1.example.com | [59c 01-18 09:31:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f7368f8b]Fabric side Handling ChaincodeMessage of type: READY in state established +peer1.org1.example.com | [59d 01-18 09:31:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [f7368f8b]Entered state ready +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +orderer.example.com | BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf +orderer.example.com | db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx +orderer.example.com | JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi +orderer.example.com | /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ +orderer.example.com | H7n8z1pj5w== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:43.983 UTC [msp/identity] newIdentity -> DEBU 3d8 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:43.984 UTC [msp/identity] newIdentity -> DEBU 3d9 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:43.986 UTC [msp] Validate -> DEBU 3da MSP Org1MSP validating identity +orderer.example.com | 2018-01-18 09:29:43.986 UTC [common/config] Validate -> DEBU 3db Anchor peers for org Org2MSP are +orderer.example.com | 2018-01-18 09:29:43.986 UTC [common/config] validateMSP -> DEBU 3dc Setting up MSP for org Org2MSP +orderer.example.com | 2018-01-18 09:29:43.987 UTC [msp] NewBccspMsp -> DEBU 3dd Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-18 09:29:43.987 UTC [msp] Setup -> DEBU 3de Setting up MSP instance Org2MSP +orderer.example.com | 2018-01-18 09:29:43.988 UTC [msp/identity] newIdentity -> DEBU 3df Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +orderer.example.com | mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 +orderer.example.com | sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ +orderer.example.com | xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv +orderer.example.com | WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk +orderer.example.com | SCjyRdD3aQ== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:43.988 UTC [msp/identity] newIdentity -> DEBU 3e0 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +orderer.example.com | AXYxULZpXYDQXt1KaLI= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:43.989 UTC [msp/identity] newIdentity -> DEBU 3e1 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +orderer.example.com | AXYxULZpXYDQXt1KaLI= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:43.990 UTC [msp] Validate -> DEBU 3e2 MSP Org2MSP validating identity +orderer.example.com | 2018-01-18 09:29:43.991 UTC [common/config] validateMSP -> DEBU 3e3 Setting up MSP for org OrdererOrg +peer1.org2.example.com | [565 01-18 09:31:06.84 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 +peer0.org2.example.com | [595 01-18 09:31:09.21 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org2.example.com | [596 01-18 09:31:09.21 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +peer0.org1.example.com | [562 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +orderer.example.com | 2018-01-18 09:29:43.991 UTC [msp] NewBccspMsp -> DEBU 3e4 Creating BCCSP-based MSP instance +peer1.org2.example.com | [566 01-18 09:31:06.84 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [43828dae]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [567 01-18 09:31:06.84 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [59e 01-18 09:31:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:f7368f8b9d6d39ab61fbc1a11965e7f3932147871b48df6101516e37372b2cee +peer0.org1.example.com | [563 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +orderer.example.com | 2018-01-18 09:29:43.991 UTC [msp] Setup -> DEBU 3e5 Setting up MSP instance OrdererMSP +peer0.org2.example.com | [597 01-18 09:31:09.21 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org2.example.com | [598 01-18 09:31:09.21 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org2.example.com | [568 01-18 09:31:06.84 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [564 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace exp02 +peer1.org1.example.com | [59f 01-18 09:31:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f7368f8b]sending state message READY +orderer.example.com | 2018-01-18 09:29:43.991 UTC [msp/identity] newIdentity -> DEBU 3e6 Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org2.example.com | [599 01-18 09:31:09.21 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc42154d000, header channel_header:"\010\003\032\013\010\333\322\201\323\005\020\360\266\340\033\"\017businesschannel*@7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9:\t\022\007\022\005exp02" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030'A\264\276\244\\e\214\037\347\247\270\204\"\355\\\246\370f\331*\367Z~" +peer1.org2.example.com | [569 01-18 09:31:06.84 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [43828dae]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [56a 01-18 09:31:06.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [43828dae]Move state message TRANSACTION +peer0.org1.example.com | [565 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc +peer1.org1.example.com | [5a0 01-18 09:31:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU sending init completed +orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL +peer0.org2.example.com | [59a 01-18 09:31:09.21 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer1.org2.example.com | [56b 01-18 09:31:06.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [43828dae]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [566 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [006df40a-8ea0-419f-84cb-6b3a9ed7e114] +peer1.org1.example.com | [5a1 01-18 09:31:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU LaunchChaincode complete +peer0.org2.example.com | [59b 01-18 09:31:09.21 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | [567 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer1.org2.example.com | [56c 01-18 09:31:06.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [56d 01-18 09:31:06.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [43828dae]sending state message TRANSACTION +peer1.org2.example.com | [56e 01-18 09:31:06.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +peer1.org2.example.com | [56f 01-18 09:31:06.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +peer1.org2.example.com | [570 01-18 09:31:06.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [4] with [1] transactions +peer1.org1.example.com | [5a2 01-18 09:31:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [5a3 01-18 09:31:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: exp02:1.0 +peer1.org1.example.com | [5a4 01-18 09:31:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f7368f8b]Inside sendExecuteMessage. Message TRANSACTION +peer1.org1.example.com | [5a5 01-18 09:31:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [59c 01-18 09:31:09.21 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer0.org2.example.com | [59d 01-18 09:31:09.21 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +peer0.org2.example.com | [59e 01-18 09:31:09.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9] +peer0.org2.example.com | [59f 01-18 09:31:09.21 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +peer0.org2.example.com | [5a0 01-18 09:31:09.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [03baecc6-92b1-4203-8d86-0001e655e11e] +peer0.org2.example.com | [5a1 01-18 09:31:09.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer1.org2.example.com | [571 01-18 09:31:06.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Skipping history write for invalid transaction number 0 +peer0.org1.example.com | [568 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [006df40a-8ea0-419f-84cb-6b3a9ed7e114] +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +peer1.org1.example.com | [5a6 01-18 09:31:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org2.example.com | [5a2 01-18 09:31:09.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [03baecc6-92b1-4203-8d86-0001e655e11e] +peer1.org2.example.com | [572 01-18 09:31:06.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [4] +peer1.org2.example.com | [573 01-18 09:31:06.84 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer1.org2.example.com | [574 01-18 09:31:06.84 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: 79910bc72d1a9ba3fd9ac6a98cdec470c2b4c2afd8dd6128c715aa89ad94672c +peer1.org2.example.com | [575 01-18 09:31:06.84 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [4] +peer1.org2.example.com | [576 01-18 09:31:06.84 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +peer0.org1.example.com | [569 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 +peer0.org1.example.com | [56a 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x953df0)} +peer0.org1.example.com | [56b 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode exp02 is already instantiated +peer0.org1.example.com | [56c 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b2b5b60d]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [56d 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b2b5b60d]Move state message COMPLETED +orderer.example.com | cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +peer1.org1.example.com | [5a7 01-18 09:31:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f7368f8b]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [577 01-18 09:31:06.84 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer1.org2.example.com | [578 01-18 09:31:06.84 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer0.org1.example.com | [56e 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b2b5b60d]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [5a3 01-18 09:31:09.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +peer1.org1.example.com | [5a8 01-18 09:31:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f7368f8b]Move state message TRANSACTION +peer1.org2.example.com | [579 01-18 09:31:06.84 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +peer0.org1.example.com | [56f 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b2b5b60d]send state message COMPLETED +peer0.org2.example.com | [5a4 01-18 09:31:09.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [36cce4e9-c907-4518-8190-5cb85b10b866] +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW +orderer.example.com | gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +orderer.example.com | AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK +peer1.org2.example.com | [57a 01-18 09:31:06.84 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +peer1.org1.example.com | [5a9 01-18 09:31:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f7368f8b]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [570 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b2b5b60d]Received message COMPLETED from shim +orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs +peer1.org2.example.com | [57b 01-18 09:31:06.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [43828dae]Received message TRANSACTION from shim +peer0.org2.example.com | [5a5 01-18 09:31:09.21 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=402f861f-e36f-4bb2-89d2-e6ae4f0a2524,syscc=true,proposal=0x0,canname=vscc:1.0.2 +peer0.org2.example.com | [5a6 01-18 09:31:09.21 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9 chaindID businesschannel +peer0.org2.example.com | [5a7 01-18 09:31:09.21 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 +peer0.org1.example.com | [571 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b2b5b60d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [57c 01-18 09:31:06.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [43828dae]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= +peer1.org1.example.com | [5aa 01-18 09:31:27.42 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [5ab 01-18 09:31:27.42 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f7368f8b]sending state message TRANSACTION +peer1.org1.example.com | [5ac 01-18 09:31:27.42 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f7368f8b]Received message GET_STATE from shim +peer0.org2.example.com | [5a8 01-18 09:31:09.21 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [572 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b2b5b60d-9d9b-488e-8813-afda1f17d357]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [573 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:b2b5b60d-9d9b-488e-8813-afda1f17d357 +peer0.org1.example.com | [574 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [575 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> ERRO VSCC check failed for transaction txid=79910bc72d1a9ba3fd9ac6a98cdec470c2b4c2afd8dd6128c715aa89ad94672c, error Chaincode exp02 is already instantiated +peer0.org1.example.com | [576 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [0a141753-c2b4-4924-835d-66c67d12b5d9] +peer0.org1.example.com | [577 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> ERRO VSCCValidateTx for transaction txId = 79910bc72d1a9ba3fd9ac6a98cdec470c2b4c2afd8dd6128c715aa89ad94672c returned error Chaincode exp02 is already instantiated +peer0.org1.example.com | [578 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer0.org1.example.com | [579 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer0.org1.example.com | [57a 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc421c27e80), Data:(*common.BlockData)(0xc4222c7d80), Metadata:(*common.BlockMetadata)(0xc4222c7dc0)}, doMVCCValidation=true +peer0.org1.example.com | [57b 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:43.992 UTC [msp/identity] newIdentity -> DEBU 3e7 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +peer1.org1.example.com | [5ad 01-18 09:31:27.42 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f7368f8b]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer1.org2.example.com | [57d 01-18 09:31:06.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [43828dae]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org1.example.com | [57c 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> WARN Block [4] Transaction index [0] marked as invalid by committer. Reason code [10] +peer0.org1.example.com | [57d 01-18 09:30:47.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0x93, 0xa4, 0xeb, 0x23, 0x11, 0xc5, 0x82, 0x3, 0x71, 0xbf, 0xef, 0x31, 0x5d, 0x62, 0x4, 0x79, 0xce, 0xd9, 0xc3, 0x8e, 0xe0, 0x77, 0x29, 0xaf, 0x45, 0x72, 0x23, 0x4e, 0x53, 0x11, 0xbd, 0x26} txOffsets= +peer0.org1.example.com | txId=79910bc72d1a9ba3fd9ac6a98cdec470c2b4c2afd8dd6128c715aa89ad94672c locPointer=offset=70, bytesLength=3393 +peer0.org1.example.com | ] +peer0.org1.example.com | [57e 01-18 09:30:47.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=44744, bytesLength=3393] for tx ID: [79910bc72d1a9ba3fd9ac6a98cdec470c2b4c2afd8dd6128c715aa89ad94672c] to index +peer0.org1.example.com | [57f 01-18 09:30:47.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=44744, bytesLength=3393] for tx number:[0] ID: [79910bc72d1a9ba3fd9ac6a98cdec470c2b4c2afd8dd6128c715aa89ad94672c] to blockNumTranNum index +peer0.org1.example.com | [580 01-18 09:30:47.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[49888], isChainEmpty=[false], lastBlockNumber=[4] +peer0.org1.example.com | [581 01-18 09:30:47.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [4] with 1 transaction(s) +peer0.org1.example.com | [582 01-18 09:30:47.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +peer1.org1.example.com | [5ae 01-18 09:31:27.42 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [f7368f8b]Received GET_STATE, invoking get state from ledger +peer1.org1.example.com | [5af 01-18 09:31:27.42 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [5b0 01-18 09:31:27.42 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [f7368f8b] getting state for chaincode exp02, key a, channel businesschannel +peer1.org1.example.com | [5b1 01-18 09:31:27.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=exp02, key=a +peer1.org1.example.com | [5b2 01-18 09:31:27.42 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [f7368f8b]Got state. Sending RESPONSE +peer1.org1.example.com | [5b3 01-18 09:31:27.42 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [f7368f8b]handleGetState serial send RESPONSE +peer1.org1.example.com | [5b4 01-18 09:31:27.42 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f7368f8b]Received message COMPLETED from shim +peer1.org1.example.com | [5b5 01-18 09:31:27.42 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f7368f8b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [5b6 01-18 09:31:27.42 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f7368f8b9d6d39ab61fbc1a11965e7f3932147871b48df6101516e37372b2cee]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [5a9 01-18 09:31:09.21 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +peer1.org2.example.com | [57e 01-18 09:31:06.84 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer0.org1.example.com | [583 01-18 09:30:47.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +peer1.org1.example.com | [5b7 01-18 09:31:27.42 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:f7368f8b9d6d39ab61fbc1a11965e7f3932147871b48df6101516e37372b2cee +peer1.org2.example.com | [57f 01-18 09:31:06.84 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer0.org2.example.com | [5aa 01-18 09:31:09.22 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [402f861f]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [584 01-18 09:30:47.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +peer0.org1.example.com | [585 01-18 09:30:47.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [4] with [1] transactions +peer0.org1.example.com | [586 01-18 09:30:47.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Skipping history write for invalid transaction number 0 +peer0.org1.example.com | [587 01-18 09:30:47.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [4] +peer0.org1.example.com | [588 01-18 09:30:47.24 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer0.org1.example.com | [589 01-18 09:30:47.24 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: 79910bc72d1a9ba3fd9ac6a98cdec470c2b4c2afd8dd6128c715aa89ad94672c +peer0.org1.example.com | [58a 01-18 09:30:47.24 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [4] +peer0.org1.example.com | [58b 01-18 09:30:47.24 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +peer1.org2.example.com | [580 01-18 09:31:06.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [43828dae]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [58c 01-18 09:30:47.24 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer1.org1.example.com | [5b8 01-18 09:31:27.42 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +peer0.org2.example.com | [5ab 01-18 09:31:09.22 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [581 01-18 09:31:06.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [43828dae]Move state message COMPLETED +peer1.org2.example.com | [582 01-18 09:31:06.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [43828dae]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [58d 01-18 09:30:47.24 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer1.org1.example.com | [5b9 01-18 09:31:27.42 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer1.org1.example.com | [5ba 01-18 09:31:27.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer1.org1.example.com | [5bb 01-18 09:31:27.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [7a2a01db-e0e7-4f7a-b7ba-16cf4f21effd] +peer1.org1.example.com | [5bc 01-18 09:31:27.42 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org1.example.com | [58e 01-18 09:30:47.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +peer0.org2.example.com | [5ac 01-18 09:31:09.22 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [402f861f]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +peer1.org2.example.com | [583 01-18 09:31:06.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [43828dae]send state message COMPLETED +peer0.org1.example.com | [58f 01-18 09:30:47.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +peer1.org2.example.com | [584 01-18 09:31:06.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [43828dae]Received message COMPLETED from shim +peer0.org2.example.com | [5ad 01-18 09:31:09.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [402f861f]Move state message TRANSACTION +orderer.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [5bd 01-18 09:31:27.42 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: f7368f8b9d6d39ab61fbc1a11965e7f3932147871b48df6101516e37372b2cee channel id: businesschannel chaincode id: name:"exp02" +peer1.org1.example.com | [5be 01-18 09:31:27.42 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"exp02" is escc +peer0.org1.example.com | [590 01-18 09:31:07.05 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer0.org1.example.com | [591 01-18 09:31:07.05 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4224ca330 +peer0.org2.example.com | [5ae 01-18 09:31:09.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [402f861f]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org2.example.com | [585 01-18 09:31:06.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [43828dae]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [592 01-18 09:31:07.05 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org1.example.com | [5bf 01-18 09:31:27.42 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: f7368f8b9d6d39ab61fbc1a11965e7f3932147871b48df6101516e37372b2cee channel id: businesschannel version: 1.0.2 +peer1.org1.example.com | [5c0 01-18 09:31:27.42 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=f7368f8b9d6d39ab61fbc1a11965e7f3932147871b48df6101516e37372b2cee,syscc=true,proposal=0xc4220f7f90,canname=escc:1.0.2 +peer1.org1.example.com | [5c1 01-18 09:31:27.42 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 +peer1.org1.example.com | [5c2 01-18 09:31:27.42 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [5c3 01-18 09:31:27.42 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 +peer1.org1.example.com | [5c4 01-18 09:31:27.42 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f7368f8b]Inside sendExecuteMessage. Message TRANSACTION +peer1.org1.example.com | [5c5 01-18 09:31:27.42 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [5c6 01-18 09:31:27.42 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org2.example.com | [5af 01-18 09:31:09.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [5b0 01-18 09:31:09.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [402f861f]sending state message TRANSACTION +peer0.org2.example.com | [5b1 01-18 09:31:09.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [402f861f]Received message TRANSACTION from shim +peer0.org2.example.com | [5b2 01-18 09:31:09.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [402f861f]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org2.example.com | [5b3 01-18 09:31:09.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [402f861f]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org2.example.com | [5b4 01-18 09:31:09.22 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer1.org2.example.com | [586 01-18 09:31:06.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [43828daec956e8fe45a73d09bbc04d491c0f2d91818edf37d3252f09bf25f02a]HandleMessage- COMPLETED. Notify +orderer.example.com | 2018-01-18 09:29:43.993 UTC [msp/identity] newIdentity -> DEBU 3e8 Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [593 01-18 09:31:07.06 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org1.example.com | [5c7 01-18 09:31:27.42 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f7368f8b]sendExecuteMsg trigger event TRANSACTION +peer1.org1.example.com | [5c8 01-18 09:31:27.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f7368f8b]Move state message TRANSACTION +peer1.org1.example.com | [5c9 01-18 09:31:27.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f7368f8b]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org1.example.com | [5ca 01-18 09:31:27.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [594 01-18 09:31:07.06 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +peer1.org1.example.com | [5cb 01-18 09:31:27.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f7368f8b]sending state message TRANSACTION +peer1.org2.example.com | [587 01-18 09:31:06.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:43828daec956e8fe45a73d09bbc04d491c0f2d91818edf37d3252f09bf25f02a +peer1.org2.example.com | [588 01-18 09:31:06.85 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [589 01-18 09:31:06.85 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer1.org2.example.com | [58a 01-18 09:31:06.85 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +peer1.org2.example.com | [58b 01-18 09:31:06.85 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [fa74c9a8-6681-4aa7-86bc-84d5236ea329] +peer1.org2.example.com | [58c 01-18 09:31:06.85 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer1.org2.example.com | [58d 01-18 09:31:09.23 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer1.org2.example.com | [58e 01-18 09:31:09.23 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +peer1.org2.example.com | [58f 01-18 09:31:09.23 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer1.org2.example.com | [590 01-18 09:31:09.23 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc42207db00 +peer1.org2.example.com | [591 01-18 09:31:09.23 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\333\322\201\323\005\020\360\266\340\033\"\017businesschannel*@7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9:\t\022\007\022\005exp02" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030'A\264\276\244\\e\214\037\347\247\270\204\"\355\\\246\370f\331*\367Z~" +peer1.org2.example.com | [592 01-18 09:31:09.23 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org2.example.com | [593 01-18 09:31:09.23 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org2.example.com | [594 01-18 09:31:09.23 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +peer1.org2.example.com | [595 01-18 09:31:09.23 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org2.example.com | [596 01-18 09:31:09.23 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org2.example.com | [5b5 01-18 09:31:09.22 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +peer0.org1.example.com | [595 01-18 09:31:07.06 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org2.example.com | [597 01-18 09:31:09.23 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421f2a800, header channel_header:"\010\003\032\013\010\333\322\201\323\005\020\360\266\340\033\"\017businesschannel*@7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9:\t\022\007\022\005exp02" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030'A\264\276\244\\e\214\037\347\247\270\204\"\355\\\246\370f\331*\367Z~" +peer1.org1.example.com | [5cc 01-18 09:31:27.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org2.example.com | [5b6 01-18 09:31:09.22 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +peer0.org2.example.com | [5b7 01-18 09:31:09.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [402f861f]Transaction completed. Sending COMPLETED +peer0.org2.example.com | [5b8 01-18 09:31:09.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [402f861f]Move state message COMPLETED +peer0.org2.example.com | [5b9 01-18 09:31:09.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [402f861f]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [5ba 01-18 09:31:09.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [402f861f]send state message COMPLETED +peer0.org2.example.com | [5bb 01-18 09:31:09.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [402f861f]Received message COMPLETED from shim +peer0.org2.example.com | [5bc 01-18 09:31:09.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [402f861f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [596 01-18 09:31:07.06 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org2.example.com | [5bd 01-18 09:31:09.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [402f861f-e36f-4bb2-89d2-e6ae4f0a2524]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [598 01-18 09:31:09.23 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer1.org2.example.com | [599 01-18 09:31:09.23 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer1.org2.example.com | [59a 01-18 09:31:09.23 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer1.org2.example.com | [59b 01-18 09:31:09.23 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +peer1.org2.example.com | [59c 01-18 09:31:09.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9] +peer1.org2.example.com | [59d 01-18 09:31:09.23 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +peer1.org2.example.com | [59e 01-18 09:31:09.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [b3d2ea6b-d3ec-4e28-bc39-cf5308b94de2] +peer1.org2.example.com | [59f 01-18 09:31:09.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer1.org2.example.com | [5a0 01-18 09:31:09.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [b3d2ea6b-d3ec-4e28-bc39-cf5308b94de2] +peer1.org2.example.com | [5a1 01-18 09:31:09.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org2.example.com | [5a2 01-18 09:31:09.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [5534468a-0731-4d47-9800-707250a3b59c] +peer1.org2.example.com | [5a3 01-18 09:31:09.23 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=022357cc-5983-42cd-b3fe-58f6e4ffb75b,syscc=true,proposal=0x0,canname=vscc:1.0.2 +peer1.org2.example.com | [5a4 01-18 09:31:09.23 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9 chaindID businesschannel +peer1.org2.example.com | [5a5 01-18 09:31:09.23 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 +peer1.org2.example.com | [5a6 01-18 09:31:09.23 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer0.org2.example.com | [5be 01-18 09:31:09.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:402f861f-e36f-4bb2-89d2-e6ae4f0a2524 +peer1.org2.example.com | [5a7 01-18 09:31:09.23 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 +peer1.org1.example.com | [5cd 01-18 09:31:27.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] +peer0.org1.example.com | [597 01-18 09:31:07.06 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422175130, header 0xc4224ca360 +peer0.org2.example.com | [5bf 01-18 09:31:09.23 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [5ce 01-18 09:31:27.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:43.994 UTC [msp] Validate -> DEBU 3e9 MSP OrdererMSP validating identity +orderer.example.com | 2018-01-18 09:29:43.994 UTC [msp] Setup -> DEBU 3ea Setting up the MSP manager (3 msps) +orderer.example.com | 2018-01-18 09:29:43.995 UTC [msp] Setup -> DEBU 3eb MSP manager setup complete, setup 3 msps +orderer.example.com | 2018-01-18 09:29:43.995 UTC [policies] GetPolicy -> DEBU 3ec Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:43.995 UTC [policies] CommitProposals -> DEBU 3ed In commit adding relative sub-policy Org1MSP/Admins to Application +orderer.example.com | 2018-01-18 09:29:43.995 UTC [policies] GetPolicy -> DEBU 3ee Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:43.995 UTC [policies] CommitProposals -> DEBU 3ef In commit adding relative sub-policy Org1MSP/Readers to Application +orderer.example.com | 2018-01-18 09:29:43.995 UTC [policies] GetPolicy -> DEBU 3f0 Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:43.995 UTC [policies] CommitProposals -> DEBU 3f1 In commit adding relative sub-policy Org1MSP/Writers to Application +peer1.org2.example.com | [5a8 01-18 09:31:09.23 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [022357cc]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [598 01-18 09:31:07.06 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"exp02" +peer0.org2.example.com | [5c0 01-18 09:31:09.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [36cce4e9-c907-4518-8190-5cb85b10b866] +peer0.org2.example.com | [5c1 01-18 09:31:09.23 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer0.org2.example.com | [5c2 01-18 09:31:09.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer0.org2.example.com | [5c3 01-18 09:31:09.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc421b545c0), Data:(*common.BlockData)(0xc421fcf880), Metadata:(*common.BlockMetadata)(0xc421fcf8c0)}, doMVCCValidation=true +peer0.org2.example.com | [5c4 01-18 09:31:09.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +peer0.org2.example.com | [5c5 01-18 09:31:09.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=exp02, key=a +peer0.org2.example.com | [5c6 01-18 09:31:09.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=exp02, key=b +peer1.org1.example.com | [5cf 01-18 09:31:27.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +peer1.org1.example.com | [5d0 01-18 09:31:27.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [5] with [1] transactions +peer1.org2.example.com | [5a9 01-18 09:31:09.23 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [5c7 01-18 09:31:09.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=exp02 +orderer.example.com | 2018-01-18 09:29:43.995 UTC [policies] GetPolicy -> DEBU 3f2 Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:43.996 UTC [policies] CommitProposals -> DEBU 3f3 In commit adding relative sub-policy Org2MSP/Admins to Application +orderer.example.com | 2018-01-18 09:29:43.996 UTC [policies] GetPolicy -> DEBU 3f4 Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:43.996 UTC [policies] CommitProposals -> DEBU 3f5 In commit adding relative sub-policy Org2MSP/Readers to Application +orderer.example.com | 2018-01-18 09:29:43.996 UTC [policies] GetPolicy -> DEBU 3f6 Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:43.996 UTC [policies] CommitProposals -> DEBU 3f7 In commit adding relative sub-policy Org2MSP/Writers to Application +orderer.example.com | 2018-01-18 09:29:43.996 UTC [policies] GetPolicy -> DEBU 3f8 Returning policy Admins for evaluation +peer0.org1.example.com | [599 01-18 09:31:07.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9 +peer0.org1.example.com | [59a 01-18 09:31:07.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9] +peer1.org1.example.com | [5d1 01-18 09:31:27.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [5] +peer1.org2.example.com | [5aa 01-18 09:31:09.23 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [022357cc]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | 2018-01-18 09:29:43.996 UTC [policies] GetPolicy -> DEBU 3f9 Returning policy Admins for evaluation +peer0.org1.example.com | [59b 01-18 09:31:07.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org2.example.com | [5c8 01-18 09:31:09.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [5] Transaction index [0] TxId [7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9] marked as valid by state validator +peer1.org2.example.com | [5ab 01-18 09:31:09.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [022357cc]Move state message TRANSACTION +peer1.org2.example.com | [5ac 01-18 09:31:09.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [022357cc]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org2.example.com | [5ad 01-18 09:31:09.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [5ae 01-18 09:31:09.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [022357cc]sending state message TRANSACTION +peer1.org1.example.com | [5d2 01-18 09:31:27.42 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer1.org1.example.com | [5d3 01-18 09:31:27.42 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [5] contains transaction id: 7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9 +peer1.org1.example.com | [5d4 01-18 09:31:27.42 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [5] +peer1.org1.example.com | [5d5 01-18 09:31:27.42 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +peer1.org1.example.com | [5d6 01-18 09:31:27.42 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer1.org1.example.com | [5d7 01-18 09:31:27.42 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer1.org1.example.com | [5d8 01-18 09:31:27.42 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +peer1.org1.example.com | [5d9 01-18 09:31:27.42 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +peer0.org1.example.com | [59c 01-18 09:31:07.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [d931e8f9-cf3b-4b00-a40c-6667807e38c8] +peer0.org2.example.com | [5c9 01-18 09:31:09.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=5, blockHash=[]byte{0x14, 0x79, 0x5b, 0xd3, 0x7, 0x12, 0xdf, 0xbb, 0x6c, 0xf, 0xfc, 0x0, 0x56, 0xb5, 0xce, 0x33, 0x6a, 0x55, 0xf7, 0xe6, 0xf, 0x23, 0x39, 0xcd, 0x2d, 0xe9, 0xe3, 0xb1, 0x3, 0x84, 0xfe, 0x7c} txOffsets= +peer1.org2.example.com | [5af 01-18 09:31:09.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [022357cc]Received message TRANSACTION from shim +peer0.org1.example.com | [59d 01-18 09:31:07.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9 channel id: businesschannel +peer0.org1.example.com | [59e 01-18 09:31:07.06 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9,syscc=true,proposal=0xc422175130,canname=lscc:1.0.2 +peer0.org1.example.com | [59f 01-18 09:31:07.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 +peer0.org1.example.com | [5a0 01-18 09:31:07.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [5a1 01-18 09:31:07.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +peer0.org1.example.com | [5a2 01-18 09:31:07.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7a767993]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [5a3 01-18 09:31:07.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [5a4 01-18 09:31:07.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [5a5 01-18 09:31:07.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7a767993]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [5a6 01-18 09:31:07.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7a767993]Move state message TRANSACTION +peer0.org1.example.com | [5a7 01-18 09:31:07.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7a767993]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [5a8 01-18 09:31:07.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | 2018-01-18 09:29:43.996 UTC [policies] GetPolicy -> DEBU 3fa Returning policy Writers for evaluation +peer1.org1.example.com | [5da 01-18 09:31:27.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f7368f8b]Received message TRANSACTION from shim +peer0.org2.example.com | txId=7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9 locPointer=offset=70, bytesLength=2855 +orderer.example.com | 2018-01-18 09:29:43.996 UTC [policies] GetPolicy -> DEBU 3fb Returning policy Writers for evaluation +peer1.org1.example.com | [5db 01-18 09:31:27.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f7368f8b]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org2.example.com | [5b0 01-18 09:31:09.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [022357cc]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [5a9 01-18 09:31:07.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7a767993]sending state message TRANSACTION +peer0.org2.example.com | ] +orderer.example.com | 2018-01-18 09:29:43.996 UTC [policies] GetPolicy -> DEBU 3fc Returning policy Readers for evaluation +peer1.org1.example.com | [5dc 01-18 09:31:27.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [f7368f8b]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org1.example.com | [5dd 01-18 09:31:27.42 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer1.org1.example.com | [5de 01-18 09:31:27.42 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer1.org1.example.com | [5df 01-18 09:31:27.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f7368f8b]Transaction completed. Sending COMPLETED +peer1.org1.example.com | [5e0 01-18 09:31:27.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f7368f8b]Move state message COMPLETED +peer1.org1.example.com | [5e1 01-18 09:31:27.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f7368f8b]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [5b1 01-18 09:31:09.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [022357cc]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [5aa 01-18 09:31:07.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7a767993]Received message TRANSACTION from shim +peer0.org2.example.com | [5ca 01-18 09:31:09.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=49958, bytesLength=2855] for tx ID: [7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9] to index +peer0.org2.example.com | [5cb 01-18 09:31:09.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=49958, bytesLength=2855] for tx number:[0] ID: [7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9] to blockNumTranNum index +peer1.org1.example.com | [5e2 01-18 09:31:27.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f7368f8b]send state message COMPLETED +peer0.org1.example.com | [5ab 01-18 09:31:07.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7a767993]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org2.example.com | [5b2 01-18 09:31:09.23 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +orderer.example.com | 2018-01-18 09:29:43.997 UTC [policies] GetPolicy -> DEBU 3fd Returning policy Readers for evaluation +peer0.org1.example.com | [5ac 01-18 09:31:07.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [7a767993]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org2.example.com | [5b3 01-18 09:31:09.23 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +peer1.org2.example.com | [5b4 01-18 09:31:09.23 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +peer1.org2.example.com | [5b5 01-18 09:31:09.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [022357cc]Transaction completed. Sending COMPLETED +peer1.org2.example.com | [5b6 01-18 09:31:09.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [022357cc]Move state message COMPLETED +peer1.org2.example.com | [5b7 01-18 09:31:09.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [022357cc]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [5b8 01-18 09:31:09.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [022357cc]send state message COMPLETED +peer1.org2.example.com | [5b9 01-18 09:31:09.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [022357cc]Received message COMPLETED from shim +peer1.org1.example.com | [5e3 01-18 09:31:27.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f7368f8b]Received message COMPLETED from shim +peer0.org2.example.com | [5cc 01-18 09:31:09.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[54564], isChainEmpty=[false], lastBlockNumber=[5] +peer0.org1.example.com | [5ad 01-18 09:31:07.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [7a767993]Sending GET_STATE +peer1.org1.example.com | [5e4 01-18 09:31:27.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f7368f8b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | 2018-01-18 09:29:43.997 UTC [policies] GetPolicy -> DEBU 3fe Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:43.997 UTC [policies] CommitProposals -> DEBU 3ff In commit adding relative sub-policy OrdererOrg/Admins to Orderer +orderer.example.com | 2018-01-18 09:29:43.997 UTC [policies] GetPolicy -> DEBU 400 Returning policy Readers for evaluation +peer1.org2.example.com | [5ba 01-18 09:31:09.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [022357cc]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [5ae 01-18 09:31:07.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7a767993]Received message GET_STATE from shim +peer0.org1.example.com | [5af 01-18 09:31:07.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7a767993]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer0.org1.example.com | [5b0 01-18 09:31:07.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [7a767993]Received GET_STATE, invoking get state from ledger +peer0.org1.example.com | [5b1 01-18 09:31:07.10 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7a767993] getting state for chaincode lscc, key exp02, channel businesschannel +peer1.org1.example.com | [5e5 01-18 09:31:27.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f7368f8b9d6d39ab61fbc1a11965e7f3932147871b48df6101516e37372b2cee]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [5e6 01-18 09:31:27.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:f7368f8b9d6d39ab61fbc1a11965e7f3932147871b48df6101516e37372b2cee +peer1.org1.example.com | [5e7 01-18 09:31:27.42 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [5e8 01-18 09:31:27.42 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer1.org2.example.com | [5bb 01-18 09:31:09.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [022357cc-5983-42cd-b3fe-58f6e4ffb75b]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [5b2 01-18 09:31:07.10 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer0.org1.example.com | [5b3 01-18 09:31:07.10 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7a767993]Got state. Sending RESPONSE +peer0.org1.example.com | [5b4 01-18 09:31:07.10 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [7a767993]handleGetState serial send RESPONSE +peer0.org1.example.com | [5b5 01-18 09:31:07.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7a767993]Received message RESPONSE from shim +peer1.org1.example.com | [5e9 01-18 09:31:27.42 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +peer1.org1.example.com | [5ea 01-18 09:31:27.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [7a2a01db-e0e7-4f7a-b7ba-16cf4f21effd] +peer1.org1.example.com | [5eb 01-18 09:31:27.42 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer0.org2.example.com | [5cd 01-18 09:31:09.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [5] with 1 transaction(s) +orderer.example.com | 2018-01-18 09:29:43.997 UTC [policies] CommitProposals -> DEBU 401 In commit adding relative sub-policy OrdererOrg/Readers to Orderer +peer1.org2.example.com | [5bc 01-18 09:31:09.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:022357cc-5983-42cd-b3fe-58f6e4ffb75b +peer1.org1.example.com | [5ec 01-18 09:31:29.79 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [6], peers number [3] +peer0.org1.example.com | [5b6 01-18 09:31:07.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7a767993]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer1.org2.example.com | [5bd 01-18 09:31:09.23 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [5ed 01-18 09:31:29.81 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [6], peers number [3] +peer0.org1.example.com | [5b7 01-18 09:31:07.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [7a767993]before send +orderer.example.com | 2018-01-18 09:29:43.997 UTC [policies] GetPolicy -> DEBU 402 Returning policy Writers for evaluation +peer0.org2.example.com | [5ce 01-18 09:31:09.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +peer1.org2.example.com | [5be 01-18 09:31:09.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [5534468a-0731-4d47-9800-707250a3b59c] +peer1.org1.example.com | [5ee 01-18 09:31:29.81 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer0.org1.example.com | [5b8 01-18 09:31:07.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [7a767993]after send +orderer.example.com | 2018-01-18 09:29:43.997 UTC [policies] CommitProposals -> DEBU 403 In commit adding relative sub-policy OrdererOrg/Writers to Orderer +peer1.org1.example.com | [5ef 01-18 09:31:29.81 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +peer0.org2.example.com | [5cf 01-18 09:31:09.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +peer1.org2.example.com | [5bf 01-18 09:31:09.23 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer1.org2.example.com | [5c0 01-18 09:31:09.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer1.org2.example.com | [5c1 01-18 09:31:09.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc421e90240), Data:(*common.BlockData)(0xc4223ba3e0), Metadata:(*common.BlockMetadata)(0xc4223ba420)}, doMVCCValidation=true +peer1.org2.example.com | [5c2 01-18 09:31:09.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +peer1.org2.example.com | [5c3 01-18 09:31:09.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=exp02, key=a +peer1.org1.example.com | [5f0 01-18 09:31:29.81 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer1.org1.example.com | [5f1 01-18 09:31:29.81 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421fdfa70 +orderer.example.com | 2018-01-18 09:29:43.997 UTC [policies] GetPolicy -> DEBU 404 Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:43.997 UTC [policies] GetPolicy -> DEBU 405 Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:43.997 UTC [policies] GetPolicy -> DEBU 406 Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:43.998 UTC [policies] GetPolicy -> DEBU 407 Returning policy Writers for evaluation +peer1.org1.example.com | [5f2 01-18 09:31:29.81 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\357\322\201\323\005\020\300\316\217\315\002\"\017businesschannel*@a4652cc8b4e64e8e390bc639b183d8569ae28fa2ce4307dc0a9b7eed3962aaab:\t\022\007\022\005exp02" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\030f|\376_Y\376PDS^\231\016m\377\335pI)\006]\3548\010\336" +peer1.org2.example.com | [5c4 01-18 09:31:09.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=exp02, key=b +peer0.org1.example.com | [5b9 01-18 09:31:07.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [7a767993]Received RESPONSE, communicated (state:ready) +peer0.org2.example.com | [5d0 01-18 09:31:09.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] +peer1.org1.example.com | [5f3 01-18 09:31:29.81 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org1.example.com | [5f4 01-18 09:31:29.81 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org2.example.com | [5d1 01-18 09:31:09.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] +peer0.org1.example.com | [5ba 01-18 09:31:07.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [7a767993]GetState received payload RESPONSE +peer0.org1.example.com | [5bb 01-18 09:31:07.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7a767993]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [5bc 01-18 09:31:07.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7a767993]Move state message COMPLETED +peer1.org1.example.com | [5f5 01-18 09:31:29.81 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} +peer0.org2.example.com | [5d2 01-18 09:31:09.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +peer0.org2.example.com | [5d3 01-18 09:31:09.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [5] with [1] transactions +peer0.org2.example.com | [5d4 01-18 09:31:09.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [5] +peer0.org2.example.com | [5d5 01-18 09:31:09.26 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer1.org1.example.com | [5f6 01-18 09:31:29.81 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org2.example.com | [5c5 01-18 09:31:09.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=exp02 +orderer.example.com | 2018-01-18 09:29:43.998 UTC [policies] GetPolicy -> DEBU 408 Returning policy Admins for evaluation +peer0.org1.example.com | [5bd 01-18 09:31:07.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7a767993]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [5d6 01-18 09:31:09.26 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [5] contains transaction id: 7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9 +peer1.org1.example.com | [5f7 01-18 09:31:29.82 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org2.example.com | [5c6 01-18 09:31:09.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [5] Transaction index [0] TxId [7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9] marked as valid by state validator +orderer.example.com | 2018-01-18 09:29:43.998 UTC [policies] CommitProposals -> DEBU 409 In commit adding relative sub-policy Application/Admins to Channel +orderer.example.com | 2018-01-18 09:29:43.998 UTC [policies] GetPolicy -> DEBU 40a Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:43.998 UTC [policies] CommitProposals -> DEBU 40b In commit adding relative sub-policy Application/Writers to Channel +peer1.org1.example.com | [5f8 01-18 09:31:29.82 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc420325800, header channel_header:"\010\003\032\014\010\357\322\201\323\005\020\300\316\217\315\002\"\017businesschannel*@a4652cc8b4e64e8e390bc639b183d8569ae28fa2ce4307dc0a9b7eed3962aaab:\t\022\007\022\005exp02" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\030f|\376_Y\376PDS^\231\016m\377\335pI)\006]\3548\010\336" +peer1.org1.example.com | [5f9 01-18 09:31:29.83 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer0.org1.example.com | [5be 01-18 09:31:07.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7a767993]send state message COMPLETED +peer0.org1.example.com | [5bf 01-18 09:31:07.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [5c0 01-18 09:31:07.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7a767993]Received message COMPLETED from shim +peer0.org1.example.com | [5c1 01-18 09:31:07.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7a767993]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [5fa 01-18 09:31:29.83 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer1.org1.example.com | [5fb 01-18 09:31:29.83 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +orderer.example.com | 2018-01-18 09:29:43.998 UTC [policies] GetPolicy -> DEBU 40c Returning policy Org2MSP/Readers for evaluation +peer0.org2.example.com | [5d7 01-18 09:31:09.27 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [5] +peer0.org2.example.com | [5d8 01-18 09:31:09.27 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +peer0.org2.example.com | [5d9 01-18 09:31:09.27 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer1.org1.example.com | [5fc 01-18 09:31:29.83 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +orderer.example.com | 2018-01-18 09:29:43.998 UTC [policies] CommitProposals -> DEBU 40d In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +peer0.org1.example.com | [5c2 01-18 09:31:07.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [5c3 01-18 09:31:07.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9 +peer1.org1.example.com | [5fd 01-18 09:31:29.83 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [a4652cc8b4e64e8e390bc639b183d8569ae28fa2ce4307dc0a9b7eed3962aaab] +peer0.org2.example.com | [5da 01-18 09:31:09.27 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer0.org2.example.com | [5db 01-18 09:31:09.27 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +peer0.org2.example.com | [5dc 01-18 09:31:09.27 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +peer0.org2.example.com | [5dd 01-18 09:31:27.99 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer1.org1.example.com | [5fe 01-18 09:31:29.84 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +orderer.example.com | 2018-01-18 09:29:43.998 UTC [policies] GetPolicy -> DEBU 40e Returning policy Org2MSP/Writers for evaluation +peer1.org2.example.com | [5c7 01-18 09:31:09.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=5, blockHash=[]byte{0x14, 0x79, 0x5b, 0xd3, 0x7, 0x12, 0xdf, 0xbb, 0x6c, 0xf, 0xfc, 0x0, 0x56, 0xb5, 0xce, 0x33, 0x6a, 0x55, 0xf7, 0xe6, 0xf, 0x23, 0x39, 0xcd, 0x2d, 0xe9, 0xe3, 0xb1, 0x3, 0x84, 0xfe, 0x7c} txOffsets= +peer1.org1.example.com | [5ff 01-18 09:31:29.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [8cdb397e-e8da-4ccb-8201-e96ad3b8beab] +peer1.org1.example.com | [600 01-18 09:31:29.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer1.org1.example.com | [601 01-18 09:31:29.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [8cdb397e-e8da-4ccb-8201-e96ad3b8beab] +peer0.org1.example.com | [5c4 01-18 09:31:07.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [5de 01-18 09:31:27.99 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc424ab21b0 +peer0.org2.example.com | [5df 01-18 09:31:27.99 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org2.example.com | txId=7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9 locPointer=offset=70, bytesLength=2855 +peer1.org1.example.com | [602 01-18 09:31:29.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org1.example.com | [603 01-18 09:31:29.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [ec513d5d-0976-4e23-b015-b9b0870327c2] +peer1.org1.example.com | [604 01-18 09:31:29.86 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=dd233d46-8932-445d-9a2f-34d97707db28,syscc=true,proposal=0x0,canname=vscc:1.0.2 +orderer.example.com | 2018-01-18 09:29:43.998 UTC [policies] CommitProposals -> DEBU 40f In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +peer0.org1.example.com | [5c5 01-18 09:31:07.11 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache +peer0.org1.example.com | [5c6 01-18 09:31:07.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9 channel id: businesschannel version: 1.0 +peer1.org1.example.com | [605 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid a4652cc8b4e64e8e390bc639b183d8569ae28fa2ce4307dc0a9b7eed3962aaab chaindID businesschannel +peer1.org2.example.com | ] +peer0.org2.example.com | [5e0 01-18 09:31:27.99 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org2.example.com | [5e1 01-18 09:31:28.00 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} +peer0.org2.example.com | [5e2 01-18 09:31:28.00 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org2.example.com | [5e3 01-18 09:31:28.00 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org1.example.com | [606 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 +peer1.org2.example.com | [5c8 01-18 09:31:09.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=49958, bytesLength=2855] for tx ID: [7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9] to index +orderer.example.com | 2018-01-18 09:29:43.998 UTC [policies] GetPolicy -> DEBU 410 Returning policy Readers for evaluation +peer0.org1.example.com | [5c7 01-18 09:31:07.11 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=exp02,version=1.0,txid=7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9,syscc=false,proposal=0xc422175130,canname=exp02:1.0 +peer1.org1.example.com | [607 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [5c9 01-18 09:31:09.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=49958, bytesLength=2855] for tx number:[0] ID: [7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9] to blockNumTranNum index +peer1.org2.example.com | [5ca 01-18 09:31:09.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[54564], isChainEmpty=[false], lastBlockNumber=[5] +peer0.org2.example.com | [5e4 01-18 09:31:28.00 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421e124b0, header 0xc424ab21e0 +peer1.org1.example.com | [608 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 +orderer.example.com | 2018-01-18 09:29:43.999 UTC [policies] CommitProposals -> DEBU 411 In commit adding relative sub-policy Application/Readers to Channel +peer1.org2.example.com | [5cb 01-18 09:31:09.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [5] with 1 transaction(s) +peer1.org2.example.com | [5cc 01-18 09:31:09.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +peer0.org2.example.com | [5e5 01-18 09:31:28.00 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"exp02" +peer1.org1.example.com | [609 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [dd233d46]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [5c8 01-18 09:31:07.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : exp02:1.0 +peer0.org1.example.com | [5c9 01-18 09:31:07.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [5ca 01-18 09:31:07.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: exp02:1.0 +peer0.org1.example.com | [5cb 01-18 09:31:07.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7a767993]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [5cc 01-18 09:31:07.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [60a 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | 2018-01-18 09:29:43.999 UTC [policies] GetPolicy -> DEBU 412 Returning policy Org1MSP/Admins for evaluation +peer0.org2.example.com | [5e6 01-18 09:31:28.00 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 7f8dd5ad08a0d9716cc7a446d58c9d38a2bd6b8c0ab46c85eb3ce1445cd21d59 +peer1.org2.example.com | [5cd 01-18 09:31:09.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +peer1.org2.example.com | [5ce 01-18 09:31:09.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] +peer1.org1.example.com | [60b 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [dd233d46]sendExecuteMsg trigger event TRANSACTION +peer1.org1.example.com | [60c 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dd233d46]Move state message TRANSACTION +peer1.org1.example.com | [60d 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [dd233d46]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org1.example.com | [60e 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [60f 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dd233d46]sending state message TRANSACTION +peer0.org2.example.com | [5e7 01-18 09:31:28.00 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [7f8dd5ad08a0d9716cc7a446d58c9d38a2bd6b8c0ab46c85eb3ce1445cd21d59] +orderer.example.com | 2018-01-18 09:29:43.999 UTC [policies] CommitProposals -> DEBU 413 In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +peer0.org1.example.com | [5cd 01-18 09:31:07.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org2.example.com | [5cf 01-18 09:31:09.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] +peer1.org1.example.com | [610 01-18 09:31:29.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dd233d46]Received message TRANSACTION from shim +peer0.org2.example.com | [5e8 01-18 09:31:28.00 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +orderer.example.com | 2018-01-18 09:29:44.000 UTC [policies] GetPolicy -> DEBU 414 Returning policy Org1MSP/Readers for evaluation +peer1.org1.example.com | [611 01-18 09:31:29.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [dd233d46]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | 2018-01-18 09:29:44.000 UTC [policies] CommitProposals -> DEBU 415 In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +peer1.org2.example.com | [5d0 01-18 09:31:09.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +peer0.org2.example.com | [5e9 01-18 09:31:28.00 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [3254ac7f-8804-49e1-88a6-1013fd06da9d] +peer0.org1.example.com | [5ce 01-18 09:31:07.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7a767993]sendExecuteMsg trigger event TRANSACTION +peer0.org2.example.com | [5ea 01-18 09:31:28.00 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 7f8dd5ad08a0d9716cc7a446d58c9d38a2bd6b8c0ab46c85eb3ce1445cd21d59 channel id: businesschannel +peer1.org1.example.com | [612 01-18 09:31:29.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [dd233d46]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org1.example.com | [613 01-18 09:31:29.88 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer0.org2.example.com | [5eb 01-18 09:31:28.00 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=7f8dd5ad08a0d9716cc7a446d58c9d38a2bd6b8c0ab46c85eb3ce1445cd21d59,syscc=true,proposal=0xc421e124b0,canname=lscc:1.0.2 +peer0.org2.example.com | [5ec 01-18 09:31:28.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 +peer1.org2.example.com | [5d1 01-18 09:31:09.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [5] with [1] transactions +peer1.org1.example.com | [614 01-18 09:31:29.88 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +orderer.example.com | 2018-01-18 09:29:44.000 UTC [policies] GetPolicy -> DEBU 416 Returning policy Org1MSP/Writers for evaluation +peer0.org1.example.com | [5cf 01-18 09:31:07.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7a767993]Move state message TRANSACTION +peer0.org2.example.com | [5ed 01-18 09:31:28.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [615 01-18 09:31:29.89 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +peer1.org1.example.com | [616 01-18 09:31:29.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dd233d46]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [5d0 01-18 09:31:07.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7a767993]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org2.example.com | [5d2 01-18 09:31:09.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [5] +orderer.example.com | 2018-01-18 09:29:44.000 UTC [policies] CommitProposals -> DEBU 417 In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +peer1.org1.example.com | [617 01-18 09:31:29.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dd233d46]Move state message COMPLETED +peer0.org2.example.com | [5ee 01-18 09:31:28.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +peer1.org2.example.com | [5d3 01-18 09:31:09.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer0.org2.example.com | [5ef 01-18 09:31:28.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7f8dd5ad]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | 2018-01-18 09:29:44.001 UTC [policies] GetPolicy -> DEBU 418 Returning policy Org2MSP/Admins for evaluation +peer1.org2.example.com | [5d4 01-18 09:31:09.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [5] contains transaction id: 7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9 +peer0.org2.example.com | [5f0 01-18 09:31:28.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | 2018-01-18 09:29:44.001 UTC [policies] CommitProposals -> DEBU 419 In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +peer0.org1.example.com | [5d1 01-18 09:31:07.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [618 01-18 09:31:29.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [dd233d46]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [5d2 01-18 09:31:07.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7a767993]sending state message TRANSACTION +peer0.org2.example.com | [5f1 01-18 09:31:28.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | 2018-01-18 09:29:44.001 UTC [policies] GetPolicy -> DEBU 41a Returning policy Writers for evaluation +peer1.org2.example.com | [5d5 01-18 09:31:09.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [5] +peer1.org1.example.com | [619 01-18 09:31:29.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dd233d46]send state message COMPLETED +peer0.org2.example.com | [5f2 01-18 09:31:28.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7f8dd5ad]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | 2018-01-18 09:29:44.001 UTC [policies] CommitProposals -> DEBU 41b In commit adding relative sub-policy Orderer/Writers to Channel +peer1.org1.example.com | [61a 01-18 09:31:29.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dd233d46]Received message COMPLETED from shim +peer1.org2.example.com | [5d6 01-18 09:31:09.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +peer1.org1.example.com | [61b 01-18 09:31:29.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [dd233d46]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [5d3 01-18 09:31:07.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7a767993]Received message GET_STATE from shim +peer0.org2.example.com | [5f3 01-18 09:31:28.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7f8dd5ad]Move state message TRANSACTION +peer1.org1.example.com | [61c 01-18 09:31:29.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [dd233d46-8932-445d-9a2f-34d97707db28]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [5d7 01-18 09:31:09.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +orderer.example.com | 2018-01-18 09:29:44.001 UTC [policies] GetPolicy -> DEBU 41c Returning policy Admins for evaluation +peer0.org1.example.com | [5d4 01-18 09:31:07.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7a767993]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer0.org2.example.com | [5f4 01-18 09:31:28.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7f8dd5ad]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org1.example.com | [61d 01-18 09:31:29.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:dd233d46-8932-445d-9a2f-34d97707db28 +peer1.org1.example.com | [61e 01-18 09:31:29.90 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [61f 01-18 09:31:29.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [ec513d5d-0976-4e23-b015-b9b0870327c2] +peer1.org2.example.com | [5d8 01-18 09:31:09.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer1.org2.example.com | [5d9 01-18 09:31:09.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +peer1.org1.example.com | [620 01-18 09:31:29.90 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer1.org1.example.com | [621 01-18 09:31:29.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer1.org1.example.com | [622 01-18 09:31:29.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc421789140), Data:(*common.BlockData)(0xc4224b3d20), Metadata:(*common.BlockMetadata)(0xc4224b3d60)}, doMVCCValidation=true +peer1.org1.example.com | [623 01-18 09:31:29.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +peer0.org2.example.com | [5f5 01-18 09:31:28.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [5f6 01-18 09:31:28.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7f8dd5ad]sending state message TRANSACTION +peer0.org2.example.com | [5f7 01-18 09:31:28.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7f8dd5ad]Received message TRANSACTION from shim +peer1.org1.example.com | [624 01-18 09:31:29.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=exp02, key=a +peer0.org1.example.com | [5d5 01-18 09:31:07.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [7a767993]Received GET_STATE, invoking get state from ledger +peer0.org1.example.com | [5d6 01-18 09:31:07.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | 2018-01-18 09:29:44.001 UTC [policies] CommitProposals -> DEBU 41d In commit adding relative sub-policy Orderer/Admins to Channel +peer1.org1.example.com | [625 01-18 09:31:29.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=exp02, key=b +peer0.org2.example.com | [5f8 01-18 09:31:28.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7f8dd5ad]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org2.example.com | [5f9 01-18 09:31:28.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [7f8dd5ad]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org2.example.com | [5fa 01-18 09:31:28.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [7f8dd5ad]Sending GET_STATE +peer1.org1.example.com | [626 01-18 09:31:29.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer1.org1.example.com | [627 01-18 09:31:29.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [6] Transaction index [0] TxId [a4652cc8b4e64e8e390bc639b183d8569ae28fa2ce4307dc0a9b7eed3962aaab] marked as valid by state validator +peer1.org2.example.com | [5da 01-18 09:31:09.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +orderer.example.com | 2018-01-18 09:29:44.002 UTC [policies] GetPolicy -> DEBU 41e Returning policy BlockValidation for evaluation +peer0.org1.example.com | [5d7 01-18 09:31:07.12 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7a767993] getting state for chaincode exp02, key a, channel businesschannel +peer0.org1.example.com | [5d8 01-18 09:31:07.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=exp02, key=a +peer0.org1.example.com | [5d9 01-18 09:31:07.12 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7a767993]Got state. Sending RESPONSE +peer1.org1.example.com | [628 01-18 09:31:29.95 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0x6d, 0x6b, 0x82, 0xbc, 0xa, 0x4, 0xe3, 0xad, 0xfa, 0xe, 0x85, 0xa6, 0xa0, 0xe8, 0x87, 0xbf, 0x19, 0xf1, 0xbf, 0xd3, 0x9d, 0x68, 0xf3, 0x0, 0xe5, 0x64, 0xa4, 0xd6, 0x4c, 0x4e, 0x9f, 0x3d} txOffsets= +orderer.example.com | 2018-01-18 09:29:44.002 UTC [policies] CommitProposals -> DEBU 41f In commit adding relative sub-policy Orderer/BlockValidation to Channel +peer0.org2.example.com | [5fb 01-18 09:31:28.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7f8dd5ad]Received message GET_STATE from shim +peer1.org1.example.com | txId=a4652cc8b4e64e8e390bc639b183d8569ae28fa2ce4307dc0a9b7eed3962aaab locPointer=offset=70, bytesLength=2855 +orderer.example.com | 2018-01-18 09:29:44.002 UTC [policies] GetPolicy -> DEBU 420 Returning policy OrdererOrg/Admins for evaluation +peer0.org2.example.com | [5fc 01-18 09:31:28.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7f8dd5ad]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer1.org2.example.com | [5db 01-18 09:31:27.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer1.org2.example.com | [5dc 01-18 09:31:27.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421860990 +peer0.org1.example.com | [5da 01-18 09:31:07.12 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [7a767993]handleGetState serial send RESPONSE +peer1.org1.example.com | ] +peer1.org1.example.com | [629 01-18 09:31:29.95 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=54634, bytesLength=2855] for tx ID: [a4652cc8b4e64e8e390bc639b183d8569ae28fa2ce4307dc0a9b7eed3962aaab] to index +orderer.example.com | 2018-01-18 09:29:44.002 UTC [policies] CommitProposals -> DEBU 421 In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +orderer.example.com | 2018-01-18 09:29:44.002 UTC [policies] GetPolicy -> DEBU 422 Returning policy OrdererOrg/Readers for evaluation +orderer.example.com | 2018-01-18 09:29:44.002 UTC [policies] CommitProposals -> DEBU 423 In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +orderer.example.com | 2018-01-18 09:29:44.002 UTC [policies] GetPolicy -> DEBU 424 Returning policy OrdererOrg/Writers for evaluation +peer1.org1.example.com | [62a 01-18 09:31:29.95 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=54634, bytesLength=2855] for tx number:[0] ID: [a4652cc8b4e64e8e390bc639b183d8569ae28fa2ce4307dc0a9b7eed3962aaab] to blockNumTranNum index +peer1.org1.example.com | [62b 01-18 09:31:29.95 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[59239], isChainEmpty=[false], lastBlockNumber=[6] +peer0.org1.example.com | [5db 01-18 09:31:07.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7a767993]Received message GET_STATE from shim +peer1.org2.example.com | [5dd 01-18 09:31:27.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org2.example.com | [5fd 01-18 09:31:28.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [7f8dd5ad]Received GET_STATE, invoking get state from ledger +peer0.org2.example.com | [5fe 01-18 09:31:28.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [62c 01-18 09:31:29.95 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [6] with 1 transaction(s) +orderer.example.com | 2018-01-18 09:29:44.002 UTC [policies] CommitProposals -> DEBU 425 In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +orderer.example.com | 2018-01-18 09:29:44.002 UTC [policies] GetPolicy -> DEBU 426 Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:44.002 UTC [policies] CommitProposals -> DEBU 427 In commit adding relative sub-policy Orderer/Readers to Channel +orderer.example.com | 2018-01-18 09:29:44.003 UTC [policies] GetPolicy -> DEBU 428 Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:44.003 UTC [policies] GetPolicy -> DEBU 429 Returning policy Writers for evaluation +peer1.org1.example.com | [62d 01-18 09:31:29.95 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +peer0.org1.example.com | [5dc 01-18 09:31:07.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7a767993]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer0.org2.example.com | [5ff 01-18 09:31:28.00 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7f8dd5ad] getting state for chaincode lscc, key exp02, channel businesschannel +peer1.org1.example.com | [62e 01-18 09:31:29.95 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +peer1.org2.example.com | [5de 01-18 09:31:27.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org1.example.com | [62f 01-18 09:31:29.95 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] +peer0.org1.example.com | [5dd 01-18 09:31:07.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [7a767993]Received GET_STATE, invoking get state from ledger +peer1.org2.example.com | [5df 01-18 09:31:27.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} +peer1.org2.example.com | [5e0 01-18 09:31:27.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org2.example.com | [5e1 01-18 09:31:27.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org1.example.com | [630 01-18 09:31:29.95 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] +peer0.org1.example.com | [5de 01-18 09:31:07.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | 2018-01-18 09:29:44.003 UTC [policies] GetPolicy -> DEBU 42a Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:44.003 UTC [policies] GetPolicy -> DEBU 42b Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:44.004 UTC [policies] GetPolicy -> DEBU 42c Returning policy Readers for evaluation +peer1.org1.example.com | [631 01-18 09:31:29.95 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +peer0.org2.example.com | [600 01-18 09:31:28.00 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer0.org2.example.com | [601 01-18 09:31:28.00 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7f8dd5ad]Got state. Sending RESPONSE +peer0.org2.example.com | [602 01-18 09:31:28.00 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [7f8dd5ad]handleGetState serial send RESPONSE +peer0.org2.example.com | [603 01-18 09:31:28.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7f8dd5ad]Received message RESPONSE from shim +peer0.org2.example.com | [604 01-18 09:31:28.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7f8dd5ad]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer1.org1.example.com | [632 01-18 09:31:29.95 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [6] with [1] transactions +peer1.org2.example.com | [5e2 01-18 09:31:27.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42185aa00, header 0xc4218609c0 +peer0.org1.example.com | [5df 01-18 09:31:07.12 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7a767993] getting state for chaincode exp02, key b, channel businesschannel +orderer.example.com | 2018-01-18 09:29:44.004 UTC [policies] GetPolicy -> DEBU 42d Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:44.004 UTC [policies] GetPolicy -> DEBU 42e Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:44.004 UTC [policies] CommitProposals -> DEBU 42f As expected, current configuration has policy '/Channel/Readers' +peer0.org2.example.com | [605 01-18 09:31:28.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [7f8dd5ad]before send +peer0.org1.example.com | [5e0 01-18 09:31:07.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=exp02, key=b +peer1.org1.example.com | [633 01-18 09:31:29.95 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [6] +peer1.org2.example.com | [5e3 01-18 09:31:27.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"exp02" +orderer.example.com | 2018-01-18 09:29:44.004 UTC [policies] GetPolicy -> DEBU 430 Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:44.004 UTC [policies] CommitProposals -> DEBU 431 As expected, current configuration has policy '/Channel/Writers' +orderer.example.com | 2018-01-18 09:29:44.004 UTC [policies] GetPolicy -> DEBU 432 Returning policy Application/Readers for evaluation +peer1.org1.example.com | [634 01-18 09:31:29.95 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer1.org1.example.com | [635 01-18 09:31:29.95 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [6] contains transaction id: a4652cc8b4e64e8e390bc639b183d8569ae28fa2ce4307dc0a9b7eed3962aaab +peer1.org2.example.com | [5e4 01-18 09:31:27.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: b63162e52a4261d135f1a2f8f0bbba812af89461027a14c64a5076142bc33b57 +peer0.org2.example.com | [606 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [7f8dd5ad]after send +peer0.org1.example.com | [5e1 01-18 09:31:07.12 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7a767993]Got state. Sending RESPONSE +peer0.org1.example.com | [5e2 01-18 09:31:07.12 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [7a767993]handleGetState serial send RESPONSE +peer0.org1.example.com | [5e3 01-18 09:31:07.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7a767993]Received message PUT_STATE from shim +peer1.org1.example.com | [636 01-18 09:31:29.95 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [6] +orderer.example.com | 2018-01-18 09:29:44.004 UTC [policies] CommitProposals -> DEBU 433 As expected, current configuration has policy '/Channel/Application/Readers' +peer1.org1.example.com | [637 01-18 09:31:29.95 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +peer0.org2.example.com | [608 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [7f8dd5ad]Received RESPONSE, communicated (state:ready) +orderer.example.com | 2018-01-18 09:29:44.005 UTC [policies] GetPolicy -> DEBU 434 Returning policy Application/Writers for evaluation +peer1.org2.example.com | [5e5 01-18 09:31:27.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [b63162e52a4261d135f1a2f8f0bbba812af89461027a14c64a5076142bc33b57] +peer0.org1.example.com | [5e4 01-18 09:31:07.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7a767993]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +peer0.org2.example.com | [607 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [7f8dd5ad]GetState received payload RESPONSE +peer0.org2.example.com | [609 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7f8dd5ad]Transaction completed. Sending COMPLETED +peer0.org2.example.com | [60a 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7f8dd5ad]Move state message COMPLETED +peer1.org1.example.com | [638 01-18 09:31:29.95 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer1.org1.example.com | [639 01-18 09:31:29.95 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +orderer.example.com | 2018-01-18 09:29:44.005 UTC [policies] CommitProposals -> DEBU 435 As expected, current configuration has policy '/Channel/Application/Writers' +peer1.org2.example.com | [5e6 01-18 09:31:27.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org2.example.com | [5e7 01-18 09:31:27.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [72566c99-a27d-49b0-8f35-37e06f18fe56] +peer1.org1.example.com | [63a 01-18 09:31:29.95 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +peer1.org1.example.com | [63b 01-18 09:31:29.95 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +peer0.org1.example.com | [5e5 01-18 09:31:07.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [5e6 01-18 09:31:07.12 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7a767993]state is ready +peer0.org1.example.com | [5e7 01-18 09:31:07.13 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7a767993]Completed PUT_STATE. Sending RESPONSE +peer0.org1.example.com | [5e8 01-18 09:31:07.13 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [7a767993]enterBusyState trigger event RESPONSE +peer1.org2.example.com | [5e8 01-18 09:31:27.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: b63162e52a4261d135f1a2f8f0bbba812af89461027a14c64a5076142bc33b57 channel id: businesschannel +peer0.org2.example.com | [60b 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7f8dd5ad]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [60c 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7f8dd5ad]send state message COMPLETED +peer0.org2.example.com | [60d 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7f8dd5ad]Received message COMPLETED from shim +peer0.org2.example.com | [60e 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7f8dd5ad]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [60f 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7f8dd5ad08a0d9716cc7a446d58c9d38a2bd6b8c0ab46c85eb3ce1445cd21d59]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [610 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:7f8dd5ad08a0d9716cc7a446d58c9d38a2bd6b8c0ab46c85eb3ce1445cd21d59 +peer0.org1.example.com | [5e9 01-18 09:31:07.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7a767993]Move state message RESPONSE +orderer.example.com | 2018-01-18 09:29:44.005 UTC [policies] GetPolicy -> DEBU 436 Returning policy Application/Admins for evaluation +peer0.org2.example.com | [611 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [612 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache +orderer.example.com | 2018-01-18 09:29:44.005 UTC [policies] CommitProposals -> DEBU 437 As expected, current configuration has policy '/Channel/Application/Admins' +orderer.example.com | 2018-01-18 09:29:44.005 UTC [policies] GetPolicy -> DEBU 438 Returning policy Orderer/BlockValidation for evaluation +peer0.org1.example.com | [5ea 01-18 09:31:07.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7a767993]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +peer0.org1.example.com | [5eb 01-18 09:31:07.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [5ec 01-18 09:31:07.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7a767993]sending state message RESPONSE +peer0.org1.example.com | [5ed 01-18 09:31:07.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7a767993]Received message PUT_STATE from shim +peer0.org1.example.com | [5ee 01-18 09:31:07.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7a767993]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +peer0.org1.example.com | [5ef 01-18 09:31:07.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [5f0 01-18 09:31:07.13 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7a767993]state is ready +peer0.org2.example.com | [613 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 7f8dd5ad08a0d9716cc7a446d58c9d38a2bd6b8c0ab46c85eb3ce1445cd21d59 channel id: businesschannel version: 1.0 +peer1.org2.example.com | [5e9 01-18 09:31:27.55 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=b63162e52a4261d135f1a2f8f0bbba812af89461027a14c64a5076142bc33b57,syscc=true,proposal=0xc42185aa00,canname=lscc:1.0.2 +peer1.org2.example.com | [5ea 01-18 09:31:27.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 +peer1.org2.example.com | [5eb 01-18 09:31:27.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [5f1 01-18 09:31:07.13 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7a767993]Completed PUT_STATE. Sending RESPONSE +orderer.example.com | 2018-01-18 09:29:44.005 UTC [policies] CommitProposals -> DEBU 439 As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +peer0.org2.example.com | [614 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=exp02,version=1.0,txid=7f8dd5ad08a0d9716cc7a446d58c9d38a2bd6b8c0ab46c85eb3ce1445cd21d59,syscc=false,proposal=0xc421e124b0,canname=exp02:1.0 +peer0.org2.example.com | [615 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : exp02:1.0 +peer0.org2.example.com | [616 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [617 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: exp02:1.0 +peer1.org2.example.com | [5ec 01-18 09:31:27.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +peer0.org1.example.com | [5f2 01-18 09:31:07.13 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [7a767993]enterBusyState trigger event RESPONSE +orderer.example.com | 2018-01-18 09:29:44.005 UTC [common/config] NewStandardValues -> DEBU 43a Initializing protos for *config.ChannelProtos +orderer.example.com | 2018-01-18 09:29:44.005 UTC [common/config] initializeProtosStruct -> DEBU 43b Processing field: HashingAlgorithm +orderer.example.com | 2018-01-18 09:29:44.005 UTC [common/config] initializeProtosStruct -> DEBU 43c Processing field: BlockDataHashingStructure +orderer.example.com | 2018-01-18 09:29:44.005 UTC [common/config] initializeProtosStruct -> DEBU 43d Processing field: OrdererAddresses +orderer.example.com | 2018-01-18 09:29:44.005 UTC [common/config] initializeProtosStruct -> DEBU 43e Processing field: Consortium +peer0.org2.example.com | [618 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7f8dd5ad]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [5f3 01-18 09:31:07.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7a767993]Move state message RESPONSE +peer1.org2.example.com | [5ed 01-18 09:31:27.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b63162e5]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [5ee 01-18 09:31:27.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | 2018-01-18 09:29:44.006 UTC [common/configtx] addToMap -> DEBU 43f Adding to config map: [Groups] /Channel +peer0.org2.example.com | [619 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [5f4 01-18 09:31:07.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7a767993]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +peer0.org1.example.com | [5f5 01-18 09:31:07.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [5f6 01-18 09:31:07.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7a767993]sending state message RESPONSE +peer0.org1.example.com | [5f7 01-18 09:31:07.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7a767993]Received message COMPLETED from shim +peer0.org1.example.com | [5f8 01-18 09:31:07.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7a767993]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [5ef 01-18 09:31:27.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org2.example.com | [61a 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org2.example.com | [61b 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7f8dd5ad]sendExecuteMsg trigger event TRANSACTION +peer0.org2.example.com | [61c 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7f8dd5ad]Move state message TRANSACTION +peer0.org2.example.com | [61d 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7f8dd5ad]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org2.example.com | [61e 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | 2018-01-18 09:29:44.006 UTC [common/configtx] addToMap -> DEBU 440 Adding to config map: [Groups] /Channel/Orderer +peer0.org1.example.com | [5f9 01-18 09:31:07.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [61f 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7f8dd5ad]sending state message TRANSACTION +peer1.org2.example.com | [5f0 01-18 09:31:27.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b63162e5]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [5f1 01-18 09:31:27.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b63162e5]Move state message TRANSACTION +peer1.org2.example.com | [5f2 01-18 09:31:27.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b63162e5]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org2.example.com | [5f3 01-18 09:31:27.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [5f4 01-18 09:31:27.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b63162e5]sending state message TRANSACTION +peer1.org2.example.com | [5f5 01-18 09:31:27.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b63162e5]Received message TRANSACTION from shim +orderer.example.com | 2018-01-18 09:29:44.006 UTC [common/configtx] addToMap -> DEBU 441 Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +orderer.example.com | 2018-01-18 09:29:44.006 UTC [common/configtx] addToMap -> DEBU 442 Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +orderer.example.com | 2018-01-18 09:29:44.006 UTC [common/configtx] addToMap -> DEBU 443 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +orderer.example.com | 2018-01-18 09:29:44.006 UTC [common/configtx] addToMap -> DEBU 444 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | 2018-01-18 09:29:44.007 UTC [common/configtx] addToMap -> DEBU 445 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +orderer.example.com | 2018-01-18 09:29:44.007 UTC [common/configtx] addToMap -> DEBU 446 Adding to config map: [Values] /Channel/Orderer/ConsensusType +orderer.example.com | 2018-01-18 09:29:44.007 UTC [common/configtx] addToMap -> DEBU 447 Adding to config map: [Values] /Channel/Orderer/BatchSize +orderer.example.com | 2018-01-18 09:29:44.007 UTC [common/configtx] addToMap -> DEBU 448 Adding to config map: [Values] /Channel/Orderer/BatchTimeout +orderer.example.com | 2018-01-18 09:29:44.007 UTC [common/configtx] addToMap -> DEBU 449 Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +orderer.example.com | 2018-01-18 09:29:44.007 UTC [common/configtx] addToMap -> DEBU 44a Adding to config map: [Policy] /Channel/Orderer/BlockValidation +orderer.example.com | 2018-01-18 09:29:44.007 UTC [common/configtx] addToMap -> DEBU 44b Adding to config map: [Policy] /Channel/Orderer/Readers +orderer.example.com | 2018-01-18 09:29:44.007 UTC [common/configtx] addToMap -> DEBU 44c Adding to config map: [Policy] /Channel/Orderer/Writers +orderer.example.com | 2018-01-18 09:29:44.008 UTC [common/configtx] addToMap -> DEBU 44d Adding to config map: [Policy] /Channel/Orderer/Admins +peer0.org2.example.com | [620 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7f8dd5ad]Received message GET_STATE from shim +peer1.org2.example.com | [5f6 01-18 09:31:27.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b63162e5]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [5fa 01-18 09:31:07.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9 +orderer.example.com | 2018-01-18 09:29:44.008 UTC [common/configtx] addToMap -> DEBU 44e Adding to config map: [Groups] /Channel/Application +peer0.org2.example.com | [621 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7f8dd5ad]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer0.org1.example.com | [5fb 01-18 09:31:07.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | 2018-01-18 09:29:44.008 UTC [common/configtx] addToMap -> DEBU 44f Adding to config map: [Groups] /Channel/Application/Org1MSP +peer1.org2.example.com | [5f7 01-18 09:31:27.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [b63162e5]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [5fc 01-18 09:31:07.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org2.example.com | [622 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [7f8dd5ad]Received GET_STATE, invoking get state from ledger +peer0.org2.example.com | [623 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [624 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7f8dd5ad] getting state for chaincode exp02, key a, channel businesschannel +peer0.org2.example.com | [625 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=exp02, key=a +peer0.org2.example.com | [626 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7f8dd5ad]Got state. Sending RESPONSE +peer0.org2.example.com | [627 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [7f8dd5ad]handleGetState serial send RESPONSE +peer0.org1.example.com | [5fd 01-18 09:31:07.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +orderer.example.com | 2018-01-18 09:29:44.008 UTC [common/configtx] addToMap -> DEBU 450 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +orderer.example.com | 2018-01-18 09:29:44.008 UTC [common/configtx] addToMap -> DEBU 451 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | 2018-01-18 09:29:44.009 UTC [common/configtx] addToMap -> DEBU 452 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | 2018-01-18 09:29:44.009 UTC [common/configtx] addToMap -> DEBU 453 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | 2018-01-18 09:29:44.009 UTC [common/configtx] addToMap -> DEBU 454 Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | 2018-01-18 09:29:44.009 UTC [common/configtx] addToMap -> DEBU 455 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +orderer.example.com | 2018-01-18 09:29:44.009 UTC [common/configtx] addToMap -> DEBU 456 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | 2018-01-18 09:29:44.009 UTC [common/configtx] addToMap -> DEBU 457 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | 2018-01-18 09:29:44.010 UTC [common/configtx] addToMap -> DEBU 458 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer1.org2.example.com | [5f8 01-18 09:31:27.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [b63162e5]Sending GET_STATE +peer0.org2.example.com | [628 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7f8dd5ad]Received message COMPLETED from shim +peer0.org2.example.com | [629 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7f8dd5ad]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [62a 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7f8dd5ad08a0d9716cc7a446d58c9d38a2bd6b8c0ab46c85eb3ce1445cd21d59]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [62b 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:7f8dd5ad08a0d9716cc7a446d58c9d38a2bd6b8c0ab46c85eb3ce1445cd21d59 +peer0.org2.example.com | [62c 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [62d 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org2.example.com | [62e 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer0.org1.example.com | [5fe 01-18 09:31:07.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [d931e8f9-cf3b-4b00-a40c-6667807e38c8] +peer0.org1.example.com | [5ff 01-18 09:31:07.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +orderer.example.com | 2018-01-18 09:29:44.010 UTC [common/configtx] addToMap -> DEBU 459 Adding to config map: [Policy] /Channel/Application/Readers +orderer.example.com | 2018-01-18 09:29:44.010 UTC [common/configtx] addToMap -> DEBU 45a Adding to config map: [Policy] /Channel/Application/Admins +orderer.example.com | 2018-01-18 09:29:44.010 UTC [common/configtx] addToMap -> DEBU 45b Adding to config map: [Policy] /Channel/Application/Writers +orderer.example.com | 2018-01-18 09:29:44.010 UTC [common/configtx] addToMap -> DEBU 45c Adding to config map: [Values] /Channel/Consortium +orderer.example.com | 2018-01-18 09:29:44.010 UTC [common/configtx] addToMap -> DEBU 45d Adding to config map: [Values] /Channel/BlockDataHashingStructure +orderer.example.com | 2018-01-18 09:29:44.011 UTC [common/configtx] addToMap -> DEBU 45e Adding to config map: [Values] /Channel/OrdererAddresses +orderer.example.com | 2018-01-18 09:29:44.011 UTC [common/configtx] addToMap -> DEBU 45f Adding to config map: [Values] /Channel/HashingAlgorithm +orderer.example.com | 2018-01-18 09:29:44.011 UTC [common/configtx] addToMap -> DEBU 460 Adding to config map: [Policy] /Channel/Writers +orderer.example.com | 2018-01-18 09:29:44.011 UTC [common/configtx] addToMap -> DEBU 461 Adding to config map: [Policy] /Channel/Admins +orderer.example.com | 2018-01-18 09:29:44.011 UTC [common/configtx] addToMap -> DEBU 462 Adding to config map: [Policy] /Channel/Readers +orderer.example.com | 2018-01-18 09:29:44.011 UTC [common/configtx] processConfig -> DEBU 463 Beginning new config for channel businesschannel +orderer.example.com | 2018-01-18 09:29:44.011 UTC [common/config] NewStandardValues -> DEBU 464 Initializing protos for *config.ChannelProtos +orderer.example.com | 2018-01-18 09:29:44.011 UTC [common/config] initializeProtosStruct -> DEBU 465 Processing field: HashingAlgorithm +orderer.example.com | 2018-01-18 09:29:44.012 UTC [common/config] initializeProtosStruct -> DEBU 466 Processing field: BlockDataHashingStructure +peer1.org2.example.com | [5f9 01-18 09:31:27.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b63162e5]Received message GET_STATE from shim +peer0.org1.example.com | [600 01-18 09:31:07.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9 channel id: businesschannel chaincode id: name:"exp02" +peer0.org1.example.com | [601 01-18 09:31:07.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"exp02" is escc +peer0.org1.example.com | [602 01-18 09:31:07.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9 channel id: businesschannel version: 1.0.2 +peer0.org2.example.com | [62f 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [3254ac7f-8804-49e1-88a6-1013fd06da9d] +orderer.example.com | 2018-01-18 09:29:44.012 UTC [common/config] initializeProtosStruct -> DEBU 467 Processing field: OrdererAddresses +orderer.example.com | 2018-01-18 09:29:44.012 UTC [common/config] initializeProtosStruct -> DEBU 468 Processing field: Consortium +orderer.example.com | 2018-01-18 09:29:44.012 UTC [policies] ProposePolicy -> DEBU 469 Proposed new policy Admins for Channel +orderer.example.com | 2018-01-18 09:29:44.012 UTC [policies] ProposePolicy -> DEBU 46a Proposed new policy Readers for Channel +peer1.org2.example.com | [5fa 01-18 09:31:27.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b63162e5]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer0.org1.example.com | [603 01-18 09:31:07.14 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9,syscc=true,proposal=0xc422175130,canname=escc:1.0.2 +peer0.org1.example.com | [604 01-18 09:31:07.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 +peer0.org1.example.com | [605 01-18 09:31:07.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [606 01-18 09:31:07.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 +orderer.example.com | 2018-01-18 09:29:44.012 UTC [policies] ProposePolicy -> DEBU 46b Proposed new policy Writers for Channel +peer1.org2.example.com | [5fb 01-18 09:31:27.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [b63162e5]Received GET_STATE, invoking get state from ledger +peer0.org1.example.com | [607 01-18 09:31:07.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7a767993]Inside sendExecuteMessage. Message TRANSACTION +peer0.org2.example.com | [630 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org2.example.com | [631 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 7f8dd5ad08a0d9716cc7a446d58c9d38a2bd6b8c0ab46c85eb3ce1445cd21d59 channel id: businesschannel chaincode id: name:"exp02" +peer0.org1.example.com | [608 01-18 09:31:07.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | 2018-01-18 09:29:44.013 UTC [common/config] NewStandardValues -> DEBU 46c Initializing protos for *struct {} +peer0.org2.example.com | [632 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"exp02" is escc +peer1.org2.example.com | [5fc 01-18 09:31:27.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [609 01-18 09:31:07.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org2.example.com | [633 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 7f8dd5ad08a0d9716cc7a446d58c9d38a2bd6b8c0ab46c85eb3ce1445cd21d59 channel id: businesschannel version: 1.0.2 +orderer.example.com | 2018-01-18 09:29:44.013 UTC [policies] ProposePolicy -> DEBU 46d Proposed new policy Admins for Application +peer1.org2.example.com | [5fd 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [b63162e5] getting state for chaincode lscc, key exp02, channel businesschannel +peer0.org1.example.com | [60a 01-18 09:31:07.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7a767993]sendExecuteMsg trigger event TRANSACTION +peer0.org2.example.com | [634 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=7f8dd5ad08a0d9716cc7a446d58c9d38a2bd6b8c0ab46c85eb3ce1445cd21d59,syscc=true,proposal=0xc421e124b0,canname=escc:1.0.2 +peer1.org2.example.com | [5fe 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer0.org1.example.com | [60b 01-18 09:31:07.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7a767993]Move state message TRANSACTION +peer0.org2.example.com | [635 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 +peer1.org2.example.com | [5ff 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [b63162e5]Got state. Sending RESPONSE +peer0.org1.example.com | [60c 01-18 09:31:07.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7a767993]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [60d 01-18 09:31:07.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [60e 01-18 09:31:07.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7a767993]sending state message TRANSACTION +peer0.org1.example.com | [60f 01-18 09:31:07.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7a767993]Received message TRANSACTION from shim +peer0.org1.example.com | [610 01-18 09:31:07.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7a767993]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [611 01-18 09:31:07.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [7a767993]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [612 01-18 09:31:07.15 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer0.org1.example.com | [613 01-18 09:31:07.15 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer0.org1.example.com | [614 01-18 09:31:07.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7a767993]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [615 01-18 09:31:07.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7a767993]Move state message COMPLETED +peer0.org1.example.com | [616 01-18 09:31:07.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7a767993]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [617 01-18 09:31:07.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7a767993]send state message COMPLETED +peer0.org1.example.com | [618 01-18 09:31:07.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7a767993]Received message COMPLETED from shim +peer0.org1.example.com | [619 01-18 09:31:07.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7a767993]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [61a 01-18 09:31:07.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [61b 01-18 09:31:07.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9 +peer0.org1.example.com | [61c 01-18 09:31:07.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [61d 01-18 09:31:07.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [61e 01-18 09:31:07.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org1.example.com | [61f 01-18 09:31:07.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [d931e8f9-cf3b-4b00-a40c-6667807e38c8] +peer0.org1.example.com | [620 01-18 09:31:07.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer0.org1.example.com | [621 01-18 09:31:09.25 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer0.org1.example.com | [622 01-18 09:31:09.25 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +peer0.org1.example.com | [623 01-18 09:31:09.25 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer0.org1.example.com | [624 01-18 09:31:09.25 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4222dcba0 +peer0.org1.example.com | [625 01-18 09:31:09.25 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\333\322\201\323\005\020\360\266\340\033\"\017businesschannel*@7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9:\t\022\007\022\005exp02" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030'A\264\276\244\\e\214\037\347\247\270\204\"\355\\\246\370f\331*\367Z~" +peer0.org1.example.com | [626 01-18 09:31:09.25 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [627 01-18 09:31:09.25 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | 2018-01-18 09:29:44.014 UTC [policies] ProposePolicy -> DEBU 46e Proposed new policy Writers for Application +peer1.org2.example.com | [600 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [b63162e5]handleGetState serial send RESPONSE +peer0.org2.example.com | [636 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [628 01-18 09:31:09.25 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +orderer.example.com | 2018-01-18 09:29:44.014 UTC [policies] ProposePolicy -> DEBU 46f Proposed new policy Readers for Application +peer1.org2.example.com | [601 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b63162e5]Received message RESPONSE from shim +peer0.org2.example.com | [637 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 +peer0.org1.example.com | [629 01-18 09:31:09.25 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +orderer.example.com | 2018-01-18 09:29:44.014 UTC [common/config] NewStandardValues -> DEBU 470 Initializing protos for *config.OrganizationProtos +peer1.org2.example.com | [602 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b63162e5]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer0.org2.example.com | [638 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7f8dd5ad]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [62a 01-18 09:31:09.25 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | 2018-01-18 09:29:44.014 UTC [common/config] initializeProtosStruct -> DEBU 471 Processing field: MSP +orderer.example.com | 2018-01-18 09:29:44.014 UTC [common/config] NewStandardValues -> DEBU 472 Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | 2018-01-18 09:29:44.014 UTC [common/config] initializeProtosStruct -> DEBU 473 Processing field: AnchorPeers +orderer.example.com | 2018-01-18 09:29:44.014 UTC [common/config] NewStandardValues -> DEBU 474 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:44.014 UTC [common/config] initializeProtosStruct -> DEBU 475 Processing field: MSP +orderer.example.com | 2018-01-18 09:29:44.014 UTC [policies] ProposePolicy -> DEBU 476 Proposed new policy Admins for Org1MSP +orderer.example.com | 2018-01-18 09:29:44.014 UTC [policies] ProposePolicy -> DEBU 477 Proposed new policy Readers for Org1MSP +peer1.org2.example.com | [603 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [b63162e5]before send +peer0.org2.example.com | [639 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [63a 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org2.example.com | [63b 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7f8dd5ad]sendExecuteMsg trigger event TRANSACTION +peer0.org2.example.com | [63c 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7f8dd5ad]Move state message TRANSACTION +peer0.org2.example.com | [63d 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7f8dd5ad]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [62b 01-18 09:31:09.26 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc4213dd000, header channel_header:"\010\003\032\013\010\333\322\201\323\005\020\360\266\340\033\"\017businesschannel*@7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9:\t\022\007\022\005exp02" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030'A\264\276\244\\e\214\037\347\247\270\204\"\355\\\246\370f\331*\367Z~" +peer1.org2.example.com | [604 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [b63162e5]after send +peer1.org2.example.com | [605 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [b63162e5]Received RESPONSE, communicated (state:ready) +peer1.org2.example.com | [606 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [b63162e5]GetState received payload RESPONSE +peer1.org2.example.com | [607 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b63162e5]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [62c 01-18 09:31:09.26 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer0.org2.example.com | [63e 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [608 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b63162e5]Move state message COMPLETED +orderer.example.com | 2018-01-18 09:29:44.014 UTC [policies] ProposePolicy -> DEBU 478 Proposed new policy Writers for Org1MSP +peer0.org1.example.com | [62d 01-18 09:31:09.26 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer0.org2.example.com | [63f 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7f8dd5ad]sending state message TRANSACTION +peer1.org2.example.com | [609 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b63162e5]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [60a 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b63162e5]send state message COMPLETED +peer1.org2.example.com | [60b 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b63162e5]Received message COMPLETED from shim +peer0.org1.example.com | [62e 01-18 09:31:09.26 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer0.org2.example.com | [640 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7f8dd5ad]Received message TRANSACTION from shim +orderer.example.com | 2018-01-18 09:29:44.014 UTC [common/config] NewStandardValues -> DEBU 479 Initializing protos for *config.OrganizationProtos +peer1.org2.example.com | [60c 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b63162e5]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [62f 01-18 09:31:09.26 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +peer0.org1.example.com | [630 01-18 09:31:09.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9] +peer0.org1.example.com | [631 01-18 09:31:09.26 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +peer0.org1.example.com | [632 01-18 09:31:09.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [84c242cd-9866-42a1-96c7-5b5df575d58f] +peer0.org1.example.com | [633 01-18 09:31:09.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer1.org2.example.com | [60d 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b63162e52a4261d135f1a2f8f0bbba812af89461027a14c64a5076142bc33b57]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [60e 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:b63162e52a4261d135f1a2f8f0bbba812af89461027a14c64a5076142bc33b57 +peer1.org2.example.com | [60f 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [610 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache +peer1.org2.example.com | [611 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: b63162e52a4261d135f1a2f8f0bbba812af89461027a14c64a5076142bc33b57 channel id: businesschannel version: 1.0 +peer1.org2.example.com | [612 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=exp02,version=1.0,txid=b63162e52a4261d135f1a2f8f0bbba812af89461027a14c64a5076142bc33b57,syscc=false,proposal=0xc42185aa00,canname=exp02:1.0 +orderer.example.com | 2018-01-18 09:29:44.015 UTC [common/config] initializeProtosStruct -> DEBU 47a Processing field: MSP +orderer.example.com | 2018-01-18 09:29:44.015 UTC [common/config] NewStandardValues -> DEBU 47b Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | 2018-01-18 09:29:44.015 UTC [common/config] initializeProtosStruct -> DEBU 47c Processing field: AnchorPeers +orderer.example.com | 2018-01-18 09:29:44.015 UTC [common/config] NewStandardValues -> DEBU 47d Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:44.015 UTC [common/config] initializeProtosStruct -> DEBU 47e Processing field: MSP +orderer.example.com | 2018-01-18 09:29:44.015 UTC [policies] ProposePolicy -> DEBU 47f Proposed new policy Writers for Org2MSP +orderer.example.com | 2018-01-18 09:29:44.015 UTC [policies] ProposePolicy -> DEBU 480 Proposed new policy Admins for Org2MSP +orderer.example.com | 2018-01-18 09:29:44.015 UTC [policies] ProposePolicy -> DEBU 481 Proposed new policy Readers for Org2MSP +orderer.example.com | 2018-01-18 09:29:44.015 UTC [common/config] NewStandardValues -> DEBU 482 Initializing protos for *config.OrdererProtos +orderer.example.com | 2018-01-18 09:29:44.015 UTC [common/config] initializeProtosStruct -> DEBU 483 Processing field: ConsensusType +orderer.example.com | 2018-01-18 09:29:44.015 UTC [common/config] initializeProtosStruct -> DEBU 484 Processing field: BatchSize +orderer.example.com | 2018-01-18 09:29:44.015 UTC [common/config] initializeProtosStruct -> DEBU 485 Processing field: BatchTimeout +orderer.example.com | 2018-01-18 09:29:44.015 UTC [common/config] initializeProtosStruct -> DEBU 486 Processing field: KafkaBrokers +peer0.org2.example.com | [641 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7f8dd5ad]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [634 01-18 09:31:09.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [84c242cd-9866-42a1-96c7-5b5df575d58f] +peer1.org2.example.com | [613 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : exp02:1.0 +orderer.example.com | 2018-01-18 09:29:44.015 UTC [common/config] initializeProtosStruct -> DEBU 487 Processing field: ChannelRestrictions +orderer.example.com | 2018-01-18 09:29:44.016 UTC [policies] ProposePolicy -> DEBU 488 Proposed new policy BlockValidation for Orderer +orderer.example.com | 2018-01-18 09:29:44.016 UTC [policies] ProposePolicy -> DEBU 489 Proposed new policy Readers for Orderer +orderer.example.com | 2018-01-18 09:29:44.016 UTC [policies] ProposePolicy -> DEBU 48a Proposed new policy Writers for Orderer +orderer.example.com | 2018-01-18 09:29:44.016 UTC [policies] ProposePolicy -> DEBU 48b Proposed new policy Admins for Orderer +orderer.example.com | 2018-01-18 09:29:44.016 UTC [common/config] NewStandardValues -> DEBU 48c Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:44.016 UTC [common/config] initializeProtosStruct -> DEBU 48d Processing field: MSP +orderer.example.com | 2018-01-18 09:29:44.016 UTC [policies] ProposePolicy -> DEBU 48e Proposed new policy Writers for OrdererOrg +orderer.example.com | 2018-01-18 09:29:44.016 UTC [policies] ProposePolicy -> DEBU 48f Proposed new policy Admins for OrdererOrg +orderer.example.com | 2018-01-18 09:29:44.016 UTC [policies] ProposePolicy -> DEBU 490 Proposed new policy Readers for OrdererOrg +orderer.example.com | 2018-01-18 09:29:44.016 UTC [common/config] Validate -> DEBU 491 Anchor peers for org Org1MSP are +orderer.example.com | 2018-01-18 09:29:44.016 UTC [common/config] validateMSP -> DEBU 492 Setting up MSP for org Org1MSP +orderer.example.com | 2018-01-18 09:29:44.016 UTC [msp] NewBccspMsp -> DEBU 493 Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-18 09:29:44.016 UTC [msp] Setup -> DEBU 494 Setting up MSP instance Org1MSP +orderer.example.com | 2018-01-18 09:29:44.017 UTC [msp/identity] newIdentity -> DEBU 495 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL +peer0.org1.example.com | [635 01-18 09:31:09.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org2.example.com | [614 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [642 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [7f8dd5ad]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | [636 01-18 09:31:09.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [a3e127a1-3661-43ce-a8e7-890d4d25bc3d] +peer0.org1.example.com | [637 01-18 09:31:09.27 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=a3e80752-0064-46a9-9eb3-feed5462992d,syscc=true,proposal=0x0,canname=vscc:1.0.2 +peer0.org1.example.com | [638 01-18 09:31:09.27 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9 chaindID businesschannel +peer0.org1.example.com | [639 01-18 09:31:09.27 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 +peer0.org1.example.com | [63a 01-18 09:31:09.27 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [63b 01-18 09:31:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 +peer1.org2.example.com | [615 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: exp02:1.0 +peer1.org2.example.com | [616 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b63162e5]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [617 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [618 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org2.example.com | [619 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b63162e5]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [61a 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b63162e5]Move state message TRANSACTION +peer1.org2.example.com | [61b 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b63162e5]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +orderer.example.com | BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf +orderer.example.com | db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx +orderer.example.com | JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi +peer0.org1.example.com | [63c 01-18 09:31:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a3e80752]Inside sendExecuteMessage. Message TRANSACTION +peer0.org2.example.com | [643 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer1.org2.example.com | [61c 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [61d 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b63162e5]sending state message TRANSACTION +peer1.org2.example.com | [61e 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b63162e5]Received message GET_STATE from shim +orderer.example.com | /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ +peer0.org2.example.com | [644 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer0.org1.example.com | [63d 01-18 09:31:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [63e 01-18 09:31:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a3e80752]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [63f 01-18 09:31:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a3e80752]Move state message TRANSACTION +peer0.org1.example.com | [640 01-18 09:31:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a3e80752]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [641 01-18 09:31:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [642 01-18 09:31:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a3e80752]sending state message TRANSACTION +orderer.example.com | H7n8z1pj5w== +peer1.org2.example.com | [61f 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b63162e5]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [620 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [b63162e5]Received GET_STATE, invoking get state from ledger +peer0.org1.example.com | [643 01-18 09:31:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a3e80752]Received message TRANSACTION from shim +peer0.org2.example.com | [645 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7f8dd5ad]Transaction completed. Sending COMPLETED +orderer.example.com | 2018-01-18 09:29:44.018 UTC [msp/identity] newIdentity -> DEBU 496 Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [621 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:44.018 UTC [msp/identity] newIdentity -> DEBU 497 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org1.example.com | [644 01-18 09:31:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a3e80752]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org2.example.com | [622 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [b63162e5] getting state for chaincode exp02, key a, channel businesschannel +peer0.org2.example.com | [646 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7f8dd5ad]Move state message COMPLETED +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:44.019 UTC [msp] Validate -> DEBU 498 MSP Org1MSP validating identity +orderer.example.com | 2018-01-18 09:29:44.019 UTC [common/config] Validate -> DEBU 499 Anchor peers for org Org2MSP are +orderer.example.com | 2018-01-18 09:29:44.019 UTC [common/config] validateMSP -> DEBU 49a Setting up MSP for org Org2MSP +orderer.example.com | 2018-01-18 09:29:44.019 UTC [msp] NewBccspMsp -> DEBU 49b Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-18 09:29:44.020 UTC [msp] Setup -> DEBU 49c Setting up MSP instance Org2MSP +orderer.example.com | 2018-01-18 09:29:44.020 UTC [msp/identity] newIdentity -> DEBU 49d Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +orderer.example.com | mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 +orderer.example.com | sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ +orderer.example.com | xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv +orderer.example.com | WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk +orderer.example.com | SCjyRdD3aQ== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:44.021 UTC [msp/identity] newIdentity -> DEBU 49e Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org2.example.com | [623 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=exp02, key=a +peer0.org2.example.com | [647 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7f8dd5ad]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [645 01-18 09:31:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [a3e80752]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org2.example.com | [624 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [b63162e5]Got state. Sending RESPONSE +peer1.org2.example.com | [625 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [b63162e5]handleGetState serial send RESPONSE +peer1.org2.example.com | [626 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b63162e5]Received message COMPLETED from shim +peer1.org2.example.com | [627 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b63162e5]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [628 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b63162e52a4261d135f1a2f8f0bbba812af89461027a14c64a5076142bc33b57]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [648 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7f8dd5ad]send state message COMPLETED +peer0.org2.example.com | [649 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7f8dd5ad]Received message COMPLETED from shim +peer1.org2.example.com | [629 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:b63162e52a4261d135f1a2f8f0bbba812af89461027a14c64a5076142bc33b57 +peer1.org2.example.com | [62a 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [62b 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org2.example.com | [64a 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7f8dd5ad]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [62c 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer0.org1.example.com | [646 01-18 09:31:09.28 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +peer1.org2.example.com | [62d 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [72566c99-a27d-49b0-8f35-37e06f18fe56] +peer0.org2.example.com | [64b 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7f8dd5ad08a0d9716cc7a446d58c9d38a2bd6b8c0ab46c85eb3ce1445cd21d59]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [64c 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:7f8dd5ad08a0d9716cc7a446d58c9d38a2bd6b8c0ab46c85eb3ce1445cd21d59 +peer0.org1.example.com | [647 01-18 09:31:09.28 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +peer0.org1.example.com | [648 01-18 09:31:09.28 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | [649 01-18 09:31:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a3e80752]Transaction completed. Sending COMPLETED +peer0.org2.example.com | [64d 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [62e 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org2.example.com | [64e 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +peer1.org2.example.com | [62f 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: b63162e52a4261d135f1a2f8f0bbba812af89461027a14c64a5076142bc33b57 channel id: businesschannel chaincode id: name:"exp02" +peer0.org1.example.com | [64a 01-18 09:31:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a3e80752]Move state message COMPLETED +peer0.org1.example.com | [64b 01-18 09:31:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a3e80752]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [64c 01-18 09:31:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a3e80752]send state message COMPLETED +peer0.org2.example.com | [64f 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org2.example.com | [650 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [3254ac7f-8804-49e1-88a6-1013fd06da9d] +peer0.org2.example.com | [651 01-18 09:31:28.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer1.org2.example.com | [630 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"exp02" is escc +peer0.org1.example.com | [64d 01-18 09:31:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a3e80752]Received message COMPLETED from shim +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +peer0.org2.example.com | [652 01-18 09:31:29.76 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [6], peers number [3] +peer1.org2.example.com | [631 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: b63162e52a4261d135f1a2f8f0bbba812af89461027a14c64a5076142bc33b57 channel id: businesschannel version: 1.0.2 +orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +peer0.org1.example.com | [64e 01-18 09:31:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a3e80752]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [653 01-18 09:31:29.77 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [6], peers number [3] +peer1.org2.example.com | [632 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=b63162e52a4261d135f1a2f8f0bbba812af89461027a14c64a5076142bc33b57,syscc=true,proposal=0xc42185aa00,canname=escc:1.0.2 +peer1.org2.example.com | [633 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 +peer1.org2.example.com | [634 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [635 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 +peer1.org2.example.com | [636 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b63162e5]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [637 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [638 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org2.example.com | [654 01-18 09:31:29.77 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer0.org2.example.com | [655 01-18 09:31:29.77 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +peer0.org2.example.com | [656 01-18 09:31:29.77 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer0.org2.example.com | [657 01-18 09:31:29.77 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421c975f0 +peer0.org2.example.com | [658 01-18 09:31:29.77 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\357\322\201\323\005\020\300\316\217\315\002\"\017businesschannel*@a4652cc8b4e64e8e390bc639b183d8569ae28fa2ce4307dc0a9b7eed3962aaab:\t\022\007\022\005exp02" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\030f|\376_Y\376PDS^\231\016m\377\335pI)\006]\3548\010\336" +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +peer0.org2.example.com | [659 01-18 09:31:29.77 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org2.example.com | [639 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b63162e5]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [63a 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b63162e5]Move state message TRANSACTION +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +peer0.org1.example.com | [64f 01-18 09:31:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a3e80752-0064-46a9-9eb3-feed5462992d]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [63b 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b63162e5]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org2.example.com | [63c 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [63d 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b63162e5]sending state message TRANSACTION +peer1.org2.example.com | [63e 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b63162e5]Received message TRANSACTION from shim +peer1.org2.example.com | [63f 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b63162e5]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org2.example.com | [640 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [b63162e5]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org2.example.com | [641 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer1.org2.example.com | [642 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer0.org2.example.com | [65a 01-18 09:31:29.77 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org2.example.com | [65b 01-18 09:31:29.77 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} +peer1.org2.example.com | [643 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b63162e5]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [650 01-18 09:31:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:a3e80752-0064-46a9-9eb3-feed5462992d +orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +orderer.example.com | AXYxULZpXYDQXt1KaLI= +peer0.org2.example.com | [65c 01-18 09:31:29.77 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [651 01-18 09:31:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [644 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b63162e5]Move state message COMPLETED +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [652 01-18 09:31:09.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [a3e127a1-3661-43ce-a8e7-890d4d25bc3d] +peer0.org2.example.com | [65d 01-18 09:31:29.77 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org2.example.com | [645 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b63162e5]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [653 01-18 09:31:09.28 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer0.org1.example.com | [654 01-18 09:31:09.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer1.org2.example.com | [646 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b63162e5]send state message COMPLETED +peer0.org2.example.com | [65e 01-18 09:31:29.77 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc4202a2800, header channel_header:"\010\003\032\014\010\357\322\201\323\005\020\300\316\217\315\002\"\017businesschannel*@a4652cc8b4e64e8e390bc639b183d8569ae28fa2ce4307dc0a9b7eed3962aaab:\t\022\007\022\005exp02" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\030f|\376_Y\376PDS^\231\016m\377\335pI)\006]\3548\010\336" +peer0.org1.example.com | [655 01-18 09:31:09.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc424a4fd40), Data:(*common.BlockData)(0xc421a696a0), Metadata:(*common.BlockMetadata)(0xc421a696e0)}, doMVCCValidation=true +peer0.org1.example.com | [656 01-18 09:31:09.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +peer0.org1.example.com | [657 01-18 09:31:09.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=exp02, key=a +peer0.org1.example.com | [658 01-18 09:31:09.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=exp02, key=b +peer0.org2.example.com | [65f 01-18 09:31:29.77 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +orderer.example.com | 2018-01-18 09:29:44.021 UTC [msp/identity] newIdentity -> DEBU 49f Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [647 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b63162e5]Received message COMPLETED from shim +peer0.org1.example.com | [659 01-18 09:31:09.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer0.org2.example.com | [660 01-18 09:31:29.77 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer1.org2.example.com | [648 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b63162e5]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [65a 01-18 09:31:09.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [5] Transaction index [0] TxId [7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9] marked as valid by state validator +orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +peer0.org2.example.com | [661 01-18 09:31:29.77 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer1.org2.example.com | [649 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b63162e52a4261d135f1a2f8f0bbba812af89461027a14c64a5076142bc33b57]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [65b 01-18 09:31:09.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=5, blockHash=[]byte{0x14, 0x79, 0x5b, 0xd3, 0x7, 0x12, 0xdf, 0xbb, 0x6c, 0xf, 0xfc, 0x0, 0x56, 0xb5, 0xce, 0x33, 0x6a, 0x55, 0xf7, 0xe6, 0xf, 0x23, 0x39, 0xcd, 0x2d, 0xe9, 0xe3, 0xb1, 0x3, 0x84, 0xfe, 0x7c} txOffsets= +peer0.org2.example.com | [662 01-18 09:31:29.77 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org2.example.com | [64a 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:b63162e52a4261d135f1a2f8f0bbba812af89461027a14c64a5076142bc33b57 +peer0.org1.example.com | txId=7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9 locPointer=offset=70, bytesLength=2855 +peer0.org2.example.com | [663 01-18 09:31:29.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [a4652cc8b4e64e8e390bc639b183d8569ae28fa2ce4307dc0a9b7eed3962aaab] +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org2.example.com | [664 01-18 09:31:29.77 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +peer1.org2.example.com | [64b 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [665 01-18 09:31:29.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [359cfe35-439f-40c0-adbe-9348e2048ae5] +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +peer0.org2.example.com | [666 01-18 09:31:29.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer0.org1.example.com | ] +peer1.org2.example.com | [64c 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org2.example.com | [667 01-18 09:31:29.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [359cfe35-439f-40c0-adbe-9348e2048ae5] +peer0.org2.example.com | [668 01-18 09:31:29.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org1.example.com | [65c 01-18 09:31:09.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=49958, bytesLength=2855] for tx ID: [7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9] to index +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +peer1.org2.example.com | [64d 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org2.example.com | [669 01-18 09:31:29.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [a9653af4-6823-44ac-95df-598a32b35e6c] +peer1.org2.example.com | [64e 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [72566c99-a27d-49b0-8f35-37e06f18fe56] +peer0.org2.example.com | [66a 01-18 09:31:29.77 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=808239e1-6683-4fee-b3b0-7ef7fa769d46,syscc=true,proposal=0x0,canname=vscc:1.0.2 +peer0.org1.example.com | [65d 01-18 09:31:09.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=49958, bytesLength=2855] for tx number:[0] ID: [7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9] to blockNumTranNum index +peer1.org2.example.com | [64f 01-18 09:31:27.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +peer0.org2.example.com | [66b 01-18 09:31:29.77 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid a4652cc8b4e64e8e390bc639b183d8569ae28fa2ce4307dc0a9b7eed3962aaab chaindID businesschannel +peer0.org1.example.com | [65e 01-18 09:31:09.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[54564], isChainEmpty=[false], lastBlockNumber=[5] +peer1.org2.example.com | [650 01-18 09:31:27.69 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer0.org2.example.com | [66c 01-18 09:31:29.77 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 +peer1.org2.example.com | [651 01-18 09:31:27.70 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421964480 +orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +peer0.org1.example.com | [65f 01-18 09:31:09.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [5] with 1 transaction(s) +peer0.org2.example.com | [66d 01-18 09:31:29.77 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [652 01-18 09:31:27.70 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org2.example.com | [66e 01-18 09:31:29.77 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 +peer0.org2.example.com | [66f 01-18 09:31:29.77 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [808239e1]Inside sendExecuteMessage. Message TRANSACTION +peer0.org2.example.com | [670 01-18 09:31:29.77 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [671 01-18 09:31:29.77 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [808239e1]sendExecuteMsg trigger event TRANSACTION +peer0.org2.example.com | [672 01-18 09:31:29.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [808239e1]Move state message TRANSACTION +peer0.org2.example.com | [673 01-18 09:31:29.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [808239e1]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org2.example.com | [653 01-18 09:31:27.70 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [660 01-18 09:31:09.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +peer0.org1.example.com | [661 01-18 09:31:09.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +peer0.org1.example.com | [662 01-18 09:31:09.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] +peer0.org2.example.com | [674 01-18 09:31:29.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [675 01-18 09:31:29.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [808239e1]sending state message TRANSACTION +peer1.org2.example.com | [654 01-18 09:31:27.70 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} +peer0.org1.example.com | [663 01-18 09:31:09.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +peer0.org2.example.com | [676 01-18 09:31:29.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [808239e1]Received message TRANSACTION from shim +peer1.org2.example.com | [655 01-18 09:31:27.70 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org2.example.com | [677 01-18 09:31:29.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [808239e1]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [664 01-18 09:31:09.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +peer1.org2.example.com | [656 01-18 09:31:27.70 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +peer0.org2.example.com | [678 01-18 09:31:29.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [808239e1]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org2.example.com | [657 01-18 09:31:27.70 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4222e0e60, header 0xc4219644b0 +peer0.org1.example.com | [665 01-18 09:31:09.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [5] with [1] transactions +orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +peer0.org2.example.com | [679 01-18 09:31:29.77 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer1.org2.example.com | [658 01-18 09:31:27.70 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"exp02" +orderer.example.com | AXYxULZpXYDQXt1KaLI= +peer1.org2.example.com | [659 01-18 09:31:27.70 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: a4652cc8b4e64e8e390bc639b183d8569ae28fa2ce4307dc0a9b7eed3962aaab +peer0.org1.example.com | [666 01-18 09:31:09.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [5] +peer1.org2.example.com | [65a 01-18 09:31:27.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [a4652cc8b4e64e8e390bc639b183d8569ae28fa2ce4307dc0a9b7eed3962aaab] +peer1.org2.example.com | [65b 01-18 09:31:27.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org2.example.com | [65c 01-18 09:31:27.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [2aed5c35-7c9d-467d-bccb-98a393e8b2ee] +peer1.org2.example.com | [65d 01-18 09:31:27.70 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: a4652cc8b4e64e8e390bc639b183d8569ae28fa2ce4307dc0a9b7eed3962aaab channel id: businesschannel +peer1.org2.example.com | [65e 01-18 09:31:27.70 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=a4652cc8b4e64e8e390bc639b183d8569ae28fa2ce4307dc0a9b7eed3962aaab,syscc=true,proposal=0xc4222e0e60,canname=lscc:1.0.2 +peer1.org2.example.com | [65f 01-18 09:31:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 +peer1.org2.example.com | [660 01-18 09:31:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [661 01-18 09:31:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +peer1.org2.example.com | [662 01-18 09:31:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a4652cc8]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [663 01-18 09:31:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [664 01-18 09:31:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org2.example.com | [665 01-18 09:31:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a4652cc8]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [666 01-18 09:31:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a4652cc8]Move state message TRANSACTION +peer1.org2.example.com | [667 01-18 09:31:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a4652cc8]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org2.example.com | [67a 01-18 09:31:29.77 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +peer0.org1.example.com | [667 01-18 09:31:09.29 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [668 01-18 09:31:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [67b 01-18 09:31:29.77 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +peer0.org1.example.com | [668 01-18 09:31:09.29 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [5] contains transaction id: 7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9 +peer1.org2.example.com | [669 01-18 09:31:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a4652cc8]sending state message TRANSACTION +peer0.org2.example.com | [67c 01-18 09:31:29.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [808239e1]Transaction completed. Sending COMPLETED +orderer.example.com | 2018-01-18 09:29:44.022 UTC [msp] Validate -> DEBU 4a0 MSP Org2MSP validating identity +peer1.org2.example.com | [66a 01-18 09:31:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a4652cc8]Received message TRANSACTION from shim +peer0.org1.example.com | [669 01-18 09:31:09.30 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [5] +peer0.org2.example.com | [67d 01-18 09:31:29.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [808239e1]Move state message COMPLETED +peer1.org2.example.com | [66b 01-18 09:31:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a4652cc8]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [66a 01-18 09:31:09.30 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +peer0.org2.example.com | [67e 01-18 09:31:29.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [808239e1]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [67f 01-18 09:31:29.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [808239e1]send state message COMPLETED +peer1.org2.example.com | [66c 01-18 09:31:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [a4652cc8]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | 2018-01-18 09:29:44.023 UTC [common/config] validateMSP -> DEBU 4a1 Setting up MSP for org OrdererOrg +orderer.example.com | 2018-01-18 09:29:44.023 UTC [msp] NewBccspMsp -> DEBU 4a2 Creating BCCSP-based MSP instance +peer0.org1.example.com | [66b 01-18 09:31:09.30 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer0.org2.example.com | [680 01-18 09:31:29.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [808239e1]Received message COMPLETED from shim +peer1.org2.example.com | [66d 01-18 09:31:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [a4652cc8]Sending GET_STATE +orderer.example.com | 2018-01-18 09:29:44.023 UTC [msp] Setup -> DEBU 4a3 Setting up MSP instance OrdererMSP +peer0.org1.example.com | [66c 01-18 09:31:09.30 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer0.org2.example.com | [681 01-18 09:31:29.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [808239e1]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [682 01-18 09:31:29.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [808239e1-6683-4fee-b3b0-7ef7fa769d46]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [66e 01-18 09:31:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a4652cc8]Received message GET_STATE from shim +peer0.org1.example.com | [66d 01-18 09:31:09.30 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +peer0.org2.example.com | [683 01-18 09:31:29.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:808239e1-6683-4fee-b3b0-7ef7fa769d46 +orderer.example.com | 2018-01-18 09:29:44.023 UTC [msp/identity] newIdentity -> DEBU 4a4 Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [66f 01-18 09:31:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a4652cc8]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer0.org1.example.com | [66e 01-18 09:31:09.30 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +peer0.org2.example.com | [684 01-18 09:31:29.78 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL +peer0.org1.example.com | [66f 01-18 09:31:27.85 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer1.org2.example.com | [670 01-18 09:31:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [a4652cc8]Received GET_STATE, invoking get state from ledger +peer0.org2.example.com | [685 01-18 09:31:29.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [a9653af4-6823-44ac-95df-598a32b35e6c] +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org2.example.com | [686 01-18 09:31:29.78 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer0.org1.example.com | [670 01-18 09:31:27.85 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421e98bd0 +peer1.org2.example.com | [671 01-18 09:31:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +peer0.org2.example.com | [687 01-18 09:31:29.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +orderer.example.com | cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +peer0.org2.example.com | [688 01-18 09:31:29.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc421784c80), Data:(*common.BlockData)(0xc421ee97e0), Metadata:(*common.BlockMetadata)(0xc421ee9820)}, doMVCCValidation=true +peer0.org2.example.com | [689 01-18 09:31:29.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +peer0.org1.example.com | [671 01-18 09:31:27.85 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org2.example.com | [672 01-18 09:31:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [a4652cc8] getting state for chaincode lscc, key exp02, channel businesschannel +peer0.org2.example.com | [68a 01-18 09:31:29.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=exp02, key=a +peer0.org1.example.com | [672 01-18 09:31:27.85 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org2.example.com | [673 01-18 09:31:27.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer1.org2.example.com | [674 01-18 09:31:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [a4652cc8]Got state. Sending RESPONSE +peer0.org2.example.com | [68b 01-18 09:31:29.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=exp02, key=b +peer0.org1.example.com | [673 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +peer0.org1.example.com | [674 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +peer0.org2.example.com | [68c 01-18 09:31:29.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer1.org2.example.com | [675 01-18 09:31:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [a4652cc8]handleGetState serial send RESPONSE +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW +peer0.org1.example.com | [675 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org2.example.com | [676 01-18 09:31:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a4652cc8]Received message RESPONSE from shim +peer1.org2.example.com | [677 01-18 09:31:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a4652cc8]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer1.org2.example.com | [678 01-18 09:31:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [a4652cc8]before send +peer1.org2.example.com | [679 01-18 09:31:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [a4652cc8]after send +peer0.org1.example.com | [676 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421e33220, header 0xc421e98c00 +peer0.org2.example.com | [68d 01-18 09:31:29.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [6] Transaction index [0] TxId [a4652cc8b4e64e8e390bc639b183d8569ae28fa2ce4307dc0a9b7eed3962aaab] marked as valid by state validator +orderer.example.com | gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w +peer1.org2.example.com | [67a 01-18 09:31:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [a4652cc8]Received RESPONSE, communicated (state:ready) +peer1.org2.example.com | [67b 01-18 09:31:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [a4652cc8]GetState received payload RESPONSE +peer1.org2.example.com | [67c 01-18 09:31:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a4652cc8]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [677 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"exp02" +peer0.org1.example.com | [678 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 55af24c9589ac61318690af743a261c231a30209e0555aefa9c29976bd030e5b +peer0.org1.example.com | [679 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [55af24c9589ac61318690af743a261c231a30209e0555aefa9c29976bd030e5b] +peer0.org1.example.com | [67a 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org1.example.com | [67b 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [edeba64d-45a5-4d7e-89a7-72e863f5fa1a] +peer0.org1.example.com | [67c 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 55af24c9589ac61318690af743a261c231a30209e0555aefa9c29976bd030e5b channel id: businesschannel +peer0.org1.example.com | [67d 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=55af24c9589ac61318690af743a261c231a30209e0555aefa9c29976bd030e5b,syscc=true,proposal=0xc421e33220,canname=lscc:1.0.2 +peer0.org1.example.com | [67e 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 +peer0.org1.example.com | [67f 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [680 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +peer0.org1.example.com | [681 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [55af24c9]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [682 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [683 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [684 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [55af24c9]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [685 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [55af24c9]Move state message TRANSACTION +peer0.org1.example.com | [686 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [55af24c9]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [687 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [688 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [55af24c9]sending state message TRANSACTION +peer0.org1.example.com | [689 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55af24c9]Received message TRANSACTION from shim +peer0.org2.example.com | [68e 01-18 09:31:29.79 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0x6d, 0x6b, 0x82, 0xbc, 0xa, 0x4, 0xe3, 0xad, 0xfa, 0xe, 0x85, 0xa6, 0xa0, 0xe8, 0x87, 0xbf, 0x19, 0xf1, 0xbf, 0xd3, 0x9d, 0x68, 0xf3, 0x0, 0xe5, 0x64, 0xa4, 0xd6, 0x4c, 0x4e, 0x9f, 0x3d} txOffsets= +peer0.org1.example.com | [68a 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [55af24c9]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [68b 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [55af24c9]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [68c 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [55af24c9]Sending GET_STATE +peer0.org2.example.com | txId=a4652cc8b4e64e8e390bc639b183d8569ae28fa2ce4307dc0a9b7eed3962aaab locPointer=offset=70, bytesLength=2855 +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +peer1.org2.example.com | [67d 01-18 09:31:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a4652cc8]Move state message COMPLETED +peer0.org1.example.com | [68d 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [55af24c9]Received message GET_STATE from shim +peer0.org2.example.com | ] +peer0.org1.example.com | [68e 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [55af24c9]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer1.org2.example.com | [67e 01-18 09:31:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a4652cc8]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [68f 01-18 09:31:29.79 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=54634, bytesLength=2855] for tx ID: [a4652cc8b4e64e8e390bc639b183d8569ae28fa2ce4307dc0a9b7eed3962aaab] to index +peer0.org1.example.com | [68f 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [55af24c9]Received GET_STATE, invoking get state from ledger +peer0.org1.example.com | [690 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [690 01-18 09:31:29.79 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=54634, bytesLength=2855] for tx number:[0] ID: [a4652cc8b4e64e8e390bc639b183d8569ae28fa2ce4307dc0a9b7eed3962aaab] to blockNumTranNum index +peer0.org2.example.com | [691 01-18 09:31:29.79 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[59239], isChainEmpty=[false], lastBlockNumber=[6] +orderer.example.com | AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK +peer0.org1.example.com | [691 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [55af24c9] getting state for chaincode lscc, key exp02, channel businesschannel +peer1.org2.example.com | [67f 01-18 09:31:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a4652cc8]send state message COMPLETED +peer0.org1.example.com | [692 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer0.org1.example.com | [693 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [55af24c9]Got state. Sending RESPONSE +peer0.org2.example.com | [692 01-18 09:31:29.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [6] with 1 transaction(s) +peer1.org2.example.com | [680 01-18 09:31:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a4652cc8]Received message COMPLETED from shim +orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs +peer0.org1.example.com | [694 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [55af24c9]handleGetState serial send RESPONSE +peer0.org1.example.com | [695 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55af24c9]Received message RESPONSE from shim +peer1.org2.example.com | [681 01-18 09:31:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a4652cc8]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [696 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [55af24c9]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer0.org2.example.com | [693 01-18 09:31:29.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +peer0.org1.example.com | [697 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [55af24c9]before send +orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= +peer0.org1.example.com | [698 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [55af24c9]after send +peer1.org2.example.com | [682 01-18 09:31:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a4652cc8b4e64e8e390bc639b183d8569ae28fa2ce4307dc0a9b7eed3962aaab]HandleMessage- COMPLETED. Notify +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [699 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [55af24c9]Received RESPONSE, communicated (state:ready) +peer0.org2.example.com | [694 01-18 09:31:29.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +peer1.org2.example.com | [683 01-18 09:31:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:a4652cc8b4e64e8e390bc639b183d8569ae28fa2ce4307dc0a9b7eed3962aaab +peer0.org1.example.com | [69a 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [55af24c9]GetState received payload RESPONSE +peer0.org2.example.com | [695 01-18 09:31:29.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] +peer0.org1.example.com | [69b 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55af24c9]Transaction completed. Sending COMPLETED +orderer.example.com | 2018-01-18 09:29:44.023 UTC [msp/identity] newIdentity -> DEBU 4a5 Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [69c 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55af24c9]Move state message COMPLETED +peer1.org2.example.com | [684 01-18 09:31:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [696 01-18 09:31:29.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] +peer0.org1.example.com | [69d 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [55af24c9]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +peer0.org1.example.com | [69e 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55af24c9]send state message COMPLETED +peer0.org2.example.com | [697 01-18 09:31:29.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +peer1.org2.example.com | [685 01-18 09:31:27.71 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org1.example.com | [69f 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [55af24c9]Received message COMPLETED from shim +peer0.org2.example.com | [698 01-18 09:31:29.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [6] with [1] transactions +peer0.org1.example.com | [6a0 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [55af24c9]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer0.org1.example.com | [6a1 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [55af24c9589ac61318690af743a261c231a30209e0555aefa9c29976bd030e5b]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [699 01-18 09:31:29.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [6] +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +peer1.org2.example.com | [686 01-18 09:31:27.71 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: a4652cc8b4e64e8e390bc639b183d8569ae28fa2ce4307dc0a9b7eed3962aaab channel id: businesschannel version: 1.0 +peer0.org1.example.com | [6a2 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:55af24c9589ac61318690af743a261c231a30209e0555aefa9c29976bd030e5b +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer0.org1.example.com | [6a3 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [69a 01-18 09:31:29.79 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +peer0.org2.example.com | [69b 01-18 09:31:29.79 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [6] contains transaction id: a4652cc8b4e64e8e390bc639b183d8569ae28fa2ce4307dc0a9b7eed3962aaab +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer1.org2.example.com | [687 01-18 09:31:27.71 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=exp02,version=1.0,txid=a4652cc8b4e64e8e390bc639b183d8569ae28fa2ce4307dc0a9b7eed3962aaab,syscc=false,proposal=0xc4222e0e60,canname=exp02:1.0 +peer0.org1.example.com | [6a4 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache +peer0.org2.example.com | [69c 01-18 09:31:29.79 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [6] +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +peer1.org2.example.com | [688 01-18 09:31:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : exp02:1.0 +peer0.org1.example.com | [6a5 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 55af24c9589ac61318690af743a261c231a30209e0555aefa9c29976bd030e5b channel id: businesschannel version: 1.0 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +peer0.org2.example.com | [69d 01-18 09:31:29.79 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +peer1.org2.example.com | [689 01-18 09:31:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [6a6 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=exp02,version=1.0,txid=55af24c9589ac61318690af743a261c231a30209e0555aefa9c29976bd030e5b,syscc=false,proposal=0xc421e33220,canname=exp02:1.0 +peer0.org2.example.com | [69e 01-18 09:31:29.79 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [6a7 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : exp02:1.0 +peer0.org2.example.com | [69f 01-18 09:31:29.79 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +orderer.example.com | 2018-01-18 09:29:44.024 UTC [msp/identity] newIdentity -> DEBU 4a6 Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [6a8 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [68a 01-18 09:31:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: exp02:1.0 +peer0.org2.example.com | [6a0 01-18 09:31:29.79 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +peer0.org1.example.com | [6a9 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: exp02:1.0 +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org2.example.com | [6a1 01-18 09:31:29.79 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +peer0.org1.example.com | [6aa 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [55af24c9]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [68b 01-18 09:31:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a4652cc8]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer1.org2.example.com | [68c 01-18 09:31:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +peer0.org1.example.com | [6ab 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer1.org2.example.com | [68d 01-18 09:31:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [6ac 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +peer1.org2.example.com | [68e 01-18 09:31:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a4652cc8]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [6ad 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [55af24c9]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [6ae 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [55af24c9]Move state message TRANSACTION +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +peer0.org1.example.com | [6af 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [55af24c9]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer0.org1.example.com | [6b0 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [68f 01-18 09:31:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a4652cc8]Move state message TRANSACTION +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +peer0.org1.example.com | [6b1 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [55af24c9]sending state message TRANSACTION +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +peer1.org2.example.com | [690 01-18 09:31:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a4652cc8]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [6b2 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [55af24c9]Received message GET_STATE from shim +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [6b3 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [55af24c9]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer1.org2.example.com | [691 01-18 09:31:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | 2018-01-18 09:29:44.025 UTC [msp] Validate -> DEBU 4a7 MSP OrdererMSP validating identity +peer1.org2.example.com | [692 01-18 09:31:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a4652cc8]sending state message TRANSACTION +peer0.org1.example.com | [6b4 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [55af24c9]Received GET_STATE, invoking get state from ledger +orderer.example.com | 2018-01-18 09:29:44.025 UTC [msp] Setup -> DEBU 4a8 Setting up the MSP manager (3 msps) +peer1.org2.example.com | [693 01-18 09:31:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a4652cc8]Received message GET_STATE from shim +orderer.example.com | 2018-01-18 09:29:44.025 UTC [msp] Setup -> DEBU 4a9 MSP manager setup complete, setup 3 msps +peer0.org1.example.com | [6b5 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [694 01-18 09:31:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a4652cc8]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +orderer.example.com | 2018-01-18 09:29:44.025 UTC [policies] GetPolicy -> DEBU 4aa Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:44.025 UTC [policies] CommitProposals -> DEBU 4ab In commit adding relative sub-policy Org1MSP/Admins to Application +peer0.org1.example.com | [6b6 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [55af24c9] getting state for chaincode exp02, key a, channel businesschannel +peer0.org1.example.com | [6b7 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=exp02, key=a +peer1.org2.example.com | [695 01-18 09:31:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [a4652cc8]Received GET_STATE, invoking get state from ledger +peer0.org1.example.com | [6b8 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [55af24c9]Got state. Sending RESPONSE +orderer.example.com | 2018-01-18 09:29:44.025 UTC [policies] GetPolicy -> DEBU 4ac Returning policy Readers for evaluation +peer0.org1.example.com | [6b9 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [55af24c9]handleGetState serial send RESPONSE +peer0.org1.example.com | [6ba 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [55af24c9]Received message COMPLETED from shim +orderer.example.com | 2018-01-18 09:29:44.025 UTC [policies] CommitProposals -> DEBU 4ad In commit adding relative sub-policy Org1MSP/Readers to Application +peer1.org2.example.com | [696 01-18 09:31:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [6bb 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [55af24c9]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | 2018-01-18 09:29:44.025 UTC [policies] GetPolicy -> DEBU 4ae Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:44.025 UTC [policies] CommitProposals -> DEBU 4af In commit adding relative sub-policy Org1MSP/Writers to Application +orderer.example.com | 2018-01-18 09:29:44.025 UTC [policies] GetPolicy -> DEBU 4b0 Returning policy Writers for evaluation +peer0.org1.example.com | [6bc 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [55af24c9589ac61318690af743a261c231a30209e0555aefa9c29976bd030e5b]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [697 01-18 09:31:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [a4652cc8] getting state for chaincode exp02, key a, channel businesschannel +peer0.org1.example.com | [6bd 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:55af24c9589ac61318690af743a261c231a30209e0555aefa9c29976bd030e5b +orderer.example.com | 2018-01-18 09:29:44.025 UTC [policies] CommitProposals -> DEBU 4b1 In commit adding relative sub-policy Org2MSP/Writers to Application +peer0.org1.example.com | [6be 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | 2018-01-18 09:29:44.025 UTC [policies] GetPolicy -> DEBU 4b2 Returning policy Admins for evaluation +peer0.org1.example.com | [6bf 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +orderer.example.com | 2018-01-18 09:29:44.025 UTC [policies] CommitProposals -> DEBU 4b3 In commit adding relative sub-policy Org2MSP/Admins to Application +peer1.org2.example.com | [698 01-18 09:31:27.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=exp02, key=a +peer0.org1.example.com | [6c0 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +orderer.example.com | 2018-01-18 09:29:44.025 UTC [policies] GetPolicy -> DEBU 4b4 Returning policy Readers for evaluation +peer0.org1.example.com | [6c1 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [edeba64d-45a5-4d7e-89a7-72e863f5fa1a] +peer1.org2.example.com | [699 01-18 09:31:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [a4652cc8]Got state. Sending RESPONSE +orderer.example.com | 2018-01-18 09:29:44.025 UTC [policies] CommitProposals -> DEBU 4b5 In commit adding relative sub-policy Org2MSP/Readers to Application +peer0.org1.example.com | [6c2 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +orderer.example.com | 2018-01-18 09:29:44.025 UTC [policies] GetPolicy -> DEBU 4b6 Returning policy Admins for evaluation +peer0.org1.example.com | [6c3 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 55af24c9589ac61318690af743a261c231a30209e0555aefa9c29976bd030e5b channel id: businesschannel chaincode id: name:"exp02" +peer0.org1.example.com | [6c4 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"exp02" is escc +orderer.example.com | 2018-01-18 09:29:44.025 UTC [policies] GetPolicy -> DEBU 4b7 Returning policy Admins for evaluation +peer0.org1.example.com | [6c5 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 55af24c9589ac61318690af743a261c231a30209e0555aefa9c29976bd030e5b channel id: businesschannel version: 1.0.2 +orderer.example.com | 2018-01-18 09:29:44.025 UTC [policies] GetPolicy -> DEBU 4b8 Returning policy Writers for evaluation +peer0.org1.example.com | [6c6 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=55af24c9589ac61318690af743a261c231a30209e0555aefa9c29976bd030e5b,syscc=true,proposal=0xc421e33220,canname=escc:1.0.2 +peer0.org1.example.com | [6c7 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 +peer0.org1.example.com | [6c8 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [6c9 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 +peer0.org1.example.com | [6ca 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [55af24c9]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [6cb 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | 2018-01-18 09:29:44.025 UTC [policies] GetPolicy -> DEBU 4b9 Returning policy Writers for evaluation +peer1.org2.example.com | [69a 01-18 09:31:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [a4652cc8]handleGetState serial send RESPONSE +orderer.example.com | 2018-01-18 09:29:44.026 UTC [policies] GetPolicy -> DEBU 4ba Returning policy Readers for evaluation +peer1.org2.example.com | [69b 01-18 09:31:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a4652cc8]Received message GET_STATE from shim +peer0.org1.example.com | [6cc 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | 2018-01-18 09:29:44.026 UTC [policies] GetPolicy -> DEBU 4bb Returning policy Readers for evaluation +peer0.org1.example.com | [6cd 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [55af24c9]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | 2018-01-18 09:29:44.026 UTC [policies] GetPolicy -> DEBU 4bc Returning policy Admins for evaluation +peer1.org2.example.com | [69c 01-18 09:31:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a4652cc8]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer0.org1.example.com | [6ce 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [55af24c9]Move state message TRANSACTION +orderer.example.com | 2018-01-18 09:29:44.026 UTC [policies] CommitProposals -> DEBU 4bd In commit adding relative sub-policy OrdererOrg/Admins to Orderer +orderer.example.com | 2018-01-18 09:29:44.026 UTC [policies] GetPolicy -> DEBU 4be Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:44.026 UTC [policies] CommitProposals -> DEBU 4bf In commit adding relative sub-policy OrdererOrg/Readers to Orderer +peer0.org1.example.com | [6cf 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [55af24c9]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [6d0 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [6d1 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [55af24c9]sending state message TRANSACTION +orderer.example.com | 2018-01-18 09:29:44.026 UTC [policies] GetPolicy -> DEBU 4c0 Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:44.026 UTC [policies] CommitProposals -> DEBU 4c1 In commit adding relative sub-policy OrdererOrg/Writers to Orderer +peer0.org1.example.com | [6d2 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55af24c9]Received message TRANSACTION from shim +orderer.example.com | 2018-01-18 09:29:44.026 UTC [policies] GetPolicy -> DEBU 4c2 Returning policy Writers for evaluation +peer0.org1.example.com | [6d3 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [55af24c9]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [6d4 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [55af24c9]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | 2018-01-18 09:29:44.026 UTC [policies] GetPolicy -> DEBU 4c3 Returning policy Readers for evaluation +peer1.org2.example.com | [69d 01-18 09:31:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [a4652cc8]Received GET_STATE, invoking get state from ledger +peer0.org1.example.com | [6d5 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer0.org1.example.com | [6d6 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer0.org1.example.com | [6d7 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55af24c9]Transaction completed. Sending COMPLETED +orderer.example.com | 2018-01-18 09:29:44.026 UTC [policies] GetPolicy -> DEBU 4c4 Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:44.026 UTC [policies] GetPolicy -> DEBU 4c5 Returning policy Admins for evaluation +peer0.org1.example.com | [6d8 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55af24c9]Move state message COMPLETED +orderer.example.com | 2018-01-18 09:29:44.026 UTC [policies] GetPolicy -> DEBU 4c6 Returning policy OrdererOrg/Readers for evaluation +orderer.example.com | 2018-01-18 09:29:44.026 UTC [policies] CommitProposals -> DEBU 4c7 In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +peer0.org1.example.com | [6d9 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [55af24c9]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [69e 01-18 09:31:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | 2018-01-18 09:29:44.026 UTC [policies] GetPolicy -> DEBU 4c8 Returning policy OrdererOrg/Writers for evaluation +orderer.example.com | 2018-01-18 09:29:44.026 UTC [policies] CommitProposals -> DEBU 4c9 In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +peer0.org1.example.com | [6da 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55af24c9]send state message COMPLETED +orderer.example.com | 2018-01-18 09:29:44.026 UTC [policies] GetPolicy -> DEBU 4ca Returning policy BlockValidation for evaluation +peer0.org1.example.com | [6db 01-18 09:31:27.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [55af24c9]Received message COMPLETED from shim +peer0.org1.example.com | [6dc 01-18 09:31:27.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [55af24c9]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | 2018-01-18 09:29:44.026 UTC [policies] CommitProposals -> DEBU 4cb In commit adding relative sub-policy Orderer/BlockValidation to Channel +orderer.example.com | 2018-01-18 09:29:44.026 UTC [policies] GetPolicy -> DEBU 4cc Returning policy Readers for evaluation +peer0.org1.example.com | [6dd 01-18 09:31:27.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [55af24c9589ac61318690af743a261c231a30209e0555aefa9c29976bd030e5b]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [6de 01-18 09:31:27.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:55af24c9589ac61318690af743a261c231a30209e0555aefa9c29976bd030e5b +peer0.org1.example.com | [6df 01-18 09:31:27.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | 2018-01-18 09:29:44.026 UTC [policies] CommitProposals -> DEBU 4cd In commit adding relative sub-policy Orderer/Readers to Channel +peer1.org2.example.com | [69f 01-18 09:31:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [a4652cc8] getting state for chaincode exp02, key b, channel businesschannel +peer0.org1.example.com | [6e0 01-18 09:31:27.87 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +orderer.example.com | 2018-01-18 09:29:44.026 UTC [policies] GetPolicy -> DEBU 4ce Returning policy Writers for evaluation +peer0.org1.example.com | [6e1 01-18 09:31:27.87 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +peer1.org2.example.com | [6a0 01-18 09:31:27.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=exp02, key=b +orderer.example.com | 2018-01-18 09:29:44.026 UTC [policies] CommitProposals -> DEBU 4cf In commit adding relative sub-policy Orderer/Writers to Channel +peer0.org1.example.com | [6e2 01-18 09:31:27.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [edeba64d-45a5-4d7e-89a7-72e863f5fa1a] +peer0.org1.example.com | [6e3 01-18 09:31:27.87 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +orderer.example.com | 2018-01-18 09:29:44.026 UTC [policies] GetPolicy -> DEBU 4d0 Returning policy Admins for evaluation +peer1.org2.example.com | [6a1 01-18 09:31:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [a4652cc8]Got state. Sending RESPONSE +peer0.org1.example.com | [6e4 01-18 09:31:28.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer0.org1.example.com | [6e5 01-18 09:31:28.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421efa450 +peer0.org1.example.com | [6e6 01-18 09:31:28.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [6e7 01-18 09:31:28.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org2.example.com | [6a2 01-18 09:31:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [a4652cc8]handleGetState serial send RESPONSE +peer0.org1.example.com | [6e8 01-18 09:31:28.33 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +orderer.example.com | 2018-01-18 09:29:44.027 UTC [policies] CommitProposals -> DEBU 4d1 In commit adding relative sub-policy Orderer/Admins to Channel +peer0.org1.example.com | [6e9 01-18 09:31:28.33 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org2.example.com | [6a3 01-18 09:31:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a4652cc8]Received message PUT_STATE from shim +peer0.org1.example.com | [6ea 01-18 09:31:28.33 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | 2018-01-18 09:29:44.027 UTC [policies] GetPolicy -> DEBU 4d2 Returning policy OrdererOrg/Admins for evaluation +peer1.org2.example.com | [6a4 01-18 09:31:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a4652cc8]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +orderer.example.com | 2018-01-18 09:29:44.027 UTC [policies] CommitProposals -> DEBU 4d3 In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +peer0.org1.example.com | [6eb 01-18 09:31:28.33 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42254be50, header 0xc421efa480 +peer1.org2.example.com | [6a5 01-18 09:31:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | 2018-01-18 09:29:44.027 UTC [policies] GetPolicy -> DEBU 4d4 Returning policy Readers for evaluation +peer0.org1.example.com | [6ec 01-18 09:31:28.33 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +peer1.org2.example.com | [6a6 01-18 09:31:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [a4652cc8]state is ready +peer0.org1.example.com | [6ed 01-18 09:31:28.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: d8c3af4179949e3acff507fa82d95340dde03a63abaa77be131e271c513fe48b +orderer.example.com | 2018-01-18 09:29:44.027 UTC [policies] CommitProposals -> DEBU 4d5 In commit adding relative sub-policy Application/Readers to Channel +peer1.org2.example.com | [6a7 01-18 09:31:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [a4652cc8]Completed PUT_STATE. Sending RESPONSE +peer0.org1.example.com | [6ee 01-18 09:31:28.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [d8c3af4179949e3acff507fa82d95340dde03a63abaa77be131e271c513fe48b] +orderer.example.com | 2018-01-18 09:29:44.027 UTC [policies] GetPolicy -> DEBU 4d6 Returning policy Org1MSP/Readers for evaluation +orderer.example.com | 2018-01-18 09:29:44.027 UTC [policies] CommitProposals -> DEBU 4d7 In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +peer1.org2.example.com | [6a8 01-18 09:31:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [a4652cc8]enterBusyState trigger event RESPONSE +orderer.example.com | 2018-01-18 09:29:44.027 UTC [policies] GetPolicy -> DEBU 4d8 Returning policy Org2MSP/Readers for evaluation +peer1.org2.example.com | [6a9 01-18 09:31:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a4652cc8]Move state message RESPONSE +peer0.org1.example.com | [6ef 01-18 09:31:28.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org1.example.com | [6f0 01-18 09:31:28.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [1e8cdfe2-7733-4ae6-b7af-acaca64211d0] +peer0.org1.example.com | [6f1 01-18 09:31:28.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: d8c3af4179949e3acff507fa82d95340dde03a63abaa77be131e271c513fe48b channel id: businesschannel +orderer.example.com | 2018-01-18 09:29:44.027 UTC [policies] CommitProposals -> DEBU 4d9 In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +peer0.org1.example.com | [6f2 01-18 09:31:28.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: d8c3af4179949e3acff507fa82d95340dde03a63abaa77be131e271c513fe48b channel id: businesschannel version: 1.0.2 +orderer.example.com | 2018-01-18 09:29:44.027 UTC [policies] GetPolicy -> DEBU 4da Returning policy Writers for evaluation +peer0.org1.example.com | [6f3 01-18 09:31:28.33 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=d8c3af4179949e3acff507fa82d95340dde03a63abaa77be131e271c513fe48b,syscc=true,proposal=0xc42254be50,canname=lscc:1.0.2 +orderer.example.com | 2018-01-18 09:29:44.027 UTC [policies] CommitProposals -> DEBU 4db In commit adding relative sub-policy Application/Writers to Channel +orderer.example.com | 2018-01-18 09:29:44.027 UTC [policies] GetPolicy -> DEBU 4dc Returning policy Org1MSP/Admins for evaluation +peer0.org1.example.com | [6f4 01-18 09:31:28.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 +peer1.org2.example.com | [6aa 01-18 09:31:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a4652cc8]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +orderer.example.com | 2018-01-18 09:29:44.027 UTC [policies] CommitProposals -> DEBU 4dd In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +peer0.org1.example.com | [6f5 01-18 09:31:28.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | 2018-01-18 09:29:44.027 UTC [policies] GetPolicy -> DEBU 4de Returning policy Org1MSP/Writers for evaluation +peer0.org1.example.com | [6f6 01-18 09:31:28.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +orderer.example.com | 2018-01-18 09:29:44.027 UTC [policies] CommitProposals -> DEBU 4df In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +peer0.org1.example.com | [6f7 01-18 09:31:28.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d8c3af41]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | 2018-01-18 09:29:44.027 UTC [policies] GetPolicy -> DEBU 4e0 Returning policy Org2MSP/Writers for evaluation +peer1.org2.example.com | [6ab 01-18 09:31:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | 2018-01-18 09:29:44.027 UTC [policies] CommitProposals -> DEBU 4e1 In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +orderer.example.com | 2018-01-18 09:29:44.027 UTC [policies] GetPolicy -> DEBU 4e2 Returning policy Org2MSP/Admins for evaluation +peer0.org1.example.com | [6f8 01-18 09:31:28.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | 2018-01-18 09:29:44.027 UTC [policies] CommitProposals -> DEBU 4e3 In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +peer0.org1.example.com | [6f9 01-18 09:31:28.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org2.example.com | [6ac 01-18 09:31:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a4652cc8]sending state message RESPONSE +orderer.example.com | 2018-01-18 09:29:44.027 UTC [policies] GetPolicy -> DEBU 4e4 Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:44.027 UTC [policies] CommitProposals -> DEBU 4e5 In commit adding relative sub-policy Application/Admins to Channel +peer0.org1.example.com | [6fa 01-18 09:31:28.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d8c3af41]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [6fb 01-18 09:31:28.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d8c3af41]Move state message TRANSACTION +orderer.example.com | 2018-01-18 09:29:44.027 UTC [policies] GetPolicy -> DEBU 4e6 Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:44.027 UTC [policies] GetPolicy -> DEBU 4e7 Returning policy Admins for evaluation +peer0.org1.example.com | [6fc 01-18 09:31:28.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d8c3af41]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org2.example.com | [6ad 01-18 09:31:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a4652cc8]Received message PUT_STATE from shim +orderer.example.com | 2018-01-18 09:29:44.027 UTC [policies] GetPolicy -> DEBU 4e8 Returning policy Readers for evaluation +peer1.org2.example.com | [6ae 01-18 09:31:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a4652cc8]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +peer0.org1.example.com | [6fd 01-18 09:31:28.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | 2018-01-18 09:29:44.027 UTC [policies] GetPolicy -> DEBU 4e9 Returning policy Readers for evaluation +peer1.org2.example.com | [6af 01-18 09:31:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | 2018-01-18 09:29:44.027 UTC [policies] GetPolicy -> DEBU 4ea Returning policy Writers for evaluation +peer1.org2.example.com | [6b0 01-18 09:31:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [a4652cc8]state is ready +peer0.org1.example.com | [6fe 01-18 09:31:28.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d8c3af41]sending state message TRANSACTION +orderer.example.com | 2018-01-18 09:29:44.027 UTC [policies] GetPolicy -> DEBU 4eb Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:44.027 UTC [policies] GetPolicy -> DEBU 4ec Returning policy Readers for evaluation +peer1.org2.example.com | [6b1 01-18 09:31:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [a4652cc8]Completed PUT_STATE. Sending RESPONSE +peer1.org2.example.com | [6b2 01-18 09:31:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [a4652cc8]enterBusyState trigger event RESPONSE +peer0.org1.example.com | [6ff 01-18 09:31:28.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d8c3af41]Received message TRANSACTION from shim +orderer.example.com | 2018-01-18 09:29:44.028 UTC [policies] CommitProposals -> DEBU 4ed As expected, current configuration has policy '/Channel/Readers' +orderer.example.com | 2018-01-18 09:29:44.028 UTC [policies] GetPolicy -> DEBU 4ee Returning policy Writers for evaluation +peer1.org2.example.com | [6b3 01-18 09:31:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a4652cc8]Move state message RESPONSE +peer0.org1.example.com | [700 01-18 09:31:28.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d8c3af41]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | 2018-01-18 09:29:44.028 UTC [policies] CommitProposals -> DEBU 4ef As expected, current configuration has policy '/Channel/Writers' +peer0.org1.example.com | [701 01-18 09:31:28.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [d8c3af41]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | 2018-01-18 09:29:44.028 UTC [policies] GetPolicy -> DEBU 4f0 Returning policy Application/Readers for evaluation +peer0.org1.example.com | [702 01-18 09:31:28.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [d8c3af41]Sending GET_STATE +peer1.org2.example.com | [6b4 01-18 09:31:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a4652cc8]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +peer0.org1.example.com | [703 01-18 09:31:28.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d8c3af41]Received message GET_STATE from shim +orderer.example.com | 2018-01-18 09:29:44.028 UTC [policies] CommitProposals -> DEBU 4f1 As expected, current configuration has policy '/Channel/Application/Readers' +orderer.example.com | 2018-01-18 09:29:44.028 UTC [policies] GetPolicy -> DEBU 4f2 Returning policy Application/Writers for evaluation +peer0.org1.example.com | [704 01-18 09:31:28.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d8c3af41]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer0.org1.example.com | [705 01-18 09:31:28.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [d8c3af41]Received GET_STATE, invoking get state from ledger +peer0.org1.example.com | [706 01-18 09:31:28.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [707 01-18 09:31:28.35 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [d8c3af41] getting state for chaincode lscc, key exp02, channel businesschannel +orderer.example.com | 2018-01-18 09:29:44.028 UTC [policies] CommitProposals -> DEBU 4f3 As expected, current configuration has policy '/Channel/Application/Writers' +peer0.org1.example.com | [708 01-18 09:31:28.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer1.org2.example.com | [6b5 01-18 09:31:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [709 01-18 09:31:28.35 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [d8c3af41]Got state. Sending RESPONSE +orderer.example.com | 2018-01-18 09:29:44.028 UTC [policies] GetPolicy -> DEBU 4f4 Returning policy Application/Admins for evaluation +peer0.org1.example.com | [70a 01-18 09:31:28.35 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [d8c3af41]handleGetState serial send RESPONSE +peer1.org2.example.com | [6b6 01-18 09:31:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a4652cc8]sending state message RESPONSE +peer0.org1.example.com | [70b 01-18 09:31:28.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d8c3af41]Received message RESPONSE from shim +peer1.org2.example.com | [6b7 01-18 09:31:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a4652cc8]Received message COMPLETED from shim +orderer.example.com | 2018-01-18 09:29:44.028 UTC [policies] CommitProposals -> DEBU 4f5 As expected, current configuration has policy '/Channel/Application/Admins' +peer0.org1.example.com | [70c 01-18 09:31:28.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d8c3af41]Handling ChaincodeMessage of type: RESPONSE(state:ready) +orderer.example.com | 2018-01-18 09:29:44.028 UTC [policies] GetPolicy -> DEBU 4f6 Returning policy Orderer/BlockValidation for evaluation +peer0.org1.example.com | [70d 01-18 09:31:28.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [d8c3af41]before send +peer1.org2.example.com | [6b8 01-18 09:31:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a4652cc8]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [70e 01-18 09:31:28.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [d8c3af41]after send +orderer.example.com | 2018-01-18 09:29:44.028 UTC [policies] CommitProposals -> DEBU 4f7 As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +peer1.org2.example.com | [6b9 01-18 09:31:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a4652cc8b4e64e8e390bc639b183d8569ae28fa2ce4307dc0a9b7eed3962aaab]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [70f 01-18 09:31:28.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [d8c3af41]Received RESPONSE, communicated (state:ready) +orderer.example.com | 2018-01-18 09:29:44.029 UTC [policies] GetPolicy -> DEBU 4f9 Returning policy Writers for evaluation +peer1.org2.example.com | [6ba 01-18 09:31:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:a4652cc8b4e64e8e390bc639b183d8569ae28fa2ce4307dc0a9b7eed3962aaab +peer0.org1.example.com | [710 01-18 09:31:28.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [d8c3af41]GetState received payload RESPONSE +orderer.example.com | 2018-01-18 09:29:44.029 UTC [cauthdsl] func1 -> DEBU 4fa 0xc42014a0e0 gate 1516267784029610165 evaluation starts +peer1.org2.example.com | [6bb 01-18 09:31:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [711 01-18 09:31:28.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d8c3af41]Transaction completed. Sending COMPLETED +orderer.example.com | 2018-01-18 09:29:44.029 UTC [cauthdsl] func2 -> DEBU 4fb 0xc42014a0e0 signed by 0 principal evaluation starts (used [false]) +peer1.org2.example.com | [6bc 01-18 09:31:27.71 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [712 01-18 09:31:28.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d8c3af41]Move state message COMPLETED +peer0.org1.example.com | [713 01-18 09:31:28.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d8c3af41]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [714 01-18 09:31:28.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d8c3af41]send state message COMPLETED +peer0.org1.example.com | [715 01-18 09:31:28.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d8c3af41]Received message COMPLETED from shim +peer1.org2.example.com | [6bd 01-18 09:31:27.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer0.org1.example.com | [716 01-18 09:31:28.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d8c3af41]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | 2018-01-18 09:29:44.029 UTC [cauthdsl] func2 -> DEBU 4fc 0xc42014a0e0 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a +peer0.org1.example.com | [717 01-18 09:31:28.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d8c3af4179949e3acff507fa82d95340dde03a63abaa77be131e271c513fe48b]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [6be 01-18 09:31:27.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [2aed5c35-7c9d-467d-bccb-98a393e8b2ee] +peer0.org1.example.com | [718 01-18 09:31:28.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:d8c3af4179949e3acff507fa82d95340dde03a63abaa77be131e271c513fe48b +orderer.example.com | 2018-01-18 09:29:44.030 UTC [msp/identity] newIdentity -> DEBU 4fd Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [719 01-18 09:31:28.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw +peer0.org1.example.com | [71a 01-18 09:31:28.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [71b 01-18 09:31:28.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer1.org2.example.com | [6bf 01-18 09:31:27.71 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org1.example.com | [71c 01-18 09:31:28.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [1e8cdfe2-7733-4ae6-b7af-acaca64211d0] +peer0.org1.example.com | [71d 01-18 09:31:28.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +peer1.org2.example.com | [6c0 01-18 09:31:27.71 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: a4652cc8b4e64e8e390bc639b183d8569ae28fa2ce4307dc0a9b7eed3962aaab channel id: businesschannel chaincode id: name:"exp02" +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer0.org1.example.com | [71e 01-18 09:31:28.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: d8c3af4179949e3acff507fa82d95340dde03a63abaa77be131e271c513fe48b channel id: businesschannel chaincode id: name:"lscc" +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE +peer1.org2.example.com | [6c1 01-18 09:31:27.71 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"exp02" is escc +peer0.org1.example.com | [71f 01-18 09:31:28.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer1.org2.example.com | [6c2 01-18 09:31:27.71 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: a4652cc8b4e64e8e390bc639b183d8569ae28fa2ce4307dc0a9b7eed3962aaab channel id: businesschannel version: 1.0.2 +peer0.org1.example.com | [720 01-18 09:31:28.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: d8c3af4179949e3acff507fa82d95340dde03a63abaa77be131e271c513fe48b channel id: businesschannel version: 1.0.2 +orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq +peer1.org2.example.com | [6c3 01-18 09:31:27.71 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=a4652cc8b4e64e8e390bc639b183d8569ae28fa2ce4307dc0a9b7eed3962aaab,syscc=true,proposal=0xc4222e0e60,canname=escc:1.0.2 +orderer.example.com | hkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz +peer0.org1.example.com | [721 01-18 09:31:28.35 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=d8c3af4179949e3acff507fa82d95340dde03a63abaa77be131e271c513fe48b,syscc=true,proposal=0xc42254be50,canname=escc:1.0.2 +orderer.example.com | MKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw +peer0.org1.example.com | [722 01-18 09:31:28.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 +peer1.org2.example.com | [6c4 01-18 09:31:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 +peer1.org2.example.com | [6c5 01-18 09:31:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [723 01-18 09:31:28.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN +orderer.example.com | RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH +peer0.org1.example.com | [724 01-18 09:31:28.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 +orderer.example.com | /4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl +peer0.org1.example.com | [725 01-18 09:31:28.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d8c3af41]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [6c6 01-18 09:31:27.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [726 01-18 09:31:28.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | 2018-01-18 09:29:44.030 UTC [msp] SatisfiesPrincipal -> DEBU 4fe Checking if identity satisfies MEMBER role for OrdererMSP +peer1.org2.example.com | [6c7 01-18 09:31:27.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a4652cc8]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | 2018-01-18 09:29:44.030 UTC [msp] Validate -> DEBU 4ff MSP OrdererMSP validating identity +peer0.org1.example.com | [727 01-18 09:31:28.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org2.example.com | [6c8 01-18 09:31:27.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | 2018-01-18 09:29:44.031 UTC [cauthdsl] func2 -> DEBU 500 0xc42014a0e0 principal matched by identity 0 +peer0.org1.example.com | [728 01-18 09:31:28.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d8c3af41]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | 2018-01-18 09:29:44.031 UTC [msp/identity] Verify -> DEBU 501 Verify: digest = 00000000 b5 0e a3 4a bc d8 ae fc ce f9 26 18 ae 87 b2 56 |...J......&....V| +peer0.org1.example.com | [729 01-18 09:31:28.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d8c3af41]Move state message TRANSACTION +peer0.org1.example.com | [72a 01-18 09:31:28.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d8c3af41]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | 00000010 a8 63 01 bc e0 c1 4c b8 83 70 56 e3 e8 d5 86 bc |.c....L..pV.....| +orderer.example.com | 2018-01-18 09:29:44.031 UTC [msp/identity] Verify -> DEBU 502 Verify: sig = 00000000 30 45 02 21 00 b7 4d ae e7 de c0 7a 42 8c aa fb |0E.!..M....zB...| +orderer.example.com | 00000010 1c c8 34 20 f4 dc 17 30 c8 8f d8 cf 3b 20 ea d5 |..4 ...0....; ..| +orderer.example.com | 00000020 cb 94 ce 1b 1e 02 20 4d a8 cf db 60 ce fd 3d ca |...... M...`..=.| +orderer.example.com | 00000030 87 0a 42 4c 3e 9a 71 10 b0 ee 3f 1a 3f 40 b5 81 |..BL>.q...?.?@..| +orderer.example.com | 00000040 9a 87 ba 88 52 27 46 |....R'F| +peer1.org2.example.com | [6c9 01-18 09:31:27.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | 2018-01-18 09:29:44.031 UTC [cauthdsl] func2 -> DEBU 503 0xc42014a0e0 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-18 09:29:44.031 UTC [cauthdsl] func1 -> DEBU 504 0xc42014a0e0 gate 1516267784029610165 evaluation succeeds +orderer.example.com | 2018-01-18 09:29:44.031 UTC [orderer/common/sigfilter] Apply -> DEBU 505 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [Writers %!s(*policies.implicitMetaPolicy=&{0xc420371d80 1 [0xc420026490]})]} +peer1.org2.example.com | [6ca 01-18 09:31:27.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a4652cc8]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [6cb 01-18 09:31:27.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a4652cc8]Move state message TRANSACTION +orderer.example.com | 2018-01-18 09:29:44.031 UTC [msp] GetLocalMSP -> DEBU 506 Returning existing local MSP +peer0.org1.example.com | [72b 01-18 09:31:28.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [6cc 01-18 09:31:27.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a4652cc8]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org2.example.com | [6cd 01-18 09:31:27.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [6ce 01-18 09:31:27.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a4652cc8]sending state message TRANSACTION +peer1.org2.example.com | [6cf 01-18 09:31:27.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a4652cc8]Received message TRANSACTION from shim +orderer.example.com | 2018-01-18 09:29:44.031 UTC [msp] GetDefaultSigningIdentity -> DEBU 507 Obtaining default signing identity +peer1.org2.example.com | [6d0 01-18 09:31:27.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a4652cc8]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [72c 01-18 09:31:28.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d8c3af41]sending state message TRANSACTION +peer1.org2.example.com | [6d1 01-18 09:31:27.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [a4652cc8]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | 2018-01-18 09:29:44.032 UTC [msp] GetLocalMSP -> DEBU 508 Returning existing local MSP +peer0.org1.example.com | [72d 01-18 09:31:28.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d8c3af41]Received message TRANSACTION from shim +peer1.org2.example.com | [6d2 01-18 09:31:27.72 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer1.org2.example.com | [6d3 01-18 09:31:27.72 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +orderer.example.com | 2018-01-18 09:29:44.032 UTC [msp] GetDefaultSigningIdentity -> DEBU 509 Obtaining default signing identity +peer0.org1.example.com | [72e 01-18 09:31:28.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d8c3af41]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org2.example.com | [6d4 01-18 09:31:27.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a4652cc8]Transaction completed. Sending COMPLETED +peer1.org2.example.com | [6d5 01-18 09:31:27.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a4652cc8]Move state message COMPLETED +orderer.example.com | 2018-01-18 09:29:44.032 UTC [msp/identity] Sign -> DEBU 50a Sign: plaintext: 0AB7060A1B08011A060888D281D30522...41646D696E7310021A0641646D696E73 +orderer.example.com | 2018-01-18 09:29:44.032 UTC [msp/identity] Sign -> DEBU 50b Sign: digest: FD2759BAA5F8950C3C72F255A38D76286B808B67DE802262C57B51BDF49EAC6E +orderer.example.com | 2018-01-18 09:29:44.032 UTC [common/config] NewStandardValues -> DEBU 50c Initializing protos for *config.ChannelProtos +peer1.org2.example.com | [6d6 01-18 09:31:27.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a4652cc8]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [6d7 01-18 09:31:27.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a4652cc8]send state message COMPLETED +orderer.example.com | 2018-01-18 09:29:44.032 UTC [common/config] initializeProtosStruct -> DEBU 50d Processing field: HashingAlgorithm +peer1.org2.example.com | [6d8 01-18 09:31:27.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a4652cc8]Received message COMPLETED from shim +orderer.example.com | 2018-01-18 09:29:44.033 UTC [common/config] initializeProtosStruct -> DEBU 50e Processing field: BlockDataHashingStructure +peer0.org1.example.com | [72f 01-18 09:31:28.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [d8c3af41]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org2.example.com | [6d9 01-18 09:31:27.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a4652cc8]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [730 01-18 09:31:28.36 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer0.org1.example.com | [731 01-18 09:31:28.36 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer1.org2.example.com | [6da 01-18 09:31:27.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a4652cc8b4e64e8e390bc639b183d8569ae28fa2ce4307dc0a9b7eed3962aaab]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [732 01-18 09:31:28.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d8c3af41]Transaction completed. Sending COMPLETED +orderer.example.com | 2018-01-18 09:29:44.033 UTC [common/config] initializeProtosStruct -> DEBU 50f Processing field: OrdererAddresses +peer1.org2.example.com | [6db 01-18 09:31:27.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:a4652cc8b4e64e8e390bc639b183d8569ae28fa2ce4307dc0a9b7eed3962aaab +orderer.example.com | 2018-01-18 09:29:44.033 UTC [common/config] initializeProtosStruct -> DEBU 510 Processing field: Consortium +peer1.org2.example.com | [6dc 01-18 09:31:27.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [733 01-18 09:31:28.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d8c3af41]Move state message COMPLETED +orderer.example.com | 2018-01-18 09:29:44.033 UTC [common/configtx] addToMap -> DEBU 511 Adding to config map: [Groups] /Channel +orderer.example.com | 2018-01-18 09:29:44.033 UTC [common/configtx] addToMap -> DEBU 512 Adding to config map: [Groups] /Channel/Application +peer1.org2.example.com | [6dd 01-18 09:31:27.72 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +orderer.example.com | 2018-01-18 09:29:44.033 UTC [common/configtx] addToMap -> DEBU 513 Adding to config map: [Groups] /Channel/Application/Org2MSP +peer1.org2.example.com | [6de 01-18 09:31:27.72 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org1.example.com | [734 01-18 09:31:28.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d8c3af41]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | 2018-01-18 09:29:44.033 UTC [common/configtx] addToMap -> DEBU 514 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +peer1.org2.example.com | [6df 01-18 09:31:27.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [2aed5c35-7c9d-467d-bccb-98a393e8b2ee] +peer0.org1.example.com | [735 01-18 09:31:28.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d8c3af41]send state message COMPLETED +orderer.example.com | 2018-01-18 09:29:44.033 UTC [common/configtx] addToMap -> DEBU 515 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer1.org2.example.com | [6e0 01-18 09:31:27.72 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer0.org1.example.com | [736 01-18 09:31:28.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d8c3af41]Received message COMPLETED from shim +orderer.example.com | 2018-01-18 09:29:44.033 UTC [common/configtx] addToMap -> DEBU 516 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer1.org2.example.com | [6e1 01-18 09:31:29.78 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +orderer.example.com | 2018-01-18 09:29:44.034 UTC [common/configtx] addToMap -> DEBU 517 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer1.org2.example.com | [6e2 01-18 09:31:29.78 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +peer1.org2.example.com | [6e3 01-18 09:31:29.78 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer0.org1.example.com | [737 01-18 09:31:28.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d8c3af41]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [738 01-18 09:31:28.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d8c3af4179949e3acff507fa82d95340dde03a63abaa77be131e271c513fe48b]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [6e4 01-18 09:31:29.78 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc42545cfc0 +peer1.org2.example.com | [6e5 01-18 09:31:29.78 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\357\322\201\323\005\020\300\316\217\315\002\"\017businesschannel*@a4652cc8b4e64e8e390bc639b183d8569ae28fa2ce4307dc0a9b7eed3962aaab:\t\022\007\022\005exp02" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\030f|\376_Y\376PDS^\231\016m\377\335pI)\006]\3548\010\336" +peer1.org2.example.com | [6e6 01-18 09:31:29.79 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +orderer.example.com | 2018-01-18 09:29:44.034 UTC [common/configtx] addToMap -> DEBU 518 Adding to config map: [Groups] /Channel/Application/Org1MSP +peer0.org1.example.com | [739 01-18 09:31:28.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:d8c3af4179949e3acff507fa82d95340dde03a63abaa77be131e271c513fe48b +orderer.example.com | 2018-01-18 09:29:44.034 UTC [common/configtx] addToMap -> DEBU 519 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +peer1.org2.example.com | [6e7 01-18 09:31:29.79 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [73a 01-18 09:31:28.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | 2018-01-18 09:29:44.034 UTC [common/configtx] addToMap -> DEBU 51a Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | 2018-01-18 09:29:44.034 UTC [common/configtx] addToMap -> DEBU 51b Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | 2018-01-18 09:29:44.034 UTC [common/configtx] addToMap -> DEBU 51c Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | 2018-01-18 09:29:44.034 UTC [common/configtx] addToMap -> DEBU 51d Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy +peer1.org2.example.com | [6e8 01-18 09:31:29.79 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} +peer1.org2.example.com | [6e9 01-18 09:31:29.79 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org2.example.com | [6ea 01-18 09:31:29.79 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [73b 01-18 09:31:28.36 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +orderer.example.com | 2018-01-18 09:29:44.034 UTC [common/configtx] addToMap -> DEBU 51e Adding to config map: [Groups] /Channel/Orderer +orderer.example.com | 2018-01-18 09:29:44.034 UTC [common/configtx] addToMap -> DEBU 51f Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +peer1.org2.example.com | [6eb 01-18 09:31:29.79 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421afb000, header channel_header:"\010\003\032\014\010\357\322\201\323\005\020\300\316\217\315\002\"\017businesschannel*@a4652cc8b4e64e8e390bc639b183d8569ae28fa2ce4307dc0a9b7eed3962aaab:\t\022\007\022\005exp02" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\030f|\376_Y\376PDS^\231\016m\377\335pI)\006]\3548\010\336" +peer0.org1.example.com | [73c 01-18 09:31:28.36 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org1.example.com | [73d 01-18 09:31:28.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [1e8cdfe2-7733-4ae6-b7af-acaca64211d0] +peer1.org2.example.com | [6ec 01-18 09:31:29.79 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +orderer.example.com | 2018-01-18 09:29:44.034 UTC [common/configtx] addToMap -> DEBU 520 Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +peer0.org1.example.com | [73e 01-18 09:31:28.36 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer1.org2.example.com | [6ed 01-18 09:31:29.79 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer1.org2.example.com | [6ee 01-18 09:31:29.79 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer0.org1.example.com | [73f 01-18 09:31:28.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer0.org1.example.com | [740 01-18 09:31:28.47 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421ebd5c0 +peer0.org1.example.com | [741 01-18 09:31:28.47 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [742 01-18 09:31:28.47 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org2.example.com | [6ef 01-18 09:31:29.79 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +orderer.example.com | 2018-01-18 09:29:44.034 UTC [common/configtx] addToMap -> DEBU 521 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +orderer.example.com | 2018-01-18 09:29:44.034 UTC [common/configtx] addToMap -> DEBU 522 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +orderer.example.com | 2018-01-18 09:29:44.034 UTC [common/configtx] addToMap -> DEBU 523 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | 2018-01-18 09:29:44.035 UTC [common/configtx] addToMap -> DEBU 524 Adding to config map: [Values] /Channel/Orderer/ConsensusType +orderer.example.com | 2018-01-18 09:29:44.035 UTC [common/configtx] addToMap -> DEBU 525 Adding to config map: [Values] /Channel/Orderer/BatchSize +orderer.example.com | 2018-01-18 09:29:44.035 UTC [common/configtx] addToMap -> DEBU 526 Adding to config map: [Values] /Channel/Orderer/BatchTimeout +orderer.example.com | 2018-01-18 09:29:44.035 UTC [common/configtx] addToMap -> DEBU 527 Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +peer1.org2.example.com | [6f0 01-18 09:31:29.79 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [a4652cc8b4e64e8e390bc639b183d8569ae28fa2ce4307dc0a9b7eed3962aaab] +peer1.org2.example.com | [6f1 01-18 09:31:29.79 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +peer1.org2.example.com | [6f2 01-18 09:31:29.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [13cde254-542e-4d37-8f05-e6e535a2f3ac] +peer0.org1.example.com | [743 01-18 09:31:28.47 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +peer0.org1.example.com | [744 01-18 09:31:28.47 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [745 01-18 09:31:28.47 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [746 01-18 09:31:28.47 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421c76af0, header 0xc421ebd5f0 +peer0.org1.example.com | [747 01-18 09:31:28.47 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +peer0.org1.example.com | [748 01-18 09:31:28.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 66f53d6612da3adac1831aa4dd8687dcbc0491e54a0e670447c3a8888975d1dc +peer0.org1.example.com | [749 01-18 09:31:28.47 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [66f53d6612da3adac1831aa4dd8687dcbc0491e54a0e670447c3a8888975d1dc] +peer0.org1.example.com | [74a 01-18 09:31:28.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org2.example.com | [6f3 01-18 09:31:29.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +orderer.example.com | 2018-01-18 09:29:44.035 UTC [common/configtx] addToMap -> DEBU 528 Adding to config map: [Policy] /Channel/Orderer/Writers +orderer.example.com | 2018-01-18 09:29:44.035 UTC [common/configtx] addToMap -> DEBU 529 Adding to config map: [Policy] /Channel/Orderer/Admins +orderer.example.com | 2018-01-18 09:29:44.035 UTC [common/configtx] addToMap -> DEBU 52a Adding to config map: [Policy] /Channel/Orderer/BlockValidation +orderer.example.com | 2018-01-18 09:29:44.035 UTC [common/configtx] addToMap -> DEBU 52b Adding to config map: [Policy] /Channel/Orderer/Readers +orderer.example.com | 2018-01-18 09:29:44.035 UTC [common/configtx] addToMap -> DEBU 52c Adding to config map: [Values] /Channel/HashingAlgorithm +orderer.example.com | 2018-01-18 09:29:44.035 UTC [common/configtx] addToMap -> DEBU 52d Adding to config map: [Values] /Channel/Consortium +peer1.org2.example.com | [6f4 01-18 09:31:29.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [13cde254-542e-4d37-8f05-e6e535a2f3ac] +peer1.org2.example.com | [6f5 01-18 09:31:29.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org1.example.com | [74b 01-18 09:31:28.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [d5d174aa-2973-4f62-85a4-8ffd0f8c1eda] +peer0.org1.example.com | [74c 01-18 09:31:28.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 66f53d6612da3adac1831aa4dd8687dcbc0491e54a0e670447c3a8888975d1dc channel id: businesschannel +peer1.org2.example.com | [6f6 01-18 09:31:29.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [688dcefe-3ac1-4ee0-8b96-382a12bff717] +orderer.example.com | 2018-01-18 09:29:44.035 UTC [common/configtx] addToMap -> DEBU 52e Adding to config map: [Values] /Channel/BlockDataHashingStructure +orderer.example.com | 2018-01-18 09:29:44.029 UTC [orderer/common/broadcast] Handle -> DEBU 4f8 [channel: testchainid] Broadcast has successfully enqueued message of type ORDERER_TRANSACTION +peer1.org2.example.com | [6f7 01-18 09:31:29.80 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=4ff22fae-26ef-49a5-9fee-a87b562279d3,syscc=true,proposal=0x0,canname=vscc:1.0.2 +peer0.org1.example.com | [74d 01-18 09:31:28.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 66f53d6612da3adac1831aa4dd8687dcbc0491e54a0e670447c3a8888975d1dc channel id: businesschannel version: 1.0.2 +peer0.org1.example.com | [74e 01-18 09:31:28.47 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=66f53d6612da3adac1831aa4dd8687dcbc0491e54a0e670447c3a8888975d1dc,syscc=true,proposal=0xc421c76af0,canname=lscc:1.0.2 +peer1.org2.example.com | [6f8 01-18 09:31:29.80 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid a4652cc8b4e64e8e390bc639b183d8569ae28fa2ce4307dc0a9b7eed3962aaab chaindID businesschannel +orderer.example.com | 2018-01-18 09:29:44.042 UTC [orderer/common/deliver] Handle -> DEBU 52f Rejecting deliver because channel businesschannel not found +peer0.org1.example.com | [74f 01-18 09:31:28.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 +peer1.org2.example.com | [6f9 01-18 09:31:29.80 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 +orderer.example.com | 2018-01-18 09:29:44.044 UTC [orderer/common/broadcast] Handle -> WARN 530 Error reading from stream: rpc error: code = Canceled desc = context canceled +peer1.org2.example.com | [6fa 01-18 09:31:29.80 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [750 01-18 09:31:28.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [6fb 01-18 09:31:29.80 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 +peer0.org1.example.com | [751 01-18 09:31:28.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +orderer.example.com | 2018-01-18 09:29:44.044 UTC [orderer/main] func1 -> DEBU 531 Closing Broadcast stream +peer1.org2.example.com | [6fc 01-18 09:31:29.80 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [4ff22fae]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [752 01-18 09:31:28.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [66f53d66]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | 2018-01-18 09:29:44.047 UTC [orderer/main] func1 -> DEBU 532 Closing Deliver stream +orderer.example.com | 2018-01-18 09:29:44.048 UTC [common/configtx] addToMap -> DEBU 533 Adding to config map: [Values] /Channel/OrdererAddresses +orderer.example.com | 2018-01-18 09:29:44.048 UTC [common/configtx] addToMap -> DEBU 534 Adding to config map: [Policy] /Channel/Readers +orderer.example.com | 2018-01-18 09:29:44.048 UTC [common/configtx] addToMap -> DEBU 535 Adding to config map: [Policy] /Channel/Writers +orderer.example.com | 2018-01-18 09:29:44.048 UTC [common/configtx] addToMap -> DEBU 536 Adding to config map: [Policy] /Channel/Admins +orderer.example.com | 2018-01-18 09:29:44.049 UTC [common/configtx] processConfig -> DEBU 537 Beginning new config for channel businesschannel +orderer.example.com | 2018-01-18 09:29:44.050 UTC [common/config] NewStandardValues -> DEBU 538 Initializing protos for *config.ChannelProtos +orderer.example.com | 2018-01-18 09:29:44.050 UTC [common/config] initializeProtosStruct -> DEBU 539 Processing field: HashingAlgorithm +orderer.example.com | 2018-01-18 09:29:44.050 UTC [common/config] initializeProtosStruct -> DEBU 53a Processing field: BlockDataHashingStructure +orderer.example.com | 2018-01-18 09:29:44.051 UTC [common/config] initializeProtosStruct -> DEBU 53b Processing field: OrdererAddresses +orderer.example.com | 2018-01-18 09:29:44.052 UTC [common/config] initializeProtosStruct -> DEBU 53c Processing field: Consortium +orderer.example.com | 2018-01-18 09:29:44.054 UTC [policies] ProposePolicy -> DEBU 53d Proposed new policy Readers for Channel +orderer.example.com | 2018-01-18 09:29:44.055 UTC [policies] ProposePolicy -> DEBU 53e Proposed new policy Writers for Channel +orderer.example.com | 2018-01-18 09:29:44.057 UTC [policies] ProposePolicy -> DEBU 53f Proposed new policy Admins for Channel +peer1.org2.example.com | [6fd 01-18 09:31:29.80 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [6fe 01-18 09:31:29.80 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [4ff22fae]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [6ff 01-18 09:31:29.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4ff22fae]Move state message TRANSACTION +peer1.org2.example.com | [700 01-18 09:31:29.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4ff22fae]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org2.example.com | [701 01-18 09:31:29.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [702 01-18 09:31:29.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4ff22fae]sending state message TRANSACTION +peer1.org2.example.com | [703 01-18 09:31:29.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4ff22fae]Received message TRANSACTION from shim +peer1.org2.example.com | [704 01-18 09:31:29.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4ff22fae]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org2.example.com | [705 01-18 09:31:29.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [4ff22fae]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [753 01-18 09:31:28.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | 2018-01-18 09:29:44.057 UTC [common/config] NewStandardValues -> DEBU 540 Initializing protos for *config.OrdererProtos +peer1.org2.example.com | [706 01-18 09:31:29.80 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer1.org2.example.com | [707 01-18 09:31:29.80 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +peer1.org2.example.com | [708 01-18 09:31:29.80 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +peer1.org2.example.com | [709 01-18 09:31:29.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4ff22fae]Transaction completed. Sending COMPLETED +peer1.org2.example.com | [70a 01-18 09:31:29.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4ff22fae]Move state message COMPLETED +peer1.org2.example.com | [70b 01-18 09:31:29.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4ff22fae]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [70c 01-18 09:31:29.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4ff22fae]send state message COMPLETED +peer1.org2.example.com | [70d 01-18 09:31:29.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4ff22fae]Received message COMPLETED from shim +peer1.org2.example.com | [70e 01-18 09:31:29.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4ff22fae]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [70f 01-18 09:31:29.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4ff22fae-26ef-49a5-9fee-a87b562279d3]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [710 01-18 09:31:29.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:4ff22fae-26ef-49a5-9fee-a87b562279d3 +peer1.org2.example.com | [711 01-18 09:31:29.80 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [712 01-18 09:31:29.80 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [688dcefe-3ac1-4ee0-8b96-382a12bff717] +peer1.org2.example.com | [713 01-18 09:31:29.81 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer1.org2.example.com | [714 01-18 09:31:29.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer1.org2.example.com | [715 01-18 09:31:29.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc422178580), Data:(*common.BlockData)(0xc421d0ef40), Metadata:(*common.BlockMetadata)(0xc421d0ef80)}, doMVCCValidation=true +peer1.org2.example.com | [716 01-18 09:31:29.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +peer1.org2.example.com | [717 01-18 09:31:29.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=exp02, key=a +peer1.org2.example.com | [718 01-18 09:31:29.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=exp02, key=b +peer1.org2.example.com | [719 01-18 09:31:29.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer1.org2.example.com | [71a 01-18 09:31:29.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [6] Transaction index [0] TxId [a4652cc8b4e64e8e390bc639b183d8569ae28fa2ce4307dc0a9b7eed3962aaab] marked as valid by state validator +peer1.org2.example.com | [71b 01-18 09:31:29.81 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0x6d, 0x6b, 0x82, 0xbc, 0xa, 0x4, 0xe3, 0xad, 0xfa, 0xe, 0x85, 0xa6, 0xa0, 0xe8, 0x87, 0xbf, 0x19, 0xf1, 0xbf, 0xd3, 0x9d, 0x68, 0xf3, 0x0, 0xe5, 0x64, 0xa4, 0xd6, 0x4c, 0x4e, 0x9f, 0x3d} txOffsets= +peer1.org2.example.com | txId=a4652cc8b4e64e8e390bc639b183d8569ae28fa2ce4307dc0a9b7eed3962aaab locPointer=offset=70, bytesLength=2855 +peer1.org2.example.com | ] +peer1.org2.example.com | [71c 01-18 09:31:29.81 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=54634, bytesLength=2855] for tx ID: [a4652cc8b4e64e8e390bc639b183d8569ae28fa2ce4307dc0a9b7eed3962aaab] to index +peer1.org2.example.com | [71d 01-18 09:31:29.81 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=54634, bytesLength=2855] for tx number:[0] ID: [a4652cc8b4e64e8e390bc639b183d8569ae28fa2ce4307dc0a9b7eed3962aaab] to blockNumTranNum index +peer1.org2.example.com | [71e 01-18 09:31:29.81 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[59239], isChainEmpty=[false], lastBlockNumber=[6] +peer1.org2.example.com | [71f 01-18 09:31:29.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [6] with 1 transaction(s) +peer1.org2.example.com | [720 01-18 09:31:29.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +peer1.org2.example.com | [721 01-18 09:31:29.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +peer1.org2.example.com | [722 01-18 09:31:29.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] +peer1.org2.example.com | [723 01-18 09:31:29.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] +peer1.org2.example.com | [724 01-18 09:31:29.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +peer1.org2.example.com | [725 01-18 09:31:29.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [6] with [1] transactions +peer1.org2.example.com | [726 01-18 09:31:29.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [6] +peer1.org2.example.com | [727 01-18 09:31:29.81 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer1.org2.example.com | [728 01-18 09:31:29.81 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [6] contains transaction id: a4652cc8b4e64e8e390bc639b183d8569ae28fa2ce4307dc0a9b7eed3962aaab +peer1.org2.example.com | [729 01-18 09:31:29.81 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [6] +peer1.org2.example.com | [72a 01-18 09:31:29.81 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +peer1.org2.example.com | [72b 01-18 09:31:29.81 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer1.org2.example.com | [72c 01-18 09:31:29.82 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer1.org2.example.com | [72d 01-18 09:31:29.82 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +peer1.org2.example.com | [72e 01-18 09:31:29.82 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +peer0.org1.example.com | [754 01-18 09:31:28.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [755 01-18 09:31:28.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [66f53d66]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | 2018-01-18 09:29:44.057 UTC [common/config] initializeProtosStruct -> DEBU 541 Processing field: ConsensusType +orderer.example.com | 2018-01-18 09:29:44.057 UTC [common/config] initializeProtosStruct -> DEBU 542 Processing field: BatchSize +orderer.example.com | 2018-01-18 09:29:44.057 UTC [common/config] initializeProtosStruct -> DEBU 543 Processing field: BatchTimeout +peer0.org1.example.com | [756 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [66f53d66]Move state message TRANSACTION +orderer.example.com | 2018-01-18 09:29:44.057 UTC [common/config] initializeProtosStruct -> DEBU 544 Processing field: KafkaBrokers +peer0.org1.example.com | [757 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [66f53d66]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [758 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [759 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [66f53d66]sending state message TRANSACTION +peer0.org1.example.com | [75a 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [66f53d66]Received message TRANSACTION from shim +peer0.org1.example.com | [75b 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [66f53d66]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [75c 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [66f53d66]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | 2018-01-18 09:29:44.058 UTC [common/config] initializeProtosStruct -> DEBU 545 Processing field: ChannelRestrictions +orderer.example.com | 2018-01-18 09:29:44.058 UTC [policies] ProposePolicy -> DEBU 546 Proposed new policy Readers for Orderer +orderer.example.com | 2018-01-18 09:29:44.058 UTC [policies] ProposePolicy -> DEBU 547 Proposed new policy Writers for Orderer +orderer.example.com | 2018-01-18 09:29:44.058 UTC [policies] ProposePolicy -> DEBU 548 Proposed new policy Admins for Orderer +orderer.example.com | 2018-01-18 09:29:44.058 UTC [policies] ProposePolicy -> DEBU 549 Proposed new policy BlockValidation for Orderer +orderer.example.com | 2018-01-18 09:29:44.058 UTC [common/config] NewStandardValues -> DEBU 54a Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:44.058 UTC [common/config] initializeProtosStruct -> DEBU 54b Processing field: MSP +orderer.example.com | 2018-01-18 09:29:44.058 UTC [policies] ProposePolicy -> DEBU 54c Proposed new policy Writers for OrdererOrg +peer0.org1.example.com | [75d 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [66f53d66]Sending GET_STATE +peer0.org1.example.com | [75e 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [66f53d66]Received message GET_STATE from shim +peer0.org1.example.com | [75f 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [66f53d66]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer0.org1.example.com | [760 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [66f53d66]Received GET_STATE, invoking get state from ledger +peer0.org1.example.com | [761 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [762 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [66f53d66] getting state for chaincode lscc, key exp02, channel businesschannel +peer0.org1.example.com | [763 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer0.org1.example.com | [764 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [66f53d66]Got state. Sending RESPONSE +peer0.org1.example.com | [765 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [66f53d66]handleGetState serial send RESPONSE +peer0.org1.example.com | [766 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [66f53d66]Received message RESPONSE from shim +peer0.org1.example.com | [767 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [66f53d66]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer0.org1.example.com | [768 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [66f53d66]before send +peer0.org1.example.com | [769 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [66f53d66]after send +peer0.org1.example.com | [76a 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [66f53d66]GetState received payload RESPONSE +peer0.org1.example.com | [76c 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [66f53d66]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [76b 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [66f53d66]Received RESPONSE, communicated (state:ready) +peer0.org1.example.com | [76d 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [66f53d66]Move state message COMPLETED +peer0.org1.example.com | [76e 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [66f53d66]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [76f 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [66f53d66]send state message COMPLETED +peer0.org1.example.com | [770 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [66f53d66]Received message COMPLETED from shim +peer0.org1.example.com | [771 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [66f53d66]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [772 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [66f53d6612da3adac1831aa4dd8687dcbc0491e54a0e670447c3a8888975d1dc]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [773 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:66f53d6612da3adac1831aa4dd8687dcbc0491e54a0e670447c3a8888975d1dc +peer0.org1.example.com | [774 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | 2018-01-18 09:29:44.058 UTC [policies] ProposePolicy -> DEBU 54d Proposed new policy Admins for OrdererOrg +orderer.example.com | 2018-01-18 09:29:44.058 UTC [policies] ProposePolicy -> DEBU 54e Proposed new policy Readers for OrdererOrg +orderer.example.com | 2018-01-18 09:29:44.059 UTC [common/config] NewStandardValues -> DEBU 54f Initializing protos for *struct {} +orderer.example.com | 2018-01-18 09:29:44.060 UTC [policies] ProposePolicy -> DEBU 550 Proposed new policy ChannelCreationPolicy for Application +orderer.example.com | 2018-01-18 09:29:44.061 UTC [common/config] NewStandardValues -> DEBU 551 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:44.061 UTC [common/config] initializeProtosStruct -> DEBU 552 Processing field: MSP +orderer.example.com | 2018-01-18 09:29:44.061 UTC [common/config] NewStandardValues -> DEBU 553 Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | 2018-01-18 09:29:44.061 UTC [common/config] initializeProtosStruct -> DEBU 554 Processing field: AnchorPeers +orderer.example.com | 2018-01-18 09:29:44.062 UTC [common/config] NewStandardValues -> DEBU 555 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:44.064 UTC [common/config] initializeProtosStruct -> DEBU 556 Processing field: MSP +orderer.example.com | 2018-01-18 09:29:44.064 UTC [policies] ProposePolicy -> DEBU 557 Proposed new policy Admins for Org2MSP +orderer.example.com | 2018-01-18 09:29:44.064 UTC [policies] ProposePolicy -> DEBU 558 Proposed new policy Readers for Org2MSP +orderer.example.com | 2018-01-18 09:29:44.064 UTC [policies] ProposePolicy -> DEBU 559 Proposed new policy Writers for Org2MSP +orderer.example.com | 2018-01-18 09:29:44.065 UTC [common/config] NewStandardValues -> DEBU 55a Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:44.065 UTC [common/config] initializeProtosStruct -> DEBU 55b Processing field: MSP +orderer.example.com | 2018-01-18 09:29:44.065 UTC [common/config] NewStandardValues -> DEBU 55c Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | 2018-01-18 09:29:44.066 UTC [common/config] initializeProtosStruct -> DEBU 55d Processing field: AnchorPeers +orderer.example.com | 2018-01-18 09:29:44.066 UTC [common/config] NewStandardValues -> DEBU 55e Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:44.067 UTC [common/config] initializeProtosStruct -> DEBU 55f Processing field: MSP +orderer.example.com | 2018-01-18 09:29:44.067 UTC [policies] ProposePolicy -> DEBU 560 Proposed new policy Writers for Org1MSP +orderer.example.com | 2018-01-18 09:29:44.067 UTC [policies] ProposePolicy -> DEBU 561 Proposed new policy Admins for Org1MSP +orderer.example.com | 2018-01-18 09:29:44.067 UTC [policies] ProposePolicy -> DEBU 562 Proposed new policy Readers for Org1MSP +orderer.example.com | 2018-01-18 09:29:44.067 UTC [common/config] validateMSP -> DEBU 563 Setting up MSP for org OrdererOrg +orderer.example.com | 2018-01-18 09:29:44.067 UTC [msp] NewBccspMsp -> DEBU 564 Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-18 09:29:44.067 UTC [orderer/main] Deliver -> DEBU 565 Starting new Deliver handler +orderer.example.com | 2018-01-18 09:29:44.068 UTC [orderer/common/deliver] Handle -> DEBU 567 Starting new deliver loop +orderer.example.com | 2018-01-18 09:29:44.068 UTC [orderer/common/deliver] Handle -> DEBU 568 Attempting to read seek info message +orderer.example.com | 2018-01-18 09:29:44.067 UTC [msp] Setup -> DEBU 566 Setting up MSP instance OrdererMSP +orderer.example.com | 2018-01-18 09:29:44.068 UTC [msp/identity] newIdentity -> DEBU 569 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +orderer.example.com | cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW +orderer.example.com | gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +peer0.org1.example.com | [775 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [776 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer0.org1.example.com | [777 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [d5d174aa-2973-4f62-85a4-8ffd0f8c1eda] +peer0.org1.example.com | [778 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org1.example.com | [779 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 66f53d6612da3adac1831aa4dd8687dcbc0491e54a0e670447c3a8888975d1dc channel id: businesschannel chaincode id: name:"lscc" +peer0.org1.example.com | [77a 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc +peer0.org1.example.com | [77b 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 66f53d6612da3adac1831aa4dd8687dcbc0491e54a0e670447c3a8888975d1dc channel id: businesschannel version: 1.0.2 +peer0.org1.example.com | [77c 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=66f53d6612da3adac1831aa4dd8687dcbc0491e54a0e670447c3a8888975d1dc,syscc=true,proposal=0xc421c76af0,canname=escc:1.0.2 +peer0.org1.example.com | [77d 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 +peer0.org1.example.com | [77e 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [77f 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 +peer0.org1.example.com | [780 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [66f53d66]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [781 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK +orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs +orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:44.069 UTC [msp/identity] newIdentity -> DEBU 56a Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +peer0.org1.example.com | [782 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [783 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [66f53d66]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [784 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [66f53d66]Move state message TRANSACTION +peer0.org1.example.com | [785 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [66f53d66]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [786 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [787 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [66f53d66]sending state message TRANSACTION +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +peer0.org1.example.com | [788 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [66f53d66]Received message TRANSACTION from shim +peer0.org1.example.com | [789 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [66f53d66]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +peer0.org1.example.com | [78a 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [66f53d66]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [78b 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer0.org1.example.com | [78c 01-18 09:31:28.49 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer0.org1.example.com | [78d 01-18 09:31:28.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [66f53d66]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [78e 01-18 09:31:28.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [66f53d66]Move state message COMPLETED +peer0.org1.example.com | [78f 01-18 09:31:28.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [66f53d66]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [790 01-18 09:31:28.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [66f53d66]send state message COMPLETED +peer0.org1.example.com | [791 01-18 09:31:28.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [66f53d66]Received message COMPLETED from shim +peer0.org1.example.com | [792 01-18 09:31:28.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [66f53d66]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [793 01-18 09:31:28.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [66f53d6612da3adac1831aa4dd8687dcbc0491e54a0e670447c3a8888975d1dc]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [794 01-18 09:31:28.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:66f53d6612da3adac1831aa4dd8687dcbc0491e54a0e670447c3a8888975d1dc +peer0.org1.example.com | [795 01-18 09:31:28.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [796 01-18 09:31:28.49 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [797 01-18 09:31:28.49 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org1.example.com | [798 01-18 09:31:28.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [d5d174aa-2973-4f62-85a4-8ffd0f8c1eda] +peer0.org1.example.com | [799 01-18 09:31:28.49 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer0.org1.example.com | [79a 01-18 09:31:28.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer0.org1.example.com | [79b 01-18 09:31:28.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421f5b320 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:44.070 UTC [msp/identity] newIdentity -> DEBU 56b Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org1.example.com | [79c 01-18 09:31:28.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer0.org1.example.com | [79d 01-18 09:31:28.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [79e 01-18 09:31:28.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +peer0.org1.example.com | [79f 01-18 09:31:28.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [7a0 01-18 09:31:28.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [7a1 01-18 09:31:28.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421c77a40, header 0xc421f5b350 +peer0.org1.example.com | [7a2 01-18 09:31:28.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:44.071 UTC [msp] Validate -> DEBU 56c MSP OrdererMSP validating identity +orderer.example.com | 2018-01-18 09:29:44.071 UTC [common/config] Validate -> DEBU 56d Anchor peers for org Org2MSP are +orderer.example.com | 2018-01-18 09:29:44.072 UTC [common/config] validateMSP -> DEBU 56e Setting up MSP for org Org2MSP +orderer.example.com | 2018-01-18 09:29:44.072 UTC [msp] NewBccspMsp -> DEBU 56f Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-18 09:29:44.072 UTC [msp] Setup -> DEBU 570 Setting up MSP instance Org2MSP +orderer.example.com | 2018-01-18 09:29:44.073 UTC [msp/identity] newIdentity -> DEBU 571 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +orderer.example.com | mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 +orderer.example.com | sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ +orderer.example.com | xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv +orderer.example.com | WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk +peer0.org1.example.com | [7a3 01-18 09:31:28.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: c2178cd8945e3928ec6137b2dbfc299c342f0b898735f6a4dad1fe2deda8ffcf +orderer.example.com | SCjyRdD3aQ== +peer0.org1.example.com | [7a4 01-18 09:31:28.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [c2178cd8945e3928ec6137b2dbfc299c342f0b898735f6a4dad1fe2deda8ffcf] +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:44.075 UTC [msp/identity] newIdentity -> DEBU 572 Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [7a5 01-18 09:31:28.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | [7a6 01-18 09:31:28.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [ea72a4cd-c1fd-46e0-ac94-ad3aa535214a] +peer0.org1.example.com | [7a7 01-18 09:31:28.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: c2178cd8945e3928ec6137b2dbfc299c342f0b898735f6a4dad1fe2deda8ffcf channel id: businesschannel +peer0.org1.example.com | [7a8 01-18 09:31:28.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: c2178cd8945e3928ec6137b2dbfc299c342f0b898735f6a4dad1fe2deda8ffcf channel id: businesschannel version: 1.0.2 +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +peer0.org1.example.com | [7a9 01-18 09:31:28.61 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=c2178cd8945e3928ec6137b2dbfc299c342f0b898735f6a4dad1fe2deda8ffcf,syscc=true,proposal=0xc421c77a40,canname=lscc:1.0.2 +orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +peer0.org1.example.com | [7aa 01-18 09:31:28.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +peer0.org1.example.com | [7ab 01-18 09:31:28.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [7ac 01-18 09:31:28.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +orderer.example.com | AXYxULZpXYDQXt1KaLI= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:44.076 UTC [msp/identity] newIdentity -> DEBU 573 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +peer0.org1.example.com | [7ad 01-18 09:31:28.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c2178cd8]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org1.example.com | [7ae 01-18 09:31:28.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [7af 01-18 09:31:28.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [7b0 01-18 09:31:28.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c2178cd8]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [7b1 01-18 09:31:28.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c2178cd8]Move state message TRANSACTION +peer0.org1.example.com | [7b2 01-18 09:31:28.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c2178cd8]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [7b3 01-18 09:31:28.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [7b4 01-18 09:31:28.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c2178cd8]sending state message TRANSACTION +peer0.org1.example.com | [7b5 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c2178cd8]Received message TRANSACTION from shim +peer0.org1.example.com | [7b6 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c2178cd8]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [7b7 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [c2178cd8]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [7b8 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [c2178cd8]Sending GET_STATE +peer0.org1.example.com | [7b9 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c2178cd8]Received message GET_STATE from shim +peer0.org1.example.com | [7ba 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c2178cd8]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +peer0.org1.example.com | [7bb 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [c2178cd8]Received GET_STATE, invoking get state from ledger +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +peer0.org1.example.com | [7bc 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [7bd 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [c2178cd8] getting state for chaincode lscc, key exp02, channel businesschannel +peer0.org1.example.com | [7be 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer0.org1.example.com | [7bf 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [c2178cd8]Got state. Sending RESPONSE +peer0.org1.example.com | [7c0 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [c2178cd8]handleGetState serial send RESPONSE +peer0.org1.example.com | [7c1 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c2178cd8]Received message RESPONSE from shim +peer0.org1.example.com | [7c2 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c2178cd8]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer0.org1.example.com | [7c3 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [c2178cd8]before send +peer0.org1.example.com | [7c4 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [c2178cd8]after send +orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +peer0.org1.example.com | [7c6 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [c2178cd8]Received RESPONSE, communicated (state:ready) +peer0.org1.example.com | [7c5 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [c2178cd8]GetState received payload RESPONSE +orderer.example.com | AXYxULZpXYDQXt1KaLI= +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [7c7 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c2178cd8]Transaction completed. Sending COMPLETED +orderer.example.com | 2018-01-18 09:29:44.077 UTC [msp] Validate -> DEBU 574 MSP Org2MSP validating identity +peer0.org1.example.com | [7c8 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c2178cd8]Move state message COMPLETED +orderer.example.com | 2018-01-18 09:29:44.077 UTC [common/config] Validate -> DEBU 575 Anchor peers for org Org1MSP are +orderer.example.com | 2018-01-18 09:29:44.078 UTC [common/config] validateMSP -> DEBU 576 Setting up MSP for org Org1MSP +orderer.example.com | 2018-01-18 09:29:44.078 UTC [msp] NewBccspMsp -> DEBU 577 Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-18 09:29:44.078 UTC [msp] Setup -> DEBU 578 Setting up MSP instance Org1MSP +peer0.org1.example.com | [7c9 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c2178cd8]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [7ca 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c2178cd8]send state message COMPLETED +peer0.org1.example.com | [7cb 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c2178cd8]Received message COMPLETED from shim +orderer.example.com | 2018-01-18 09:29:44.078 UTC [msp/identity] newIdentity -> DEBU 579 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org1.example.com | [7cc 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c2178cd8]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | [7cd 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c2178cd8945e3928ec6137b2dbfc299c342f0b898735f6a4dad1fe2deda8ffcf]HandleMessage- COMPLETED. Notify +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +peer0.org1.example.com | [7ce 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:c2178cd8945e3928ec6137b2dbfc299c342f0b898735f6a4dad1fe2deda8ffcf +orderer.example.com | BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf +orderer.example.com | db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +peer0.org1.example.com | [7cf 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx +peer0.org1.example.com | [7d0 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [7d1 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer0.org1.example.com | [7d2 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [ea72a4cd-c1fd-46e0-ac94-ad3aa535214a] +peer0.org1.example.com | [7d3 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +orderer.example.com | JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi +peer0.org1.example.com | [7d4 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: c2178cd8945e3928ec6137b2dbfc299c342f0b898735f6a4dad1fe2deda8ffcf channel id: businesschannel chaincode id: name:"lscc" +orderer.example.com | /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ +orderer.example.com | H7n8z1pj5w== +peer0.org1.example.com | [7d5 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:44.079 UTC [msp/identity] newIdentity -> DEBU 57a Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org1.example.com | [7d6 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: c2178cd8945e3928ec6137b2dbfc299c342f0b898735f6a4dad1fe2deda8ffcf channel id: businesschannel version: 1.0.2 +peer0.org1.example.com | [7d7 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=c2178cd8945e3928ec6137b2dbfc299c342f0b898735f6a4dad1fe2deda8ffcf,syscc=true,proposal=0xc421c77a40,canname=escc:1.0.2 +peer0.org1.example.com | [7d8 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 +peer0.org1.example.com | [7d9 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [7da 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:44.080 UTC [msp/identity] newIdentity -> DEBU 57b Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +peer0.org1.example.com | [7db 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c2178cd8]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [7dc 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [7dd 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [7de 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c2178cd8]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [7df 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c2178cd8]Move state message TRANSACTION +peer0.org1.example.com | [7e0 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c2178cd8]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [7e1 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [7e2 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c2178cd8]sending state message TRANSACTION +peer0.org1.example.com | [7e3 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c2178cd8]Received message TRANSACTION from shim +peer0.org1.example.com | [7e4 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c2178cd8]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [7e5 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [c2178cd8]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [7e6 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer0.org1.example.com | [7e7 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +peer0.org1.example.com | [7e8 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c2178cd8]Transaction completed. Sending COMPLETED +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +peer0.org1.example.com | [7e9 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c2178cd8]Move state message COMPLETED +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +peer0.org1.example.com | [7ea 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c2178cd8]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:44.081 UTC [msp] Validate -> DEBU 57c MSP Org1MSP validating identity +orderer.example.com | 2018-01-18 09:29:44.081 UTC [msp] Setup -> DEBU 57d Setting up the MSP manager (3 msps) +orderer.example.com | 2018-01-18 09:29:44.081 UTC [msp] Setup -> DEBU 57e MSP manager setup complete, setup 3 msps +orderer.example.com | 2018-01-18 09:29:44.082 UTC [policies] GetPolicy -> DEBU 57f Returning policy Writers for evaluation +peer0.org1.example.com | [7eb 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c2178cd8]send state message COMPLETED +orderer.example.com | 2018-01-18 09:29:44.082 UTC [policies] CommitProposals -> DEBU 580 In commit adding relative sub-policy OrdererOrg/Writers to Orderer +orderer.example.com | 2018-01-18 09:29:44.082 UTC [policies] GetPolicy -> DEBU 581 Returning policy Admins for evaluation +peer0.org1.example.com | [7ec 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c2178cd8]Received message COMPLETED from shim +peer0.org1.example.com | [7ed 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c2178cd8]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | 2018-01-18 09:29:44.082 UTC [policies] CommitProposals -> DEBU 582 In commit adding relative sub-policy OrdererOrg/Admins to Orderer +peer0.org1.example.com | [7ee 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c2178cd8945e3928ec6137b2dbfc299c342f0b898735f6a4dad1fe2deda8ffcf]HandleMessage- COMPLETED. Notify +orderer.example.com | 2018-01-18 09:29:44.083 UTC [policies] GetPolicy -> DEBU 583 Returning policy Readers for evaluation +peer0.org1.example.com | [7ef 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:c2178cd8945e3928ec6137b2dbfc299c342f0b898735f6a4dad1fe2deda8ffcf +orderer.example.com | 2018-01-18 09:29:44.083 UTC [policies] CommitProposals -> DEBU 584 In commit adding relative sub-policy OrdererOrg/Readers to Orderer +peer0.org1.example.com | [7f0 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [7f1 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [7f2 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org1.example.com | [7f3 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [ea72a4cd-c1fd-46e0-ac94-ad3aa535214a] +peer0.org1.example.com | [7f4 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer0.org1.example.com | [7f5 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer0.org1.example.com | [7f6 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421f9ec00 +peer0.org1.example.com | [7f7 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [7f8 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [7f9 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +peer0.org1.example.com | [7fa 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +orderer.example.com | 2018-01-18 09:29:44.083 UTC [policies] GetPolicy -> DEBU 585 Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:44.084 UTC [policies] GetPolicy -> DEBU 586 Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:44.086 UTC [policies] GetPolicy -> DEBU 587 Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:44.086 UTC [policies] GetPolicy -> DEBU 588 Returning policy Writers for evaluation +peer0.org1.example.com | [7fb 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [7fc 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421eb09b0, header 0xc421f9ec30 +peer0.org1.example.com | [7fd 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +peer0.org1.example.com | [7fe 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 5c4900544a739535c441e2b83e460cbd26874d85a6822531fd3fdfbbe207842f +peer0.org1.example.com | [7ff 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [5c4900544a739535c441e2b83e460cbd26874d85a6822531fd3fdfbbe207842f] +peer0.org1.example.com | [800 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org1.example.com | [801 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [a37b7fdc-a30a-477d-9f8e-18c2fcd86298] +orderer.example.com | 2018-01-18 09:29:44.087 UTC [policies] GetPolicy -> DEBU 589 Returning policy Readers for evaluation +peer0.org1.example.com | [802 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 5c4900544a739535c441e2b83e460cbd26874d85a6822531fd3fdfbbe207842f channel id: businesschannel +orderer.example.com | 2018-01-18 09:29:44.087 UTC [policies] CommitProposals -> DEBU 58a In commit adding relative sub-policy Org1MSP/Readers to Application +orderer.example.com | 2018-01-18 09:29:44.088 UTC [policies] GetPolicy -> DEBU 58b Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:44.088 UTC [policies] CommitProposals -> DEBU 58c In commit adding relative sub-policy Org1MSP/Writers to Application +peer0.org1.example.com | [803 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 5c4900544a739535c441e2b83e460cbd26874d85a6822531fd3fdfbbe207842f channel id: businesschannel version: 1.0.2 +peer0.org1.example.com | [804 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=5c4900544a739535c441e2b83e460cbd26874d85a6822531fd3fdfbbe207842f,syscc=true,proposal=0xc421eb09b0,canname=lscc:1.0.2 +orderer.example.com | 2018-01-18 09:29:44.088 UTC [policies] GetPolicy -> DEBU 58d Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:44.088 UTC [policies] CommitProposals -> DEBU 58e In commit adding relative sub-policy Org1MSP/Admins to Application +orderer.example.com | 2018-01-18 09:29:44.088 UTC [policies] GetPolicy -> DEBU 58f Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:44.088 UTC [policies] CommitProposals -> DEBU 590 In commit adding relative sub-policy Org2MSP/Admins to Application +orderer.example.com | 2018-01-18 09:29:44.088 UTC [policies] GetPolicy -> DEBU 591 Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:44.088 UTC [policies] CommitProposals -> DEBU 592 In commit adding relative sub-policy Org2MSP/Readers to Application +orderer.example.com | 2018-01-18 09:29:44.089 UTC [policies] GetPolicy -> DEBU 593 Returning policy Writers for evaluation +peer0.org1.example.com | [805 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 +peer0.org1.example.com | [806 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [807 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +peer0.org1.example.com | [808 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [5c490054]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [809 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [80a 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | 2018-01-18 09:29:44.089 UTC [policies] CommitProposals -> DEBU 594 In commit adding relative sub-policy Org2MSP/Writers to Application +orderer.example.com | 2018-01-18 09:29:44.089 UTC [policies] GetPolicy -> DEBU 595 Returning policy Admins for evaluation +peer0.org1.example.com | [80b 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [5c490054]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [80c 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5c490054]Move state message TRANSACTION +orderer.example.com | 2018-01-18 09:29:44.089 UTC [policies] GetPolicy -> DEBU 596 Returning policy Admins for evaluation +peer0.org1.example.com | [80d 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5c490054]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | 2018-01-18 09:29:44.089 UTC [policies] GetPolicy -> DEBU 597 Returning policy OrdererOrg/Writers for evaluation +peer0.org1.example.com | [80e 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | 2018-01-18 09:29:44.090 UTC [policies] CommitProposals -> DEBU 598 In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +orderer.example.com | 2018-01-18 09:29:44.090 UTC [policies] GetPolicy -> DEBU 599 Returning policy OrdererOrg/Admins for evaluation +peer0.org1.example.com | [80f 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5c490054]sending state message TRANSACTION +orderer.example.com | 2018-01-18 09:29:44.090 UTC [policies] CommitProposals -> DEBU 59a In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +peer0.org1.example.com | [810 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5c490054]Received message TRANSACTION from shim +peer0.org1.example.com | [811 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5c490054]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [812 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [5c490054]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [813 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5c490054]Transaction completed. Sending COMPLETED +orderer.example.com | 2018-01-18 09:29:44.090 UTC [policies] GetPolicy -> DEBU 59b Returning policy OrdererOrg/Readers for evaluation +peer0.org1.example.com | [814 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5c490054]Move state message COMPLETED +peer0.org1.example.com | [815 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5c490054]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [816 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5c490054]send state message COMPLETED +orderer.example.com | 2018-01-18 09:29:44.090 UTC [policies] CommitProposals -> DEBU 59c In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +peer0.org1.example.com | [817 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5c490054]Received message COMPLETED from shim +orderer.example.com | 2018-01-18 09:29:44.091 UTC [policies] GetPolicy -> DEBU 59d Returning policy Readers for evaluation +peer0.org1.example.com | [818 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5c490054]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | 2018-01-18 09:29:44.091 UTC [policies] CommitProposals -> DEBU 59e In commit adding relative sub-policy Orderer/Readers to Channel +peer0.org1.example.com | [819 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5c4900544a739535c441e2b83e460cbd26874d85a6822531fd3fdfbbe207842f]HandleMessage- COMPLETED. Notify +orderer.example.com | 2018-01-18 09:29:44.091 UTC [policies] GetPolicy -> DEBU 59f Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:44.091 UTC [policies] CommitProposals -> DEBU 5a0 In commit adding relative sub-policy Orderer/Writers to Channel +orderer.example.com | 2018-01-18 09:29:44.091 UTC [policies] GetPolicy -> DEBU 5a1 Returning policy Admins for evaluation +peer0.org1.example.com | [81a 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:5c4900544a739535c441e2b83e460cbd26874d85a6822531fd3fdfbbe207842f +orderer.example.com | 2018-01-18 09:29:44.092 UTC [policies] CommitProposals -> DEBU 5a2 In commit adding relative sub-policy Orderer/Admins to Channel +orderer.example.com | 2018-01-18 09:29:44.092 UTC [policies] GetPolicy -> DEBU 5a3 Returning policy BlockValidation for evaluation +orderer.example.com | 2018-01-18 09:29:44.092 UTC [policies] CommitProposals -> DEBU 5a4 In commit adding relative sub-policy Orderer/BlockValidation to Channel +orderer.example.com | 2018-01-18 09:29:44.092 UTC [policies] GetPolicy -> DEBU 5a5 Returning policy Org1MSP/Writers for evaluation +orderer.example.com | 2018-01-18 09:29:44.092 UTC [policies] CommitProposals -> DEBU 5a6 In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +orderer.example.com | 2018-01-18 09:29:44.093 UTC [policies] GetPolicy -> DEBU 5a7 Returning policy Org1MSP/Admins for evaluation +orderer.example.com | 2018-01-18 09:29:44.093 UTC [policies] CommitProposals -> DEBU 5a8 In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +orderer.example.com | 2018-01-18 09:29:44.093 UTC [policies] GetPolicy -> DEBU 5a9 Returning policy Org2MSP/Admins for evaluation +orderer.example.com | 2018-01-18 09:29:44.093 UTC [policies] CommitProposals -> DEBU 5aa In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +orderer.example.com | 2018-01-18 09:29:44.093 UTC [policies] GetPolicy -> DEBU 5ab Returning policy Org2MSP/Readers for evaluation +orderer.example.com | 2018-01-18 09:29:44.093 UTC [policies] CommitProposals -> DEBU 5ac In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +orderer.example.com | 2018-01-18 09:29:44.093 UTC [policies] GetPolicy -> DEBU 5ad Returning policy Org2MSP/Writers for evaluation +orderer.example.com | 2018-01-18 09:29:44.094 UTC [policies] CommitProposals -> DEBU 5ae In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +orderer.example.com | 2018-01-18 09:29:44.094 UTC [policies] GetPolicy -> DEBU 5af Returning policy ChannelCreationPolicy for evaluation +orderer.example.com | 2018-01-18 09:29:44.094 UTC [policies] CommitProposals -> DEBU 5b0 In commit adding relative sub-policy Application/ChannelCreationPolicy to Channel +orderer.example.com | 2018-01-18 09:29:44.094 UTC [policies] GetPolicy -> DEBU 5b1 Returning policy Org1MSP/Readers for evaluation +orderer.example.com | 2018-01-18 09:29:44.094 UTC [policies] CommitProposals -> DEBU 5b2 In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +orderer.example.com | 2018-01-18 09:29:44.095 UTC [policies] GetPolicy -> DEBU 5b3 Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:44.095 UTC [policies] GetPolicy -> DEBU 5b4 Returning dummy reject all policy because Readers could not be found in /Application/Readers +orderer.example.com | 2018-01-18 09:29:44.095 UTC [policies] GetPolicy -> DEBU 5b5 Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:44.095 UTC [policies] GetPolicy -> DEBU 5b6 Returning dummy reject all policy because Writers could not be found in /Application/Writers +orderer.example.com | 2018-01-18 09:29:44.097 UTC [policies] GetPolicy -> DEBU 5b7 Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:44.098 UTC [policies] GetPolicy -> DEBU 5b8 Returning dummy reject all policy because Admins could not be found in /Application/Admins +orderer.example.com | 2018-01-18 09:29:44.099 UTC [common/configtx] addToMap -> DEBU 5b9 Adding to config map: [Groups] /Channel +orderer.example.com | 2018-01-18 09:29:44.099 UTC [common/configtx] addToMap -> DEBU 5ba Adding to config map: [Groups] /Channel/Application +orderer.example.com | 2018-01-18 09:29:44.100 UTC [common/configtx] addToMap -> DEBU 5bb Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | 2018-01-18 09:29:44.100 UTC [common/configtx] addToMap -> DEBU 5bc Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | 2018-01-18 09:29:44.100 UTC [common/configtx] addToMap -> DEBU 5bd Adding to config map: [Values] /Channel/Consortium +orderer.example.com | 2018-01-18 09:29:44.100 UTC [common/configtx] addToMap -> DEBU 5be Adding to config map: [Groups] /Channel +orderer.example.com | 2018-01-18 09:29:44.101 UTC [common/configtx] addToMap -> DEBU 5bf Adding to config map: [Groups] /Channel/Application +orderer.example.com | 2018-01-18 09:29:44.101 UTC [common/configtx] addToMap -> DEBU 5c0 Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | 2018-01-18 09:29:44.101 UTC [common/configtx] addToMap -> DEBU 5c1 Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | 2018-01-18 09:29:44.101 UTC [common/configtx] addToMap -> DEBU 5c2 Adding to config map: [Policy] /Channel/Application/Readers +orderer.example.com | 2018-01-18 09:29:44.101 UTC [common/configtx] addToMap -> DEBU 5c3 Adding to config map: [Policy] /Channel/Application/Admins +orderer.example.com | 2018-01-18 09:29:44.102 UTC [common/configtx] addToMap -> DEBU 5c4 Adding to config map: [Policy] /Channel/Application/Writers +orderer.example.com | 2018-01-18 09:29:44.102 UTC [common/configtx] addToMap -> DEBU 5c5 Adding to config map: [Values] /Channel/Consortium +orderer.example.com | 2018-01-18 09:29:44.102 UTC [policies] GetPolicy -> DEBU 5c6 Returning policy ChannelCreationPolicy for evaluation +orderer.example.com | 2018-01-18 09:29:44.103 UTC [cauthdsl] func1 -> DEBU 5c7 0xc42014aa18 gate 1516267784103024040 evaluation starts +orderer.example.com | 2018-01-18 09:29:44.103 UTC [cauthdsl] func2 -> DEBU 5c8 0xc42014aa18 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:29:44.103 UTC [cauthdsl] func2 -> DEBU 5c9 0xc42014aa18 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:29:44.104 UTC [msp/identity] newIdentity -> DEBU 5ca Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:44.105 UTC [cauthdsl] func2 -> DEBU 5cb 0xc42014aa18 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got Org1MSP) +orderer.example.com | 2018-01-18 09:29:44.105 UTC [cauthdsl] func2 -> DEBU 5cc 0xc42014aa18 principal evaluation fails +orderer.example.com | 2018-01-18 09:29:44.105 UTC [cauthdsl] func1 -> DEBU 5cd 0xc42014aa18 gate 1516267784103024040 evaluation fails +orderer.example.com | 2018-01-18 09:29:44.106 UTC [cauthdsl] func1 -> DEBU 5ce 0xc42014aa28 gate 1516267784106122790 evaluation starts +orderer.example.com | 2018-01-18 09:29:44.106 UTC [cauthdsl] func2 -> DEBU 5cf 0xc42014aa28 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:29:44.106 UTC [cauthdsl] func2 -> DEBU 5d0 0xc42014aa28 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:29:44.107 UTC [msp/identity] newIdentity -> DEBU 5d1 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:44.108 UTC [msp] SatisfiesPrincipal -> DEBU 5d2 Checking if identity satisfies ADMIN role for Org1MSP +orderer.example.com | 2018-01-18 09:29:44.109 UTC [cauthdsl] func2 -> DEBU 5d3 0xc42014aa28 principal matched by identity 0 +orderer.example.com | 2018-01-18 09:29:44.109 UTC [msp/identity] Verify -> DEBU 5d4 Verify: digest = 00000000 c2 fe 17 b4 c8 3b c1 d6 17 b0 19 ac b7 be a1 8c |.....;..........| +orderer.example.com | 00000010 b9 9f 4f e4 be 55 e9 d4 15 9e 05 c0 ee c6 5c 37 |..O..U........\7| +orderer.example.com | 2018-01-18 09:29:44.109 UTC [msp/identity] Verify -> DEBU 5d5 Verify: sig = 00000000 30 45 02 21 00 91 a7 72 c6 06 52 e5 fc dc 81 54 |0E.!...r..R....T| +orderer.example.com | 00000010 76 54 81 da 3e 58 9e 11 df f1 67 fb 92 ed 61 ef |vT..>X....g...a.| +orderer.example.com | 00000020 bc ae 13 4e 1c 02 20 3d 4a 89 e2 1b 4e e0 cd 08 |...N.. =J...N...| +orderer.example.com | 00000030 aa 9f b4 66 db 3a 4a 2f 16 cc ff a7 a1 0c 8b ca |...f.:J/........| +orderer.example.com | 00000040 0f 7a a5 e9 a8 21 9c |.z...!.| +orderer.example.com | 2018-01-18 09:29:44.110 UTC [cauthdsl] func2 -> DEBU 5d6 0xc42014aa28 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-18 09:29:44.110 UTC [cauthdsl] func1 -> DEBU 5d7 0xc42014aa28 gate 1516267784106122790 evaluation succeeds +orderer.example.com | 2018-01-18 09:29:44.111 UTC [common/configtx] recurseConfigMap -> DEBU 5d8 Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:44.111 UTC [common/configtx] recurseConfigMap -> DEBU 5d9 Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:44.111 UTC [common/configtx] recurseConfigMap -> DEBU 5da Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:44.112 UTC [common/configtx] recurseConfigMap -> DEBU 5db Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:44.112 UTC [common/configtx] recurseConfigMap -> DEBU 5dc Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:44.112 UTC [common/configtx] recurseConfigMap -> DEBU 5dd Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:44.113 UTC [common/configtx] recurseConfigMap -> DEBU 5de Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:44.113 UTC [common/configtx] recurseConfigMap -> DEBU 5df Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:44.113 UTC [common/configtx] recurseConfigMap -> DEBU 5e0 Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:44.114 UTC [common/configtx] recurseConfigMap -> DEBU 5e1 Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:44.114 UTC [common/configtx] recurseConfigMap -> DEBU 5e2 Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:44.114 UTC [common/configtx] recurseConfigMap -> DEBU 5e3 Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:44.114 UTC [common/configtx] recurseConfigMap -> DEBU 5e4 Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:44.114 UTC [common/configtx] recurseConfigMap -> DEBU 5e5 Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:44.115 UTC [common/configtx] recurseConfigMap -> DEBU 5e6 Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:44.115 UTC [common/configtx] recurseConfigMap -> DEBU 5e7 Setting policy for key BlockValidation to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:44.115 UTC [common/configtx] recurseConfigMap -> DEBU 5e8 Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:44.116 UTC [common/configtx] recurseConfigMap -> DEBU 5e9 Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:44.116 UTC [common/configtx] recurseConfigMap -> DEBU 5ea Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:44.117 UTC [common/configtx] processConfig -> DEBU 5eb Beginning new config for channel businesschannel +orderer.example.com | 2018-01-18 09:29:44.117 UTC [common/config] NewStandardValues -> DEBU 5ec Initializing protos for *config.ChannelProtos +orderer.example.com | 2018-01-18 09:29:44.118 UTC [common/config] initializeProtosStruct -> DEBU 5ed Processing field: HashingAlgorithm +orderer.example.com | 2018-01-18 09:29:44.119 UTC [common/config] initializeProtosStruct -> DEBU 5ee Processing field: BlockDataHashingStructure +orderer.example.com | 2018-01-18 09:29:44.119 UTC [common/config] initializeProtosStruct -> DEBU 5ef Processing field: OrdererAddresses +orderer.example.com | 2018-01-18 09:29:44.119 UTC [common/config] initializeProtosStruct -> DEBU 5f0 Processing field: Consortium +orderer.example.com | 2018-01-18 09:29:44.120 UTC [policies] ProposePolicy -> DEBU 5f1 Proposed new policy Readers for Channel +orderer.example.com | 2018-01-18 09:29:44.120 UTC [policies] ProposePolicy -> DEBU 5f2 Proposed new policy Writers for Channel +orderer.example.com | 2018-01-18 09:29:44.120 UTC [policies] ProposePolicy -> DEBU 5f3 Proposed new policy Admins for Channel +orderer.example.com | 2018-01-18 09:29:44.120 UTC [common/config] NewStandardValues -> DEBU 5f4 Initializing protos for *struct {} +orderer.example.com | 2018-01-18 09:29:44.121 UTC [policies] ProposePolicy -> DEBU 5f5 Proposed new policy Admins for Application +orderer.example.com | 2018-01-18 09:29:44.121 UTC [policies] ProposePolicy -> DEBU 5f6 Proposed new policy Writers for Application +orderer.example.com | 2018-01-18 09:29:44.122 UTC [policies] ProposePolicy -> DEBU 5f7 Proposed new policy Readers for Application +orderer.example.com | 2018-01-18 09:29:44.122 UTC [common/config] NewStandardValues -> DEBU 5f8 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:44.122 UTC [common/config] initializeProtosStruct -> DEBU 5f9 Processing field: MSP +orderer.example.com | 2018-01-18 09:29:44.122 UTC [common/config] NewStandardValues -> DEBU 5fa Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | 2018-01-18 09:29:44.122 UTC [common/config] initializeProtosStruct -> DEBU 5fb Processing field: AnchorPeers +orderer.example.com | 2018-01-18 09:29:44.123 UTC [common/config] NewStandardValues -> DEBU 5fc Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:44.123 UTC [common/config] initializeProtosStruct -> DEBU 5fd Processing field: MSP +orderer.example.com | 2018-01-18 09:29:44.123 UTC [policies] ProposePolicy -> DEBU 5fe Proposed new policy Writers for Org1MSP +orderer.example.com | 2018-01-18 09:29:44.123 UTC [policies] ProposePolicy -> DEBU 5ff Proposed new policy Admins for Org1MSP +orderer.example.com | 2018-01-18 09:29:44.123 UTC [policies] ProposePolicy -> DEBU 600 Proposed new policy Readers for Org1MSP +orderer.example.com | 2018-01-18 09:29:44.124 UTC [common/config] NewStandardValues -> DEBU 601 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:44.124 UTC [common/config] initializeProtosStruct -> DEBU 602 Processing field: MSP +orderer.example.com | 2018-01-18 09:29:44.124 UTC [common/config] NewStandardValues -> DEBU 603 Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | 2018-01-18 09:29:44.124 UTC [common/config] initializeProtosStruct -> DEBU 604 Processing field: AnchorPeers +orderer.example.com | 2018-01-18 09:29:44.125 UTC [common/config] NewStandardValues -> DEBU 605 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:44.125 UTC [common/config] initializeProtosStruct -> DEBU 606 Processing field: MSP +orderer.example.com | 2018-01-18 09:29:44.125 UTC [policies] ProposePolicy -> DEBU 607 Proposed new policy Admins for Org2MSP +orderer.example.com | 2018-01-18 09:29:44.125 UTC [policies] ProposePolicy -> DEBU 608 Proposed new policy Readers for Org2MSP +orderer.example.com | 2018-01-18 09:29:44.125 UTC [policies] ProposePolicy -> DEBU 609 Proposed new policy Writers for Org2MSP +orderer.example.com | 2018-01-18 09:29:44.125 UTC [common/config] NewStandardValues -> DEBU 60a Initializing protos for *config.OrdererProtos +orderer.example.com | 2018-01-18 09:29:44.125 UTC [common/config] initializeProtosStruct -> DEBU 60b Processing field: ConsensusType +orderer.example.com | 2018-01-18 09:29:44.126 UTC [common/config] initializeProtosStruct -> DEBU 60c Processing field: BatchSize +orderer.example.com | 2018-01-18 09:29:44.126 UTC [common/config] initializeProtosStruct -> DEBU 60d Processing field: BatchTimeout +orderer.example.com | 2018-01-18 09:29:44.126 UTC [common/config] initializeProtosStruct -> DEBU 60e Processing field: KafkaBrokers +orderer.example.com | 2018-01-18 09:29:44.126 UTC [common/config] initializeProtosStruct -> DEBU 60f Processing field: ChannelRestrictions +orderer.example.com | 2018-01-18 09:29:44.126 UTC [policies] ProposePolicy -> DEBU 610 Proposed new policy Readers for Orderer +orderer.example.com | 2018-01-18 09:29:44.127 UTC [policies] ProposePolicy -> DEBU 611 Proposed new policy Writers for Orderer +orderer.example.com | 2018-01-18 09:29:44.127 UTC [policies] ProposePolicy -> DEBU 612 Proposed new policy Admins for Orderer +orderer.example.com | 2018-01-18 09:29:44.127 UTC [policies] ProposePolicy -> DEBU 613 Proposed new policy BlockValidation for Orderer +orderer.example.com | 2018-01-18 09:29:44.128 UTC [common/config] NewStandardValues -> DEBU 614 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:44.128 UTC [common/config] initializeProtosStruct -> DEBU 615 Processing field: MSP +orderer.example.com | 2018-01-18 09:29:44.128 UTC [policies] ProposePolicy -> DEBU 616 Proposed new policy Writers for OrdererOrg +orderer.example.com | 2018-01-18 09:29:44.128 UTC [policies] ProposePolicy -> DEBU 617 Proposed new policy Admins for OrdererOrg +orderer.example.com | 2018-01-18 09:29:44.129 UTC [policies] ProposePolicy -> DEBU 618 Proposed new policy Readers for OrdererOrg +orderer.example.com | 2018-01-18 09:29:44.129 UTC [common/config] Validate -> DEBU 619 Anchor peers for org Org1MSP are +orderer.example.com | 2018-01-18 09:29:44.129 UTC [common/config] validateMSP -> DEBU 61a Setting up MSP for org Org1MSP +orderer.example.com | 2018-01-18 09:29:44.130 UTC [msp] NewBccspMsp -> DEBU 61b Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-18 09:29:44.131 UTC [msp] Setup -> DEBU 61c Setting up MSP instance Org1MSP +orderer.example.com | 2018-01-18 09:29:44.131 UTC [msp/identity] newIdentity -> DEBU 61d Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +orderer.example.com | BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf +orderer.example.com | db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx +orderer.example.com | JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi +orderer.example.com | /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ +orderer.example.com | H7n8z1pj5w== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:44.132 UTC [msp/identity] newIdentity -> DEBU 61e Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:44.133 UTC [msp/identity] newIdentity -> DEBU 61f Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:44.133 UTC [msp] Validate -> DEBU 620 MSP Org1MSP validating identity +orderer.example.com | 2018-01-18 09:29:44.134 UTC [common/config] Validate -> DEBU 621 Anchor peers for org Org2MSP are +orderer.example.com | 2018-01-18 09:29:44.134 UTC [common/config] validateMSP -> DEBU 622 Setting up MSP for org Org2MSP +orderer.example.com | 2018-01-18 09:29:44.134 UTC [msp] NewBccspMsp -> DEBU 623 Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-18 09:29:44.134 UTC [msp] Setup -> DEBU 624 Setting up MSP instance Org2MSP +orderer.example.com | 2018-01-18 09:29:44.134 UTC [msp/identity] newIdentity -> DEBU 625 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +orderer.example.com | mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 +orderer.example.com | sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ +orderer.example.com | xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv +orderer.example.com | WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk +orderer.example.com | SCjyRdD3aQ== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:44.135 UTC [msp/identity] newIdentity -> DEBU 626 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +orderer.example.com | AXYxULZpXYDQXt1KaLI= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:44.135 UTC [msp/identity] newIdentity -> DEBU 627 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +orderer.example.com | AXYxULZpXYDQXt1KaLI= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:44.136 UTC [msp] Validate -> DEBU 628 MSP Org2MSP validating identity +orderer.example.com | 2018-01-18 09:29:44.136 UTC [common/config] validateMSP -> DEBU 629 Setting up MSP for org OrdererOrg +orderer.example.com | 2018-01-18 09:29:44.136 UTC [msp] NewBccspMsp -> DEBU 62a Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-18 09:29:44.136 UTC [msp] Setup -> DEBU 62b Setting up MSP instance OrdererMSP +orderer.example.com | 2018-01-18 09:29:44.137 UTC [msp/identity] newIdentity -> DEBU 62c Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +orderer.example.com | cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW +orderer.example.com | gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +orderer.example.com | AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK +orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs +orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:44.137 UTC [msp/identity] newIdentity -> DEBU 62d Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +peer0.org1.example.com | [81b 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:44.138 UTC [msp/identity] newIdentity -> DEBU 62e Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [81c 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [81d 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +orderer.example.com | 2018-01-18 09:29:44.139 UTC [msp] Validate -> DEBU 62f MSP OrdererMSP validating identity +orderer.example.com | 2018-01-18 09:29:44.139 UTC [msp] Setup -> DEBU 630 Setting up the MSP manager (3 msps) +orderer.example.com | 2018-01-18 09:29:44.139 UTC [msp] Setup -> DEBU 631 MSP manager setup complete, setup 3 msps +orderer.example.com | 2018-01-18 09:29:44.139 UTC [common/configtx] addToMap -> DEBU 632 Adding to config map: [Groups] /Channel +orderer.example.com | 2018-01-18 09:29:44.140 UTC [common/configtx] addToMap -> DEBU 633 Adding to config map: [Groups] /Channel/Application +orderer.example.com | 2018-01-18 09:29:44.140 UTC [common/configtx] addToMap -> DEBU 634 Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | 2018-01-18 09:29:44.140 UTC [common/configtx] addToMap -> DEBU 635 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +orderer.example.com | 2018-01-18 09:29:44.140 UTC [common/configtx] addToMap -> DEBU 636 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | 2018-01-18 09:29:44.140 UTC [common/configtx] addToMap -> DEBU 637 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | 2018-01-18 09:29:44.140 UTC [common/configtx] addToMap -> DEBU 638 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | 2018-01-18 09:29:44.140 UTC [common/configtx] addToMap -> DEBU 639 Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | 2018-01-18 09:29:44.140 UTC [common/configtx] addToMap -> DEBU 63a Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +orderer.example.com | 2018-01-18 09:29:44.140 UTC [common/configtx] addToMap -> DEBU 63b Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | 2018-01-18 09:29:44.140 UTC [common/configtx] addToMap -> DEBU 63c Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | 2018-01-18 09:29:44.141 UTC [common/configtx] addToMap -> DEBU 63d Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | 2018-01-18 09:29:44.141 UTC [common/configtx] addToMap -> DEBU 63e Adding to config map: [Policy] /Channel/Application/Writers +orderer.example.com | 2018-01-18 09:29:44.141 UTC [common/configtx] addToMap -> DEBU 63f Adding to config map: [Policy] /Channel/Application/Readers +orderer.example.com | 2018-01-18 09:29:44.141 UTC [common/configtx] addToMap -> DEBU 640 Adding to config map: [Policy] /Channel/Application/Admins +orderer.example.com | 2018-01-18 09:29:44.141 UTC [common/configtx] addToMap -> DEBU 641 Adding to config map: [Groups] /Channel/Orderer +orderer.example.com | 2018-01-18 09:29:44.141 UTC [common/configtx] addToMap -> DEBU 642 Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +orderer.example.com | 2018-01-18 09:29:44.141 UTC [common/configtx] addToMap -> DEBU 643 Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +orderer.example.com | 2018-01-18 09:29:44.141 UTC [common/configtx] addToMap -> DEBU 644 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +orderer.example.com | 2018-01-18 09:29:44.142 UTC [common/configtx] addToMap -> DEBU 645 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +orderer.example.com | 2018-01-18 09:29:44.142 UTC [common/configtx] addToMap -> DEBU 646 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | 2018-01-18 09:29:44.142 UTC [common/configtx] addToMap -> DEBU 647 Adding to config map: [Values] /Channel/Orderer/BatchSize +orderer.example.com | 2018-01-18 09:29:44.142 UTC [common/configtx] addToMap -> DEBU 648 Adding to config map: [Values] /Channel/Orderer/BatchTimeout +orderer.example.com | 2018-01-18 09:29:44.142 UTC [common/configtx] addToMap -> DEBU 649 Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +orderer.example.com | 2018-01-18 09:29:44.142 UTC [common/configtx] addToMap -> DEBU 64a Adding to config map: [Values] /Channel/Orderer/ConsensusType +orderer.example.com | 2018-01-18 09:29:44.142 UTC [common/configtx] addToMap -> DEBU 64b Adding to config map: [Policy] /Channel/Orderer/Readers +orderer.example.com | 2018-01-18 09:29:44.142 UTC [common/configtx] addToMap -> DEBU 64c Adding to config map: [Policy] /Channel/Orderer/Writers +orderer.example.com | 2018-01-18 09:29:44.142 UTC [common/configtx] addToMap -> DEBU 64d Adding to config map: [Policy] /Channel/Orderer/Admins +orderer.example.com | 2018-01-18 09:29:44.142 UTC [common/configtx] addToMap -> DEBU 64e Adding to config map: [Policy] /Channel/Orderer/BlockValidation +orderer.example.com | 2018-01-18 09:29:44.142 UTC [common/configtx] addToMap -> DEBU 64f Adding to config map: [Values] /Channel/BlockDataHashingStructure +orderer.example.com | 2018-01-18 09:29:44.142 UTC [common/configtx] addToMap -> DEBU 650 Adding to config map: [Values] /Channel/OrdererAddresses +peer0.org1.example.com | [81e 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [a37b7fdc-a30a-477d-9f8e-18c2fcd86298] +orderer.example.com | 2018-01-18 09:29:44.142 UTC [common/configtx] addToMap -> DEBU 651 Adding to config map: [Values] /Channel/HashingAlgorithm +orderer.example.com | 2018-01-18 09:29:44.143 UTC [common/configtx] addToMap -> DEBU 652 Adding to config map: [Values] /Channel/Consortium +orderer.example.com | 2018-01-18 09:29:44.143 UTC [common/configtx] addToMap -> DEBU 653 Adding to config map: [Policy] /Channel/Readers +orderer.example.com | 2018-01-18 09:29:44.143 UTC [common/configtx] addToMap -> DEBU 654 Adding to config map: [Policy] /Channel/Writers +orderer.example.com | 2018-01-18 09:29:44.143 UTC [common/configtx] addToMap -> DEBU 655 Adding to config map: [Policy] /Channel/Admins +orderer.example.com | 2018-01-18 09:29:44.143 UTC [common/configtx] addToMap -> DEBU 656 Adding to config map: [Groups] /Channel +orderer.example.com | 2018-01-18 09:29:44.143 UTC [common/configtx] addToMap -> DEBU 657 Adding to config map: [Groups] /Channel/Application +orderer.example.com | 2018-01-18 09:29:44.143 UTC [common/configtx] addToMap -> DEBU 658 Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | 2018-01-18 09:29:44.144 UTC [common/configtx] addToMap -> DEBU 659 Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | 2018-01-18 09:29:44.144 UTC [common/configtx] addToMap -> DEBU 65a Adding to config map: [Values] /Channel/Consortium +orderer.example.com | 2018-01-18 09:29:44.144 UTC [common/configtx] addToMap -> DEBU 65b Adding to config map: [Groups] /Channel +orderer.example.com | 2018-01-18 09:29:44.144 UTC [common/configtx] addToMap -> DEBU 65c Adding to config map: [Groups] /Channel/Application +orderer.example.com | 2018-01-18 09:29:44.144 UTC [common/configtx] addToMap -> DEBU 65d Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | 2018-01-18 09:29:44.144 UTC [common/configtx] addToMap -> DEBU 65e Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | 2018-01-18 09:29:44.144 UTC [common/configtx] addToMap -> DEBU 65f Adding to config map: [Policy] /Channel/Application/Admins +orderer.example.com | 2018-01-18 09:29:44.144 UTC [common/configtx] addToMap -> DEBU 660 Adding to config map: [Policy] /Channel/Application/Writers +orderer.example.com | 2018-01-18 09:29:44.144 UTC [common/configtx] addToMap -> DEBU 661 Adding to config map: [Policy] /Channel/Application/Readers +orderer.example.com | 2018-01-18 09:29:44.144 UTC [common/configtx] addToMap -> DEBU 662 Adding to config map: [Values] /Channel/Consortium +orderer.example.com | 2018-01-18 09:29:44.145 UTC [policies] GetPolicy -> DEBU 663 Returning policy ChannelCreationPolicy for evaluation +orderer.example.com | 2018-01-18 09:29:44.145 UTC [cauthdsl] func1 -> DEBU 664 0xc42014b170 gate 1516267784145252315 evaluation starts +orderer.example.com | 2018-01-18 09:29:44.145 UTC [cauthdsl] func2 -> DEBU 665 0xc42014b170 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:29:44.145 UTC [cauthdsl] func2 -> DEBU 666 0xc42014b170 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:29:44.146 UTC [msp/identity] newIdentity -> DEBU 667 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:44.146 UTC [cauthdsl] func2 -> DEBU 668 0xc42014b170 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got Org1MSP) +orderer.example.com | 2018-01-18 09:29:44.146 UTC [cauthdsl] func2 -> DEBU 669 0xc42014b170 principal evaluation fails +orderer.example.com | 2018-01-18 09:29:44.146 UTC [cauthdsl] func1 -> DEBU 66a 0xc42014b170 gate 1516267784145252315 evaluation fails +orderer.example.com | 2018-01-18 09:29:44.146 UTC [cauthdsl] func1 -> DEBU 66b 0xc42014b180 gate 1516267784146647717 evaluation starts +orderer.example.com | 2018-01-18 09:29:44.146 UTC [cauthdsl] func2 -> DEBU 66c 0xc42014b180 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:29:44.146 UTC [cauthdsl] func2 -> DEBU 66d 0xc42014b180 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:29:44.147 UTC [msp/identity] newIdentity -> DEBU 66e Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org1.example.com | [81f 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org1.example.com | [820 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 5c4900544a739535c441e2b83e460cbd26874d85a6822531fd3fdfbbe207842f channel id: businesschannel chaincode id: name:"lscc" +peer0.org1.example.com | [821 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc +peer0.org1.example.com | [822 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 5c4900544a739535c441e2b83e460cbd26874d85a6822531fd3fdfbbe207842f channel id: businesschannel version: 1.0.2 +peer0.org1.example.com | [823 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=5c4900544a739535c441e2b83e460cbd26874d85a6822531fd3fdfbbe207842f,syscc=true,proposal=0xc421eb09b0,canname=escc:1.0.2 +peer0.org1.example.com | [824 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 +peer0.org1.example.com | [825 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [826 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 +peer0.org1.example.com | [827 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [5c490054]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [828 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [829 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [82a 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [5c490054]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [82b 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5c490054]Move state message TRANSACTION +peer0.org1.example.com | [82c 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5c490054]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [82d 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [82e 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5c490054]sending state message TRANSACTION +peer0.org1.example.com | [82f 01-18 09:31:28.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5c490054]Received message TRANSACTION from shim +peer0.org1.example.com | [830 01-18 09:31:28.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5c490054]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [831 01-18 09:31:28.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [5c490054]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [832 01-18 09:31:28.84 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer0.org1.example.com | [833 01-18 09:31:28.84 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer0.org1.example.com | [834 01-18 09:31:28.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5c490054]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [835 01-18 09:31:28.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5c490054]Move state message COMPLETED +peer0.org1.example.com | [836 01-18 09:31:28.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5c490054]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [837 01-18 09:31:28.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5c490054]send state message COMPLETED +peer0.org1.example.com | [838 01-18 09:31:28.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5c490054]Received message COMPLETED from shim +peer0.org1.example.com | [839 01-18 09:31:28.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5c490054]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [83a 01-18 09:31:28.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5c4900544a739535c441e2b83e460cbd26874d85a6822531fd3fdfbbe207842f]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [83b 01-18 09:31:28.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:5c4900544a739535c441e2b83e460cbd26874d85a6822531fd3fdfbbe207842f +peer0.org1.example.com | [83c 01-18 09:31:28.84 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [83d 01-18 09:31:28.84 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [83e 01-18 09:31:28.84 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org1.example.com | [83f 01-18 09:31:28.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [a37b7fdc-a30a-477d-9f8e-18c2fcd86298] +peer0.org1.example.com | [840 01-18 09:31:28.84 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer0.org1.example.com | [841 01-18 09:31:29.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer0.org1.example.com | [842 01-18 09:31:29.04 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421fd6f30 +peer0.org1.example.com | [843 01-18 09:31:29.04 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [844 01-18 09:31:29.04 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [845 01-18 09:31:29.04 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +peer0.org1.example.com | [846 01-18 09:31:29.04 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [847 01-18 09:31:29.04 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [848 01-18 09:31:29.04 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4219520f0, header 0xc421fd6f60 +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +peer0.org1.example.com | [849 01-18 09:31:29.04 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:44.147 UTC [msp] SatisfiesPrincipal -> DEBU 66f Checking if identity satisfies ADMIN role for Org1MSP +orderer.example.com | 2018-01-18 09:29:44.147 UTC [cauthdsl] func2 -> DEBU 670 0xc42014b180 principal matched by identity 0 +orderer.example.com | 2018-01-18 09:29:44.147 UTC [msp/identity] Verify -> DEBU 671 Verify: digest = 00000000 c2 fe 17 b4 c8 3b c1 d6 17 b0 19 ac b7 be a1 8c |.....;..........| +orderer.example.com | 00000010 b9 9f 4f e4 be 55 e9 d4 15 9e 05 c0 ee c6 5c 37 |..O..U........\7| +orderer.example.com | 2018-01-18 09:29:44.147 UTC [msp/identity] Verify -> DEBU 672 Verify: sig = 00000000 30 45 02 21 00 91 a7 72 c6 06 52 e5 fc dc 81 54 |0E.!...r..R....T| +orderer.example.com | 00000010 76 54 81 da 3e 58 9e 11 df f1 67 fb 92 ed 61 ef |vT..>X....g...a.| +orderer.example.com | 00000020 bc ae 13 4e 1c 02 20 3d 4a 89 e2 1b 4e e0 cd 08 |...N.. =J...N...| +orderer.example.com | 00000030 aa 9f b4 66 db 3a 4a 2f 16 cc ff a7 a1 0c 8b ca |...f.:J/........| +orderer.example.com | 00000040 0f 7a a5 e9 a8 21 9c |.z...!.| +peer0.org1.example.com | [84a 01-18 09:31:29.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: ee9283f8aab60aa44780090e8860dd262d46be6b7cd740fbb90aace1a11a4bc9 +peer0.org1.example.com | [84b 01-18 09:31:29.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [ee9283f8aab60aa44780090e8860dd262d46be6b7cd740fbb90aace1a11a4bc9] +peer0.org1.example.com | [84c 01-18 09:31:29.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +orderer.example.com | 2018-01-18 09:29:44.148 UTC [cauthdsl] func2 -> DEBU 673 0xc42014b180 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-18 09:29:44.148 UTC [cauthdsl] func1 -> DEBU 674 0xc42014b180 gate 1516267784146647717 evaluation succeeds +orderer.example.com | 2018-01-18 09:29:44.148 UTC [common/configtx] recurseConfigMap -> DEBU 675 Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:44.148 UTC [common/configtx] recurseConfigMap -> DEBU 676 Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [84d 01-18 09:31:29.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [cc52e109-a423-41d7-9328-c69ca360ba9e] +peer0.org1.example.com | [84e 01-18 09:31:29.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: ee9283f8aab60aa44780090e8860dd262d46be6b7cd740fbb90aace1a11a4bc9 channel id: businesschannel +orderer.example.com | 2018-01-18 09:29:44.148 UTC [common/configtx] recurseConfigMap -> DEBU 677 Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [84f 01-18 09:31:29.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: ee9283f8aab60aa44780090e8860dd262d46be6b7cd740fbb90aace1a11a4bc9 channel id: businesschannel version: 1.0.2 +peer0.org1.example.com | [850 01-18 09:31:29.04 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=ee9283f8aab60aa44780090e8860dd262d46be6b7cd740fbb90aace1a11a4bc9,syscc=true,proposal=0xc4219520f0,canname=lscc:1.0.2 +peer0.org1.example.com | [851 01-18 09:31:29.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 +peer0.org1.example.com | [852 01-18 09:31:29.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [853 01-18 09:31:29.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +peer0.org1.example.com | [854 01-18 09:31:29.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ee9283f8]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [855 01-18 09:31:29.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | 2018-01-18 09:29:44.148 UTC [common/configtx] recurseConfigMap -> DEBU 678 Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [856 01-18 09:31:29.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | 2018-01-18 09:29:44.148 UTC [common/configtx] recurseConfigMap -> DEBU 679 Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:44.148 UTC [common/configtx] recurseConfigMap -> DEBU 67a Setting policy for key BlockValidation to policy: mod_policy:"Admins" +peer0.org1.example.com | [857 01-18 09:31:29.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ee9283f8]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [858 01-18 09:31:29.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ee9283f8]Move state message TRANSACTION +peer0.org1.example.com | [859 01-18 09:31:29.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ee9283f8]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | 2018-01-18 09:29:44.148 UTC [common/configtx] recurseConfigMap -> DEBU 67b Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:44.149 UTC [common/configtx] recurseConfigMap -> DEBU 67c Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [85a 01-18 09:31:29.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [85b 01-18 09:31:29.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ee9283f8]sending state message TRANSACTION +peer0.org1.example.com | [85c 01-18 09:31:29.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ee9283f8]Received message TRANSACTION from shim +orderer.example.com | 2018-01-18 09:29:44.149 UTC [common/configtx] recurseConfigMap -> DEBU 67d Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [85d 01-18 09:31:29.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ee9283f8]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [85e 01-18 09:31:29.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [ee9283f8]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | 2018-01-18 09:29:44.149 UTC [common/configtx] recurseConfigMap -> DEBU 67e Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:44.149 UTC [common/configtx] recurseConfigMap -> DEBU 67f Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:44.149 UTC [common/configtx] recurseConfigMap -> DEBU 680 Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:44.149 UTC [common/configtx] recurseConfigMap -> DEBU 681 Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:44.149 UTC [common/configtx] recurseConfigMap -> DEBU 682 Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:44.150 UTC [common/configtx] recurseConfigMap -> DEBU 683 Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:44.150 UTC [common/configtx] recurseConfigMap -> DEBU 684 Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:44.150 UTC [common/configtx] recurseConfigMap -> DEBU 685 Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:44.150 UTC [common/configtx] recurseConfigMap -> DEBU 686 Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [85f 01-18 09:31:29.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.GetStateByRange.handleGetStateByRange.handleGetStateByRange -> DEBU [ee9283f8]Sending GET_STATE_BY_RANGE +peer0.org1.example.com | [860 01-18 09:31:29.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ee9283f8]Received message GET_STATE_BY_RANGE from shim +peer0.org1.example.com | [861 01-18 09:31:29.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ee9283f8]Fabric side Handling ChaincodeMessage of type: GET_STATE_BY_RANGE in state ready +peer0.org1.example.com | [862 01-18 09:31:29.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func4.afterGetStateByRange -> DEBU Received GET_STATE_BY_RANGE, invoking get state from ledger +orderer.example.com | 2018-01-18 09:29:44.150 UTC [common/configtx] recurseConfigMap -> DEBU 687 Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [863 01-18 09:31:29.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func4.afterGetStateByRange -> DEBU Exiting GET_STATE_BY_RANGE +peer0.org1.example.com | [865 01-18 09:31:29.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [864 01-18 09:31:29.05 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] GetStateRangeScanIterator.getStateRangeScanIterator.newResultsItr.GetStateRangeScanIterator.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x0, 0x6c, 0x73, 0x63, 0x63, 0x0, 0x1}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x0, 0x6c, 0x73, 0x63, 0x63, 0x1}] +orderer.example.com | 2018-01-18 09:29:44.150 UTC [common/configtx] processConfig -> DEBU 688 Beginning new config for channel businesschannel +orderer.example.com | 2018-01-18 09:29:44.150 UTC [common/config] NewStandardValues -> DEBU 689 Initializing protos for *config.ChannelProtos +peer0.org1.example.com | [866 01-18 09:31:29.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/rwsetutil] getQueryResponse.Next.updateRangeQueryInfo.AddResult -> DEBU Adding a result +peer0.org1.example.com | [867 01-18 09:31:29.05 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU Got keys and values. Sending RESPONSE +orderer.example.com | 2018-01-18 09:29:44.150 UTC [common/config] initializeProtosStruct -> DEBU 68a Processing field: HashingAlgorithm +peer0.org1.example.com | [868 01-18 09:31:29.05 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [ee9283f8]handleGetStateByRange serial send RESPONSE +orderer.example.com | 2018-01-18 09:29:44.150 UTC [common/config] initializeProtosStruct -> DEBU 68b Processing field: BlockDataHashingStructure +peer0.org1.example.com | [869 01-18 09:31:29.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ee9283f8]Received message RESPONSE from shim +orderer.example.com | 2018-01-18 09:29:44.150 UTC [common/config] initializeProtosStruct -> DEBU 68c Processing field: OrdererAddresses +orderer.example.com | 2018-01-18 09:29:44.151 UTC [common/config] initializeProtosStruct -> DEBU 68d Processing field: Consortium +peer0.org1.example.com | [86a 01-18 09:31:29.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ee9283f8]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer0.org1.example.com | [86b 01-18 09:31:29.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [ee9283f8]before send +peer0.org1.example.com | [86c 01-18 09:31:29.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [ee9283f8]after send +peer0.org1.example.com | [86e 01-18 09:31:29.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [ee9283f8]Received RESPONSE, communicated (state:ready) +peer0.org1.example.com | [86d 01-18 09:31:29.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.GetStateByRange.handleGetStateByRange.handleGetStateByRange -> DEBU [ee9283f8]Received RESPONSE. Successfully got range +peer0.org1.example.com | [86f 01-18 09:31:29.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.Close.handleQueryStateClose -> DEBU [ee9283f8]Sending QUERY_STATE_CLOSE +peer0.org1.example.com | [870 01-18 09:31:29.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ee9283f8]Received message QUERY_STATE_CLOSE from shim +peer0.org1.example.com | [871 01-18 09:31:29.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ee9283f8]Fabric side Handling ChaincodeMessage of type: QUERY_STATE_CLOSE in state ready +orderer.example.com | 2018-01-18 09:29:44.151 UTC [policies] ProposePolicy -> DEBU 68e Proposed new policy Writers for Channel +peer0.org1.example.com | [872 01-18 09:31:29.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func8.afterQueryStateClose -> DEBU Received QUERY_STATE_CLOSE, invoking query state close from ledger +orderer.example.com | 2018-01-18 09:29:44.151 UTC [policies] ProposePolicy -> DEBU 68f Proposed new policy Admins for Channel +peer0.org1.example.com | [873 01-18 09:31:29.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func8.afterQueryStateClose -> DEBU Exiting QUERY_STATE_CLOSE +orderer.example.com | 2018-01-18 09:29:44.151 UTC [policies] ProposePolicy -> DEBU 690 Proposed new policy Readers for Channel +peer0.org1.example.com | [874 01-18 09:31:29.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | 2018-01-18 09:29:44.151 UTC [common/config] NewStandardValues -> DEBU 691 Initializing protos for *struct {} +peer0.org1.example.com | [875 01-18 09:31:29.06 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU Closed. Sending RESPONSE +peer0.org1.example.com | [876 01-18 09:31:29.06 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [ee9283f8]handleQueryStateClose serial send RESPONSE +peer0.org1.example.com | [877 01-18 09:31:29.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ee9283f8]Received message RESPONSE from shim +peer0.org1.example.com | [878 01-18 09:31:29.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ee9283f8]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer0.org1.example.com | [879 01-18 09:31:29.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [ee9283f8]before send +peer0.org1.example.com | [87a 01-18 09:31:29.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [ee9283f8]after send +peer0.org1.example.com | [87b 01-18 09:31:29.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [ee9283f8]Received RESPONSE, communicated (state:ready) +peer0.org1.example.com | [87c 01-18 09:31:29.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.Close.handleQueryStateClose -> DEBU [ee9283f8]Received RESPONSE. Successfully got range +peer0.org1.example.com | [87d 01-18 09:31:29.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ee9283f8]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [87e 01-18 09:31:29.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ee9283f8]Move state message COMPLETED +peer0.org1.example.com | [87f 01-18 09:31:29.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ee9283f8]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [880 01-18 09:31:29.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ee9283f8]send state message COMPLETED +orderer.example.com | 2018-01-18 09:29:44.151 UTC [policies] ProposePolicy -> DEBU 692 Proposed new policy Admins for Application +peer0.org1.example.com | [881 01-18 09:31:29.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ee9283f8]Received message COMPLETED from shim +peer0.org1.example.com | [882 01-18 09:31:29.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ee9283f8]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | 2018-01-18 09:29:44.151 UTC [policies] ProposePolicy -> DEBU 693 Proposed new policy Writers for Application +orderer.example.com | 2018-01-18 09:29:44.151 UTC [policies] ProposePolicy -> DEBU 694 Proposed new policy Readers for Application +peer0.org1.example.com | [883 01-18 09:31:29.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ee9283f8aab60aa44780090e8860dd262d46be6b7cd740fbb90aace1a11a4bc9]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [884 01-18 09:31:29.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:ee9283f8aab60aa44780090e8860dd262d46be6b7cd740fbb90aace1a11a4bc9 +orderer.example.com | 2018-01-18 09:29:44.151 UTC [common/config] NewStandardValues -> DEBU 695 Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [885 01-18 09:31:29.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [886 01-18 09:31:29.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [887 01-18 09:31:29.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +orderer.example.com | 2018-01-18 09:29:44.151 UTC [common/config] initializeProtosStruct -> DEBU 696 Processing field: MSP +peer0.org1.example.com | [888 01-18 09:31:29.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [cc52e109-a423-41d7-9328-c69ca360ba9e] +orderer.example.com | 2018-01-18 09:29:44.151 UTC [common/config] NewStandardValues -> DEBU 697 Initializing protos for *config.ApplicationOrgProtos +peer0.org1.example.com | [889 01-18 09:31:29.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +orderer.example.com | 2018-01-18 09:29:44.151 UTC [common/config] initializeProtosStruct -> DEBU 698 Processing field: AnchorPeers +peer0.org1.example.com | [88a 01-18 09:31:29.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: ee9283f8aab60aa44780090e8860dd262d46be6b7cd740fbb90aace1a11a4bc9 channel id: businesschannel chaincode id: name:"lscc" +orderer.example.com | 2018-01-18 09:29:44.151 UTC [common/config] NewStandardValues -> DEBU 699 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:44.152 UTC [common/config] initializeProtosStruct -> DEBU 69a Processing field: MSP +orderer.example.com | 2018-01-18 09:29:44.152 UTC [policies] ProposePolicy -> DEBU 69b Proposed new policy Admins for Org1MSP +peer0.org1.example.com | [88b 01-18 09:31:29.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc +orderer.example.com | 2018-01-18 09:29:44.152 UTC [policies] ProposePolicy -> DEBU 69c Proposed new policy Readers for Org1MSP +peer0.org1.example.com | [88c 01-18 09:31:29.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: ee9283f8aab60aa44780090e8860dd262d46be6b7cd740fbb90aace1a11a4bc9 channel id: businesschannel version: 1.0.2 +orderer.example.com | 2018-01-18 09:29:44.152 UTC [policies] ProposePolicy -> DEBU 69d Proposed new policy Writers for Org1MSP +peer0.org1.example.com | [88d 01-18 09:31:29.06 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=ee9283f8aab60aa44780090e8860dd262d46be6b7cd740fbb90aace1a11a4bc9,syscc=true,proposal=0xc4219520f0,canname=escc:1.0.2 +peer0.org1.example.com | [88e 01-18 09:31:29.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 +orderer.example.com | 2018-01-18 09:29:44.152 UTC [common/config] NewStandardValues -> DEBU 69e Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [88f 01-18 09:31:29.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | 2018-01-18 09:29:44.152 UTC [common/config] initializeProtosStruct -> DEBU 69f Processing field: MSP +peer0.org1.example.com | [890 01-18 09:31:29.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 +orderer.example.com | 2018-01-18 09:29:44.152 UTC [common/config] NewStandardValues -> DEBU 6a0 Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | 2018-01-18 09:29:44.152 UTC [common/config] initializeProtosStruct -> DEBU 6a1 Processing field: AnchorPeers +peer0.org1.example.com | [891 01-18 09:31:29.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ee9283f8]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | 2018-01-18 09:29:44.152 UTC [common/config] NewStandardValues -> DEBU 6a2 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:44.153 UTC [common/config] initializeProtosStruct -> DEBU 6a3 Processing field: MSP +peer0.org1.example.com | [892 01-18 09:31:29.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | 2018-01-18 09:29:44.153 UTC [policies] ProposePolicy -> DEBU 6a4 Proposed new policy Writers for Org2MSP +peer0.org1.example.com | [893 01-18 09:31:29.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [894 01-18 09:31:29.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ee9283f8]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | 2018-01-18 09:29:44.153 UTC [policies] ProposePolicy -> DEBU 6a5 Proposed new policy Admins for Org2MSP +peer0.org1.example.com | [895 01-18 09:31:29.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ee9283f8]Move state message TRANSACTION +orderer.example.com | 2018-01-18 09:29:44.153 UTC [policies] ProposePolicy -> DEBU 6a6 Proposed new policy Readers for Org2MSP +peer0.org1.example.com | [896 01-18 09:31:29.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ee9283f8]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | 2018-01-18 09:29:44.153 UTC [common/config] NewStandardValues -> DEBU 6a7 Initializing protos for *config.OrdererProtos +peer0.org1.example.com | [897 01-18 09:31:29.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | 2018-01-18 09:29:44.153 UTC [common/config] initializeProtosStruct -> DEBU 6a8 Processing field: ConsensusType +peer0.org1.example.com | [898 01-18 09:31:29.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ee9283f8]sending state message TRANSACTION +orderer.example.com | 2018-01-18 09:29:44.153 UTC [common/config] initializeProtosStruct -> DEBU 6a9 Processing field: BatchSize +peer0.org1.example.com | [899 01-18 09:31:29.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ee9283f8]Received message TRANSACTION from shim +orderer.example.com | 2018-01-18 09:29:44.153 UTC [common/config] initializeProtosStruct -> DEBU 6aa Processing field: BatchTimeout +orderer.example.com | 2018-01-18 09:29:44.153 UTC [common/config] initializeProtosStruct -> DEBU 6ab Processing field: KafkaBrokers +peer0.org1.example.com | [89a 01-18 09:31:29.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ee9283f8]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [89b 01-18 09:31:29.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [ee9283f8]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | 2018-01-18 09:29:44.153 UTC [common/config] initializeProtosStruct -> DEBU 6ac Processing field: ChannelRestrictions +peer0.org1.example.com | [89c 01-18 09:31:29.07 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +orderer.example.com | 2018-01-18 09:29:44.153 UTC [policies] ProposePolicy -> DEBU 6ad Proposed new policy Admins for Orderer +peer0.org1.example.com | [89d 01-18 09:31:29.07 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer0.org1.example.com | [89e 01-18 09:31:29.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ee9283f8]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [89f 01-18 09:31:29.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ee9283f8]Move state message COMPLETED +orderer.example.com | 2018-01-18 09:29:44.153 UTC [policies] ProposePolicy -> DEBU 6ae Proposed new policy BlockValidation for Orderer +orderer.example.com | 2018-01-18 09:29:44.153 UTC [policies] ProposePolicy -> DEBU 6af Proposed new policy Readers for Orderer +peer0.org1.example.com | [8a0 01-18 09:31:29.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ee9283f8]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [8a1 01-18 09:31:29.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ee9283f8]send state message COMPLETED +peer0.org1.example.com | [8a2 01-18 09:31:29.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ee9283f8]Received message COMPLETED from shim +peer0.org1.example.com | [8a3 01-18 09:31:29.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ee9283f8]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | 2018-01-18 09:29:44.154 UTC [policies] ProposePolicy -> DEBU 6b0 Proposed new policy Writers for Orderer +peer0.org1.example.com | [8a4 01-18 09:31:29.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ee9283f8aab60aa44780090e8860dd262d46be6b7cd740fbb90aace1a11a4bc9]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [8a5 01-18 09:31:29.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:ee9283f8aab60aa44780090e8860dd262d46be6b7cd740fbb90aace1a11a4bc9 +peer0.org1.example.com | [8a6 01-18 09:31:29.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | 2018-01-18 09:29:44.154 UTC [common/config] NewStandardValues -> DEBU 6b1 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:44.154 UTC [common/config] initializeProtosStruct -> DEBU 6b2 Processing field: MSP +orderer.example.com | 2018-01-18 09:29:44.154 UTC [policies] ProposePolicy -> DEBU 6b3 Proposed new policy Writers for OrdererOrg +orderer.example.com | 2018-01-18 09:29:44.154 UTC [policies] ProposePolicy -> DEBU 6b4 Proposed new policy Admins for OrdererOrg +orderer.example.com | 2018-01-18 09:29:44.154 UTC [policies] ProposePolicy -> DEBU 6b5 Proposed new policy Readers for OrdererOrg +orderer.example.com | 2018-01-18 09:29:44.154 UTC [common/config] Validate -> DEBU 6b6 Anchor peers for org Org1MSP are +orderer.example.com | 2018-01-18 09:29:44.154 UTC [common/config] validateMSP -> DEBU 6b7 Setting up MSP for org Org1MSP +orderer.example.com | 2018-01-18 09:29:44.154 UTC [msp] NewBccspMsp -> DEBU 6b8 Creating BCCSP-based MSP instance +peer0.org1.example.com | [8a7 01-18 09:31:29.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +orderer.example.com | 2018-01-18 09:29:44.154 UTC [msp] Setup -> DEBU 6b9 Setting up MSP instance Org1MSP +orderer.example.com | 2018-01-18 09:29:44.155 UTC [msp/identity] newIdentity -> DEBU 6ba Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [8a8 01-18 09:31:29.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org1.example.com | [8a9 01-18 09:31:29.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [cc52e109-a423-41d7-9328-c69ca360ba9e] +peer0.org1.example.com | [8aa 01-18 09:31:29.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer0.org1.example.com | [8ab 01-18 09:31:29.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer0.org1.example.com | [8ac 01-18 09:31:29.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422936e10 +peer0.org1.example.com | [8ad 01-18 09:31:29.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +orderer.example.com | MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | [8ae 01-18 09:31:29.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +orderer.example.com | BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf +peer0.org1.example.com | [8af 01-18 09:31:29.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +orderer.example.com | db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx +peer0.org1.example.com | [8b0 01-18 09:31:29.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +orderer.example.com | JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi +orderer.example.com | /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ +peer0.org1.example.com | [8b1 01-18 09:31:29.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | H7n8z1pj5w== +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [8b2 01-18 09:31:29.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42216a550, header 0xc422936e40 +orderer.example.com | 2018-01-18 09:29:44.155 UTC [msp/identity] newIdentity -> DEBU 6bb Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | [8b3 01-18 09:31:29.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org1.example.com | [8b4 01-18 09:31:29.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 43f382e2cb24b60ff8894452923f4238891734453951dd89c727e38556187588 +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +peer0.org1.example.com | [8b5 01-18 09:31:29.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [43f382e2cb24b60ff8894452923f4238891734453951dd89c727e38556187588] +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +peer0.org1.example.com | [8b6 01-18 09:31:29.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +peer0.org1.example.com | [8b7 01-18 09:31:29.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [7167c5e0-98bf-4eed-a66b-b18f36ec93ba] +peer0.org1.example.com | [8b8 01-18 09:31:29.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 43f382e2cb24b60ff8894452923f4238891734453951dd89c727e38556187588 channel id: businesschannel +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +peer0.org1.example.com | [8b9 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 43f382e2cb24b60ff8894452923f4238891734453951dd89c727e38556187588 channel id: businesschannel version: 1.0.2 +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +peer0.org1.example.com | [8ba 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.0.2,txid=43f382e2cb24b60ff8894452923f4238891734453951dd89c727e38556187588,syscc=true,proposal=0xc42216a550,canname=qscc:1.0.2 +orderer.example.com | xHTBvxfK6mAzmUitFmY= +peer0.org1.example.com | [8bb 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.0.2 +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [8bc 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | 2018-01-18 09:29:44.156 UTC [msp/identity] newIdentity -> DEBU 6bc Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [8bd 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.2 +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +peer0.org1.example.com | [8be 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [43f382e2]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | [8bf 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +peer0.org1.example.com | [8c0 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +peer0.org1.example.com | [8c1 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [43f382e2]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [8c2 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [43f382e2]Move state message TRANSACTION +orderer.example.com | 2018-01-18 09:29:44.157 UTC [msp] Validate -> DEBU 6bd MSP Org1MSP validating identity +peer0.org1.example.com | [8c3 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [43f382e2]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | 2018-01-18 09:29:44.157 UTC [common/config] Validate -> DEBU 6be Anchor peers for org Org2MSP are +peer0.org1.example.com | [8c4 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | 2018-01-18 09:29:44.157 UTC [common/config] validateMSP -> DEBU 6bf Setting up MSP for org Org2MSP +orderer.example.com | 2018-01-18 09:29:44.157 UTC [msp] NewBccspMsp -> DEBU 6c0 Creating BCCSP-based MSP instance +peer0.org1.example.com | [8c5 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [43f382e2]sending state message TRANSACTION +orderer.example.com | 2018-01-18 09:29:44.157 UTC [msp] Setup -> DEBU 6c1 Setting up MSP instance Org2MSP +peer0.org1.example.com | [8c6 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [43f382e2]Received message TRANSACTION from shim +orderer.example.com | 2018-01-18 09:29:44.163 UTC [msp/identity] newIdentity -> DEBU 6c2 Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [8c7 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [43f382e2]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw +peer0.org1.example.com | [8c8 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [43f382e2]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [8c9 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +peer0.org1.example.com | [8ca 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [43f382e2]Transaction completed. Sending COMPLETED +orderer.example.com | mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 +orderer.example.com | sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ +peer0.org1.example.com | [8cb 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [43f382e2]Move state message COMPLETED +orderer.example.com | xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv +peer0.org1.example.com | [8cc 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [43f382e2]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk +peer0.org1.example.com | [8cd 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [43f382e2]send state message COMPLETED +orderer.example.com | SCjyRdD3aQ== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:44.166 UTC [msp/identity] newIdentity -> DEBU 6c3 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +peer0.org1.example.com | [8ce 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [43f382e2]Received message COMPLETED from shim +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +orderer.example.com | AXYxULZpXYDQXt1KaLI= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:44.167 UTC [msp/identity] newIdentity -> DEBU 6c4 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +orderer.example.com | AXYxULZpXYDQXt1KaLI= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:44.168 UTC [msp] Validate -> DEBU 6c5 MSP Org2MSP validating identity +orderer.example.com | 2018-01-18 09:29:44.168 UTC [common/config] validateMSP -> DEBU 6c6 Setting up MSP for org OrdererOrg +orderer.example.com | 2018-01-18 09:29:44.168 UTC [msp] NewBccspMsp -> DEBU 6c7 Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-18 09:29:44.168 UTC [msp] Setup -> DEBU 6c8 Setting up MSP instance OrdererMSP +peer0.org1.example.com | [8cf 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [43f382e2]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | 2018-01-18 09:29:44.169 UTC [msp/identity] newIdentity -> DEBU 6c9 Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [8d0 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [43f382e2cb24b60ff8894452923f4238891734453951dd89c727e38556187588]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [8d1 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:43f382e2cb24b60ff8894452923f4238891734453951dd89c727e38556187588 +orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | [8d2 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +orderer.example.com | cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV +peer0.org1.example.com | [8d3 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [8d4 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +peer0.org1.example.com | [8d5 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [7167c5e0-98bf-4eed-a66b-b18f36ec93ba] +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW +peer0.org1.example.com | [8d6 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +orderer.example.com | gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w +peer0.org1.example.com | [8d7 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 43f382e2cb24b60ff8894452923f4238891734453951dd89c727e38556187588 channel id: businesschannel chaincode id: name:"qscc" +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +orderer.example.com | AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK +orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs +orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= +peer0.org1.example.com | [8d8 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +peer0.org1.example.com | [8d9 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 43f382e2cb24b60ff8894452923f4238891734453951dd89c727e38556187588 channel id: businesschannel version: 1.0.2 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:44.169 UTC [msp/identity] newIdentity -> DEBU 6ca Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org1.example.com | [8da 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=43f382e2cb24b60ff8894452923f4238891734453951dd89c727e38556187588,syscc=true,proposal=0xc42216a550,canname=escc:1.0.2 +peer0.org1.example.com | [8db 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 +peer0.org1.example.com | [8dc 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [8dd 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 +peer0.org1.example.com | [8de 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [43f382e2]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +peer0.org1.example.com | [8df 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [8e0 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +peer0.org1.example.com | [8e1 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [43f382e2]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [8e2 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [43f382e2]Move state message TRANSACTION +peer0.org1.example.com | [8e3 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [43f382e2]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [8e4 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [8e5 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [43f382e2]sending state message TRANSACTION +peer0.org1.example.com | [8e6 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [43f382e2]Received message TRANSACTION from shim +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:44.171 UTC [msp/identity] newIdentity -> DEBU 6cb Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +peer0.org1.example.com | [8e7 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [43f382e2]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer0.org1.example.com | [8e8 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [43f382e2]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [8e9 01-18 09:31:29.63 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +peer0.org1.example.com | [8ea 01-18 09:31:29.63 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer0.org1.example.com | [8eb 01-18 09:31:29.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [43f382e2]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [8ec 01-18 09:31:29.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [43f382e2]Move state message COMPLETED +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +peer0.org1.example.com | [8ed 01-18 09:31:29.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [43f382e2]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [8ee 01-18 09:31:29.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [43f382e2]send state message COMPLETED +peer0.org1.example.com | [8ef 01-18 09:31:29.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [43f382e2]Received message COMPLETED from shim +orderer.example.com | 2018-01-18 09:29:44.172 UTC [msp] Validate -> DEBU 6cc MSP OrdererMSP validating identity +orderer.example.com | 2018-01-18 09:29:44.173 UTC [msp] Setup -> DEBU 6cd Setting up the MSP manager (3 msps) +peer0.org1.example.com | [8f0 01-18 09:31:29.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [43f382e2]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [8f1 01-18 09:31:29.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [43f382e2cb24b60ff8894452923f4238891734453951dd89c727e38556187588]HandleMessage- COMPLETED. Notify +orderer.example.com | 2018-01-18 09:29:44.173 UTC [msp] Setup -> DEBU 6ce MSP manager setup complete, setup 3 msps +orderer.example.com | 2018-01-18 09:29:44.173 UTC [policies] GetPolicy -> DEBU 6cf Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:44.173 UTC [policies] CommitProposals -> DEBU 6d0 In commit adding relative sub-policy Org1MSP/Admins to Application +peer0.org1.example.com | [8f2 01-18 09:31:29.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:43f382e2cb24b60ff8894452923f4238891734453951dd89c727e38556187588 +orderer.example.com | 2018-01-18 09:29:44.173 UTC [policies] GetPolicy -> DEBU 6d1 Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:44.173 UTC [policies] CommitProposals -> DEBU 6d2 In commit adding relative sub-policy Org1MSP/Readers to Application +orderer.example.com | 2018-01-18 09:29:44.173 UTC [policies] GetPolicy -> DEBU 6d3 Returning policy Writers for evaluation +peer0.org1.example.com | [8f3 01-18 09:31:29.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [8f4 01-18 09:31:29.63 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +orderer.example.com | 2018-01-18 09:29:44.173 UTC [policies] CommitProposals -> DEBU 6d4 In commit adding relative sub-policy Org1MSP/Writers to Application +orderer.example.com | 2018-01-18 09:29:44.173 UTC [policies] GetPolicy -> DEBU 6d5 Returning policy Writers for evaluation +peer0.org1.example.com | [8f5 01-18 09:31:29.63 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +orderer.example.com | 2018-01-18 09:29:44.173 UTC [policies] CommitProposals -> DEBU 6d6 In commit adding relative sub-policy Org2MSP/Writers to Application +peer0.org1.example.com | [8f6 01-18 09:31:29.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [7167c5e0-98bf-4eed-a66b-b18f36ec93ba] +peer0.org1.example.com | [8f7 01-18 09:31:29.63 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer0.org1.example.com | [8f8 01-18 09:31:29.85 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer0.org1.example.com | [8f9 01-18 09:31:29.85 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42263a420 +peer0.org1.example.com | [8fa 01-18 09:31:29.85 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [8fb 01-18 09:31:29.85 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [8fc 01-18 09:31:29.85 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +orderer.example.com | 2018-01-18 09:29:44.173 UTC [policies] GetPolicy -> DEBU 6d7 Returning policy Admins for evaluation +peer0.org1.example.com | [8fd 01-18 09:31:29.85 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [8fe 01-18 09:31:29.85 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [8ff 01-18 09:31:29.85 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422650050, header 0xc42263a450 +peer0.org1.example.com | [900 01-18 09:31:29.85 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +peer0.org1.example.com | [901 01-18 09:31:29.85 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 653e4e1f47065b46dc7fa1809745c97e160ac3717ef171c45e1261178ac6586a +peer0.org1.example.com | [902 01-18 09:31:29.85 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [653e4e1f47065b46dc7fa1809745c97e160ac3717ef171c45e1261178ac6586a] +peer0.org1.example.com | [903 01-18 09:31:29.85 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org1.example.com | [904 01-18 09:31:29.85 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [c065e692-9f95-46a6-9fc4-a64ba74c11bd] +peer0.org1.example.com | [905 01-18 09:31:29.85 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 653e4e1f47065b46dc7fa1809745c97e160ac3717ef171c45e1261178ac6586a channel id: businesschannel +peer0.org1.example.com | [906 01-18 09:31:29.85 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 653e4e1f47065b46dc7fa1809745c97e160ac3717ef171c45e1261178ac6586a channel id: businesschannel version: 1.0.2 +peer0.org1.example.com | [907 01-18 09:31:29.85 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.0.2,txid=653e4e1f47065b46dc7fa1809745c97e160ac3717ef171c45e1261178ac6586a,syscc=true,proposal=0xc422650050,canname=qscc:1.0.2 +peer0.org1.example.com | [908 01-18 09:31:29.85 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.0.2 +peer0.org1.example.com | [909 01-18 09:31:29.85 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [90a 01-18 09:31:29.85 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.2 +peer0.org1.example.com | [90b 01-18 09:31:29.85 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [653e4e1f]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [90c 01-18 09:31:29.85 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [90d 01-18 09:31:29.85 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [90e 01-18 09:31:29.85 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [653e4e1f]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [90f 01-18 09:31:29.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [653e4e1f]Move state message TRANSACTION +peer0.org1.example.com | [910 01-18 09:31:29.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [653e4e1f]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [911 01-18 09:31:29.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | 2018-01-18 09:29:44.173 UTC [policies] CommitProposals -> DEBU 6d8 In commit adding relative sub-policy Org2MSP/Admins to Application +peer0.org1.example.com | [912 01-18 09:31:29.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [653e4e1f]sending state message TRANSACTION +peer0.org1.example.com | [913 01-18 09:31:29.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [653e4e1f]Received message TRANSACTION from shim +peer0.org1.example.com | [914 01-18 09:31:29.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [653e4e1f]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [915 01-18 09:31:29.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [653e4e1f]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [916 01-18 09:31:29.85 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetBlockByNumber on chain: businesschannel +peer0.org1.example.com | [917 01-18 09:31:29.85 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [2] +peer0.org1.example.com | [918 01-18 09:31:29.86 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/ledgersData/chains/chains/businesschannel/blockfile_000000], startOffset=[25669] +orderer.example.com | 2018-01-18 09:29:44.173 UTC [policies] GetPolicy -> DEBU 6d9 Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:44.173 UTC [policies] CommitProposals -> DEBU 6da In commit adding relative sub-policy Org2MSP/Readers to Application +orderer.example.com | 2018-01-18 09:29:44.173 UTC [policies] GetPolicy -> DEBU 6db Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:44.173 UTC [policies] GetPolicy -> DEBU 6dc Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:44.173 UTC [policies] GetPolicy -> DEBU 6dd Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:44.173 UTC [policies] GetPolicy -> DEBU 6de Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:44.174 UTC [policies] GetPolicy -> DEBU 6df Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:44.174 UTC [policies] GetPolicy -> DEBU 6e0 Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:44.174 UTC [policies] GetPolicy -> DEBU 6e1 Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:44.174 UTC [policies] CommitProposals -> DEBU 6e2 In commit adding relative sub-policy OrdererOrg/Writers to Orderer +orderer.example.com | 2018-01-18 09:29:44.174 UTC [policies] GetPolicy -> DEBU 6e3 Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:44.174 UTC [policies] CommitProposals -> DEBU 6e4 In commit adding relative sub-policy OrdererOrg/Admins to Orderer +orderer.example.com | 2018-01-18 09:29:44.174 UTC [policies] GetPolicy -> DEBU 6e5 Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:44.174 UTC [policies] CommitProposals -> DEBU 6e6 In commit adding relative sub-policy OrdererOrg/Readers to Orderer +orderer.example.com | 2018-01-18 09:29:44.175 UTC [policies] GetPolicy -> DEBU 6e7 Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:44.175 UTC [policies] GetPolicy -> DEBU 6e8 Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:44.175 UTC [policies] GetPolicy -> DEBU 6e9 Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:44.175 UTC [policies] GetPolicy -> DEBU 6ea Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:44.175 UTC [policies] GetPolicy -> DEBU 6eb Returning policy OrdererOrg/Admins for evaluation +peer0.org1.example.com | [919 01-18 09:31:29.86 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[28895], Going to peek [8] bytes +peer0.org1.example.com | [91a 01-18 09:31:29.86 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13790], placementInfo={fileNum=[0], startOffset=[25669], bytesOffset=[25671]} +peer0.org1.example.com | [91b 01-18 09:31:29.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [653e4e1f]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [91c 01-18 09:31:29.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [653e4e1f]Move state message COMPLETED +peer0.org1.example.com | [91d 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [653e4e1f]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [91e 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [653e4e1f]send state message COMPLETED +peer0.org1.example.com | [91f 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [653e4e1f]Received message COMPLETED from shim +peer0.org1.example.com | [920 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [653e4e1f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [921 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [653e4e1f47065b46dc7fa1809745c97e160ac3717ef171c45e1261178ac6586a]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [922 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:653e4e1f47065b46dc7fa1809745c97e160ac3717ef171c45e1261178ac6586a +peer0.org1.example.com | [923 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [924 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [925 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +orderer.example.com | 2018-01-18 09:29:44.175 UTC [policies] CommitProposals -> DEBU 6ec In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +peer0.org1.example.com | [926 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [c065e692-9f95-46a6-9fc4-a64ba74c11bd] +orderer.example.com | 2018-01-18 09:29:44.175 UTC [policies] GetPolicy -> DEBU 6ed Returning policy OrdererOrg/Readers for evaluation +peer0.org1.example.com | [927 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +orderer.example.com | 2018-01-18 09:29:44.175 UTC [policies] CommitProposals -> DEBU 6ee In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +peer0.org1.example.com | [928 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 653e4e1f47065b46dc7fa1809745c97e160ac3717ef171c45e1261178ac6586a channel id: businesschannel chaincode id: name:"qscc" +peer0.org1.example.com | [929 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +peer0.org1.example.com | [92a 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 653e4e1f47065b46dc7fa1809745c97e160ac3717ef171c45e1261178ac6586a channel id: businesschannel version: 1.0.2 +peer0.org1.example.com | [92b 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=653e4e1f47065b46dc7fa1809745c97e160ac3717ef171c45e1261178ac6586a,syscc=true,proposal=0xc422650050,canname=escc:1.0.2 +orderer.example.com | 2018-01-18 09:29:44.175 UTC [policies] GetPolicy -> DEBU 6ef Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:44.175 UTC [policies] CommitProposals -> DEBU 6f0 In commit adding relative sub-policy Orderer/Admins to Channel +orderer.example.com | 2018-01-18 09:29:44.175 UTC [policies] GetPolicy -> DEBU 6f1 Returning policy BlockValidation for evaluation +orderer.example.com | 2018-01-18 09:29:44.175 UTC [policies] CommitProposals -> DEBU 6f2 In commit adding relative sub-policy Orderer/BlockValidation to Channel +orderer.example.com | 2018-01-18 09:29:44.175 UTC [policies] GetPolicy -> DEBU 6f3 Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:44.175 UTC [policies] CommitProposals -> DEBU 6f4 In commit adding relative sub-policy Orderer/Readers to Channel +orderer.example.com | 2018-01-18 09:29:44.175 UTC [policies] GetPolicy -> DEBU 6f5 Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:44.175 UTC [policies] CommitProposals -> DEBU 6f6 In commit adding relative sub-policy Orderer/Writers to Channel +orderer.example.com | 2018-01-18 09:29:44.176 UTC [policies] GetPolicy -> DEBU 6f7 Returning policy OrdererOrg/Writers for evaluation +orderer.example.com | 2018-01-18 09:29:44.176 UTC [policies] CommitProposals -> DEBU 6f8 In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +orderer.example.com | 2018-01-18 09:29:44.176 UTC [policies] GetPolicy -> DEBU 6f9 Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:44.176 UTC [policies] CommitProposals -> DEBU 6fa In commit adding relative sub-policy Application/Writers to Channel +orderer.example.com | 2018-01-18 09:29:44.176 UTC [policies] GetPolicy -> DEBU 6fb Returning policy Org1MSP/Readers for evaluation +orderer.example.com | 2018-01-18 09:29:44.176 UTC [policies] CommitProposals -> DEBU 6fc In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +orderer.example.com | 2018-01-18 09:29:44.176 UTC [policies] GetPolicy -> DEBU 6fd Returning policy Org1MSP/Writers for evaluation +orderer.example.com | 2018-01-18 09:29:44.176 UTC [policies] CommitProposals -> DEBU 6fe In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +orderer.example.com | 2018-01-18 09:29:44.176 UTC [policies] GetPolicy -> DEBU 6ff Returning policy Org2MSP/Writers for evaluation +orderer.example.com | 2018-01-18 09:29:44.176 UTC [policies] CommitProposals -> DEBU 700 In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +orderer.example.com | 2018-01-18 09:29:44.176 UTC [policies] GetPolicy -> DEBU 701 Returning policy Org2MSP/Admins for evaluation +orderer.example.com | 2018-01-18 09:29:44.176 UTC [policies] CommitProposals -> DEBU 702 In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +orderer.example.com | 2018-01-18 09:29:44.176 UTC [policies] GetPolicy -> DEBU 703 Returning policy Org2MSP/Readers for evaluation +orderer.example.com | 2018-01-18 09:29:44.176 UTC [policies] CommitProposals -> DEBU 704 In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +orderer.example.com | 2018-01-18 09:29:44.176 UTC [policies] GetPolicy -> DEBU 705 Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:44.176 UTC [policies] CommitProposals -> DEBU 706 In commit adding relative sub-policy Application/Admins to Channel +orderer.example.com | 2018-01-18 09:29:44.176 UTC [policies] GetPolicy -> DEBU 707 Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:44.176 UTC [policies] CommitProposals -> DEBU 708 In commit adding relative sub-policy Application/Readers to Channel +orderer.example.com | 2018-01-18 09:29:44.176 UTC [policies] GetPolicy -> DEBU 709 Returning policy Org1MSP/Admins for evaluation +peer0.org1.example.com | [92c 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 +peer0.org1.example.com | [92d 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | 2018-01-18 09:29:44.176 UTC [policies] CommitProposals -> DEBU 70a In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +orderer.example.com | 2018-01-18 09:29:44.176 UTC [policies] GetPolicy -> DEBU 70b Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:44.177 UTC [policies] GetPolicy -> DEBU 70c Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:44.177 UTC [policies] GetPolicy -> DEBU 70d Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:44.177 UTC [policies] GetPolicy -> DEBU 70e Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:44.177 UTC [policies] GetPolicy -> DEBU 70f Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:44.177 UTC [policies] GetPolicy -> DEBU 710 Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:44.177 UTC [policies] GetPolicy -> DEBU 711 Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:44.177 UTC [policies] CommitProposals -> DEBU 712 As expected, current configuration has policy '/Channel/Readers' +orderer.example.com | 2018-01-18 09:29:44.177 UTC [policies] GetPolicy -> DEBU 713 Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:44.177 UTC [policies] CommitProposals -> DEBU 714 As expected, current configuration has policy '/Channel/Writers' +orderer.example.com | 2018-01-18 09:29:44.177 UTC [policies] GetPolicy -> DEBU 715 Returning policy Application/Readers for evaluation +orderer.example.com | 2018-01-18 09:29:44.177 UTC [policies] CommitProposals -> DEBU 716 As expected, current configuration has policy '/Channel/Application/Readers' +peer0.org1.example.com | [92e 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 +peer0.org1.example.com | [92f 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [653e4e1f]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [930 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [931 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [932 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [653e4e1f]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [933 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [653e4e1f]Move state message TRANSACTION +peer0.org1.example.com | [934 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [653e4e1f]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [935 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [936 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [653e4e1f]sending state message TRANSACTION +peer0.org1.example.com | [937 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [653e4e1f]Received message TRANSACTION from shim +peer0.org1.example.com | [938 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [653e4e1f]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [939 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [653e4e1f]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [93a 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer0.org1.example.com | [93b 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +orderer.example.com | 2018-01-18 09:29:44.177 UTC [policies] GetPolicy -> DEBU 717 Returning policy Application/Writers for evaluation +peer0.org1.example.com | [93c 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [653e4e1f]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [93d 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [653e4e1f]Move state message COMPLETED +orderer.example.com | 2018-01-18 09:29:44.177 UTC [policies] CommitProposals -> DEBU 718 As expected, current configuration has policy '/Channel/Application/Writers' +orderer.example.com | 2018-01-18 09:29:44.178 UTC [policies] GetPolicy -> DEBU 719 Returning policy Application/Admins for evaluation +peer0.org1.example.com | [93e 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [653e4e1f]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [93f 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [653e4e1f]send state message COMPLETED +peer0.org1.example.com | [940 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [653e4e1f]Received message COMPLETED from shim +peer0.org1.example.com | [941 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [653e4e1f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [942 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [653e4e1f47065b46dc7fa1809745c97e160ac3717ef171c45e1261178ac6586a]HandleMessage- COMPLETED. Notify +orderer.example.com | 2018-01-18 09:29:44.178 UTC [policies] CommitProposals -> DEBU 71a As expected, current configuration has policy '/Channel/Application/Admins' +peer0.org1.example.com | [943 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:653e4e1f47065b46dc7fa1809745c97e160ac3717ef171c45e1261178ac6586a +orderer.example.com | 2018-01-18 09:29:44.178 UTC [policies] GetPolicy -> DEBU 71b Returning policy Orderer/BlockValidation for evaluation +orderer.example.com | 2018-01-18 09:29:44.178 UTC [policies] CommitProposals -> DEBU 71c As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +orderer.example.com | 2018-01-18 09:29:44.178 UTC [common/config] NewStandardValues -> DEBU 71d Initializing protos for *config.ChannelProtos +orderer.example.com | 2018-01-18 09:29:44.178 UTC [common/config] initializeProtosStruct -> DEBU 71e Processing field: HashingAlgorithm +orderer.example.com | 2018-01-18 09:29:44.178 UTC [common/config] initializeProtosStruct -> DEBU 71f Processing field: BlockDataHashingStructure +peer0.org1.example.com | [944 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | 2018-01-18 09:29:44.178 UTC [common/config] initializeProtosStruct -> DEBU 720 Processing field: OrdererAddresses +peer0.org1.example.com | [945 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [946 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +orderer.example.com | 2018-01-18 09:29:44.178 UTC [common/config] initializeProtosStruct -> DEBU 721 Processing field: Consortium +orderer.example.com | 2018-01-18 09:29:44.179 UTC [common/configtx] addToMap -> DEBU 722 Adding to config map: [Groups] /Channel +orderer.example.com | 2018-01-18 09:29:44.179 UTC [common/configtx] addToMap -> DEBU 723 Adding to config map: [Groups] /Channel/Orderer +orderer.example.com | 2018-01-18 09:29:44.179 UTC [common/configtx] addToMap -> DEBU 724 Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +orderer.example.com | 2018-01-18 09:29:44.179 UTC [common/configtx] addToMap -> DEBU 725 Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +orderer.example.com | 2018-01-18 09:29:44.179 UTC [common/configtx] addToMap -> DEBU 726 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer0.org1.example.com | [947 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [c065e692-9f95-46a6-9fc4-a64ba74c11bd] +peer0.org1.example.com | [948 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer0.org1.example.com | [949 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +orderer.example.com | 2018-01-18 09:29:44.179 UTC [common/configtx] addToMap -> DEBU 727 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | 2018-01-18 09:29:44.179 UTC [common/configtx] addToMap -> DEBU 728 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer0.org1.example.com | [94a 01-18 09:31:29.88 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +orderer.example.com | 2018-01-18 09:29:44.179 UTC [common/configtx] addToMap -> DEBU 729 Adding to config map: [Values] /Channel/Orderer/BatchSize +orderer.example.com | 2018-01-18 09:29:44.179 UTC [common/configtx] addToMap -> DEBU 72a Adding to config map: [Values] /Channel/Orderer/BatchTimeout +orderer.example.com | 2018-01-18 09:29:44.179 UTC [common/configtx] addToMap -> DEBU 72b Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +orderer.example.com | 2018-01-18 09:29:44.180 UTC [common/configtx] addToMap -> DEBU 72c Adding to config map: [Values] /Channel/Orderer/ConsensusType +orderer.example.com | 2018-01-18 09:29:44.180 UTC [common/configtx] addToMap -> DEBU 72d Adding to config map: [Policy] /Channel/Orderer/Writers +orderer.example.com | 2018-01-18 09:29:44.180 UTC [common/configtx] addToMap -> DEBU 72e Adding to config map: [Policy] /Channel/Orderer/Admins +orderer.example.com | 2018-01-18 09:29:44.180 UTC [common/configtx] addToMap -> DEBU 72f Adding to config map: [Policy] /Channel/Orderer/BlockValidation +orderer.example.com | 2018-01-18 09:29:44.180 UTC [common/configtx] addToMap -> DEBU 730 Adding to config map: [Policy] /Channel/Orderer/Readers +orderer.example.com | 2018-01-18 09:29:44.180 UTC [common/configtx] addToMap -> DEBU 731 Adding to config map: [Groups] /Channel/Application +orderer.example.com | 2018-01-18 09:29:44.180 UTC [common/configtx] addToMap -> DEBU 732 Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | 2018-01-18 09:29:44.180 UTC [common/configtx] addToMap -> DEBU 733 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +orderer.example.com | 2018-01-18 09:29:44.181 UTC [common/configtx] addToMap -> DEBU 734 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | 2018-01-18 09:29:44.181 UTC [common/configtx] addToMap -> DEBU 735 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | 2018-01-18 09:29:44.181 UTC [common/configtx] addToMap -> DEBU 736 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | 2018-01-18 09:29:44.181 UTC [common/configtx] addToMap -> DEBU 737 Adding to config map: [Groups] /Channel/Application/Org2MSP +peer0.org1.example.com | [94b 01-18 09:31:29.88 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer0.org1.example.com | [94c 01-18 09:31:29.89 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc42244cf30 +orderer.example.com | 2018-01-18 09:29:44.181 UTC [common/configtx] addToMap -> DEBU 738 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +peer0.org1.example.com | [94d 01-18 09:31:29.89 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\357\322\201\323\005\020\300\316\217\315\002\"\017businesschannel*@a4652cc8b4e64e8e390bc639b183d8569ae28fa2ce4307dc0a9b7eed3962aaab:\t\022\007\022\005exp02" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\030f|\376_Y\376PDS^\231\016m\377\335pI)\006]\3548\010\336" +orderer.example.com | 2018-01-18 09:29:44.181 UTC [common/configtx] addToMap -> DEBU 739 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | 2018-01-18 09:29:44.181 UTC [common/configtx] addToMap -> DEBU 73a Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | 2018-01-18 09:29:44.182 UTC [common/configtx] addToMap -> DEBU 73b Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | 2018-01-18 09:29:44.182 UTC [common/configtx] addToMap -> DEBU 73c Adding to config map: [Policy] /Channel/Application/Writers +orderer.example.com | 2018-01-18 09:29:44.182 UTC [common/configtx] addToMap -> DEBU 73d Adding to config map: [Policy] /Channel/Application/Readers +orderer.example.com | 2018-01-18 09:29:44.182 UTC [common/configtx] addToMap -> DEBU 73e Adding to config map: [Policy] /Channel/Application/Admins +orderer.example.com | 2018-01-18 09:29:44.182 UTC [common/configtx] addToMap -> DEBU 73f Adding to config map: [Values] /Channel/Consortium +peer0.org1.example.com | [94e 01-18 09:31:29.89 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +orderer.example.com | 2018-01-18 09:29:44.182 UTC [common/configtx] addToMap -> DEBU 740 Adding to config map: [Values] /Channel/BlockDataHashingStructure +orderer.example.com | 2018-01-18 09:29:44.182 UTC [common/configtx] addToMap -> DEBU 741 Adding to config map: [Values] /Channel/OrdererAddresses +orderer.example.com | 2018-01-18 09:29:44.182 UTC [common/configtx] addToMap -> DEBU 742 Adding to config map: [Values] /Channel/HashingAlgorithm +peer0.org1.example.com | [94f 01-18 09:31:29.89 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [950 01-18 09:31:29.89 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} +peer0.org1.example.com | [951 01-18 09:31:29.89 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [952 01-18 09:31:29.89 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [953 01-18 09:31:29.89 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc4213dc800, header channel_header:"\010\003\032\014\010\357\322\201\323\005\020\300\316\217\315\002\"\017businesschannel*@a4652cc8b4e64e8e390bc639b183d8569ae28fa2ce4307dc0a9b7eed3962aaab:\t\022\007\022\005exp02" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\030f|\376_Y\376PDS^\231\016m\377\335pI)\006]\3548\010\336" +orderer.example.com | 2018-01-18 09:29:44.182 UTC [common/configtx] addToMap -> DEBU 743 Adding to config map: [Policy] /Channel/Writers +orderer.example.com | 2018-01-18 09:29:44.182 UTC [common/configtx] addToMap -> DEBU 744 Adding to config map: [Policy] /Channel/Admins +peer0.org1.example.com | [954 01-18 09:31:29.89 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +orderer.example.com | 2018-01-18 09:29:44.183 UTC [common/configtx] addToMap -> DEBU 745 Adding to config map: [Policy] /Channel/Readers +peer0.org1.example.com | [955 01-18 09:31:29.89 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer0.org1.example.com | [956 01-18 09:31:29.89 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer0.org1.example.com | [957 01-18 09:31:29.89 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +peer0.org1.example.com | [958 01-18 09:31:29.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [a4652cc8b4e64e8e390bc639b183d8569ae28fa2ce4307dc0a9b7eed3962aaab] +peer0.org1.example.com | [959 01-18 09:31:29.89 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +peer0.org1.example.com | [95a 01-18 09:31:29.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [38819fb1-9d41-4f50-8220-0ded721a7476] +peer0.org1.example.com | [95b 01-18 09:31:29.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer0.org1.example.com | [95c 01-18 09:31:29.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [38819fb1-9d41-4f50-8220-0ded721a7476] +orderer.example.com | 2018-01-18 09:29:44.183 UTC [common/configtx] processConfig -> DEBU 746 Beginning new config for channel businesschannel +peer0.org1.example.com | [95d 01-18 09:31:29.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org1.example.com | [95e 01-18 09:31:29.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [d70a03fd-18f5-4277-8504-3fb37f729b57] +orderer.example.com | 2018-01-18 09:29:44.183 UTC [common/config] NewStandardValues -> DEBU 747 Initializing protos for *config.ChannelProtos +peer0.org1.example.com | [95f 01-18 09:31:29.89 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=3ffb5208-ea51-48c3-a69b-65729da4a373,syscc=true,proposal=0x0,canname=vscc:1.0.2 +peer0.org1.example.com | [960 01-18 09:31:29.89 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid a4652cc8b4e64e8e390bc639b183d8569ae28fa2ce4307dc0a9b7eed3962aaab chaindID businesschannel +peer0.org1.example.com | [961 01-18 09:31:29.89 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 +peer0.org1.example.com | [962 01-18 09:31:29.89 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | 2018-01-18 09:29:44.183 UTC [common/config] initializeProtosStruct -> DEBU 748 Processing field: HashingAlgorithm +orderer.example.com | 2018-01-18 09:29:44.183 UTC [common/config] initializeProtosStruct -> DEBU 749 Processing field: BlockDataHashingStructure +orderer.example.com | 2018-01-18 09:29:44.183 UTC [common/config] initializeProtosStruct -> DEBU 74a Processing field: OrdererAddresses +orderer.example.com | 2018-01-18 09:29:44.183 UTC [common/config] initializeProtosStruct -> DEBU 74b Processing field: Consortium +orderer.example.com | 2018-01-18 09:29:44.184 UTC [policies] ProposePolicy -> DEBU 74c Proposed new policy Writers for Channel +orderer.example.com | 2018-01-18 09:29:44.184 UTC [policies] ProposePolicy -> DEBU 74d Proposed new policy Admins for Channel +orderer.example.com | 2018-01-18 09:29:44.184 UTC [policies] ProposePolicy -> DEBU 74e Proposed new policy Readers for Channel +orderer.example.com | 2018-01-18 09:29:44.184 UTC [common/config] NewStandardValues -> DEBU 74f Initializing protos for *struct {} +orderer.example.com | 2018-01-18 09:29:44.184 UTC [policies] ProposePolicy -> DEBU 750 Proposed new policy Admins for Application +orderer.example.com | 2018-01-18 09:29:44.184 UTC [policies] ProposePolicy -> DEBU 751 Proposed new policy Writers for Application +orderer.example.com | 2018-01-18 09:29:44.184 UTC [policies] ProposePolicy -> DEBU 752 Proposed new policy Readers for Application +orderer.example.com | 2018-01-18 09:29:44.184 UTC [common/config] NewStandardValues -> DEBU 753 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:44.184 UTC [common/config] initializeProtosStruct -> DEBU 754 Processing field: MSP +orderer.example.com | 2018-01-18 09:29:44.184 UTC [common/config] NewStandardValues -> DEBU 755 Initializing protos for *config.ApplicationOrgProtos +peer0.org1.example.com | [963 01-18 09:31:29.90 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 +orderer.example.com | 2018-01-18 09:29:44.184 UTC [common/config] initializeProtosStruct -> DEBU 756 Processing field: AnchorPeers +peer0.org1.example.com | [964 01-18 09:31:29.90 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [3ffb5208]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [965 01-18 09:31:29.91 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [966 01-18 09:31:29.91 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [3ffb5208]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [967 01-18 09:31:29.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3ffb5208]Move state message TRANSACTION +peer0.org1.example.com | [968 01-18 09:31:29.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3ffb5208]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [969 01-18 09:31:29.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [96a 01-18 09:31:29.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3ffb5208]sending state message TRANSACTION +orderer.example.com | 2018-01-18 09:29:44.184 UTC [common/config] NewStandardValues -> DEBU 757 Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [96b 01-18 09:31:29.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3ffb5208]Received message TRANSACTION from shim +peer0.org1.example.com | [96c 01-18 09:31:29.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3ffb5208]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | 2018-01-18 09:29:44.184 UTC [common/config] initializeProtosStruct -> DEBU 758 Processing field: MSP +orderer.example.com | 2018-01-18 09:29:44.184 UTC [policies] ProposePolicy -> DEBU 759 Proposed new policy Writers for Org2MSP +peer0.org1.example.com | [96d 01-18 09:31:29.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [3ffb5208]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [96e 01-18 09:31:29.91 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer0.org1.example.com | [96f 01-18 09:31:29.91 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +orderer.example.com | 2018-01-18 09:29:44.185 UTC [policies] ProposePolicy -> DEBU 75a Proposed new policy Admins for Org2MSP +peer0.org1.example.com | [970 01-18 09:31:29.91 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +peer0.org1.example.com | [971 01-18 09:31:29.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3ffb5208]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [972 01-18 09:31:29.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3ffb5208]Move state message COMPLETED +peer0.org1.example.com | [973 01-18 09:31:29.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3ffb5208]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [974 01-18 09:31:29.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3ffb5208]send state message COMPLETED +peer0.org1.example.com | [975 01-18 09:31:29.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3ffb5208]Received message COMPLETED from shim +peer0.org1.example.com | [976 01-18 09:31:29.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3ffb5208]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [977 01-18 09:31:29.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3ffb5208-ea51-48c3-a69b-65729da4a373]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [978 01-18 09:31:29.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:3ffb5208-ea51-48c3-a69b-65729da4a373 +peer0.org1.example.com | [979 01-18 09:31:29.91 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [97a 01-18 09:31:29.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [d70a03fd-18f5-4277-8504-3fb37f729b57] +peer0.org1.example.com | [97b 01-18 09:31:29.92 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer0.org1.example.com | [97c 01-18 09:31:29.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +orderer.example.com | 2018-01-18 09:29:44.185 UTC [policies] ProposePolicy -> DEBU 75b Proposed new policy Readers for Org2MSP +orderer.example.com | 2018-01-18 09:29:44.185 UTC [common/config] NewStandardValues -> DEBU 75c Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [97d 01-18 09:31:29.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc4226fc3c0), Data:(*common.BlockData)(0xc421d5e420), Metadata:(*common.BlockMetadata)(0xc421d5e460)}, doMVCCValidation=true +orderer.example.com | 2018-01-18 09:29:44.185 UTC [common/config] initializeProtosStruct -> DEBU 75d Processing field: MSP +peer0.org1.example.com | [97e 01-18 09:31:29.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +peer0.org1.example.com | [97f 01-18 09:31:29.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=exp02, key=a +orderer.example.com | 2018-01-18 09:29:44.185 UTC [common/config] NewStandardValues -> DEBU 75e Initializing protos for *config.ApplicationOrgProtos +peer0.org1.example.com | [980 01-18 09:31:29.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=exp02, key=b +peer0.org1.example.com | [981 01-18 09:31:29.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer0.org1.example.com | [982 01-18 09:31:29.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [6] Transaction index [0] TxId [a4652cc8b4e64e8e390bc639b183d8569ae28fa2ce4307dc0a9b7eed3962aaab] marked as valid by state validator +orderer.example.com | 2018-01-18 09:29:44.185 UTC [common/config] initializeProtosStruct -> DEBU 75f Processing field: AnchorPeers +peer0.org1.example.com | [983 01-18 09:31:29.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0x6d, 0x6b, 0x82, 0xbc, 0xa, 0x4, 0xe3, 0xad, 0xfa, 0xe, 0x85, 0xa6, 0xa0, 0xe8, 0x87, 0xbf, 0x19, 0xf1, 0xbf, 0xd3, 0x9d, 0x68, 0xf3, 0x0, 0xe5, 0x64, 0xa4, 0xd6, 0x4c, 0x4e, 0x9f, 0x3d} txOffsets= +orderer.example.com | 2018-01-18 09:29:44.185 UTC [common/config] NewStandardValues -> DEBU 760 Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | txId=a4652cc8b4e64e8e390bc639b183d8569ae28fa2ce4307dc0a9b7eed3962aaab locPointer=offset=70, bytesLength=2855 +peer0.org1.example.com | ] +peer0.org1.example.com | [984 01-18 09:31:29.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=54634, bytesLength=2855] for tx ID: [a4652cc8b4e64e8e390bc639b183d8569ae28fa2ce4307dc0a9b7eed3962aaab] to index +peer0.org1.example.com | [985 01-18 09:31:29.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=54634, bytesLength=2855] for tx number:[0] ID: [a4652cc8b4e64e8e390bc639b183d8569ae28fa2ce4307dc0a9b7eed3962aaab] to blockNumTranNum index +peer0.org1.example.com | [986 01-18 09:31:29.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[59239], isChainEmpty=[false], lastBlockNumber=[6] +peer0.org1.example.com | [987 01-18 09:31:29.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [6] with 1 transaction(s) +peer0.org1.example.com | [988 01-18 09:31:29.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +peer0.org1.example.com | [989 01-18 09:31:29.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +orderer.example.com | 2018-01-18 09:29:44.185 UTC [common/config] initializeProtosStruct -> DEBU 761 Processing field: MSP +peer0.org1.example.com | [98a 01-18 09:31:29.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] +orderer.example.com | 2018-01-18 09:29:44.185 UTC [policies] ProposePolicy -> DEBU 762 Proposed new policy Admins for Org1MSP +peer0.org1.example.com | [98b 01-18 09:31:29.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] +orderer.example.com | 2018-01-18 09:29:44.185 UTC [policies] ProposePolicy -> DEBU 763 Proposed new policy Readers for Org1MSP +orderer.example.com | 2018-01-18 09:29:44.185 UTC [policies] ProposePolicy -> DEBU 764 Proposed new policy Writers for Org1MSP +orderer.example.com | 2018-01-18 09:29:44.185 UTC [common/config] NewStandardValues -> DEBU 765 Initializing protos for *config.OrdererProtos +orderer.example.com | 2018-01-18 09:29:44.186 UTC [common/config] initializeProtosStruct -> DEBU 766 Processing field: ConsensusType +orderer.example.com | 2018-01-18 09:29:44.186 UTC [common/config] initializeProtosStruct -> DEBU 767 Processing field: BatchSize +orderer.example.com | 2018-01-18 09:29:44.186 UTC [common/config] initializeProtosStruct -> DEBU 768 Processing field: BatchTimeout +orderer.example.com | 2018-01-18 09:29:44.186 UTC [common/config] initializeProtosStruct -> DEBU 769 Processing field: KafkaBrokers +orderer.example.com | 2018-01-18 09:29:44.187 UTC [common/config] initializeProtosStruct -> DEBU 76a Processing field: ChannelRestrictions +orderer.example.com | 2018-01-18 09:29:44.187 UTC [policies] ProposePolicy -> DEBU 76b Proposed new policy Readers for Orderer +orderer.example.com | 2018-01-18 09:29:44.187 UTC [policies] ProposePolicy -> DEBU 76c Proposed new policy Writers for Orderer +orderer.example.com | 2018-01-18 09:29:44.187 UTC [policies] ProposePolicy -> DEBU 76d Proposed new policy Admins for Orderer +orderer.example.com | 2018-01-18 09:29:44.187 UTC [policies] ProposePolicy -> DEBU 76e Proposed new policy BlockValidation for Orderer +orderer.example.com | 2018-01-18 09:29:44.187 UTC [common/config] NewStandardValues -> DEBU 76f Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:44.187 UTC [common/config] initializeProtosStruct -> DEBU 770 Processing field: MSP +orderer.example.com | 2018-01-18 09:29:44.187 UTC [policies] ProposePolicy -> DEBU 771 Proposed new policy Readers for OrdererOrg +orderer.example.com | 2018-01-18 09:29:44.187 UTC [policies] ProposePolicy -> DEBU 772 Proposed new policy Writers for OrdererOrg +orderer.example.com | 2018-01-18 09:29:44.187 UTC [policies] ProposePolicy -> DEBU 773 Proposed new policy Admins for OrdererOrg +orderer.example.com | 2018-01-18 09:29:44.188 UTC [common/config] Validate -> DEBU 774 Anchor peers for org Org2MSP are +peer0.org1.example.com | [98c 01-18 09:31:29.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +peer0.org1.example.com | [98d 01-18 09:31:29.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [6] with [1] transactions +orderer.example.com | 2018-01-18 09:29:44.188 UTC [common/config] validateMSP -> DEBU 775 Setting up MSP for org Org2MSP +orderer.example.com | 2018-01-18 09:29:44.188 UTC [msp] NewBccspMsp -> DEBU 776 Creating BCCSP-based MSP instance +peer0.org1.example.com | [98e 01-18 09:31:29.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [6] +peer0.org1.example.com | [98f 01-18 09:31:29.92 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +orderer.example.com | 2018-01-18 09:29:44.188 UTC [msp] Setup -> DEBU 777 Setting up MSP instance Org2MSP +peer0.org1.example.com | [990 01-18 09:31:29.92 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [6] contains transaction id: a4652cc8b4e64e8e390bc639b183d8569ae28fa2ce4307dc0a9b7eed3962aaab +peer0.org1.example.com | [991 01-18 09:31:29.92 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [6] +orderer.example.com | 2018-01-18 09:29:44.188 UTC [msp/identity] newIdentity -> DEBU 778 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw +peer0.org1.example.com | [992 01-18 09:31:29.92 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org1.example.com | [993 01-18 09:31:29.92 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer0.org1.example.com | [994 01-18 09:31:29.92 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer0.org1.example.com | [995 01-18 09:31:29.92 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +peer0.org1.example.com | [996 01-18 09:31:29.92 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +orderer.example.com | mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 +orderer.example.com | sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ +orderer.example.com | xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv +orderer.example.com | WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk +orderer.example.com | SCjyRdD3aQ== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:44.188 UTC [msp/identity] newIdentity -> DEBU 779 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +orderer.example.com | AXYxULZpXYDQXt1KaLI= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:44.189 UTC [msp/identity] newIdentity -> DEBU 77a Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +orderer.example.com | AXYxULZpXYDQXt1KaLI= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:44.191 UTC [msp] Validate -> DEBU 77b MSP Org2MSP validating identity +orderer.example.com | 2018-01-18 09:29:44.191 UTC [common/config] Validate -> DEBU 77c Anchor peers for org Org1MSP are +orderer.example.com | 2018-01-18 09:29:44.191 UTC [common/config] validateMSP -> DEBU 77d Setting up MSP for org Org1MSP +orderer.example.com | 2018-01-18 09:29:44.191 UTC [msp] NewBccspMsp -> DEBU 77e Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-18 09:29:44.191 UTC [msp] Setup -> DEBU 77f Setting up MSP instance Org1MSP +orderer.example.com | 2018-01-18 09:29:44.191 UTC [msp/identity] newIdentity -> DEBU 780 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +orderer.example.com | BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf +orderer.example.com | db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx +orderer.example.com | JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi +orderer.example.com | /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ +orderer.example.com | H7n8z1pj5w== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:44.192 UTC [msp/identity] newIdentity -> DEBU 781 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:44.193 UTC [msp/identity] newIdentity -> DEBU 782 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:44.194 UTC [msp] Validate -> DEBU 783 MSP Org1MSP validating identity +orderer.example.com | 2018-01-18 09:29:44.194 UTC [common/config] validateMSP -> DEBU 784 Setting up MSP for org OrdererOrg +orderer.example.com | 2018-01-18 09:29:44.194 UTC [msp] NewBccspMsp -> DEBU 785 Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-18 09:29:44.194 UTC [msp] Setup -> DEBU 786 Setting up MSP instance OrdererMSP +orderer.example.com | 2018-01-18 09:29:44.195 UTC [msp/identity] newIdentity -> DEBU 787 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +orderer.example.com | cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW +orderer.example.com | gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +orderer.example.com | AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK +orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs +orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:44.196 UTC [msp/identity] newIdentity -> DEBU 788 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:44.196 UTC [msp/identity] newIdentity -> DEBU 789 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:44.198 UTC [msp] Validate -> DEBU 78a MSP OrdererMSP validating identity +orderer.example.com | 2018-01-18 09:29:44.199 UTC [msp] Setup -> DEBU 78b Setting up the MSP manager (3 msps) +orderer.example.com | 2018-01-18 09:29:44.199 UTC [msp] Setup -> DEBU 78c MSP manager setup complete, setup 3 msps +orderer.example.com | 2018-01-18 09:29:44.199 UTC [policies] GetPolicy -> DEBU 78d Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:44.199 UTC [policies] CommitProposals -> DEBU 78e In commit adding relative sub-policy Org1MSP/Writers to Application +orderer.example.com | 2018-01-18 09:29:44.199 UTC [policies] GetPolicy -> DEBU 78f Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:44.199 UTC [policies] CommitProposals -> DEBU 790 In commit adding relative sub-policy Org1MSP/Admins to Application +orderer.example.com | 2018-01-18 09:29:44.199 UTC [policies] GetPolicy -> DEBU 791 Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:44.199 UTC [policies] CommitProposals -> DEBU 792 In commit adding relative sub-policy Org1MSP/Readers to Application +orderer.example.com | 2018-01-18 09:29:44.199 UTC [policies] GetPolicy -> DEBU 793 Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:44.199 UTC [policies] CommitProposals -> DEBU 794 In commit adding relative sub-policy Org2MSP/Writers to Application +orderer.example.com | 2018-01-18 09:29:44.199 UTC [policies] GetPolicy -> DEBU 795 Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:44.199 UTC [policies] CommitProposals -> DEBU 796 In commit adding relative sub-policy Org2MSP/Admins to Application +orderer.example.com | 2018-01-18 09:29:44.199 UTC [policies] GetPolicy -> DEBU 797 Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:44.199 UTC [policies] CommitProposals -> DEBU 798 In commit adding relative sub-policy Org2MSP/Readers to Application +orderer.example.com | 2018-01-18 09:29:44.199 UTC [policies] GetPolicy -> DEBU 799 Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:44.199 UTC [policies] GetPolicy -> DEBU 79a Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:44.199 UTC [policies] GetPolicy -> DEBU 79b Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:44.199 UTC [policies] GetPolicy -> DEBU 79c Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:44.199 UTC [policies] GetPolicy -> DEBU 79d Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:44.199 UTC [policies] GetPolicy -> DEBU 79e Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:44.199 UTC [policies] GetPolicy -> DEBU 79f Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:44.199 UTC [policies] CommitProposals -> DEBU 7a0 In commit adding relative sub-policy OrdererOrg/Readers to Orderer +orderer.example.com | 2018-01-18 09:29:44.200 UTC [policies] GetPolicy -> DEBU 7a1 Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:44.200 UTC [policies] CommitProposals -> DEBU 7a2 In commit adding relative sub-policy OrdererOrg/Writers to Orderer +orderer.example.com | 2018-01-18 09:29:44.200 UTC [policies] GetPolicy -> DEBU 7a3 Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:44.200 UTC [policies] CommitProposals -> DEBU 7a4 In commit adding relative sub-policy OrdererOrg/Admins to Orderer +orderer.example.com | 2018-01-18 09:29:44.200 UTC [policies] GetPolicy -> DEBU 7a5 Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:44.200 UTC [policies] GetPolicy -> DEBU 7a6 Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:44.200 UTC [policies] GetPolicy -> DEBU 7a7 Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:44.200 UTC [policies] GetPolicy -> DEBU 7a8 Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:44.200 UTC [policies] GetPolicy -> DEBU 7a9 Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:44.200 UTC [policies] CommitProposals -> DEBU 7aa In commit adding relative sub-policy Application/Readers to Channel +orderer.example.com | 2018-01-18 09:29:44.200 UTC [policies] GetPolicy -> DEBU 7ab Returning policy Org1MSP/Writers for evaluation +orderer.example.com | 2018-01-18 09:29:44.200 UTC [policies] CommitProposals -> DEBU 7ac In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +orderer.example.com | 2018-01-18 09:29:44.200 UTC [policies] GetPolicy -> DEBU 7ad Returning policy Org2MSP/Readers for evaluation +orderer.example.com | 2018-01-18 09:29:44.200 UTC [policies] CommitProposals -> DEBU 7ae In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +orderer.example.com | 2018-01-18 09:29:44.200 UTC [policies] GetPolicy -> DEBU 7af Returning policy Org1MSP/Readers for evaluation +orderer.example.com | 2018-01-18 09:29:44.200 UTC [policies] CommitProposals -> DEBU 7b0 In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +orderer.example.com | 2018-01-18 09:29:44.200 UTC [policies] GetPolicy -> DEBU 7b1 Returning policy Org2MSP/Writers for evaluation +orderer.example.com | 2018-01-18 09:29:44.200 UTC [policies] CommitProposals -> DEBU 7b2 In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +orderer.example.com | 2018-01-18 09:29:44.200 UTC [policies] GetPolicy -> DEBU 7b3 Returning policy Org2MSP/Admins for evaluation +orderer.example.com | 2018-01-18 09:29:44.200 UTC [policies] CommitProposals -> DEBU 7b4 In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +orderer.example.com | 2018-01-18 09:29:44.200 UTC [policies] GetPolicy -> DEBU 7b5 Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:44.200 UTC [policies] CommitProposals -> DEBU 7b6 In commit adding relative sub-policy Application/Admins to Channel +orderer.example.com | 2018-01-18 09:29:44.200 UTC [policies] GetPolicy -> DEBU 7b7 Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:44.200 UTC [policies] CommitProposals -> DEBU 7b8 In commit adding relative sub-policy Application/Writers to Channel +orderer.example.com | 2018-01-18 09:29:44.200 UTC [policies] GetPolicy -> DEBU 7b9 Returning policy Org1MSP/Admins for evaluation +orderer.example.com | 2018-01-18 09:29:44.200 UTC [policies] CommitProposals -> DEBU 7ba In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +orderer.example.com | 2018-01-18 09:29:44.200 UTC [policies] GetPolicy -> DEBU 7bb Returning policy OrdererOrg/Readers for evaluation +orderer.example.com | 2018-01-18 09:29:44.200 UTC [policies] CommitProposals -> DEBU 7bc In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +orderer.example.com | 2018-01-18 09:29:44.200 UTC [policies] GetPolicy -> DEBU 7bd Returning policy OrdererOrg/Writers for evaluation +orderer.example.com | 2018-01-18 09:29:44.200 UTC [policies] CommitProposals -> DEBU 7be In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +orderer.example.com | 2018-01-18 09:29:44.200 UTC [policies] GetPolicy -> DEBU 7bf Returning policy OrdererOrg/Admins for evaluation +orderer.example.com | 2018-01-18 09:29:44.200 UTC [policies] CommitProposals -> DEBU 7c0 In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +orderer.example.com | 2018-01-18 09:29:44.200 UTC [policies] GetPolicy -> DEBU 7c1 Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:44.201 UTC [policies] CommitProposals -> DEBU 7c2 In commit adding relative sub-policy Orderer/Readers to Channel +orderer.example.com | 2018-01-18 09:29:44.201 UTC [policies] GetPolicy -> DEBU 7c3 Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:44.201 UTC [policies] CommitProposals -> DEBU 7c4 In commit adding relative sub-policy Orderer/Writers to Channel +orderer.example.com | 2018-01-18 09:29:44.201 UTC [policies] GetPolicy -> DEBU 7c5 Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:44.201 UTC [policies] CommitProposals -> DEBU 7c6 In commit adding relative sub-policy Orderer/Admins to Channel +orderer.example.com | 2018-01-18 09:29:44.201 UTC [policies] GetPolicy -> DEBU 7c7 Returning policy BlockValidation for evaluation +orderer.example.com | 2018-01-18 09:29:44.201 UTC [policies] CommitProposals -> DEBU 7c8 In commit adding relative sub-policy Orderer/BlockValidation to Channel +orderer.example.com | 2018-01-18 09:29:44.201 UTC [policies] GetPolicy -> DEBU 7c9 Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:44.201 UTC [policies] GetPolicy -> DEBU 7ca Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:44.202 UTC [policies] GetPolicy -> DEBU 7cb Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:44.202 UTC [policies] GetPolicy -> DEBU 7cc Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:44.202 UTC [policies] GetPolicy -> DEBU 7cd Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:44.202 UTC [policies] GetPolicy -> DEBU 7ce Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:44.202 UTC [policies] GetPolicy -> DEBU 7cf Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:44.202 UTC [policies] CommitProposals -> DEBU 7d0 As expected, current configuration has policy '/Channel/Readers' +orderer.example.com | 2018-01-18 09:29:44.202 UTC [policies] GetPolicy -> DEBU 7d1 Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:44.202 UTC [policies] CommitProposals -> DEBU 7d2 As expected, current configuration has policy '/Channel/Writers' +orderer.example.com | 2018-01-18 09:29:44.202 UTC [policies] GetPolicy -> DEBU 7d3 Returning policy Application/Readers for evaluation +orderer.example.com | 2018-01-18 09:29:44.202 UTC [policies] CommitProposals -> DEBU 7d4 As expected, current configuration has policy '/Channel/Application/Readers' +orderer.example.com | 2018-01-18 09:29:44.203 UTC [policies] GetPolicy -> DEBU 7d5 Returning policy Application/Writers for evaluation +orderer.example.com | 2018-01-18 09:29:44.203 UTC [policies] CommitProposals -> DEBU 7d6 As expected, current configuration has policy '/Channel/Application/Writers' +orderer.example.com | 2018-01-18 09:29:44.203 UTC [policies] GetPolicy -> DEBU 7d7 Returning policy Application/Admins for evaluation +orderer.example.com | 2018-01-18 09:29:44.203 UTC [policies] CommitProposals -> DEBU 7d8 As expected, current configuration has policy '/Channel/Application/Admins' +orderer.example.com | 2018-01-18 09:29:44.203 UTC [policies] GetPolicy -> DEBU 7d9 Returning policy Orderer/BlockValidation for evaluation +orderer.example.com | 2018-01-18 09:29:44.203 UTC [policies] CommitProposals -> DEBU 7da As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +orderer.example.com | 2018-01-18 09:29:44.203 UTC [orderer/common/blockcutter] Ordered -> DEBU 7db Found message which requested to be isolated, cutting into its own batch +orderer.example.com | 2018-01-18 09:29:44.203 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 7dc retrieveBlockByNumber() - blockNum = [0] +orderer.example.com | 2018-01-18 09:29:44.203 UTC [fsblkstorage] newBlockfileStream -> DEBU 7dd newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +orderer.example.com | 2018-01-18 09:29:44.204 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 7de Remaining bytes=[9082], Going to peek [8] bytes +orderer.example.com | 2018-01-18 09:29:44.204 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 7df Returning blockbytes - length=[9080], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +orderer.example.com | 2018-01-18 09:29:44.204 UTC [common/config] NewStandardValues -> DEBU 7e0 Initializing protos for *config.ChannelProtos +orderer.example.com | 2018-01-18 09:29:44.205 UTC [common/config] initializeProtosStruct -> DEBU 7e1 Processing field: HashingAlgorithm +orderer.example.com | 2018-01-18 09:29:44.205 UTC [common/config] initializeProtosStruct -> DEBU 7e2 Processing field: BlockDataHashingStructure +orderer.example.com | 2018-01-18 09:29:44.205 UTC [common/config] initializeProtosStruct -> DEBU 7e3 Processing field: OrdererAddresses +orderer.example.com | 2018-01-18 09:29:44.205 UTC [common/config] initializeProtosStruct -> DEBU 7e4 Processing field: Consortium +orderer.example.com | 2018-01-18 09:29:44.205 UTC [common/configtx] addToMap -> DEBU 7e5 Adding to config map: [Groups] /Channel +orderer.example.com | 2018-01-18 09:29:44.205 UTC [common/configtx] addToMap -> DEBU 7e6 Adding to config map: [Groups] /Channel/Orderer +orderer.example.com | 2018-01-18 09:29:44.205 UTC [common/configtx] addToMap -> DEBU 7e7 Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +orderer.example.com | 2018-01-18 09:29:44.206 UTC [common/configtx] addToMap -> DEBU 7e8 Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +orderer.example.com | 2018-01-18 09:29:44.206 UTC [common/configtx] addToMap -> DEBU 7e9 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +orderer.example.com | 2018-01-18 09:29:44.206 UTC [common/configtx] addToMap -> DEBU 7ea Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | 2018-01-18 09:29:44.206 UTC [common/configtx] addToMap -> DEBU 7eb Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +orderer.example.com | 2018-01-18 09:29:44.206 UTC [common/configtx] addToMap -> DEBU 7ec Adding to config map: [Values] /Channel/Orderer/ConsensusType +orderer.example.com | 2018-01-18 09:29:44.206 UTC [common/configtx] addToMap -> DEBU 7ed Adding to config map: [Values] /Channel/Orderer/BatchSize +orderer.example.com | 2018-01-18 09:29:44.206 UTC [common/configtx] addToMap -> DEBU 7ee Adding to config map: [Values] /Channel/Orderer/BatchTimeout +orderer.example.com | 2018-01-18 09:29:44.207 UTC [common/configtx] addToMap -> DEBU 7ef Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +orderer.example.com | 2018-01-18 09:29:44.207 UTC [common/configtx] addToMap -> DEBU 7f0 Adding to config map: [Policy] /Channel/Orderer/BlockValidation +orderer.example.com | 2018-01-18 09:29:44.207 UTC [common/configtx] addToMap -> DEBU 7f1 Adding to config map: [Policy] /Channel/Orderer/Readers +orderer.example.com | 2018-01-18 09:29:44.207 UTC [common/configtx] addToMap -> DEBU 7f2 Adding to config map: [Policy] /Channel/Orderer/Writers +orderer.example.com | 2018-01-18 09:29:44.207 UTC [common/configtx] addToMap -> DEBU 7f3 Adding to config map: [Policy] /Channel/Orderer/Admins +orderer.example.com | 2018-01-18 09:29:44.207 UTC [common/configtx] addToMap -> DEBU 7f4 Adding to config map: [Groups] /Channel/Application +orderer.example.com | 2018-01-18 09:29:44.207 UTC [common/configtx] addToMap -> DEBU 7f5 Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | 2018-01-18 09:29:44.207 UTC [common/configtx] addToMap -> DEBU 7f6 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +orderer.example.com | 2018-01-18 09:29:44.207 UTC [common/configtx] addToMap -> DEBU 7f7 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | 2018-01-18 09:29:44.208 UTC [common/configtx] addToMap -> DEBU 7f8 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | 2018-01-18 09:29:44.208 UTC [common/configtx] addToMap -> DEBU 7f9 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | 2018-01-18 09:29:44.208 UTC [common/configtx] addToMap -> DEBU 7fa Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | 2018-01-18 09:29:44.208 UTC [common/configtx] addToMap -> DEBU 7fb Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +orderer.example.com | 2018-01-18 09:29:44.208 UTC [common/configtx] addToMap -> DEBU 7fc Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | 2018-01-18 09:29:44.209 UTC [common/configtx] addToMap -> DEBU 7fd Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | 2018-01-18 09:29:44.209 UTC [common/configtx] addToMap -> DEBU 7fe Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | 2018-01-18 09:29:44.209 UTC [common/configtx] addToMap -> DEBU 7ff Adding to config map: [Policy] /Channel/Application/Admins +orderer.example.com | 2018-01-18 09:29:44.209 UTC [common/configtx] addToMap -> DEBU 800 Adding to config map: [Policy] /Channel/Application/Writers +orderer.example.com | 2018-01-18 09:29:44.209 UTC [common/configtx] addToMap -> DEBU 801 Adding to config map: [Policy] /Channel/Application/Readers +orderer.example.com | 2018-01-18 09:29:44.209 UTC [common/configtx] addToMap -> DEBU 802 Adding to config map: [Values] /Channel/Consortium +orderer.example.com | 2018-01-18 09:29:44.209 UTC [common/configtx] addToMap -> DEBU 803 Adding to config map: [Values] /Channel/BlockDataHashingStructure +orderer.example.com | 2018-01-18 09:29:44.209 UTC [common/configtx] addToMap -> DEBU 804 Adding to config map: [Values] /Channel/OrdererAddresses +orderer.example.com | 2018-01-18 09:29:44.209 UTC [common/configtx] addToMap -> DEBU 805 Adding to config map: [Values] /Channel/HashingAlgorithm +orderer.example.com | 2018-01-18 09:29:44.210 UTC [common/configtx] addToMap -> DEBU 806 Adding to config map: [Policy] /Channel/Writers +orderer.example.com | 2018-01-18 09:29:44.210 UTC [common/configtx] addToMap -> DEBU 807 Adding to config map: [Policy] /Channel/Admins +orderer.example.com | 2018-01-18 09:29:44.210 UTC [common/configtx] addToMap -> DEBU 808 Adding to config map: [Policy] /Channel/Readers +orderer.example.com | 2018-01-18 09:29:44.210 UTC [common/configtx] processConfig -> DEBU 809 Beginning new config for channel businesschannel +orderer.example.com | 2018-01-18 09:29:44.210 UTC [common/config] NewStandardValues -> DEBU 80a Initializing protos for *config.ChannelProtos +orderer.example.com | 2018-01-18 09:29:44.210 UTC [common/config] initializeProtosStruct -> DEBU 80b Processing field: HashingAlgorithm +orderer.example.com | 2018-01-18 09:29:44.210 UTC [common/config] initializeProtosStruct -> DEBU 80c Processing field: BlockDataHashingStructure +orderer.example.com | 2018-01-18 09:29:44.210 UTC [common/config] initializeProtosStruct -> DEBU 80d Processing field: OrdererAddresses +orderer.example.com | 2018-01-18 09:29:44.210 UTC [common/config] initializeProtosStruct -> DEBU 80e Processing field: Consortium +orderer.example.com | 2018-01-18 09:29:44.210 UTC [policies] ProposePolicy -> DEBU 80f Proposed new policy Writers for Channel +orderer.example.com | 2018-01-18 09:29:44.210 UTC [policies] ProposePolicy -> DEBU 810 Proposed new policy Admins for Channel +orderer.example.com | 2018-01-18 09:29:44.210 UTC [policies] ProposePolicy -> DEBU 811 Proposed new policy Readers for Channel +orderer.example.com | 2018-01-18 09:29:44.210 UTC [common/config] NewStandardValues -> DEBU 812 Initializing protos for *struct {} +orderer.example.com | 2018-01-18 09:29:44.210 UTC [policies] ProposePolicy -> DEBU 813 Proposed new policy Admins for Application +orderer.example.com | 2018-01-18 09:29:44.211 UTC [policies] ProposePolicy -> DEBU 814 Proposed new policy Writers for Application +orderer.example.com | 2018-01-18 09:29:44.211 UTC [policies] ProposePolicy -> DEBU 815 Proposed new policy Readers for Application +orderer.example.com | 2018-01-18 09:29:44.211 UTC [common/config] NewStandardValues -> DEBU 816 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:44.211 UTC [common/config] initializeProtosStruct -> DEBU 817 Processing field: MSP +orderer.example.com | 2018-01-18 09:29:44.211 UTC [common/config] NewStandardValues -> DEBU 818 Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | 2018-01-18 09:29:44.211 UTC [common/config] initializeProtosStruct -> DEBU 819 Processing field: AnchorPeers +orderer.example.com | 2018-01-18 09:29:44.211 UTC [common/config] NewStandardValues -> DEBU 81a Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:44.211 UTC [common/config] initializeProtosStruct -> DEBU 81b Processing field: MSP +orderer.example.com | 2018-01-18 09:29:44.211 UTC [policies] ProposePolicy -> DEBU 81c Proposed new policy Admins for Org1MSP +orderer.example.com | 2018-01-18 09:29:44.211 UTC [policies] ProposePolicy -> DEBU 81d Proposed new policy Readers for Org1MSP +orderer.example.com | 2018-01-18 09:29:44.211 UTC [policies] ProposePolicy -> DEBU 81e Proposed new policy Writers for Org1MSP +orderer.example.com | 2018-01-18 09:29:44.211 UTC [common/config] NewStandardValues -> DEBU 81f Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:44.212 UTC [common/config] initializeProtosStruct -> DEBU 820 Processing field: MSP +orderer.example.com | 2018-01-18 09:29:44.212 UTC [common/config] NewStandardValues -> DEBU 821 Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | 2018-01-18 09:29:44.212 UTC [common/config] initializeProtosStruct -> DEBU 822 Processing field: AnchorPeers +orderer.example.com | 2018-01-18 09:29:44.212 UTC [common/config] NewStandardValues -> DEBU 823 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:44.212 UTC [common/config] initializeProtosStruct -> DEBU 824 Processing field: MSP +orderer.example.com | 2018-01-18 09:29:44.212 UTC [policies] ProposePolicy -> DEBU 825 Proposed new policy Writers for Org2MSP +orderer.example.com | 2018-01-18 09:29:44.212 UTC [policies] ProposePolicy -> DEBU 826 Proposed new policy Admins for Org2MSP +orderer.example.com | 2018-01-18 09:29:44.213 UTC [policies] ProposePolicy -> DEBU 827 Proposed new policy Readers for Org2MSP +orderer.example.com | 2018-01-18 09:29:44.213 UTC [common/config] NewStandardValues -> DEBU 828 Initializing protos for *config.OrdererProtos +orderer.example.com | 2018-01-18 09:29:44.213 UTC [common/config] initializeProtosStruct -> DEBU 829 Processing field: ConsensusType +orderer.example.com | 2018-01-18 09:29:44.213 UTC [common/config] initializeProtosStruct -> DEBU 82a Processing field: BatchSize +orderer.example.com | 2018-01-18 09:29:44.213 UTC [common/config] initializeProtosStruct -> DEBU 82b Processing field: BatchTimeout +orderer.example.com | 2018-01-18 09:29:44.213 UTC [common/config] initializeProtosStruct -> DEBU 82c Processing field: KafkaBrokers +orderer.example.com | 2018-01-18 09:29:44.213 UTC [common/config] initializeProtosStruct -> DEBU 82d Processing field: ChannelRestrictions +orderer.example.com | 2018-01-18 09:29:44.213 UTC [policies] ProposePolicy -> DEBU 82e Proposed new policy BlockValidation for Orderer +orderer.example.com | 2018-01-18 09:29:44.213 UTC [policies] ProposePolicy -> DEBU 82f Proposed new policy Readers for Orderer +orderer.example.com | 2018-01-18 09:29:44.213 UTC [policies] ProposePolicy -> DEBU 830 Proposed new policy Writers for Orderer +orderer.example.com | 2018-01-18 09:29:44.213 UTC [policies] ProposePolicy -> DEBU 831 Proposed new policy Admins for Orderer +orderer.example.com | 2018-01-18 09:29:44.213 UTC [common/config] NewStandardValues -> DEBU 832 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:44.213 UTC [common/config] initializeProtosStruct -> DEBU 833 Processing field: MSP +orderer.example.com | 2018-01-18 09:29:44.213 UTC [policies] ProposePolicy -> DEBU 834 Proposed new policy Admins for OrdererOrg +orderer.example.com | 2018-01-18 09:29:44.213 UTC [policies] ProposePolicy -> DEBU 835 Proposed new policy Readers for OrdererOrg +orderer.example.com | 2018-01-18 09:29:44.214 UTC [policies] ProposePolicy -> DEBU 836 Proposed new policy Writers for OrdererOrg +orderer.example.com | 2018-01-18 09:29:44.214 UTC [common/config] Validate -> DEBU 837 Anchor peers for org Org1MSP are +orderer.example.com | 2018-01-18 09:29:44.214 UTC [common/config] validateMSP -> DEBU 838 Setting up MSP for org Org1MSP +orderer.example.com | 2018-01-18 09:29:44.214 UTC [msp] NewBccspMsp -> DEBU 839 Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-18 09:29:44.214 UTC [msp] Setup -> DEBU 83a Setting up MSP instance Org1MSP +orderer.example.com | 2018-01-18 09:29:44.215 UTC [msp/identity] newIdentity -> DEBU 83b Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +orderer.example.com | BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf +orderer.example.com | db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx +orderer.example.com | JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi +orderer.example.com | /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ +orderer.example.com | H7n8z1pj5w== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:44.216 UTC [msp/identity] newIdentity -> DEBU 83c Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:44.216 UTC [msp/identity] newIdentity -> DEBU 83d Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:44.217 UTC [msp] Validate -> DEBU 83e MSP Org1MSP validating identity +orderer.example.com | 2018-01-18 09:29:44.218 UTC [common/config] Validate -> DEBU 83f Anchor peers for org Org2MSP are +orderer.example.com | 2018-01-18 09:29:44.218 UTC [common/config] validateMSP -> DEBU 840 Setting up MSP for org Org2MSP +orderer.example.com | 2018-01-18 09:29:44.218 UTC [msp] NewBccspMsp -> DEBU 841 Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-18 09:29:44.218 UTC [msp] Setup -> DEBU 842 Setting up MSP instance Org2MSP +orderer.example.com | 2018-01-18 09:29:44.218 UTC [msp/identity] newIdentity -> DEBU 843 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +orderer.example.com | mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 +orderer.example.com | sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ +orderer.example.com | xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv +orderer.example.com | WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk +orderer.example.com | SCjyRdD3aQ== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:44.219 UTC [msp/identity] newIdentity -> DEBU 844 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +orderer.example.com | AXYxULZpXYDQXt1KaLI= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:44.222 UTC [msp/identity] newIdentity -> DEBU 845 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +orderer.example.com | AXYxULZpXYDQXt1KaLI= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:44.223 UTC [msp] Validate -> DEBU 846 MSP Org2MSP validating identity +orderer.example.com | 2018-01-18 09:29:44.224 UTC [common/config] validateMSP -> DEBU 847 Setting up MSP for org OrdererOrg +orderer.example.com | 2018-01-18 09:29:44.224 UTC [msp] NewBccspMsp -> DEBU 848 Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-18 09:29:44.224 UTC [msp] Setup -> DEBU 849 Setting up MSP instance OrdererMSP +orderer.example.com | 2018-01-18 09:29:44.224 UTC [msp/identity] newIdentity -> DEBU 84a Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +orderer.example.com | cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW +orderer.example.com | gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +orderer.example.com | AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK +orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs +orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:44.225 UTC [msp/identity] newIdentity -> DEBU 84b Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:44.226 UTC [msp/identity] newIdentity -> DEBU 84c Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:44.227 UTC [msp] Validate -> DEBU 84d MSP OrdererMSP validating identity +orderer.example.com | 2018-01-18 09:29:44.227 UTC [msp] Setup -> DEBU 84e Setting up the MSP manager (3 msps) +orderer.example.com | 2018-01-18 09:29:44.227 UTC [msp] Setup -> DEBU 84f MSP manager setup complete, setup 3 msps +orderer.example.com | 2018-01-18 09:29:44.227 UTC [policies] GetPolicy -> DEBU 850 Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:44.227 UTC [policies] CommitProposals -> DEBU 851 In commit adding relative sub-policy Org1MSP/Admins to Application +orderer.example.com | 2018-01-18 09:29:44.227 UTC [policies] GetPolicy -> DEBU 852 Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:44.227 UTC [policies] CommitProposals -> DEBU 853 In commit adding relative sub-policy Org1MSP/Readers to Application +orderer.example.com | 2018-01-18 09:29:44.227 UTC [policies] GetPolicy -> DEBU 854 Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:44.227 UTC [policies] CommitProposals -> DEBU 855 In commit adding relative sub-policy Org1MSP/Writers to Application +orderer.example.com | 2018-01-18 09:29:44.228 UTC [policies] GetPolicy -> DEBU 856 Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:44.228 UTC [policies] CommitProposals -> DEBU 857 In commit adding relative sub-policy Org2MSP/Writers to Application +orderer.example.com | 2018-01-18 09:29:44.228 UTC [policies] GetPolicy -> DEBU 858 Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:44.228 UTC [policies] CommitProposals -> DEBU 859 In commit adding relative sub-policy Org2MSP/Admins to Application +orderer.example.com | 2018-01-18 09:29:44.228 UTC [policies] GetPolicy -> DEBU 85a Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:44.228 UTC [policies] CommitProposals -> DEBU 85b In commit adding relative sub-policy Org2MSP/Readers to Application +orderer.example.com | 2018-01-18 09:29:44.228 UTC [policies] GetPolicy -> DEBU 85c Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:44.228 UTC [policies] GetPolicy -> DEBU 85d Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:44.228 UTC [policies] GetPolicy -> DEBU 85e Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:44.228 UTC [policies] GetPolicy -> DEBU 85f Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:44.228 UTC [policies] GetPolicy -> DEBU 860 Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:44.228 UTC [policies] GetPolicy -> DEBU 861 Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:44.228 UTC [policies] GetPolicy -> DEBU 862 Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:44.228 UTC [policies] CommitProposals -> DEBU 863 In commit adding relative sub-policy OrdererOrg/Admins to Orderer +orderer.example.com | 2018-01-18 09:29:44.228 UTC [policies] GetPolicy -> DEBU 864 Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:44.228 UTC [policies] CommitProposals -> DEBU 865 In commit adding relative sub-policy OrdererOrg/Readers to Orderer +orderer.example.com | 2018-01-18 09:29:44.228 UTC [policies] GetPolicy -> DEBU 866 Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:44.229 UTC [policies] CommitProposals -> DEBU 867 In commit adding relative sub-policy OrdererOrg/Writers to Orderer +orderer.example.com | 2018-01-18 09:29:44.229 UTC [policies] GetPolicy -> DEBU 868 Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:44.229 UTC [policies] GetPolicy -> DEBU 869 Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:44.229 UTC [policies] GetPolicy -> DEBU 86a Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:44.229 UTC [policies] GetPolicy -> DEBU 86b Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:44.229 UTC [policies] GetPolicy -> DEBU 86c Returning policy OrdererOrg/Readers for evaluation +orderer.example.com | 2018-01-18 09:29:44.229 UTC [policies] CommitProposals -> DEBU 86d In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +orderer.example.com | 2018-01-18 09:29:44.229 UTC [policies] GetPolicy -> DEBU 86e Returning policy OrdererOrg/Writers for evaluation +orderer.example.com | 2018-01-18 09:29:44.229 UTC [policies] CommitProposals -> DEBU 86f In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +orderer.example.com | 2018-01-18 09:29:44.229 UTC [policies] GetPolicy -> DEBU 870 Returning policy BlockValidation for evaluation +orderer.example.com | 2018-01-18 09:29:44.229 UTC [policies] CommitProposals -> DEBU 871 In commit adding relative sub-policy Orderer/BlockValidation to Channel +orderer.example.com | 2018-01-18 09:29:44.229 UTC [policies] GetPolicy -> DEBU 872 Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:44.229 UTC [policies] CommitProposals -> DEBU 873 In commit adding relative sub-policy Orderer/Readers to Channel +orderer.example.com | 2018-01-18 09:29:44.229 UTC [policies] GetPolicy -> DEBU 874 Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:44.229 UTC [policies] CommitProposals -> DEBU 875 In commit adding relative sub-policy Orderer/Writers to Channel +orderer.example.com | 2018-01-18 09:29:44.229 UTC [policies] GetPolicy -> DEBU 876 Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:44.229 UTC [policies] CommitProposals -> DEBU 877 In commit adding relative sub-policy Orderer/Admins to Channel +orderer.example.com | 2018-01-18 09:29:44.229 UTC [policies] GetPolicy -> DEBU 878 Returning policy OrdererOrg/Admins for evaluation +orderer.example.com | 2018-01-18 09:29:44.229 UTC [policies] CommitProposals -> DEBU 879 In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +orderer.example.com | 2018-01-18 09:29:44.229 UTC [policies] GetPolicy -> DEBU 87a Returning policy Org1MSP/Admins for evaluation +orderer.example.com | 2018-01-18 09:29:44.229 UTC [policies] CommitProposals -> DEBU 87b In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +orderer.example.com | 2018-01-18 09:29:44.229 UTC [policies] GetPolicy -> DEBU 87c Returning policy Org1MSP/Readers for evaluation +orderer.example.com | 2018-01-18 09:29:44.229 UTC [policies] CommitProposals -> DEBU 87d In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +orderer.example.com | 2018-01-18 09:29:44.230 UTC [policies] GetPolicy -> DEBU 87e Returning policy Org1MSP/Writers for evaluation +orderer.example.com | 2018-01-18 09:29:44.230 UTC [policies] CommitProposals -> DEBU 87f In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +orderer.example.com | 2018-01-18 09:29:44.230 UTC [policies] GetPolicy -> DEBU 880 Returning policy Org2MSP/Admins for evaluation +orderer.example.com | 2018-01-18 09:29:44.230 UTC [policies] CommitProposals -> DEBU 881 In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +orderer.example.com | 2018-01-18 09:29:44.230 UTC [policies] GetPolicy -> DEBU 882 Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:44.230 UTC [policies] CommitProposals -> DEBU 883 In commit adding relative sub-policy Application/Writers to Channel +orderer.example.com | 2018-01-18 09:29:44.230 UTC [policies] GetPolicy -> DEBU 884 Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:44.230 UTC [policies] CommitProposals -> DEBU 885 In commit adding relative sub-policy Application/Readers to Channel +orderer.example.com | 2018-01-18 09:29:44.230 UTC [policies] GetPolicy -> DEBU 886 Returning policy Org2MSP/Readers for evaluation +orderer.example.com | 2018-01-18 09:29:44.230 UTC [policies] CommitProposals -> DEBU 887 In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +orderer.example.com | 2018-01-18 09:29:44.230 UTC [policies] GetPolicy -> DEBU 888 Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:44.230 UTC [policies] CommitProposals -> DEBU 889 In commit adding relative sub-policy Application/Admins to Channel +orderer.example.com | 2018-01-18 09:29:44.230 UTC [policies] GetPolicy -> DEBU 88a Returning policy Org2MSP/Writers for evaluation +orderer.example.com | 2018-01-18 09:29:44.230 UTC [policies] CommitProposals -> DEBU 88b In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +orderer.example.com | 2018-01-18 09:29:44.230 UTC [policies] GetPolicy -> DEBU 88c Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:44.230 UTC [policies] GetPolicy -> DEBU 88d Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:44.230 UTC [policies] GetPolicy -> DEBU 88e Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:44.230 UTC [policies] GetPolicy -> DEBU 88f Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:44.230 UTC [policies] GetPolicy -> DEBU 890 Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:44.230 UTC [policies] GetPolicy -> DEBU 891 Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:44.230 UTC [policies] GetPolicy -> DEBU 892 Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:44.230 UTC [policies] CommitProposals -> DEBU 893 As expected, current configuration has policy '/Channel/Readers' +orderer.example.com | 2018-01-18 09:29:44.230 UTC [policies] GetPolicy -> DEBU 894 Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:44.231 UTC [policies] CommitProposals -> DEBU 895 As expected, current configuration has policy '/Channel/Writers' +orderer.example.com | 2018-01-18 09:29:44.231 UTC [policies] GetPolicy -> DEBU 896 Returning policy Application/Readers for evaluation +orderer.example.com | 2018-01-18 09:29:44.231 UTC [policies] CommitProposals -> DEBU 897 As expected, current configuration has policy '/Channel/Application/Readers' +orderer.example.com | 2018-01-18 09:29:44.231 UTC [policies] GetPolicy -> DEBU 898 Returning policy Application/Writers for evaluation +orderer.example.com | 2018-01-18 09:29:44.231 UTC [policies] CommitProposals -> DEBU 899 As expected, current configuration has policy '/Channel/Application/Writers' +orderer.example.com | 2018-01-18 09:29:44.231 UTC [policies] GetPolicy -> DEBU 89a Returning policy Application/Admins for evaluation +orderer.example.com | 2018-01-18 09:29:44.231 UTC [policies] CommitProposals -> DEBU 89b As expected, current configuration has policy '/Channel/Application/Admins' +orderer.example.com | 2018-01-18 09:29:44.231 UTC [policies] GetPolicy -> DEBU 89c Returning policy Orderer/BlockValidation for evaluation +orderer.example.com | 2018-01-18 09:29:44.231 UTC [policies] CommitProposals -> DEBU 89d As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +orderer.example.com | 2018-01-18 09:29:44.231 UTC [fsblkstorage] newBlockfileMgr -> DEBU 89e newBlockfileMgr() initializing file-based block storage for ledger: businesschannel +orderer.example.com | 2018-01-18 09:29:44.232 UTC [kvledger.util] CreateDirIfMissing -> DEBU 89f CreateDirIfMissing [/var/hyperledger/production/orderer/chains/businesschannel/] +orderer.example.com | 2018-01-18 09:29:44.232 UTC [kvledger.util] logDirStatus -> DEBU 8a0 Before creating dir - [/var/hyperledger/production/orderer/chains/businesschannel/] does not exist +orderer.example.com | 2018-01-18 09:29:44.232 UTC [kvledger.util] logDirStatus -> DEBU 8a1 After creating dir - [/var/hyperledger/production/orderer/chains/businesschannel/] exists +orderer.example.com | 2018-01-18 09:29:44.235 UTC [fsblkstorage] syncCPInfoFromFS -> DEBU 8a2 Starting checkpoint=latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0] +orderer.example.com | 2018-01-18 09:29:44.235 UTC [fsblkstorage] syncCPInfoFromFS -> DEBU 8a3 status of file [/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000]: exists=[false], size=[0] +orderer.example.com | 2018-01-18 09:29:44.235 UTC [fsblkstorage] newBlockIndex -> DEBU 8a4 newBlockIndex() - indexItems:[[BlockNum]] +orderer.example.com | 2018-01-18 09:29:44.235 UTC [fsblkstorage] newBlockfileStream -> DEBU 8a5 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] +orderer.example.com | 2018-01-18 09:29:44.235 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 8a6 Finished reading file number [0] +orderer.example.com | 2018-01-18 09:29:44.235 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 8a7 blockbytes [0] read from file [0] +orderer.example.com | 2018-01-18 09:29:44.238 UTC [fsblkstorage] indexBlock -> DEBU 8a8 Indexing block [blockNum=0, blockHash=[]byte{0xbf, 0xac, 0x7a, 0x9c, 0x41, 0x40, 0xd9, 0x48, 0x88, 0x7, 0x81, 0xf5, 0x7b, 0xed, 0xd0, 0x38, 0xe1, 0x79, 0xd0, 0xac, 0x73, 0x8c, 0xd3, 0x69, 0xb5, 0x49, 0x90, 0xfb, 0x97, 0x6a, 0x22, 0xf5} txOffsets= +orderer.example.com | txId= locPointer=offset=38, bytesLength=11891 +orderer.example.com | ] +orderer.example.com | 2018-01-18 09:29:44.238 UTC [fsblkstorage] updateCheckpoint -> DEBU 8a9 Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[11934], isChainEmpty=[false], lastBlockNumber=[0] +orderer.example.com | 2018-01-18 09:29:44.238 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 8aa retrieveBlockByNumber() - blockNum = [0] +orderer.example.com | 2018-01-18 09:29:44.238 UTC [fsblkstorage] newBlockfileStream -> DEBU 8ab newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] +orderer.example.com | 2018-01-18 09:29:44.238 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 8ac Remaining bytes=[11934], Going to peek [8] bytes +orderer.example.com | 2018-01-18 09:29:44.238 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 8ad Returning blockbytes - length=[11932], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +orderer.example.com | 2018-01-18 09:29:44.239 UTC [orderer/multichain] newChainSupport -> DEBU 8ae [channel: businesschannel] Retrieved metadata for tip of chain (blockNumber=0, lastConfig=0, lastConfigSeq=1): +orderer.example.com | 2018-01-18 09:29:44.239 UTC [orderer/multichain] newChain -> INFO 8af Created and starting new chain businesschannel +orderer.example.com | 2018-01-18 09:29:44.239 UTC [orderer/multichain] addBlockSignature -> DEBU 8b0 &{ledgerResources:0xc4202e47e0 chain:0xc4202e4c00 cutter:0xc4202cf400 filters:0xc4202e4840 signer:0x1274e88 lastConfig:0 lastConfigSeq:0} +orderer.example.com | 2018-01-18 09:29:44.239 UTC [orderer/multichain] addBlockSignature -> DEBU 8b1 &{} +orderer.example.com | 2018-01-18 09:29:44.239 UTC [msp] GetLocalMSP -> DEBU 8b2 Returning existing local MSP +orderer.example.com | 2018-01-18 09:29:44.240 UTC [msp] GetDefaultSigningIdentity -> DEBU 8b3 Obtaining default signing identity +orderer.example.com | 2018-01-18 09:29:44.240 UTC [msp] GetLocalMSP -> DEBU 8b4 Returning existing local MSP +orderer.example.com | 2018-01-18 09:29:44.240 UTC [msp] GetDefaultSigningIdentity -> DEBU 8b5 Obtaining default signing identity +orderer.example.com | 2018-01-18 09:29:44.240 UTC [msp/identity] Sign -> DEBU 8b6 Sign: plaintext: 0AFA050A0A4F7264657265724D535012...B07368481DF5660A6AAD579A8ECB1281 +orderer.example.com | 2018-01-18 09:29:44.240 UTC [msp/identity] Sign -> DEBU 8b7 Sign: digest: A362A981E15990BFEBC0E82AECBE7A4160D0A2826C599B99D0D196A6A85E12B9 +orderer.example.com | 2018-01-18 09:29:44.240 UTC [msp] GetLocalMSP -> DEBU 8b8 Returning existing local MSP +orderer.example.com | 2018-01-18 09:29:44.240 UTC [msp] GetDefaultSigningIdentity -> DEBU 8b9 Obtaining default signing identity +orderer.example.com | 2018-01-18 09:29:44.241 UTC [orderer/multichain] addLastConfigSignature -> DEBU 8ba [channel: testchainid] About to write block, setting its LAST_CONFIG to 0 +orderer.example.com | 2018-01-18 09:29:44.241 UTC [msp] GetLocalMSP -> DEBU 8bb Returning existing local MSP +orderer.example.com | 2018-01-18 09:29:44.241 UTC [msp] GetDefaultSigningIdentity -> DEBU 8bc Obtaining default signing identity +orderer.example.com | 2018-01-18 09:29:44.241 UTC [msp/identity] Sign -> DEBU 8bd Sign: plaintext: 0AFA050A0A4F7264657265724D535012...B07368481DF5660A6AAD579A8ECB1281 +orderer.example.com | 2018-01-18 09:29:44.241 UTC [msp/identity] Sign -> DEBU 8be Sign: digest: 7D7BECEA17316E1C914E3B087D022E543ADD69A55F56B07088611110CECC222E +orderer.example.com | 2018-01-18 09:29:44.244 UTC [fsblkstorage] indexBlock -> DEBU 8bf Indexing block [blockNum=1, blockHash=[]byte{0xe2, 0x4b, 0x86, 0x9f, 0x49, 0xb0, 0xc9, 0x14, 0xf4, 0x29, 0xb2, 0xd2, 0x5c, 0xde, 0x66, 0xf8, 0x6d, 0x37, 0x2d, 0x8b, 0x63, 0xb8, 0x9d, 0x52, 0x3f, 0x76, 0xb0, 0xfb, 0xaa, 0x7d, 0x95, 0xa6} txOffsets= +orderer.example.com | txId= locPointer=offset=70, bytesLength=12792 +orderer.example.com | ] +orderer.example.com | 2018-01-18 09:29:44.245 UTC [fsblkstorage] updateCheckpoint -> DEBU 8c0 Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[23691], isChainEmpty=[false], lastBlockNumber=[1] +orderer.example.com | 2018-01-18 09:29:44.245 UTC [orderer/multichain] WriteBlock -> DEBU 8c1 [channel: testchainid] Wrote block 1 +orderer.example.com | 2018-01-18 09:29:44.269 UTC [policies] GetPolicy -> DEBU 8c2 Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:44.269 UTC [cauthdsl] func1 -> DEBU 8c3 0xc4200274f0 gate 1516267784269315753 evaluation starts +orderer.example.com | 2018-01-18 09:29:44.269 UTC [cauthdsl] func2 -> DEBU 8c4 0xc4200274f0 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:29:44.269 UTC [cauthdsl] func2 -> DEBU 8c5 0xc4200274f0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:29:44.270 UTC [msp/identity] newIdentity -> DEBU 8c6 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:44.271 UTC [cauthdsl] func2 -> DEBU 8c7 0xc4200274f0 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) +orderer.example.com | 2018-01-18 09:29:44.271 UTC [cauthdsl] func2 -> DEBU 8c8 0xc4200274f0 principal evaluation fails +orderer.example.com | 2018-01-18 09:29:44.271 UTC [cauthdsl] func1 -> DEBU 8c9 0xc4200274f0 gate 1516267784269315753 evaluation fails +orderer.example.com | 2018-01-18 09:29:44.271 UTC [cauthdsl] func1 -> DEBU 8ca 0xc420027500 gate 1516267784271692264 evaluation starts +orderer.example.com | 2018-01-18 09:29:44.271 UTC [cauthdsl] func2 -> DEBU 8cb 0xc420027500 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:29:44.271 UTC [cauthdsl] func2 -> DEBU 8cc 0xc420027500 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:29:44.272 UTC [msp/identity] newIdentity -> DEBU 8cd Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:44.272 UTC [msp] SatisfiesPrincipal -> DEBU 8ce Checking if identity satisfies MEMBER role for Org1MSP +orderer.example.com | 2018-01-18 09:29:44.272 UTC [msp] Validate -> DEBU 8cf MSP Org1MSP validating identity +orderer.example.com | 2018-01-18 09:29:44.273 UTC [cauthdsl] func2 -> DEBU 8d0 0xc420027500 principal matched by identity 0 +orderer.example.com | 2018-01-18 09:29:44.273 UTC [msp/identity] Verify -> DEBU 8d1 Verify: digest = 00000000 f4 77 21 e5 f6 86 90 5a 70 8c 3a 68 81 c1 32 5e |.w!....Zp.:h..2^| +orderer.example.com | 00000010 00 5b 9b 6e 94 e2 6d 5c b5 9d a9 66 ce a1 f5 ca |.[.n..m\...f....| +orderer.example.com | 2018-01-18 09:29:44.273 UTC [msp/identity] Verify -> DEBU 8d2 Verify: sig = 00000000 30 45 02 21 00 f3 ab 15 0e 0f 4c e1 f5 93 76 48 |0E.!......L...vH| +orderer.example.com | 00000010 45 3f 86 83 43 92 2b 44 64 be b4 46 a8 ce 8d f2 |E?..C.+Dd..F....| +orderer.example.com | 00000020 71 1c 7f 41 f4 02 20 58 d8 fa 43 fe 65 60 a3 8e |q..A.. X..C.e`..| +orderer.example.com | 00000030 37 39 62 7c 50 bf cd 06 d3 3a f4 9e e5 12 85 1e |79b|P....:......| +orderer.example.com | 00000040 a6 36 93 09 b8 0e c1 |.6.....| +orderer.example.com | 2018-01-18 09:29:44.273 UTC [cauthdsl] func2 -> DEBU 8d3 0xc420027500 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-18 09:29:44.274 UTC [cauthdsl] func1 -> DEBU 8d4 0xc420027500 gate 1516267784271692264 evaluation succeeds +orderer.example.com | 2018-01-18 09:29:44.274 UTC [orderer/common/sigfilter] Apply -> DEBU 8d5 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42083f8e0 1 [0xc4200273a8]}) %!s(*policies.implicitMetaPolicy=&{0xc42083ec60 1 [0xc420027270 0xc420027330]})]} +orderer.example.com | 2018-01-18 09:29:44.274 UTC [orderer/common/deliver] Handle -> DEBU 8d6 [channel: businesschannel] Received seekInfo (0xc420a94b80) start: > stop: > +orderer.example.com | 2018-01-18 09:29:44.274 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 8d7 retrieveBlockByNumber() - blockNum = [0] +orderer.example.com | 2018-01-18 09:29:44.275 UTC [fsblkstorage] newBlockfileStream -> DEBU 8d8 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] +orderer.example.com | 2018-01-18 09:29:44.276 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 8d9 Remaining bytes=[11934], Going to peek [8] bytes +orderer.example.com | 2018-01-18 09:29:44.276 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 8da Returning blockbytes - length=[11932], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +orderer.example.com | 2018-01-18 09:29:44.276 UTC [orderer/common/deliver] Handle -> DEBU 8db [channel: businesschannel] Delivering block for (0xc420a94b80) +orderer.example.com | 2018-01-18 09:29:44.277 UTC [orderer/common/deliver] Handle -> DEBU 8dc [channel: businesschannel] Done delivering for (0xc420a94b80), waiting for new SeekInfo +orderer.example.com | 2018-01-18 09:29:44.277 UTC [orderer/common/deliver] Handle -> DEBU 8dd Attempting to read seek info message +orderer.example.com | 2018-01-18 09:29:44.278 UTC [orderer/common/deliver] Handle -> WARN 8de Error reading from stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | 2018-01-18 09:29:44.278 UTC [orderer/main] func1 -> DEBU 8df Closing Deliver stream +orderer.example.com | 2018-01-18 09:29:46.912 UTC [orderer/main] Deliver -> DEBU 8e0 Starting new Deliver handler +orderer.example.com | 2018-01-18 09:29:46.913 UTC [orderer/common/deliver] Handle -> DEBU 8e1 Starting new deliver loop +orderer.example.com | 2018-01-18 09:29:46.913 UTC [orderer/common/deliver] Handle -> DEBU 8e2 Attempting to read seek info message +orderer.example.com | 2018-01-18 09:29:46.930 UTC [orderer/main] Broadcast -> DEBU 8e3 Starting new Broadcast handler +orderer.example.com | 2018-01-18 09:29:46.930 UTC [orderer/common/broadcast] Handle -> DEBU 8e4 Starting new broadcast loop +orderer.example.com | 2018-01-18 09:29:46.931 UTC [orderer/common/broadcast] Handle -> DEBU 8e5 Preprocessing CONFIG_UPDATE +orderer.example.com | 2018-01-18 09:29:46.932 UTC [orderer/configupdate] Process -> DEBU 8e6 Processing channel reconfiguration request for channel businesschannel +orderer.example.com | 2018-01-18 09:29:46.933 UTC [common/configtx] addToMap -> DEBU 8e7 Adding to config map: [Groups] /Channel +orderer.example.com | 2018-01-18 09:29:46.933 UTC [common/configtx] addToMap -> DEBU 8e8 Adding to config map: [Groups] /Channel/Application +orderer.example.com | 2018-01-18 09:29:46.934 UTC [common/configtx] addToMap -> DEBU 8e9 Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | 2018-01-18 09:29:46.934 UTC [common/configtx] addToMap -> DEBU 8ea Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +orderer.example.com | 2018-01-18 09:29:46.934 UTC [common/configtx] addToMap -> DEBU 8eb Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | 2018-01-18 09:29:46.934 UTC [common/configtx] addToMap -> DEBU 8ec Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | 2018-01-18 09:29:46.934 UTC [common/configtx] addToMap -> DEBU 8ed Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | 2018-01-18 09:29:46.934 UTC [common/configtx] addToMap -> DEBU 8ee Adding to config map: [Groups] /Channel +orderer.example.com | 2018-01-18 09:29:46.935 UTC [common/configtx] addToMap -> DEBU 8ef Adding to config map: [Groups] /Channel/Application +orderer.example.com | 2018-01-18 09:29:46.935 UTC [common/configtx] addToMap -> DEBU 8f0 Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | 2018-01-18 09:29:46.935 UTC [common/configtx] addToMap -> DEBU 8f1 Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +orderer.example.com | 2018-01-18 09:29:46.935 UTC [common/configtx] addToMap -> DEBU 8f2 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +orderer.example.com | 2018-01-18 09:29:46.936 UTC [common/configtx] addToMap -> DEBU 8f3 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | 2018-01-18 09:29:46.936 UTC [common/configtx] addToMap -> DEBU 8f4 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | 2018-01-18 09:29:46.936 UTC [common/configtx] addToMap -> DEBU 8f5 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | 2018-01-18 09:29:46.936 UTC [policies] GetPolicy -> DEBU 8f6 Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:46.936 UTC [cauthdsl] func1 -> DEBU 8f7 0xc420026598 gate 1516267786936912687 evaluation starts +orderer.example.com | 2018-01-18 09:29:46.937 UTC [cauthdsl] func2 -> DEBU 8f8 0xc420026598 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:29:46.937 UTC [cauthdsl] func2 -> DEBU 8f9 0xc420026598 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:29:46.938 UTC [msp/identity] newIdentity -> DEBU 8fa Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:46.938 UTC [msp] SatisfiesPrincipal -> DEBU 8fb Checking if identity satisfies ADMIN role for Org1MSP +orderer.example.com | 2018-01-18 09:29:46.939 UTC [cauthdsl] func2 -> DEBU 8fc 0xc420026598 principal matched by identity 0 +orderer.example.com | 2018-01-18 09:29:46.939 UTC [msp/identity] Verify -> DEBU 8fd Verify: digest = 00000000 4d be a9 c4 54 6d 00 c1 09 ed 0f 97 df 98 d3 b4 |M...Tm..........| +orderer.example.com | 00000010 3f 7e 4c 7b 14 2e 85 95 dd e8 fa 88 85 14 1c a4 |?~L{............| +orderer.example.com | 2018-01-18 09:29:46.939 UTC [msp/identity] Verify -> DEBU 8fe Verify: sig = 00000000 30 44 02 20 55 16 a0 b6 71 60 a7 f6 6c 09 21 48 |0D. U...q`..l.!H| +orderer.example.com | 00000010 5f e7 b9 36 eb 3a fc 25 9e ca 91 a5 21 1b 9d 0d |_..6.:.%....!...| +orderer.example.com | 00000020 d3 3a a3 0c 02 20 5b 2b 93 ce de c4 63 57 76 14 |.:... [+....cWv.| +orderer.example.com | 00000030 88 2e 5c c0 fa 75 1d 6b 5d 34 ee 1a c9 f9 9a ea |..\..u.k]4......| +orderer.example.com | 00000040 c6 d4 a3 0c a6 3a |.....:| +orderer.example.com | 2018-01-18 09:29:46.939 UTC [cauthdsl] func2 -> DEBU 8ff 0xc420026598 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-18 09:29:46.939 UTC [cauthdsl] func1 -> DEBU 900 0xc420026598 gate 1516267786936912687 evaluation succeeds +orderer.example.com | 2018-01-18 09:29:46.940 UTC [common/configtx] recurseConfigMap -> DEBU 901 Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:46.940 UTC [common/configtx] recurseConfigMap -> DEBU 902 Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:46.940 UTC [common/configtx] recurseConfigMap -> DEBU 903 Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:46.940 UTC [common/configtx] recurseConfigMap -> DEBU 904 Setting policy for key BlockValidation to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:46.940 UTC [common/configtx] recurseConfigMap -> DEBU 905 Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:46.940 UTC [common/configtx] recurseConfigMap -> DEBU 906 Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:46.940 UTC [common/configtx] recurseConfigMap -> DEBU 907 Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:46.941 UTC [common/configtx] recurseConfigMap -> DEBU 908 Setting policy for key Readers to +orderer.example.com | 2018-01-18 09:29:46.941 UTC [common/configtx] recurseConfigMap -> DEBU 909 Setting policy for key Writers to +orderer.example.com | 2018-01-18 09:29:46.941 UTC [common/configtx] recurseConfigMap -> DEBU 90a Setting policy for key Admins to +orderer.example.com | 2018-01-18 09:29:46.941 UTC [common/configtx] recurseConfigMap -> DEBU 90b Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:46.942 UTC [common/configtx] recurseConfigMap -> DEBU 90c Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:46.942 UTC [common/configtx] recurseConfigMap -> DEBU 90d Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:46.942 UTC [common/configtx] recurseConfigMap -> DEBU 90e Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:46.942 UTC [common/configtx] recurseConfigMap -> DEBU 90f Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:46.942 UTC [common/configtx] recurseConfigMap -> DEBU 910 Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:46.943 UTC [common/configtx] recurseConfigMap -> DEBU 911 Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:46.943 UTC [common/configtx] recurseConfigMap -> DEBU 912 Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:46.943 UTC [common/configtx] recurseConfigMap -> DEBU 913 Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:46.943 UTC [common/configtx] processConfig -> DEBU 914 Beginning new config for channel businesschannel +orderer.example.com | 2018-01-18 09:29:46.944 UTC [common/config] NewStandardValues -> DEBU 915 Initializing protos for *config.ChannelProtos +orderer.example.com | 2018-01-18 09:29:46.944 UTC [common/config] initializeProtosStruct -> DEBU 916 Processing field: HashingAlgorithm +orderer.example.com | 2018-01-18 09:29:46.944 UTC [common/config] initializeProtosStruct -> DEBU 917 Processing field: BlockDataHashingStructure +orderer.example.com | 2018-01-18 09:29:46.944 UTC [common/config] initializeProtosStruct -> DEBU 918 Processing field: OrdererAddresses +orderer.example.com | 2018-01-18 09:29:46.944 UTC [common/config] initializeProtosStruct -> DEBU 919 Processing field: Consortium +orderer.example.com | 2018-01-18 09:29:46.945 UTC [policies] ProposePolicy -> DEBU 91a Proposed new policy Writers for Channel +orderer.example.com | 2018-01-18 09:29:46.945 UTC [policies] ProposePolicy -> DEBU 91b Proposed new policy Admins for Channel +orderer.example.com | 2018-01-18 09:29:46.945 UTC [policies] ProposePolicy -> DEBU 91c Proposed new policy Readers for Channel +orderer.example.com | 2018-01-18 09:29:46.945 UTC [common/config] NewStandardValues -> DEBU 91d Initializing protos for *config.OrdererProtos +orderer.example.com | 2018-01-18 09:29:46.945 UTC [common/config] initializeProtosStruct -> DEBU 91e Processing field: ConsensusType +orderer.example.com | 2018-01-18 09:29:46.945 UTC [common/config] initializeProtosStruct -> DEBU 91f Processing field: BatchSize +orderer.example.com | 2018-01-18 09:29:46.945 UTC [common/config] initializeProtosStruct -> DEBU 920 Processing field: BatchTimeout +orderer.example.com | 2018-01-18 09:29:46.946 UTC [common/config] initializeProtosStruct -> DEBU 921 Processing field: KafkaBrokers +orderer.example.com | 2018-01-18 09:29:46.946 UTC [common/config] initializeProtosStruct -> DEBU 922 Processing field: ChannelRestrictions +orderer.example.com | 2018-01-18 09:29:46.946 UTC [policies] ProposePolicy -> DEBU 923 Proposed new policy BlockValidation for Orderer +orderer.example.com | 2018-01-18 09:29:46.946 UTC [policies] ProposePolicy -> DEBU 924 Proposed new policy Readers for Orderer +orderer.example.com | 2018-01-18 09:29:46.946 UTC [policies] ProposePolicy -> DEBU 925 Proposed new policy Writers for Orderer +orderer.example.com | 2018-01-18 09:29:46.946 UTC [policies] ProposePolicy -> DEBU 926 Proposed new policy Admins for Orderer +orderer.example.com | 2018-01-18 09:29:46.946 UTC [common/config] NewStandardValues -> DEBU 927 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:46.946 UTC [common/config] initializeProtosStruct -> DEBU 928 Processing field: MSP +orderer.example.com | 2018-01-18 09:29:46.946 UTC [policies] ProposePolicy -> DEBU 929 Proposed new policy Writers for OrdererOrg +orderer.example.com | 2018-01-18 09:29:46.947 UTC [policies] ProposePolicy -> DEBU 92a Proposed new policy Admins for OrdererOrg +orderer.example.com | 2018-01-18 09:29:46.947 UTC [policies] ProposePolicy -> DEBU 92b Proposed new policy Readers for OrdererOrg +orderer.example.com | 2018-01-18 09:29:46.947 UTC [common/config] NewStandardValues -> DEBU 92c Initializing protos for *struct {} +orderer.example.com | 2018-01-18 09:29:46.947 UTC [policies] ProposePolicy -> DEBU 92d Proposed new policy Writers for Application +orderer.example.com | 2018-01-18 09:29:46.947 UTC [policies] ProposePolicy -> DEBU 92e Proposed new policy Readers for Application +orderer.example.com | 2018-01-18 09:29:46.947 UTC [policies] ProposePolicy -> DEBU 92f Proposed new policy Admins for Application +orderer.example.com | 2018-01-18 09:29:46.948 UTC [common/config] NewStandardValues -> DEBU 930 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:46.948 UTC [common/config] initializeProtosStruct -> DEBU 931 Processing field: MSP +orderer.example.com | 2018-01-18 09:29:46.948 UTC [common/config] NewStandardValues -> DEBU 932 Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | 2018-01-18 09:29:46.948 UTC [common/config] initializeProtosStruct -> DEBU 933 Processing field: AnchorPeers +orderer.example.com | 2018-01-18 09:29:46.948 UTC [common/config] NewStandardValues -> DEBU 934 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:46.948 UTC [common/config] initializeProtosStruct -> DEBU 935 Processing field: MSP +orderer.example.com | 2018-01-18 09:29:46.948 UTC [policies] ProposePolicy -> DEBU 936 Proposed new policy Readers for Org1MSP +orderer.example.com | 2018-01-18 09:29:46.948 UTC [policies] ProposePolicy -> DEBU 937 Proposed new policy Writers for Org1MSP +orderer.example.com | 2018-01-18 09:29:46.948 UTC [policies] ProposePolicy -> DEBU 938 Proposed new policy Admins for Org1MSP +orderer.example.com | 2018-01-18 09:29:46.949 UTC [common/config] NewStandardValues -> DEBU 939 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:46.949 UTC [common/config] initializeProtosStruct -> DEBU 93a Processing field: MSP +orderer.example.com | 2018-01-18 09:29:46.949 UTC [common/config] NewStandardValues -> DEBU 93b Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | 2018-01-18 09:29:46.949 UTC [common/config] initializeProtosStruct -> DEBU 93c Processing field: AnchorPeers +orderer.example.com | 2018-01-18 09:29:46.949 UTC [common/config] NewStandardValues -> DEBU 93d Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:46.949 UTC [common/config] initializeProtosStruct -> DEBU 93e Processing field: MSP +orderer.example.com | 2018-01-18 09:29:46.949 UTC [policies] ProposePolicy -> DEBU 93f Proposed new policy Readers for Org2MSP +orderer.example.com | 2018-01-18 09:29:46.949 UTC [policies] ProposePolicy -> DEBU 940 Proposed new policy Writers for Org2MSP +orderer.example.com | 2018-01-18 09:29:46.949 UTC [policies] ProposePolicy -> DEBU 941 Proposed new policy Admins for Org2MSP +orderer.example.com | 2018-01-18 09:29:46.950 UTC [common/config] validateMSP -> DEBU 942 Setting up MSP for org OrdererOrg +orderer.example.com | 2018-01-18 09:29:46.950 UTC [msp] NewBccspMsp -> DEBU 943 Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-18 09:29:46.950 UTC [msp] Setup -> DEBU 944 Setting up MSP instance OrdererMSP +orderer.example.com | 2018-01-18 09:29:46.950 UTC [msp/identity] newIdentity -> DEBU 945 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +orderer.example.com | cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW +orderer.example.com | gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +orderer.example.com | AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK +orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs +orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:46.952 UTC [msp/identity] newIdentity -> DEBU 946 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:46.953 UTC [msp/identity] newIdentity -> DEBU 947 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:46.954 UTC [msp] Validate -> DEBU 948 MSP OrdererMSP validating identity +orderer.example.com | 2018-01-18 09:29:46.954 UTC [common/config] Validate -> DEBU 949 Anchor peers for org Org1MSP are anchor_peers: +orderer.example.com | 2018-01-18 09:29:46.954 UTC [common/config] validateMSP -> DEBU 94a Setting up MSP for org Org1MSP +orderer.example.com | 2018-01-18 09:29:46.954 UTC [msp] NewBccspMsp -> DEBU 94b Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-18 09:29:46.954 UTC [msp] Setup -> DEBU 94c Setting up MSP instance Org1MSP +orderer.example.com | 2018-01-18 09:29:46.955 UTC [msp/identity] newIdentity -> DEBU 94d Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +orderer.example.com | BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf +orderer.example.com | db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx +orderer.example.com | JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi +orderer.example.com | /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ +orderer.example.com | H7n8z1pj5w== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:46.956 UTC [msp/identity] newIdentity -> DEBU 94e Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:46.958 UTC [msp/identity] newIdentity -> DEBU 94f Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:46.959 UTC [msp] Validate -> DEBU 950 MSP Org1MSP validating identity +orderer.example.com | 2018-01-18 09:29:46.960 UTC [common/config] Validate -> DEBU 951 Anchor peers for org Org2MSP are +orderer.example.com | 2018-01-18 09:29:46.960 UTC [common/config] validateMSP -> DEBU 952 Setting up MSP for org Org2MSP +orderer.example.com | 2018-01-18 09:29:46.960 UTC [msp] NewBccspMsp -> DEBU 953 Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-18 09:29:46.960 UTC [msp] Setup -> DEBU 954 Setting up MSP instance Org2MSP +orderer.example.com | 2018-01-18 09:29:46.960 UTC [msp/identity] newIdentity -> DEBU 955 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +orderer.example.com | mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 +orderer.example.com | sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ +orderer.example.com | xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv +orderer.example.com | WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk +orderer.example.com | SCjyRdD3aQ== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:46.961 UTC [msp/identity] newIdentity -> DEBU 956 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +orderer.example.com | AXYxULZpXYDQXt1KaLI= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:46.962 UTC [msp/identity] newIdentity -> DEBU 957 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +orderer.example.com | AXYxULZpXYDQXt1KaLI= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:46.962 UTC [msp] Validate -> DEBU 958 MSP Org2MSP validating identity +orderer.example.com | 2018-01-18 09:29:46.963 UTC [msp] Setup -> DEBU 959 Setting up the MSP manager (3 msps) +orderer.example.com | 2018-01-18 09:29:46.963 UTC [msp] Setup -> DEBU 95a MSP manager setup complete, setup 3 msps +orderer.example.com | 2018-01-18 09:29:46.963 UTC [msp] GetLocalMSP -> DEBU 95b Returning existing local MSP +orderer.example.com | 2018-01-18 09:29:46.963 UTC [msp] GetDefaultSigningIdentity -> DEBU 95c Obtaining default signing identity +orderer.example.com | 2018-01-18 09:29:46.963 UTC [msp] GetLocalMSP -> DEBU 95d Returning existing local MSP +orderer.example.com | 2018-01-18 09:29:46.963 UTC [msp] GetDefaultSigningIdentity -> DEBU 95e Obtaining default signing identity +orderer.example.com | 2018-01-18 09:29:46.963 UTC [msp/identity] Sign -> DEBU 95f Sign: plaintext: 0AB7060A1B08011A06088AD281D30522...ED68B8ECA9CA5CB023BBC6E366827389 +orderer.example.com | 2018-01-18 09:29:46.963 UTC [msp/identity] Sign -> DEBU 960 Sign: digest: B45BA64445EF0BE867B42AEA0FB03C99F170F48CC1C820E6011371A70DBA6FD5 +orderer.example.com | 2018-01-18 09:29:46.963 UTC [orderer/common/broadcast] Handle -> DEBU 961 [channel: businesschannel] Broadcast is filtering message of type CONFIG +orderer.example.com | 2018-01-18 09:29:46.963 UTC [policies] GetPolicy -> DEBU 962 Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:46.963 UTC [cauthdsl] func1 -> DEBU 963 0xc420026968 gate 1516267786963957258 evaluation starts +orderer.example.com | 2018-01-18 09:29:46.964 UTC [cauthdsl] func2 -> DEBU 964 0xc420026968 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:29:46.964 UTC [cauthdsl] func2 -> DEBU 965 0xc420026968 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:29:46.964 UTC [msp/identity] newIdentity -> DEBU 966 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq +orderer.example.com | hkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz +orderer.example.com | MKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw +orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN +orderer.example.com | RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH +orderer.example.com | /4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:46.964 UTC [cauthdsl] func2 -> DEBU 967 0xc420026968 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +orderer.example.com | 2018-01-18 09:29:46.964 UTC [cauthdsl] func2 -> DEBU 968 0xc420026968 principal evaluation fails +orderer.example.com | 2018-01-18 09:29:46.964 UTC [cauthdsl] func1 -> DEBU 969 0xc420026968 gate 1516267786963957258 evaluation fails +orderer.example.com | 2018-01-18 09:29:46.965 UTC [cauthdsl] func1 -> DEBU 96a 0xc420026978 gate 1516267786965020126 evaluation starts +orderer.example.com | 2018-01-18 09:29:46.965 UTC [cauthdsl] func2 -> DEBU 96b 0xc420026978 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:29:46.965 UTC [cauthdsl] func2 -> DEBU 96c 0xc420026978 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:29:46.965 UTC [msp/identity] newIdentity -> DEBU 96d Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq +orderer.example.com | hkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz +orderer.example.com | MKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw +orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN +orderer.example.com | RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH +orderer.example.com | /4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:46.965 UTC [cauthdsl] func2 -> DEBU 96e 0xc420026978 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +orderer.example.com | 2018-01-18 09:29:46.965 UTC [cauthdsl] func2 -> DEBU 96f 0xc420026978 principal evaluation fails +orderer.example.com | 2018-01-18 09:29:46.965 UTC [cauthdsl] func1 -> DEBU 970 0xc420026978 gate 1516267786965020126 evaluation fails +orderer.example.com | 2018-01-18 09:29:46.965 UTC [cauthdsl] func1 -> DEBU 971 0xc420026988 gate 1516267786965762854 evaluation starts +orderer.example.com | 2018-01-18 09:29:46.965 UTC [cauthdsl] func2 -> DEBU 972 0xc420026988 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:29:46.965 UTC [cauthdsl] func2 -> DEBU 973 0xc420026988 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:29:46.966 UTC [msp/identity] newIdentity -> DEBU 974 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq +orderer.example.com | hkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz +orderer.example.com | MKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw +orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN +orderer.example.com | RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH +orderer.example.com | /4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:46.967 UTC [msp] SatisfiesPrincipal -> DEBU 975 Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | 2018-01-18 09:29:46.967 UTC [msp] Validate -> DEBU 976 MSP OrdererMSP validating identity +orderer.example.com | 2018-01-18 09:29:46.967 UTC [cauthdsl] func2 -> DEBU 977 0xc420026988 principal matched by identity 0 +orderer.example.com | 2018-01-18 09:29:46.967 UTC [msp/identity] Verify -> DEBU 978 Verify: digest = 00000000 b4 5b a6 44 45 ef 0b e8 67 b4 2a ea 0f b0 3c 99 |.[.DE...g.*...<.| +orderer.example.com | 00000010 f1 70 f4 8c c1 c8 20 e6 01 13 71 a7 0d ba 6f d5 |.p.... ...q...o.| +orderer.example.com | 2018-01-18 09:29:46.969 UTC [msp/identity] Verify -> DEBU 979 Verify: sig = 00000000 30 45 02 21 00 ab 8d b0 ca 20 4a 7a ac 19 da ef |0E.!..... Jz....| +orderer.example.com | 00000010 06 d7 b0 9c 39 1d d3 9f 0f c3 cb ae b6 64 4a 1b |....9........dJ.| +orderer.example.com | 00000020 a8 9b 6e 52 d6 02 20 63 32 79 2a 81 45 81 ae ea |..nR.. c2y*.E...| +orderer.example.com | 00000030 40 e8 92 95 7c d4 ae 5e 6f 8b ed 9e 91 a3 1f 3c |@...|..^o......<| +orderer.example.com | 00000040 d6 14 08 ec ce d8 91 |.......| +orderer.example.com | 2018-01-18 09:29:46.969 UTC [cauthdsl] func2 -> DEBU 97a 0xc420026988 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-18 09:29:46.969 UTC [cauthdsl] func1 -> DEBU 97b 0xc420026988 gate 1516267786965762854 evaluation succeeds +orderer.example.com | 2018-01-18 09:29:46.969 UTC [orderer/common/sigfilter] Apply -> DEBU 97c Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42083ebe0 1 [0xc4200272e0 0xc420027298]}) %!s(*policies.implicitMetaPolicy=&{0xc42083f960 1 [0xc4200273d0]})]} +orderer.example.com | 2018-01-18 09:29:46.969 UTC [common/configtx] addToMap -> DEBU 97d Adding to config map: [Groups] /Channel +orderer.example.com | 2018-01-18 09:29:46.970 UTC [common/configtx] addToMap -> DEBU 97e Adding to config map: [Groups] /Channel/Application +orderer.example.com | 2018-01-18 09:29:46.970 UTC [common/configtx] addToMap -> DEBU 97f Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | 2018-01-18 09:29:46.970 UTC [common/configtx] addToMap -> DEBU 980 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +orderer.example.com | 2018-01-18 09:29:46.970 UTC [common/configtx] addToMap -> DEBU 981 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | 2018-01-18 09:29:46.970 UTC [common/configtx] addToMap -> DEBU 982 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | 2018-01-18 09:29:46.970 UTC [common/configtx] addToMap -> DEBU 983 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | 2018-01-18 09:29:46.970 UTC [common/configtx] addToMap -> DEBU 984 Adding to config map: [Groups] /Channel +orderer.example.com | 2018-01-18 09:29:46.970 UTC [common/configtx] addToMap -> DEBU 985 Adding to config map: [Groups] /Channel/Application +orderer.example.com | 2018-01-18 09:29:46.970 UTC [common/configtx] addToMap -> DEBU 986 Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | 2018-01-18 09:29:46.970 UTC [common/configtx] addToMap -> DEBU 987 Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +orderer.example.com | 2018-01-18 09:29:46.971 UTC [common/configtx] addToMap -> DEBU 988 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +orderer.example.com | 2018-01-18 09:29:46.971 UTC [common/configtx] addToMap -> DEBU 989 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | 2018-01-18 09:29:46.971 UTC [common/configtx] addToMap -> DEBU 98a Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | 2018-01-18 09:29:46.971 UTC [common/configtx] addToMap -> DEBU 98b Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | 2018-01-18 09:29:46.971 UTC [policies] GetPolicy -> DEBU 98c Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:46.971 UTC [cauthdsl] func1 -> DEBU 98d 0xc420026f40 gate 1516267786971645711 evaluation starts +orderer.example.com | 2018-01-18 09:29:46.971 UTC [cauthdsl] func2 -> DEBU 98e 0xc420026f40 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:29:46.971 UTC [cauthdsl] func2 -> DEBU 98f 0xc420026f40 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:29:46.972 UTC [msp/identity] newIdentity -> DEBU 990 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:46.972 UTC [msp] SatisfiesPrincipal -> DEBU 991 Checking if identity satisfies ADMIN role for Org1MSP +orderer.example.com | 2018-01-18 09:29:46.973 UTC [cauthdsl] func2 -> DEBU 992 0xc420026f40 principal matched by identity 0 +orderer.example.com | 2018-01-18 09:29:46.973 UTC [msp/identity] Verify -> DEBU 993 Verify: digest = 00000000 4d be a9 c4 54 6d 00 c1 09 ed 0f 97 df 98 d3 b4 |M...Tm..........| +orderer.example.com | 00000010 3f 7e 4c 7b 14 2e 85 95 dd e8 fa 88 85 14 1c a4 |?~L{............| +orderer.example.com | 2018-01-18 09:29:46.973 UTC [msp/identity] Verify -> DEBU 994 Verify: sig = 00000000 30 44 02 20 55 16 a0 b6 71 60 a7 f6 6c 09 21 48 |0D. U...q`..l.!H| +orderer.example.com | 00000010 5f e7 b9 36 eb 3a fc 25 9e ca 91 a5 21 1b 9d 0d |_..6.:.%....!...| +orderer.example.com | 00000020 d3 3a a3 0c 02 20 5b 2b 93 ce de c4 63 57 76 14 |.:... [+....cWv.| +orderer.example.com | 00000030 88 2e 5c c0 fa 75 1d 6b 5d 34 ee 1a c9 f9 9a ea |..\..u.k]4......| +orderer.example.com | 00000040 c6 d4 a3 0c a6 3a |.....:| +orderer.example.com | 2018-01-18 09:29:46.973 UTC [cauthdsl] func2 -> DEBU 995 0xc420026f40 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-18 09:29:46.973 UTC [cauthdsl] func1 -> DEBU 996 0xc420026f40 gate 1516267786971645711 evaluation succeeds +orderer.example.com | 2018-01-18 09:29:46.974 UTC [common/configtx] recurseConfigMap -> DEBU 997 Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:46.974 UTC [common/configtx] recurseConfigMap -> DEBU 998 Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:46.974 UTC [common/configtx] recurseConfigMap -> DEBU 999 Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:46.974 UTC [common/configtx] recurseConfigMap -> DEBU 99a Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:46.974 UTC [common/configtx] recurseConfigMap -> DEBU 99b Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:46.974 UTC [common/configtx] recurseConfigMap -> DEBU 99c Setting policy for key BlockValidation to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:46.974 UTC [common/configtx] recurseConfigMap -> DEBU 99d Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:46.974 UTC [common/configtx] recurseConfigMap -> DEBU 99e Setting policy for key Readers to +orderer.example.com | 2018-01-18 09:29:46.974 UTC [common/configtx] recurseConfigMap -> DEBU 99f Setting policy for key Writers to +orderer.example.com | 2018-01-18 09:29:46.974 UTC [common/configtx] recurseConfigMap -> DEBU 9a0 Setting policy for key Admins to +orderer.example.com | 2018-01-18 09:29:46.974 UTC [common/configtx] recurseConfigMap -> DEBU 9a1 Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:46.974 UTC [common/configtx] recurseConfigMap -> DEBU 9a2 Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:46.975 UTC [common/configtx] recurseConfigMap -> DEBU 9a3 Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:46.975 UTC [common/configtx] recurseConfigMap -> DEBU 9a4 Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:46.975 UTC [common/configtx] recurseConfigMap -> DEBU 9a5 Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:46.975 UTC [common/configtx] recurseConfigMap -> DEBU 9a6 Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:46.975 UTC [common/configtx] recurseConfigMap -> DEBU 9a7 Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:46.975 UTC [common/configtx] recurseConfigMap -> DEBU 9a8 Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:46.975 UTC [common/configtx] recurseConfigMap -> DEBU 9a9 Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:46.975 UTC [common/configtx] processConfig -> DEBU 9aa Beginning new config for channel businesschannel +orderer.example.com | 2018-01-18 09:29:46.975 UTC [common/config] NewStandardValues -> DEBU 9ab Initializing protos for *config.ChannelProtos +orderer.example.com | 2018-01-18 09:29:46.975 UTC [common/config] initializeProtosStruct -> DEBU 9ac Processing field: HashingAlgorithm +orderer.example.com | 2018-01-18 09:29:46.975 UTC [common/config] initializeProtosStruct -> DEBU 9ad Processing field: BlockDataHashingStructure +orderer.example.com | 2018-01-18 09:29:46.975 UTC [common/config] initializeProtosStruct -> DEBU 9ae Processing field: OrdererAddresses +orderer.example.com | 2018-01-18 09:29:46.976 UTC [common/config] initializeProtosStruct -> DEBU 9af Processing field: Consortium +orderer.example.com | 2018-01-18 09:29:46.976 UTC [policies] ProposePolicy -> DEBU 9b0 Proposed new policy Writers for Channel +orderer.example.com | 2018-01-18 09:29:46.976 UTC [policies] ProposePolicy -> DEBU 9b1 Proposed new policy Admins for Channel +orderer.example.com | 2018-01-18 09:29:46.976 UTC [policies] ProposePolicy -> DEBU 9b2 Proposed new policy Readers for Channel +orderer.example.com | 2018-01-18 09:29:46.976 UTC [common/config] NewStandardValues -> DEBU 9b3 Initializing protos for *config.OrdererProtos +orderer.example.com | 2018-01-18 09:29:46.976 UTC [common/config] initializeProtosStruct -> DEBU 9b4 Processing field: ConsensusType +orderer.example.com | 2018-01-18 09:29:46.976 UTC [common/config] initializeProtosStruct -> DEBU 9b5 Processing field: BatchSize +orderer.example.com | 2018-01-18 09:29:46.976 UTC [common/config] initializeProtosStruct -> DEBU 9b6 Processing field: BatchTimeout +orderer.example.com | 2018-01-18 09:29:46.976 UTC [common/config] initializeProtosStruct -> DEBU 9b7 Processing field: KafkaBrokers +orderer.example.com | 2018-01-18 09:29:46.976 UTC [common/config] initializeProtosStruct -> DEBU 9b8 Processing field: ChannelRestrictions +orderer.example.com | 2018-01-18 09:29:46.976 UTC [policies] ProposePolicy -> DEBU 9b9 Proposed new policy Writers for Orderer +orderer.example.com | 2018-01-18 09:29:46.976 UTC [policies] ProposePolicy -> DEBU 9ba Proposed new policy Admins for Orderer +orderer.example.com | 2018-01-18 09:29:46.982 UTC [policies] ProposePolicy -> DEBU 9bb Proposed new policy BlockValidation for Orderer +orderer.example.com | 2018-01-18 09:29:46.982 UTC [policies] ProposePolicy -> DEBU 9bc Proposed new policy Readers for Orderer +orderer.example.com | 2018-01-18 09:29:46.982 UTC [common/config] NewStandardValues -> DEBU 9bd Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:46.982 UTC [common/config] initializeProtosStruct -> DEBU 9be Processing field: MSP +orderer.example.com | 2018-01-18 09:29:46.982 UTC [policies] ProposePolicy -> DEBU 9bf Proposed new policy Readers for OrdererOrg +orderer.example.com | 2018-01-18 09:29:46.982 UTC [policies] ProposePolicy -> DEBU 9c0 Proposed new policy Writers for OrdererOrg +orderer.example.com | 2018-01-18 09:29:46.982 UTC [policies] ProposePolicy -> DEBU 9c1 Proposed new policy Admins for OrdererOrg +orderer.example.com | 2018-01-18 09:29:46.982 UTC [common/config] NewStandardValues -> DEBU 9c2 Initializing protos for *struct {} +orderer.example.com | 2018-01-18 09:29:46.982 UTC [policies] ProposePolicy -> DEBU 9c3 Proposed new policy Readers for Application +orderer.example.com | 2018-01-18 09:29:46.982 UTC [policies] ProposePolicy -> DEBU 9c4 Proposed new policy Admins for Application +orderer.example.com | 2018-01-18 09:29:46.982 UTC [policies] ProposePolicy -> DEBU 9c5 Proposed new policy Writers for Application +orderer.example.com | 2018-01-18 09:29:46.983 UTC [common/config] NewStandardValues -> DEBU 9c6 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:46.988 UTC [common/config] initializeProtosStruct -> DEBU 9c7 Processing field: MSP +orderer.example.com | 2018-01-18 09:29:46.992 UTC [common/config] NewStandardValues -> DEBU 9c8 Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | 2018-01-18 09:29:46.993 UTC [common/config] initializeProtosStruct -> DEBU 9c9 Processing field: AnchorPeers +orderer.example.com | 2018-01-18 09:29:46.993 UTC [common/config] NewStandardValues -> DEBU 9ca Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:46.993 UTC [common/config] initializeProtosStruct -> DEBU 9cb Processing field: MSP +orderer.example.com | 2018-01-18 09:29:46.993 UTC [policies] ProposePolicy -> DEBU 9cc Proposed new policy Readers for Org1MSP +orderer.example.com | 2018-01-18 09:29:46.993 UTC [policies] ProposePolicy -> DEBU 9cd Proposed new policy Writers for Org1MSP +orderer.example.com | 2018-01-18 09:29:46.993 UTC [policies] ProposePolicy -> DEBU 9ce Proposed new policy Admins for Org1MSP +orderer.example.com | 2018-01-18 09:29:46.993 UTC [common/config] NewStandardValues -> DEBU 9cf Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:46.993 UTC [common/config] initializeProtosStruct -> DEBU 9d0 Processing field: MSP +orderer.example.com | 2018-01-18 09:29:46.993 UTC [common/config] NewStandardValues -> DEBU 9d1 Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | 2018-01-18 09:29:46.993 UTC [common/config] initializeProtosStruct -> DEBU 9d2 Processing field: AnchorPeers +orderer.example.com | 2018-01-18 09:29:46.993 UTC [common/config] NewStandardValues -> DEBU 9d3 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:46.993 UTC [common/config] initializeProtosStruct -> DEBU 9d4 Processing field: MSP +orderer.example.com | 2018-01-18 09:29:46.993 UTC [policies] ProposePolicy -> DEBU 9d5 Proposed new policy Readers for Org2MSP +orderer.example.com | 2018-01-18 09:29:46.993 UTC [policies] ProposePolicy -> DEBU 9d6 Proposed new policy Writers for Org2MSP +orderer.example.com | 2018-01-18 09:29:46.993 UTC [policies] ProposePolicy -> DEBU 9d7 Proposed new policy Admins for Org2MSP +orderer.example.com | 2018-01-18 09:29:46.993 UTC [common/config] validateMSP -> DEBU 9d8 Setting up MSP for org OrdererOrg +orderer.example.com | 2018-01-18 09:29:46.993 UTC [msp] NewBccspMsp -> DEBU 9d9 Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-18 09:29:46.993 UTC [msp] Setup -> DEBU 9da Setting up MSP instance OrdererMSP +orderer.example.com | 2018-01-18 09:29:46.994 UTC [msp/identity] newIdentity -> DEBU 9db Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +orderer.example.com | cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW +orderer.example.com | gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +orderer.example.com | AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK +orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs +orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:46.996 UTC [msp/identity] newIdentity -> DEBU 9dc Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:46.996 UTC [msp/identity] newIdentity -> DEBU 9dd Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:46.997 UTC [msp] Validate -> DEBU 9de MSP OrdererMSP validating identity +orderer.example.com | 2018-01-18 09:29:46.998 UTC [common/config] Validate -> DEBU 9df Anchor peers for org Org1MSP are anchor_peers: +orderer.example.com | 2018-01-18 09:29:46.998 UTC [common/config] validateMSP -> DEBU 9e0 Setting up MSP for org Org1MSP +orderer.example.com | 2018-01-18 09:29:46.998 UTC [msp] NewBccspMsp -> DEBU 9e1 Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-18 09:29:46.998 UTC [msp] Setup -> DEBU 9e2 Setting up MSP instance Org1MSP +orderer.example.com | 2018-01-18 09:29:46.998 UTC [msp/identity] newIdentity -> DEBU 9e3 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +orderer.example.com | BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf +orderer.example.com | db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx +orderer.example.com | JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi +orderer.example.com | /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ +orderer.example.com | H7n8z1pj5w== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:46.999 UTC [msp/identity] newIdentity -> DEBU 9e4 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:47.000 UTC [msp/identity] newIdentity -> DEBU 9e5 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:47.001 UTC [msp] Validate -> DEBU 9e6 MSP Org1MSP validating identity +orderer.example.com | 2018-01-18 09:29:47.002 UTC [common/config] Validate -> DEBU 9e7 Anchor peers for org Org2MSP are +orderer.example.com | 2018-01-18 09:29:47.002 UTC [common/config] validateMSP -> DEBU 9e8 Setting up MSP for org Org2MSP +orderer.example.com | 2018-01-18 09:29:47.002 UTC [msp] NewBccspMsp -> DEBU 9e9 Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-18 09:29:47.002 UTC [msp] Setup -> DEBU 9ea Setting up MSP instance Org2MSP +orderer.example.com | 2018-01-18 09:29:47.002 UTC [msp/identity] newIdentity -> DEBU 9eb Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +orderer.example.com | mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 +orderer.example.com | sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ +orderer.example.com | xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv +orderer.example.com | WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk +orderer.example.com | SCjyRdD3aQ== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:47.004 UTC [msp/identity] newIdentity -> DEBU 9ec Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +orderer.example.com | AXYxULZpXYDQXt1KaLI= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:47.005 UTC [msp/identity] newIdentity -> DEBU 9ed Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +orderer.example.com | AXYxULZpXYDQXt1KaLI= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:47.006 UTC [msp] Validate -> DEBU 9ee MSP Org2MSP validating identity +orderer.example.com | 2018-01-18 09:29:47.006 UTC [msp] Setup -> DEBU 9ef Setting up the MSP manager (3 msps) +orderer.example.com | 2018-01-18 09:29:47.006 UTC [msp] Setup -> DEBU 9f0 MSP manager setup complete, setup 3 msps +orderer.example.com | 2018-01-18 09:29:47.006 UTC [orderer/common/broadcast] Handle -> DEBU 9f1 [channel: businesschannel] Broadcast has successfully enqueued message of type CONFIG +orderer.example.com | 2018-01-18 09:29:47.007 UTC [policies] GetPolicy -> DEBU 9f2 Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:47.007 UTC [cauthdsl] func1 -> DEBU 9f3 0xc420027340 gate 1516267787007258996 evaluation starts +orderer.example.com | 2018-01-18 09:29:47.007 UTC [cauthdsl] func2 -> DEBU 9f4 0xc420027340 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:29:47.007 UTC [cauthdsl] func2 -> DEBU 9f5 0xc420027340 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:29:47.007 UTC [msp/identity] newIdentity -> DEBU 9f6 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq +orderer.example.com | hkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz +orderer.example.com | MKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw +orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN +orderer.example.com | RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH +orderer.example.com | /4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:47.007 UTC [orderer/common/broadcast] Handle -> WARN 9f7 Error reading from stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | 2018-01-18 09:29:47.008 UTC [orderer/main] func1 -> DEBU 9f8 Closing Broadcast stream +orderer.example.com | 2018-01-18 09:29:47.008 UTC [cauthdsl] func2 -> DEBU 9f9 0xc420027340 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +orderer.example.com | 2018-01-18 09:29:47.008 UTC [cauthdsl] func2 -> DEBU 9fa 0xc420027340 principal evaluation fails +orderer.example.com | 2018-01-18 09:29:47.009 UTC [cauthdsl] func1 -> DEBU 9fb 0xc420027340 gate 1516267787007258996 evaluation fails +orderer.example.com | 2018-01-18 09:29:47.009 UTC [cauthdsl] func1 -> DEBU 9fc 0xc420027370 gate 1516267787009191329 evaluation starts +orderer.example.com | 2018-01-18 09:29:47.009 UTC [cauthdsl] func2 -> DEBU 9fd 0xc420027370 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:29:47.009 UTC [cauthdsl] func2 -> DEBU 9fe 0xc420027370 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:29:47.009 UTC [msp/identity] newIdentity -> DEBU 9ff Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq +orderer.example.com | hkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz +orderer.example.com | MKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw +orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN +orderer.example.com | RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH +orderer.example.com | /4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:47.010 UTC [cauthdsl] func2 -> DEBU a00 0xc420027370 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +orderer.example.com | 2018-01-18 09:29:47.010 UTC [cauthdsl] func2 -> DEBU a01 0xc420027370 principal evaluation fails +orderer.example.com | 2018-01-18 09:29:47.010 UTC [cauthdsl] func1 -> DEBU a02 0xc420027370 gate 1516267787009191329 evaluation fails +orderer.example.com | 2018-01-18 09:29:47.010 UTC [cauthdsl] func1 -> DEBU a03 0xc4200273c0 gate 1516267787010561644 evaluation starts +orderer.example.com | 2018-01-18 09:29:47.010 UTC [cauthdsl] func2 -> DEBU a04 0xc4200273c0 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:29:47.010 UTC [cauthdsl] func2 -> DEBU a05 0xc4200273c0 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:29:47.010 UTC [orderer/common/deliver] Handle -> WARN a06 Error reading from stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | 2018-01-18 09:29:47.010 UTC [orderer/main] func1 -> DEBU a07 Closing Deliver stream +orderer.example.com | 2018-01-18 09:29:47.011 UTC [msp/identity] newIdentity -> DEBU a08 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq +orderer.example.com | hkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz +orderer.example.com | MKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw +orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN +orderer.example.com | RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH +orderer.example.com | /4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:47.012 UTC [msp] SatisfiesPrincipal -> DEBU a09 Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | 2018-01-18 09:29:47.012 UTC [msp] Validate -> DEBU a0a MSP OrdererMSP validating identity +orderer.example.com | 2018-01-18 09:29:47.013 UTC [cauthdsl] func2 -> DEBU a0b 0xc4200273c0 principal matched by identity 0 +orderer.example.com | 2018-01-18 09:29:47.015 UTC [msp/identity] Verify -> DEBU a0c Verify: digest = 00000000 b4 5b a6 44 45 ef 0b e8 67 b4 2a ea 0f b0 3c 99 |.[.DE...g.*...<.| +orderer.example.com | 00000010 f1 70 f4 8c c1 c8 20 e6 01 13 71 a7 0d ba 6f d5 |.p.... ...q...o.| +orderer.example.com | 2018-01-18 09:29:47.015 UTC [msp/identity] Verify -> DEBU a0d Verify: sig = 00000000 30 45 02 21 00 ab 8d b0 ca 20 4a 7a ac 19 da ef |0E.!..... Jz....| +orderer.example.com | 00000010 06 d7 b0 9c 39 1d d3 9f 0f c3 cb ae b6 64 4a 1b |....9........dJ.| +orderer.example.com | 00000020 a8 9b 6e 52 d6 02 20 63 32 79 2a 81 45 81 ae ea |..nR.. c2y*.E...| +orderer.example.com | 00000030 40 e8 92 95 7c d4 ae 5e 6f 8b ed 9e 91 a3 1f 3c |@...|..^o......<| +orderer.example.com | 00000040 d6 14 08 ec ce d8 91 |.......| +orderer.example.com | 2018-01-18 09:29:47.015 UTC [cauthdsl] func2 -> DEBU a0e 0xc4200273c0 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-18 09:29:47.015 UTC [cauthdsl] func1 -> DEBU a0f 0xc4200273c0 gate 1516267787010561644 evaluation succeeds +orderer.example.com | 2018-01-18 09:29:47.015 UTC [orderer/common/sigfilter] Apply -> DEBU a10 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42083ebe0 1 [0xc4200272e0 0xc420027298]}) %!s(*policies.implicitMetaPolicy=&{0xc42083f960 1 [0xc4200273d0]})]} +orderer.example.com | 2018-01-18 09:29:47.016 UTC [common/configtx] addToMap -> DEBU a11 Adding to config map: [Groups] /Channel +orderer.example.com | 2018-01-18 09:29:47.016 UTC [common/configtx] addToMap -> DEBU a12 Adding to config map: [Groups] /Channel/Application +orderer.example.com | 2018-01-18 09:29:47.016 UTC [common/configtx] addToMap -> DEBU a13 Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | 2018-01-18 09:29:47.016 UTC [common/configtx] addToMap -> DEBU a14 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +orderer.example.com | 2018-01-18 09:29:47.016 UTC [common/configtx] addToMap -> DEBU a15 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | 2018-01-18 09:29:47.016 UTC [common/configtx] addToMap -> DEBU a16 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | 2018-01-18 09:29:47.016 UTC [common/configtx] addToMap -> DEBU a17 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | 2018-01-18 09:29:47.017 UTC [common/configtx] addToMap -> DEBU a18 Adding to config map: [Groups] /Channel +orderer.example.com | 2018-01-18 09:29:47.017 UTC [common/configtx] addToMap -> DEBU a19 Adding to config map: [Groups] /Channel/Application +orderer.example.com | 2018-01-18 09:29:47.017 UTC [common/configtx] addToMap -> DEBU a1a Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | 2018-01-18 09:29:47.017 UTC [common/configtx] addToMap -> DEBU a1b Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +orderer.example.com | 2018-01-18 09:29:47.017 UTC [common/configtx] addToMap -> DEBU a1c Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +orderer.example.com | 2018-01-18 09:29:47.017 UTC [common/configtx] addToMap -> DEBU a1d Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | 2018-01-18 09:29:47.017 UTC [common/configtx] addToMap -> DEBU a1e Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | 2018-01-18 09:29:47.017 UTC [common/configtx] addToMap -> DEBU a1f Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | 2018-01-18 09:29:47.017 UTC [policies] GetPolicy -> DEBU a20 Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:47.017 UTC [cauthdsl] func1 -> DEBU a21 0xc4200279f8 gate 1516267787017627609 evaluation starts +orderer.example.com | 2018-01-18 09:29:47.017 UTC [cauthdsl] func2 -> DEBU a22 0xc4200279f8 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:29:47.017 UTC [cauthdsl] func2 -> DEBU a23 0xc4200279f8 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:29:47.018 UTC [msp/identity] newIdentity -> DEBU a24 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:47.018 UTC [msp] SatisfiesPrincipal -> DEBU a25 Checking if identity satisfies ADMIN role for Org1MSP +orderer.example.com | 2018-01-18 09:29:47.018 UTC [cauthdsl] func2 -> DEBU a26 0xc4200279f8 principal matched by identity 0 +orderer.example.com | 2018-01-18 09:29:47.018 UTC [msp/identity] Verify -> DEBU a27 Verify: digest = 00000000 4d be a9 c4 54 6d 00 c1 09 ed 0f 97 df 98 d3 b4 |M...Tm..........| +orderer.example.com | 00000010 3f 7e 4c 7b 14 2e 85 95 dd e8 fa 88 85 14 1c a4 |?~L{............| +orderer.example.com | 2018-01-18 09:29:47.019 UTC [msp/identity] Verify -> DEBU a28 Verify: sig = 00000000 30 44 02 20 55 16 a0 b6 71 60 a7 f6 6c 09 21 48 |0D. U...q`..l.!H| +orderer.example.com | 00000010 5f e7 b9 36 eb 3a fc 25 9e ca 91 a5 21 1b 9d 0d |_..6.:.%....!...| +orderer.example.com | 00000020 d3 3a a3 0c 02 20 5b 2b 93 ce de c4 63 57 76 14 |.:... [+....cWv.| +orderer.example.com | 00000030 88 2e 5c c0 fa 75 1d 6b 5d 34 ee 1a c9 f9 9a ea |..\..u.k]4......| +orderer.example.com | 00000040 c6 d4 a3 0c a6 3a |.....:| +orderer.example.com | 2018-01-18 09:29:47.019 UTC [cauthdsl] func2 -> DEBU a29 0xc4200279f8 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-18 09:29:47.019 UTC [cauthdsl] func1 -> DEBU a2a 0xc4200279f8 gate 1516267787017627609 evaluation succeeds +orderer.example.com | 2018-01-18 09:29:47.019 UTC [common/configtx] recurseConfigMap -> DEBU a2b Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:47.019 UTC [common/configtx] recurseConfigMap -> DEBU a2c Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:47.019 UTC [common/configtx] recurseConfigMap -> DEBU a2d Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:47.020 UTC [common/configtx] recurseConfigMap -> DEBU a2e Setting policy for key BlockValidation to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:47.020 UTC [common/configtx] recurseConfigMap -> DEBU a2f Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:47.020 UTC [common/configtx] recurseConfigMap -> DEBU a30 Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:47.020 UTC [common/configtx] recurseConfigMap -> DEBU a31 Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:47.020 UTC [common/configtx] recurseConfigMap -> DEBU a32 Setting policy for key Readers to +orderer.example.com | 2018-01-18 09:29:47.020 UTC [common/configtx] recurseConfigMap -> DEBU a33 Setting policy for key Writers to +orderer.example.com | 2018-01-18 09:29:47.020 UTC [common/configtx] recurseConfigMap -> DEBU a34 Setting policy for key Admins to +orderer.example.com | 2018-01-18 09:29:47.020 UTC [common/configtx] recurseConfigMap -> DEBU a35 Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:47.021 UTC [common/configtx] recurseConfigMap -> DEBU a36 Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:47.021 UTC [common/configtx] recurseConfigMap -> DEBU a37 Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:47.021 UTC [common/configtx] recurseConfigMap -> DEBU a38 Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:47.021 UTC [common/configtx] recurseConfigMap -> DEBU a39 Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:47.021 UTC [common/configtx] recurseConfigMap -> DEBU a3a Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:47.021 UTC [common/configtx] recurseConfigMap -> DEBU a3b Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:47.021 UTC [common/configtx] recurseConfigMap -> DEBU a3c Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:47.021 UTC [common/configtx] recurseConfigMap -> DEBU a3d Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:47.021 UTC [common/configtx] processConfig -> DEBU a3e Beginning new config for channel businesschannel +orderer.example.com | 2018-01-18 09:29:47.022 UTC [common/config] NewStandardValues -> DEBU a3f Initializing protos for *config.ChannelProtos +orderer.example.com | 2018-01-18 09:29:47.022 UTC [common/config] initializeProtosStruct -> DEBU a40 Processing field: HashingAlgorithm +orderer.example.com | 2018-01-18 09:29:47.022 UTC [common/config] initializeProtosStruct -> DEBU a41 Processing field: BlockDataHashingStructure +orderer.example.com | 2018-01-18 09:29:47.022 UTC [common/config] initializeProtosStruct -> DEBU a42 Processing field: OrdererAddresses +orderer.example.com | 2018-01-18 09:29:47.022 UTC [common/config] initializeProtosStruct -> DEBU a43 Processing field: Consortium +orderer.example.com | 2018-01-18 09:29:47.022 UTC [policies] ProposePolicy -> DEBU a44 Proposed new policy Writers for Channel +orderer.example.com | 2018-01-18 09:29:47.022 UTC [policies] ProposePolicy -> DEBU a45 Proposed new policy Admins for Channel +orderer.example.com | 2018-01-18 09:29:47.022 UTC [policies] ProposePolicy -> DEBU a46 Proposed new policy Readers for Channel +orderer.example.com | 2018-01-18 09:29:47.022 UTC [common/config] NewStandardValues -> DEBU a47 Initializing protos for *struct {} +orderer.example.com | 2018-01-18 09:29:47.022 UTC [policies] ProposePolicy -> DEBU a48 Proposed new policy Readers for Application +orderer.example.com | 2018-01-18 09:29:47.022 UTC [policies] ProposePolicy -> DEBU a49 Proposed new policy Admins for Application +orderer.example.com | 2018-01-18 09:29:47.022 UTC [policies] ProposePolicy -> DEBU a4a Proposed new policy Writers for Application +orderer.example.com | 2018-01-18 09:29:47.022 UTC [common/config] NewStandardValues -> DEBU a4b Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:47.022 UTC [common/config] initializeProtosStruct -> DEBU a4c Processing field: MSP +orderer.example.com | 2018-01-18 09:29:47.022 UTC [common/config] NewStandardValues -> DEBU a4d Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | 2018-01-18 09:29:47.023 UTC [common/config] initializeProtosStruct -> DEBU a4e Processing field: AnchorPeers +orderer.example.com | 2018-01-18 09:29:47.023 UTC [common/config] NewStandardValues -> DEBU a4f Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:47.023 UTC [common/config] initializeProtosStruct -> DEBU a50 Processing field: MSP +orderer.example.com | 2018-01-18 09:29:47.023 UTC [policies] ProposePolicy -> DEBU a51 Proposed new policy Readers for Org1MSP +orderer.example.com | 2018-01-18 09:29:47.023 UTC [policies] ProposePolicy -> DEBU a52 Proposed new policy Writers for Org1MSP +orderer.example.com | 2018-01-18 09:29:47.023 UTC [policies] ProposePolicy -> DEBU a53 Proposed new policy Admins for Org1MSP +orderer.example.com | 2018-01-18 09:29:47.023 UTC [common/config] NewStandardValues -> DEBU a54 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:47.023 UTC [common/config] initializeProtosStruct -> DEBU a55 Processing field: MSP +orderer.example.com | 2018-01-18 09:29:47.024 UTC [common/config] NewStandardValues -> DEBU a56 Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | 2018-01-18 09:29:47.024 UTC [common/config] initializeProtosStruct -> DEBU a57 Processing field: AnchorPeers +orderer.example.com | 2018-01-18 09:29:47.024 UTC [common/config] NewStandardValues -> DEBU a58 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:47.024 UTC [common/config] initializeProtosStruct -> DEBU a59 Processing field: MSP +orderer.example.com | 2018-01-18 09:29:47.024 UTC [policies] ProposePolicy -> DEBU a5a Proposed new policy Writers for Org2MSP +orderer.example.com | 2018-01-18 09:29:47.024 UTC [policies] ProposePolicy -> DEBU a5b Proposed new policy Admins for Org2MSP +orderer.example.com | 2018-01-18 09:29:47.024 UTC [policies] ProposePolicy -> DEBU a5c Proposed new policy Readers for Org2MSP +orderer.example.com | 2018-01-18 09:29:47.024 UTC [common/config] NewStandardValues -> DEBU a5d Initializing protos for *config.OrdererProtos +orderer.example.com | 2018-01-18 09:29:47.024 UTC [common/config] initializeProtosStruct -> DEBU a5e Processing field: ConsensusType +orderer.example.com | 2018-01-18 09:29:47.024 UTC [common/config] initializeProtosStruct -> DEBU a5f Processing field: BatchSize +orderer.example.com | 2018-01-18 09:29:47.024 UTC [common/config] initializeProtosStruct -> DEBU a60 Processing field: BatchTimeout +orderer.example.com | 2018-01-18 09:29:47.024 UTC [common/config] initializeProtosStruct -> DEBU a61 Processing field: KafkaBrokers +orderer.example.com | 2018-01-18 09:29:47.025 UTC [common/config] initializeProtosStruct -> DEBU a62 Processing field: ChannelRestrictions +orderer.example.com | 2018-01-18 09:29:47.025 UTC [policies] ProposePolicy -> DEBU a63 Proposed new policy BlockValidation for Orderer +orderer.example.com | 2018-01-18 09:29:47.025 UTC [policies] ProposePolicy -> DEBU a64 Proposed new policy Readers for Orderer +orderer.example.com | 2018-01-18 09:29:47.025 UTC [policies] ProposePolicy -> DEBU a65 Proposed new policy Writers for Orderer +orderer.example.com | 2018-01-18 09:29:47.025 UTC [policies] ProposePolicy -> DEBU a66 Proposed new policy Admins for Orderer +orderer.example.com | 2018-01-18 09:29:47.026 UTC [common/config] NewStandardValues -> DEBU a67 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:47.026 UTC [common/config] initializeProtosStruct -> DEBU a68 Processing field: MSP +orderer.example.com | 2018-01-18 09:29:47.026 UTC [policies] ProposePolicy -> DEBU a69 Proposed new policy Admins for OrdererOrg +orderer.example.com | 2018-01-18 09:29:47.026 UTC [policies] ProposePolicy -> DEBU a6a Proposed new policy Readers for OrdererOrg +orderer.example.com | 2018-01-18 09:29:47.026 UTC [policies] ProposePolicy -> DEBU a6b Proposed new policy Writers for OrdererOrg +orderer.example.com | 2018-01-18 09:29:47.026 UTC [common/config] Validate -> DEBU a6c Anchor peers for org Org1MSP are anchor_peers: +orderer.example.com | 2018-01-18 09:29:47.026 UTC [common/config] validateMSP -> DEBU a6d Setting up MSP for org Org1MSP +orderer.example.com | 2018-01-18 09:29:47.026 UTC [msp] NewBccspMsp -> DEBU a6e Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-18 09:29:47.026 UTC [msp] Setup -> DEBU a6f Setting up MSP instance Org1MSP +orderer.example.com | 2018-01-18 09:29:47.027 UTC [msp/identity] newIdentity -> DEBU a70 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +orderer.example.com | BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf +orderer.example.com | db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx +orderer.example.com | JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi +orderer.example.com | /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ +orderer.example.com | H7n8z1pj5w== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:47.027 UTC [msp/identity] newIdentity -> DEBU a71 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:47.028 UTC [msp/identity] newIdentity -> DEBU a72 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:47.028 UTC [msp] Validate -> DEBU a73 MSP Org1MSP validating identity +orderer.example.com | 2018-01-18 09:29:47.029 UTC [common/config] Validate -> DEBU a74 Anchor peers for org Org2MSP are +orderer.example.com | 2018-01-18 09:29:47.029 UTC [common/config] validateMSP -> DEBU a75 Setting up MSP for org Org2MSP +orderer.example.com | 2018-01-18 09:29:47.029 UTC [msp] NewBccspMsp -> DEBU a76 Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-18 09:29:47.029 UTC [msp] Setup -> DEBU a77 Setting up MSP instance Org2MSP +orderer.example.com | 2018-01-18 09:29:47.031 UTC [msp/identity] newIdentity -> DEBU a78 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +orderer.example.com | mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 +orderer.example.com | sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ +orderer.example.com | xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv +orderer.example.com | WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk +orderer.example.com | SCjyRdD3aQ== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:47.032 UTC [msp/identity] newIdentity -> DEBU a79 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +orderer.example.com | AXYxULZpXYDQXt1KaLI= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:47.032 UTC [msp/identity] newIdentity -> DEBU a7a Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +orderer.example.com | AXYxULZpXYDQXt1KaLI= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:47.033 UTC [msp] Validate -> DEBU a7b MSP Org2MSP validating identity +orderer.example.com | 2018-01-18 09:29:47.037 UTC [common/config] validateMSP -> DEBU a7c Setting up MSP for org OrdererOrg +orderer.example.com | 2018-01-18 09:29:47.037 UTC [msp] NewBccspMsp -> DEBU a7d Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-18 09:29:47.037 UTC [msp] Setup -> DEBU a7e Setting up MSP instance OrdererMSP +orderer.example.com | 2018-01-18 09:29:47.038 UTC [msp/identity] newIdentity -> DEBU a7f Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +orderer.example.com | cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW +orderer.example.com | gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +orderer.example.com | AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK +orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs +orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:47.039 UTC [msp/identity] newIdentity -> DEBU a80 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:47.039 UTC [msp/identity] newIdentity -> DEBU a81 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:47.048 UTC [msp] Validate -> DEBU a82 MSP OrdererMSP validating identity +orderer.example.com | 2018-01-18 09:29:47.048 UTC [msp] Setup -> DEBU a83 Setting up the MSP manager (3 msps) +orderer.example.com | 2018-01-18 09:29:47.048 UTC [msp] Setup -> DEBU a84 MSP manager setup complete, setup 3 msps +orderer.example.com | 2018-01-18 09:29:47.048 UTC [orderer/common/blockcutter] Ordered -> DEBU a85 Found message which requested to be isolated, cutting into its own batch +orderer.example.com | 2018-01-18 09:29:47.048 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU a86 retrieveBlockByNumber() - blockNum = [0] +orderer.example.com | 2018-01-18 09:29:47.049 UTC [fsblkstorage] newBlockfileStream -> DEBU a87 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] +orderer.example.com | 2018-01-18 09:29:47.050 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU a88 Remaining bytes=[11934], Going to peek [8] bytes +orderer.example.com | 2018-01-18 09:29:47.050 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU a89 Returning blockbytes - length=[11932], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +orderer.example.com | 2018-01-18 09:29:47.050 UTC [common/configtx] addToMap -> DEBU a8a Adding to config map: [Groups] /Channel +orderer.example.com | 2018-01-18 09:29:47.050 UTC [common/configtx] addToMap -> DEBU a8b Adding to config map: [Groups] /Channel/Orderer +orderer.example.com | 2018-01-18 09:29:47.052 UTC [common/configtx] addToMap -> DEBU a8c Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +orderer.example.com | 2018-01-18 09:29:47.053 UTC [common/configtx] addToMap -> DEBU a8d Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +orderer.example.com | 2018-01-18 09:29:47.053 UTC [common/configtx] addToMap -> DEBU a8e Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +orderer.example.com | 2018-01-18 09:29:47.053 UTC [common/configtx] addToMap -> DEBU a8f Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | 2018-01-18 09:29:47.053 UTC [common/configtx] addToMap -> DEBU a90 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +orderer.example.com | 2018-01-18 09:29:47.053 UTC [common/configtx] addToMap -> DEBU a91 Adding to config map: [Values] /Channel/Orderer/BatchSize +orderer.example.com | 2018-01-18 09:29:47.053 UTC [common/configtx] addToMap -> DEBU a92 Adding to config map: [Values] /Channel/Orderer/BatchTimeout +orderer.example.com | 2018-01-18 09:29:47.053 UTC [common/configtx] addToMap -> DEBU a93 Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +orderer.example.com | 2018-01-18 09:29:47.053 UTC [common/configtx] addToMap -> DEBU a94 Adding to config map: [Values] /Channel/Orderer/ConsensusType +orderer.example.com | 2018-01-18 09:29:47.054 UTC [common/configtx] addToMap -> DEBU a95 Adding to config map: [Policy] /Channel/Orderer/BlockValidation +orderer.example.com | 2018-01-18 09:29:47.054 UTC [common/configtx] addToMap -> DEBU a96 Adding to config map: [Policy] /Channel/Orderer/Readers +orderer.example.com | 2018-01-18 09:29:47.054 UTC [common/configtx] addToMap -> DEBU a97 Adding to config map: [Policy] /Channel/Orderer/Writers +orderer.example.com | 2018-01-18 09:29:47.054 UTC [common/configtx] addToMap -> DEBU a98 Adding to config map: [Policy] /Channel/Orderer/Admins +orderer.example.com | 2018-01-18 09:29:47.059 UTC [common/configtx] addToMap -> DEBU a99 Adding to config map: [Groups] /Channel/Application +orderer.example.com | 2018-01-18 09:29:47.060 UTC [common/configtx] addToMap -> DEBU a9a Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | 2018-01-18 09:29:47.060 UTC [common/configtx] addToMap -> DEBU a9b Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +orderer.example.com | 2018-01-18 09:29:47.060 UTC [common/configtx] addToMap -> DEBU a9c Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +orderer.example.com | 2018-01-18 09:29:47.061 UTC [common/configtx] addToMap -> DEBU a9d Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | 2018-01-18 09:29:47.061 UTC [common/configtx] addToMap -> DEBU a9e Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | 2018-01-18 09:29:47.061 UTC [common/configtx] addToMap -> DEBU a9f Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | 2018-01-18 09:29:47.062 UTC [common/configtx] addToMap -> DEBU aa0 Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | 2018-01-18 09:29:47.062 UTC [common/configtx] addToMap -> DEBU aa1 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +orderer.example.com | 2018-01-18 09:29:47.062 UTC [common/configtx] addToMap -> DEBU aa2 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | 2018-01-18 09:29:47.062 UTC [common/configtx] addToMap -> DEBU aa3 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | 2018-01-18 09:29:47.062 UTC [common/configtx] addToMap -> DEBU aa4 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | 2018-01-18 09:29:47.062 UTC [common/configtx] addToMap -> DEBU aa5 Adding to config map: [Policy] /Channel/Application/Writers +orderer.example.com | 2018-01-18 09:29:47.062 UTC [common/configtx] addToMap -> DEBU aa6 Adding to config map: [Policy] /Channel/Application/Readers +orderer.example.com | 2018-01-18 09:29:47.063 UTC [common/configtx] addToMap -> DEBU aa7 Adding to config map: [Policy] /Channel/Application/Admins +orderer.example.com | 2018-01-18 09:29:47.063 UTC [common/configtx] addToMap -> DEBU aa8 Adding to config map: [Values] /Channel/BlockDataHashingStructure +orderer.example.com | 2018-01-18 09:29:47.063 UTC [common/configtx] addToMap -> DEBU aa9 Adding to config map: [Values] /Channel/OrdererAddresses +orderer.example.com | 2018-01-18 09:29:47.063 UTC [common/configtx] addToMap -> DEBU aaa Adding to config map: [Values] /Channel/HashingAlgorithm +orderer.example.com | 2018-01-18 09:29:47.063 UTC [common/configtx] addToMap -> DEBU aab Adding to config map: [Values] /Channel/Consortium +orderer.example.com | 2018-01-18 09:29:47.064 UTC [common/configtx] addToMap -> DEBU aac Adding to config map: [Policy] /Channel/Admins +orderer.example.com | 2018-01-18 09:29:47.064 UTC [common/configtx] addToMap -> DEBU aad Adding to config map: [Policy] /Channel/Readers +orderer.example.com | 2018-01-18 09:29:47.064 UTC [common/configtx] addToMap -> DEBU aae Adding to config map: [Policy] /Channel/Writers +orderer.example.com | 2018-01-18 09:29:47.064 UTC [common/configtx] addToMap -> DEBU aaf Adding to config map: [Groups] /Channel +orderer.example.com | 2018-01-18 09:29:47.064 UTC [common/configtx] addToMap -> DEBU ab0 Adding to config map: [Groups] /Channel/Application +orderer.example.com | 2018-01-18 09:29:47.064 UTC [common/configtx] addToMap -> DEBU ab1 Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | 2018-01-18 09:29:47.064 UTC [common/configtx] addToMap -> DEBU ab2 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +orderer.example.com | 2018-01-18 09:29:47.064 UTC [common/configtx] addToMap -> DEBU ab3 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | 2018-01-18 09:29:47.065 UTC [common/configtx] addToMap -> DEBU ab4 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | 2018-01-18 09:29:47.065 UTC [common/configtx] addToMap -> DEBU ab5 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | 2018-01-18 09:29:47.065 UTC [common/configtx] addToMap -> DEBU ab6 Adding to config map: [Groups] /Channel +orderer.example.com | 2018-01-18 09:29:47.065 UTC [common/configtx] addToMap -> DEBU ab7 Adding to config map: [Groups] /Channel/Application +orderer.example.com | 2018-01-18 09:29:47.065 UTC [common/configtx] addToMap -> DEBU ab8 Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | 2018-01-18 09:29:47.065 UTC [common/configtx] addToMap -> DEBU ab9 Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +orderer.example.com | 2018-01-18 09:29:47.065 UTC [common/configtx] addToMap -> DEBU aba Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +orderer.example.com | 2018-01-18 09:29:47.065 UTC [common/configtx] addToMap -> DEBU abb Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | 2018-01-18 09:29:47.065 UTC [common/configtx] addToMap -> DEBU abc Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | 2018-01-18 09:29:47.066 UTC [common/configtx] addToMap -> DEBU abd Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | 2018-01-18 09:29:47.066 UTC [policies] GetPolicy -> DEBU abe Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:47.066 UTC [cauthdsl] func1 -> DEBU abf 0xc420026850 gate 1516267787066298361 evaluation starts +orderer.example.com | 2018-01-18 09:29:47.066 UTC [cauthdsl] func2 -> DEBU ac0 0xc420026850 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:29:47.066 UTC [cauthdsl] func2 -> DEBU ac1 0xc420026850 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:29:47.066 UTC [msp/identity] newIdentity -> DEBU ac2 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:47.067 UTC [msp] SatisfiesPrincipal -> DEBU ac3 Checking if identity satisfies ADMIN role for Org1MSP +orderer.example.com | 2018-01-18 09:29:47.067 UTC [cauthdsl] func2 -> DEBU ac4 0xc420026850 principal matched by identity 0 +orderer.example.com | 2018-01-18 09:29:47.067 UTC [msp/identity] Verify -> DEBU ac5 Verify: digest = 00000000 4d be a9 c4 54 6d 00 c1 09 ed 0f 97 df 98 d3 b4 |M...Tm..........| +orderer.example.com | 00000010 3f 7e 4c 7b 14 2e 85 95 dd e8 fa 88 85 14 1c a4 |?~L{............| +orderer.example.com | 2018-01-18 09:29:47.067 UTC [msp/identity] Verify -> DEBU ac6 Verify: sig = 00000000 30 44 02 20 55 16 a0 b6 71 60 a7 f6 6c 09 21 48 |0D. U...q`..l.!H| +orderer.example.com | 00000010 5f e7 b9 36 eb 3a fc 25 9e ca 91 a5 21 1b 9d 0d |_..6.:.%....!...| +orderer.example.com | 00000020 d3 3a a3 0c 02 20 5b 2b 93 ce de c4 63 57 76 14 |.:... [+....cWv.| +orderer.example.com | 00000030 88 2e 5c c0 fa 75 1d 6b 5d 34 ee 1a c9 f9 9a ea |..\..u.k]4......| +orderer.example.com | 00000040 c6 d4 a3 0c a6 3a |.....:| +orderer.example.com | 2018-01-18 09:29:47.068 UTC [cauthdsl] func2 -> DEBU ac7 0xc420026850 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-18 09:29:47.068 UTC [cauthdsl] func1 -> DEBU ac8 0xc420026850 gate 1516267787066298361 evaluation succeeds +orderer.example.com | 2018-01-18 09:29:47.068 UTC [common/configtx] recurseConfigMap -> DEBU ac9 Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:47.069 UTC [common/configtx] recurseConfigMap -> DEBU aca Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:47.069 UTC [common/configtx] recurseConfigMap -> DEBU acb Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:47.069 UTC [common/configtx] recurseConfigMap -> DEBU acc Setting policy for key Readers to +orderer.example.com | 2018-01-18 09:29:47.069 UTC [common/configtx] recurseConfigMap -> DEBU acd Setting policy for key Writers to +orderer.example.com | 2018-01-18 09:29:47.069 UTC [common/configtx] recurseConfigMap -> DEBU ace Setting policy for key Admins to +orderer.example.com | 2018-01-18 09:29:47.069 UTC [common/configtx] recurseConfigMap -> DEBU acf Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:47.069 UTC [common/configtx] recurseConfigMap -> DEBU ad0 Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:47.069 UTC [common/configtx] recurseConfigMap -> DEBU ad1 Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:47.069 UTC [common/configtx] recurseConfigMap -> DEBU ad2 Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:47.069 UTC [common/configtx] recurseConfigMap -> DEBU ad3 Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:47.069 UTC [common/configtx] recurseConfigMap -> DEBU ad4 Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:47.069 UTC [common/configtx] recurseConfigMap -> DEBU ad5 Setting policy for key BlockValidation to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:47.069 UTC [common/configtx] recurseConfigMap -> DEBU ad6 Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:47.070 UTC [common/configtx] recurseConfigMap -> DEBU ad7 Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:47.070 UTC [common/configtx] recurseConfigMap -> DEBU ad8 Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:47.070 UTC [common/configtx] recurseConfigMap -> DEBU ad9 Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:47.070 UTC [common/configtx] recurseConfigMap -> DEBU ada Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:47.070 UTC [common/configtx] recurseConfigMap -> DEBU adb Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:47.071 UTC [common/configtx] processConfig -> DEBU adc Beginning new config for channel businesschannel +orderer.example.com | 2018-01-18 09:29:47.071 UTC [common/config] NewStandardValues -> DEBU add Initializing protos for *config.ChannelProtos +orderer.example.com | 2018-01-18 09:29:47.071 UTC [common/config] initializeProtosStruct -> DEBU ade Processing field: HashingAlgorithm +orderer.example.com | 2018-01-18 09:29:47.071 UTC [common/config] initializeProtosStruct -> DEBU adf Processing field: BlockDataHashingStructure +orderer.example.com | 2018-01-18 09:29:47.071 UTC [common/config] initializeProtosStruct -> DEBU ae0 Processing field: OrdererAddresses +orderer.example.com | 2018-01-18 09:29:47.071 UTC [common/config] initializeProtosStruct -> DEBU ae1 Processing field: Consortium +orderer.example.com | 2018-01-18 09:29:47.071 UTC [policies] ProposePolicy -> DEBU ae2 Proposed new policy Readers for Channel +orderer.example.com | 2018-01-18 09:29:47.071 UTC [policies] ProposePolicy -> DEBU ae3 Proposed new policy Writers for Channel +orderer.example.com | 2018-01-18 09:29:47.072 UTC [policies] ProposePolicy -> DEBU ae4 Proposed new policy Admins for Channel +orderer.example.com | 2018-01-18 09:29:47.072 UTC [common/config] NewStandardValues -> DEBU ae5 Initializing protos for *struct {} +orderer.example.com | 2018-01-18 09:29:47.072 UTC [policies] ProposePolicy -> DEBU ae6 Proposed new policy Admins for Application +orderer.example.com | 2018-01-18 09:29:47.072 UTC [policies] ProposePolicy -> DEBU ae7 Proposed new policy Writers for Application +orderer.example.com | 2018-01-18 09:29:47.072 UTC [policies] ProposePolicy -> DEBU ae8 Proposed new policy Readers for Application +orderer.example.com | 2018-01-18 09:29:47.072 UTC [common/config] NewStandardValues -> DEBU ae9 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:47.072 UTC [common/config] initializeProtosStruct -> DEBU aea Processing field: MSP +orderer.example.com | 2018-01-18 09:29:47.072 UTC [common/config] NewStandardValues -> DEBU aeb Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | 2018-01-18 09:29:47.073 UTC [common/config] initializeProtosStruct -> DEBU aec Processing field: AnchorPeers +orderer.example.com | 2018-01-18 09:29:47.073 UTC [common/config] NewStandardValues -> DEBU aed Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:47.073 UTC [common/config] initializeProtosStruct -> DEBU aee Processing field: MSP +orderer.example.com | 2018-01-18 09:29:47.073 UTC [policies] ProposePolicy -> DEBU aef Proposed new policy Readers for Org1MSP +orderer.example.com | 2018-01-18 09:29:47.073 UTC [policies] ProposePolicy -> DEBU af0 Proposed new policy Writers for Org1MSP +orderer.example.com | 2018-01-18 09:29:47.074 UTC [policies] ProposePolicy -> DEBU af1 Proposed new policy Admins for Org1MSP +orderer.example.com | 2018-01-18 09:29:47.074 UTC [common/config] NewStandardValues -> DEBU af2 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:47.074 UTC [common/config] initializeProtosStruct -> DEBU af3 Processing field: MSP +orderer.example.com | 2018-01-18 09:29:47.074 UTC [common/config] NewStandardValues -> DEBU af4 Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | 2018-01-18 09:29:47.074 UTC [common/config] initializeProtosStruct -> DEBU af5 Processing field: AnchorPeers +orderer.example.com | 2018-01-18 09:29:47.074 UTC [common/config] NewStandardValues -> DEBU af6 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:47.074 UTC [common/config] initializeProtosStruct -> DEBU af7 Processing field: MSP +orderer.example.com | 2018-01-18 09:29:47.075 UTC [policies] ProposePolicy -> DEBU af8 Proposed new policy Admins for Org2MSP +orderer.example.com | 2018-01-18 09:29:47.075 UTC [policies] ProposePolicy -> DEBU af9 Proposed new policy Readers for Org2MSP +orderer.example.com | 2018-01-18 09:29:47.075 UTC [policies] ProposePolicy -> DEBU afa Proposed new policy Writers for Org2MSP +orderer.example.com | 2018-01-18 09:29:47.075 UTC [common/config] NewStandardValues -> DEBU afb Initializing protos for *config.OrdererProtos +orderer.example.com | 2018-01-18 09:29:47.075 UTC [common/config] initializeProtosStruct -> DEBU afc Processing field: ConsensusType +orderer.example.com | 2018-01-18 09:29:47.075 UTC [common/config] initializeProtosStruct -> DEBU afd Processing field: BatchSize +orderer.example.com | 2018-01-18 09:29:47.075 UTC [common/config] initializeProtosStruct -> DEBU afe Processing field: BatchTimeout +orderer.example.com | 2018-01-18 09:29:47.075 UTC [common/config] initializeProtosStruct -> DEBU aff Processing field: KafkaBrokers +orderer.example.com | 2018-01-18 09:29:47.075 UTC [common/config] initializeProtosStruct -> DEBU b00 Processing field: ChannelRestrictions +orderer.example.com | 2018-01-18 09:29:47.076 UTC [policies] ProposePolicy -> DEBU b01 Proposed new policy Readers for Orderer +orderer.example.com | 2018-01-18 09:29:47.076 UTC [policies] ProposePolicy -> DEBU b02 Proposed new policy Writers for Orderer +orderer.example.com | 2018-01-18 09:29:47.076 UTC [policies] ProposePolicy -> DEBU b03 Proposed new policy Admins for Orderer +orderer.example.com | 2018-01-18 09:29:47.076 UTC [policies] ProposePolicy -> DEBU b04 Proposed new policy BlockValidation for Orderer +orderer.example.com | 2018-01-18 09:29:47.076 UTC [common/config] NewStandardValues -> DEBU b05 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:47.076 UTC [common/config] initializeProtosStruct -> DEBU b06 Processing field: MSP +orderer.example.com | 2018-01-18 09:29:47.076 UTC [policies] ProposePolicy -> DEBU b07 Proposed new policy Admins for OrdererOrg +orderer.example.com | 2018-01-18 09:29:47.076 UTC [policies] ProposePolicy -> DEBU b08 Proposed new policy Readers for OrdererOrg +orderer.example.com | 2018-01-18 09:29:47.076 UTC [policies] ProposePolicy -> DEBU b09 Proposed new policy Writers for OrdererOrg +orderer.example.com | 2018-01-18 09:29:47.076 UTC [common/config] Validate -> DEBU b0a Anchor peers for org Org1MSP are anchor_peers: +orderer.example.com | 2018-01-18 09:29:47.077 UTC [common/config] validateMSP -> DEBU b0b Setting up MSP for org Org1MSP +orderer.example.com | 2018-01-18 09:29:47.077 UTC [msp] NewBccspMsp -> DEBU b0c Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-18 09:29:47.078 UTC [msp] Setup -> DEBU b0d Setting up MSP instance Org1MSP +orderer.example.com | 2018-01-18 09:29:47.084 UTC [msp/identity] newIdentity -> DEBU b0e Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +orderer.example.com | BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf +orderer.example.com | db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx +orderer.example.com | JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi +orderer.example.com | /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ +orderer.example.com | H7n8z1pj5w== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:47.087 UTC [msp/identity] newIdentity -> DEBU b0f Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:47.088 UTC [msp/identity] newIdentity -> DEBU b10 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:47.088 UTC [msp] Validate -> DEBU b11 MSP Org1MSP validating identity +orderer.example.com | 2018-01-18 09:29:47.090 UTC [common/config] Validate -> DEBU b12 Anchor peers for org Org2MSP are +orderer.example.com | 2018-01-18 09:29:47.091 UTC [common/config] validateMSP -> DEBU b13 Setting up MSP for org Org2MSP +orderer.example.com | 2018-01-18 09:29:47.091 UTC [msp] NewBccspMsp -> DEBU b14 Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-18 09:29:47.091 UTC [msp] Setup -> DEBU b15 Setting up MSP instance Org2MSP +orderer.example.com | 2018-01-18 09:29:47.091 UTC [msp/identity] newIdentity -> DEBU b16 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +orderer.example.com | mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 +orderer.example.com | sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ +orderer.example.com | xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv +orderer.example.com | WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk +orderer.example.com | SCjyRdD3aQ== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:47.092 UTC [msp/identity] newIdentity -> DEBU b17 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +orderer.example.com | AXYxULZpXYDQXt1KaLI= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:47.094 UTC [msp/identity] newIdentity -> DEBU b18 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +orderer.example.com | AXYxULZpXYDQXt1KaLI= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:47.095 UTC [msp] Validate -> DEBU b19 MSP Org2MSP validating identity +orderer.example.com | 2018-01-18 09:29:47.096 UTC [common/config] validateMSP -> DEBU b1a Setting up MSP for org OrdererOrg +orderer.example.com | 2018-01-18 09:29:47.096 UTC [msp] NewBccspMsp -> DEBU b1b Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-18 09:29:47.096 UTC [msp] Setup -> DEBU b1c Setting up MSP instance OrdererMSP +orderer.example.com | 2018-01-18 09:29:47.097 UTC [msp/identity] newIdentity -> DEBU b1d Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +orderer.example.com | cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW +orderer.example.com | gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +orderer.example.com | AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK +orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs +orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:47.099 UTC [msp/identity] newIdentity -> DEBU b1e Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:47.100 UTC [msp/identity] newIdentity -> DEBU b1f Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:47.103 UTC [msp] Validate -> DEBU b20 MSP OrdererMSP validating identity +orderer.example.com | 2018-01-18 09:29:47.106 UTC [msp] Setup -> DEBU b21 Setting up the MSP manager (3 msps) +orderer.example.com | 2018-01-18 09:29:47.106 UTC [msp] Setup -> DEBU b22 MSP manager setup complete, setup 3 msps +orderer.example.com | 2018-01-18 09:29:47.107 UTC [policies] GetPolicy -> DEBU b23 Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:47.107 UTC [policies] CommitProposals -> DEBU b24 In commit adding relative sub-policy Org1MSP/Readers to Application +orderer.example.com | 2018-01-18 09:29:47.108 UTC [policies] GetPolicy -> DEBU b25 Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:47.108 UTC [policies] CommitProposals -> DEBU b26 In commit adding relative sub-policy Org1MSP/Writers to Application +orderer.example.com | 2018-01-18 09:29:47.108 UTC [policies] GetPolicy -> DEBU b27 Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:47.108 UTC [policies] CommitProposals -> DEBU b28 In commit adding relative sub-policy Org1MSP/Admins to Application +orderer.example.com | 2018-01-18 09:29:47.108 UTC [policies] GetPolicy -> DEBU b29 Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:47.108 UTC [policies] CommitProposals -> DEBU b2a In commit adding relative sub-policy Org2MSP/Admins to Application +orderer.example.com | 2018-01-18 09:29:47.108 UTC [policies] GetPolicy -> DEBU b2b Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:47.108 UTC [policies] CommitProposals -> DEBU b2c In commit adding relative sub-policy Org2MSP/Readers to Application +orderer.example.com | 2018-01-18 09:29:47.108 UTC [policies] GetPolicy -> DEBU b2d Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:47.108 UTC [policies] CommitProposals -> DEBU b2e In commit adding relative sub-policy Org2MSP/Writers to Application +orderer.example.com | 2018-01-18 09:29:47.108 UTC [policies] GetPolicy -> DEBU b2f Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:47.108 UTC [policies] GetPolicy -> DEBU b30 Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:47.108 UTC [policies] GetPolicy -> DEBU b31 Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:47.109 UTC [policies] GetPolicy -> DEBU b32 Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:47.109 UTC [policies] GetPolicy -> DEBU b33 Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:47.109 UTC [policies] GetPolicy -> DEBU b34 Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:47.110 UTC [policies] GetPolicy -> DEBU b35 Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:47.110 UTC [policies] CommitProposals -> DEBU b36 In commit adding relative sub-policy OrdererOrg/Admins to Orderer +orderer.example.com | 2018-01-18 09:29:47.110 UTC [policies] GetPolicy -> DEBU b37 Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:47.110 UTC [policies] CommitProposals -> DEBU b38 In commit adding relative sub-policy OrdererOrg/Readers to Orderer +orderer.example.com | 2018-01-18 09:29:47.111 UTC [policies] GetPolicy -> DEBU b39 Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:47.112 UTC [policies] CommitProposals -> DEBU b3a In commit adding relative sub-policy OrdererOrg/Writers to Orderer +orderer.example.com | 2018-01-18 09:29:47.112 UTC [policies] GetPolicy -> DEBU b3b Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:47.112 UTC [policies] GetPolicy -> DEBU b3c Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:47.112 UTC [policies] GetPolicy -> DEBU b3d Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:47.113 UTC [policies] GetPolicy -> DEBU b3e Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:47.113 UTC [policies] GetPolicy -> DEBU b3f Returning policy OrdererOrg/Readers for evaluation +orderer.example.com | 2018-01-18 09:29:47.113 UTC [policies] CommitProposals -> DEBU b40 In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +orderer.example.com | 2018-01-18 09:29:47.113 UTC [policies] GetPolicy -> DEBU b41 Returning policy OrdererOrg/Writers for evaluation +orderer.example.com | 2018-01-18 09:29:47.113 UTC [policies] CommitProposals -> DEBU b42 In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +orderer.example.com | 2018-01-18 09:29:47.113 UTC [policies] GetPolicy -> DEBU b43 Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:47.113 UTC [policies] CommitProposals -> DEBU b44 In commit adding relative sub-policy Orderer/Readers to Channel +orderer.example.com | 2018-01-18 09:29:47.113 UTC [policies] GetPolicy -> DEBU b45 Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:47.113 UTC [policies] CommitProposals -> DEBU b46 In commit adding relative sub-policy Orderer/Writers to Channel +orderer.example.com | 2018-01-18 09:29:47.113 UTC [policies] GetPolicy -> DEBU b47 Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:47.114 UTC [policies] CommitProposals -> DEBU b48 In commit adding relative sub-policy Orderer/Admins to Channel +orderer.example.com | 2018-01-18 09:29:47.114 UTC [policies] GetPolicy -> DEBU b49 Returning policy BlockValidation for evaluation +orderer.example.com | 2018-01-18 09:29:47.114 UTC [policies] CommitProposals -> DEBU b4a In commit adding relative sub-policy Orderer/BlockValidation to Channel +orderer.example.com | 2018-01-18 09:29:47.114 UTC [policies] GetPolicy -> DEBU b4b Returning policy OrdererOrg/Admins for evaluation +orderer.example.com | 2018-01-18 09:29:47.114 UTC [policies] CommitProposals -> DEBU b4c In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +orderer.example.com | 2018-01-18 09:29:47.114 UTC [policies] GetPolicy -> DEBU b4d Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:47.114 UTC [policies] CommitProposals -> DEBU b4e In commit adding relative sub-policy Application/Writers to Channel +orderer.example.com | 2018-01-18 09:29:47.114 UTC [policies] GetPolicy -> DEBU b4f Returning policy Org1MSP/Readers for evaluation +orderer.example.com | 2018-01-18 09:29:47.114 UTC [policies] CommitProposals -> DEBU b50 In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +orderer.example.com | 2018-01-18 09:29:47.114 UTC [policies] GetPolicy -> DEBU b51 Returning policy Org1MSP/Admins for evaluation +orderer.example.com | 2018-01-18 09:29:47.114 UTC [policies] CommitProposals -> DEBU b52 In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +orderer.example.com | 2018-01-18 09:29:47.114 UTC [policies] GetPolicy -> DEBU b53 Returning policy Org2MSP/Admins for evaluation +orderer.example.com | 2018-01-18 09:29:47.114 UTC [policies] CommitProposals -> DEBU b54 In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +orderer.example.com | 2018-01-18 09:29:47.114 UTC [policies] GetPolicy -> DEBU b55 Returning policy Org2MSP/Readers for evaluation +orderer.example.com | 2018-01-18 09:29:47.114 UTC [policies] CommitProposals -> DEBU b56 In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +orderer.example.com | 2018-01-18 09:29:47.114 UTC [policies] GetPolicy -> DEBU b57 Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:47.114 UTC [policies] CommitProposals -> DEBU b58 In commit adding relative sub-policy Application/Admins to Channel +orderer.example.com | 2018-01-18 09:29:47.115 UTC [policies] GetPolicy -> DEBU b59 Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:47.115 UTC [policies] CommitProposals -> DEBU b5a In commit adding relative sub-policy Application/Readers to Channel +orderer.example.com | 2018-01-18 09:29:47.115 UTC [policies] GetPolicy -> DEBU b5b Returning policy Org1MSP/Writers for evaluation +orderer.example.com | 2018-01-18 09:29:47.115 UTC [policies] CommitProposals -> DEBU b5c In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +orderer.example.com | 2018-01-18 09:29:47.115 UTC [policies] GetPolicy -> DEBU b5d Returning policy Org2MSP/Writers for evaluation +orderer.example.com | 2018-01-18 09:29:47.115 UTC [policies] CommitProposals -> DEBU b5e In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +orderer.example.com | 2018-01-18 09:29:47.115 UTC [policies] GetPolicy -> DEBU b5f Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:47.115 UTC [policies] GetPolicy -> DEBU b60 Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:47.115 UTC [policies] GetPolicy -> DEBU b61 Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:47.115 UTC [policies] GetPolicy -> DEBU b62 Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:47.115 UTC [policies] GetPolicy -> DEBU b63 Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:47.116 UTC [policies] GetPolicy -> DEBU b64 Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:47.116 UTC [policies] GetPolicy -> DEBU b65 Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:47.116 UTC [policies] CommitProposals -> DEBU b66 As expected, current configuration has policy '/Channel/Readers' +orderer.example.com | 2018-01-18 09:29:47.116 UTC [policies] GetPolicy -> DEBU b67 Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:47.116 UTC [policies] CommitProposals -> DEBU b68 As expected, current configuration has policy '/Channel/Writers' +orderer.example.com | 2018-01-18 09:29:47.116 UTC [policies] GetPolicy -> DEBU b69 Returning policy Application/Readers for evaluation +orderer.example.com | 2018-01-18 09:29:47.116 UTC [policies] CommitProposals -> DEBU b6a As expected, current configuration has policy '/Channel/Application/Readers' +orderer.example.com | 2018-01-18 09:29:47.116 UTC [policies] GetPolicy -> DEBU b6b Returning policy Application/Writers for evaluation +orderer.example.com | 2018-01-18 09:29:47.116 UTC [policies] CommitProposals -> DEBU b6c As expected, current configuration has policy '/Channel/Application/Writers' +orderer.example.com | 2018-01-18 09:29:47.116 UTC [policies] GetPolicy -> DEBU b6d Returning policy Application/Admins for evaluation +orderer.example.com | 2018-01-18 09:29:47.116 UTC [policies] CommitProposals -> DEBU b6e As expected, current configuration has policy '/Channel/Application/Admins' +orderer.example.com | 2018-01-18 09:29:47.117 UTC [policies] GetPolicy -> DEBU b6f Returning policy Orderer/BlockValidation for evaluation +orderer.example.com | 2018-01-18 09:29:47.117 UTC [policies] CommitProposals -> DEBU b70 As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +orderer.example.com | 2018-01-18 09:29:47.117 UTC [orderer/multichain] addBlockSignature -> DEBU b71 &{ledgerResources:0xc4209b5140 chain:0xc4209b5a00 cutter:0xc420863b80 filters:0xc4209b5640 signer:0x1274e88 lastConfig:0 lastConfigSeq:1} +orderer.example.com | 2018-01-18 09:29:47.117 UTC [orderer/multichain] addBlockSignature -> DEBU b72 &{} +orderer.example.com | 2018-01-18 09:29:47.117 UTC [msp] GetLocalMSP -> DEBU b73 Returning existing local MSP +orderer.example.com | 2018-01-18 09:29:47.117 UTC [msp] GetDefaultSigningIdentity -> DEBU b74 Obtaining default signing identity +orderer.example.com | 2018-01-18 09:29:47.117 UTC [msp] GetLocalMSP -> DEBU b75 Returning existing local MSP +orderer.example.com | 2018-01-18 09:29:47.117 UTC [msp] GetDefaultSigningIdentity -> DEBU b76 Obtaining default signing identity +orderer.example.com | 2018-01-18 09:29:47.119 UTC [msp/identity] Sign -> DEBU b77 Sign: plaintext: 0AFA050A0A4F7264657265724D535012...A3585F5C508E0476F6E95F625F578B7F +orderer.example.com | 2018-01-18 09:29:47.119 UTC [msp/identity] Sign -> DEBU b78 Sign: digest: F18CC38E1F7A062CB1998C50351CFF4E73D058C1155E1CEDE91DDD944D9C1778 +orderer.example.com | 2018-01-18 09:29:47.120 UTC [orderer/multichain] addLastConfigSignature -> DEBU b79 [channel: businesschannel] Detected lastConfigSeq transitioning from 1 to 2, setting lastConfig from 0 to 1 +orderer.example.com | 2018-01-18 09:29:47.120 UTC [msp] GetLocalMSP -> DEBU b7a Returning existing local MSP +orderer.example.com | 2018-01-18 09:29:47.120 UTC [msp] GetDefaultSigningIdentity -> DEBU b7b Obtaining default signing identity +orderer.example.com | 2018-01-18 09:29:47.120 UTC [orderer/multichain] addLastConfigSignature -> DEBU b7c [channel: businesschannel] About to write block, setting its LAST_CONFIG to 1 +orderer.example.com | 2018-01-18 09:29:47.121 UTC [msp] GetLocalMSP -> DEBU b7d Returning existing local MSP +orderer.example.com | 2018-01-18 09:29:47.121 UTC [msp] GetDefaultSigningIdentity -> DEBU b7e Obtaining default signing identity +orderer.example.com | 2018-01-18 09:29:47.121 UTC [msp/identity] Sign -> DEBU b7f Sign: plaintext: 08010AFA050A0A4F7264657265724D53...A3585F5C508E0476F6E95F625F578B7F +orderer.example.com | 2018-01-18 09:29:47.121 UTC [msp/identity] Sign -> DEBU b80 Sign: digest: 76C8F5BF93FAB6311D82D1333221A0059DA198770C3598A9398CFF4F8B2C983B +orderer.example.com | 2018-01-18 09:29:47.124 UTC [fsblkstorage] indexBlock -> DEBU b81 Indexing block [blockNum=1, blockHash=[]byte{0x6c, 0xef, 0x8, 0x85, 0xb1, 0xd, 0xe7, 0xda, 0xc6, 0xd0, 0x92, 0x80, 0xa6, 0x9f, 0x76, 0x95, 0xfa, 0x31, 0xc3, 0x51, 0x60, 0x86, 0x44, 0xcf, 0xf7, 0xdc, 0x39, 0xba, 0xf0, 0x8, 0xf8, 0x13} txOffsets= +orderer.example.com | txId= locPointer=offset=70, bytesLength=11914 +orderer.example.com | ] +orderer.example.com | 2018-01-18 09:29:47.124 UTC [fsblkstorage] updateCheckpoint -> DEBU b82 Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[25667], isChainEmpty=[false], lastBlockNumber=[1] +orderer.example.com | 2018-01-18 09:29:47.124 UTC [orderer/multichain] WriteBlock -> DEBU b83 [channel: businesschannel] Wrote block 1 +orderer.example.com | 2018-01-18 09:29:49.185 UTC [orderer/main] Deliver -> DEBU b84 Starting new Deliver handler +orderer.example.com | 2018-01-18 09:29:49.185 UTC [orderer/common/deliver] Handle -> DEBU b85 Starting new deliver loop +orderer.example.com | 2018-01-18 09:29:49.186 UTC [orderer/common/deliver] Handle -> DEBU b86 Attempting to read seek info message +orderer.example.com | 2018-01-18 09:29:49.204 UTC [orderer/main] Broadcast -> DEBU b87 Starting new Broadcast handler +orderer.example.com | 2018-01-18 09:29:49.204 UTC [orderer/common/broadcast] Handle -> DEBU b88 Starting new broadcast loop +orderer.example.com | 2018-01-18 09:29:49.204 UTC [orderer/common/broadcast] Handle -> DEBU b89 Preprocessing CONFIG_UPDATE +orderer.example.com | 2018-01-18 09:29:49.205 UTC [orderer/configupdate] Process -> DEBU b8a Processing channel reconfiguration request for channel businesschannel +orderer.example.com | 2018-01-18 09:29:49.206 UTC [common/configtx] addToMap -> DEBU b8b Adding to config map: [Groups] /Channel +orderer.example.com | 2018-01-18 09:29:49.207 UTC [common/configtx] addToMap -> DEBU b8c Adding to config map: [Groups] /Channel/Application +orderer.example.com | 2018-01-18 09:29:49.207 UTC [common/configtx] addToMap -> DEBU b8d Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | 2018-01-18 09:29:49.207 UTC [common/configtx] addToMap -> DEBU b8e Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +orderer.example.com | 2018-01-18 09:29:49.207 UTC [common/configtx] addToMap -> DEBU b8f Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | 2018-01-18 09:29:49.208 UTC [common/configtx] addToMap -> DEBU b90 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | 2018-01-18 09:29:49.208 UTC [common/configtx] addToMap -> DEBU b91 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | 2018-01-18 09:29:49.208 UTC [common/configtx] addToMap -> DEBU b92 Adding to config map: [Groups] /Channel +orderer.example.com | 2018-01-18 09:29:49.208 UTC [common/configtx] addToMap -> DEBU b93 Adding to config map: [Groups] /Channel/Application +orderer.example.com | 2018-01-18 09:29:49.208 UTC [common/configtx] addToMap -> DEBU b94 Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | 2018-01-18 09:29:49.209 UTC [common/configtx] addToMap -> DEBU b95 Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers +orderer.example.com | 2018-01-18 09:29:49.209 UTC [common/configtx] addToMap -> DEBU b96 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +orderer.example.com | 2018-01-18 09:29:49.209 UTC [common/configtx] addToMap -> DEBU b97 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | 2018-01-18 09:29:49.210 UTC [common/configtx] addToMap -> DEBU b98 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | 2018-01-18 09:29:49.210 UTC [common/configtx] addToMap -> DEBU b99 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | 2018-01-18 09:29:49.210 UTC [policies] GetPolicy -> DEBU b9a Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:49.210 UTC [cauthdsl] func1 -> DEBU b9b 0xc420026d80 gate 1516267789210870639 evaluation starts +orderer.example.com | 2018-01-18 09:29:49.211 UTC [cauthdsl] func2 -> DEBU b9c 0xc420026d80 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:29:49.211 UTC [cauthdsl] func2 -> DEBU b9d 0xc420026d80 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:29:49.211 UTC [msp/identity] newIdentity -> DEBU b9e Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +orderer.example.com | AXYxULZpXYDQXt1KaLI= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:49.212 UTC [msp] SatisfiesPrincipal -> DEBU b9f Checking if identity satisfies ADMIN role for Org2MSP +orderer.example.com | 2018-01-18 09:29:49.212 UTC [cauthdsl] func2 -> DEBU ba0 0xc420026d80 principal matched by identity 0 +orderer.example.com | 2018-01-18 09:29:49.213 UTC [msp/identity] Verify -> DEBU ba1 Verify: digest = 00000000 e3 2e bc 09 2e aa 2c ee 2d d8 57 24 a8 da 75 26 |......,.-.W$..u&| +orderer.example.com | 00000010 76 f4 64 21 f8 97 85 b8 3e 1d 7e 6e 42 62 03 14 |v.d!....>.~nBb..| +orderer.example.com | 2018-01-18 09:29:49.213 UTC [msp/identity] Verify -> DEBU ba2 Verify: sig = 00000000 30 44 02 20 48 e1 84 3e 07 f3 e5 77 3f 0a 13 70 |0D. H..>...w?..p| +orderer.example.com | 00000010 88 13 09 23 43 ec 85 b3 36 94 70 17 22 ce 11 47 |...#C...6.p."..G| +orderer.example.com | 00000020 bb 3f dc 05 02 20 54 76 42 4a a3 19 16 da fe 43 |.?... TvBJ.....C| +orderer.example.com | 00000030 28 50 a5 02 b8 00 63 81 75 68 de 48 c5 86 e0 ee |(P....c.uh.H....| +orderer.example.com | 00000040 7c 87 76 59 5d 71 ||.vY]q| +orderer.example.com | 2018-01-18 09:29:49.214 UTC [cauthdsl] func2 -> DEBU ba3 0xc420026d80 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-18 09:29:49.214 UTC [cauthdsl] func1 -> DEBU ba4 0xc420026d80 gate 1516267789210870639 evaluation succeeds +orderer.example.com | 2018-01-18 09:29:49.214 UTC [common/configtx] recurseConfigMap -> DEBU ba5 Setting policy for key Writers to +orderer.example.com | 2018-01-18 09:29:49.215 UTC [common/configtx] recurseConfigMap -> DEBU ba6 Setting policy for key Admins to +orderer.example.com | 2018-01-18 09:29:49.217 UTC [common/configtx] recurseConfigMap -> DEBU ba7 Setting policy for key Readers to +orderer.example.com | 2018-01-18 09:29:49.218 UTC [common/configtx] recurseConfigMap -> DEBU ba8 Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:49.218 UTC [common/configtx] recurseConfigMap -> DEBU ba9 Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:49.218 UTC [common/configtx] recurseConfigMap -> DEBU baa Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:49.218 UTC [common/configtx] recurseConfigMap -> DEBU bab Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:49.218 UTC [common/configtx] recurseConfigMap -> DEBU bac Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:49.218 UTC [common/configtx] recurseConfigMap -> DEBU bad Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:49.219 UTC [common/configtx] recurseConfigMap -> DEBU bae Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:49.221 UTC [common/configtx] recurseConfigMap -> DEBU baf Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:49.221 UTC [common/configtx] recurseConfigMap -> DEBU bb0 Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:49.221 UTC [common/configtx] recurseConfigMap -> DEBU bb1 Setting policy for key BlockValidation to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:49.221 UTC [common/configtx] recurseConfigMap -> DEBU bb2 Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:49.221 UTC [common/configtx] recurseConfigMap -> DEBU bb3 Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:49.222 UTC [common/configtx] recurseConfigMap -> DEBU bb4 Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:49.222 UTC [common/configtx] recurseConfigMap -> DEBU bb5 Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:49.222 UTC [common/configtx] recurseConfigMap -> DEBU bb6 Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:49.222 UTC [common/configtx] recurseConfigMap -> DEBU bb7 Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:49.222 UTC [common/configtx] processConfig -> DEBU bb8 Beginning new config for channel businesschannel +orderer.example.com | 2018-01-18 09:29:49.222 UTC [common/config] NewStandardValues -> DEBU bb9 Initializing protos for *config.ChannelProtos +orderer.example.com | 2018-01-18 09:29:49.222 UTC [common/config] initializeProtosStruct -> DEBU bba Processing field: HashingAlgorithm +orderer.example.com | 2018-01-18 09:29:49.222 UTC [common/config] initializeProtosStruct -> DEBU bbb Processing field: BlockDataHashingStructure +orderer.example.com | 2018-01-18 09:29:49.222 UTC [common/config] initializeProtosStruct -> DEBU bbc Processing field: OrdererAddresses +orderer.example.com | 2018-01-18 09:29:49.223 UTC [common/config] initializeProtosStruct -> DEBU bbd Processing field: Consortium +orderer.example.com | 2018-01-18 09:29:49.223 UTC [policies] ProposePolicy -> DEBU bbe Proposed new policy Admins for Channel +orderer.example.com | 2018-01-18 09:29:49.223 UTC [policies] ProposePolicy -> DEBU bbf Proposed new policy Readers for Channel +orderer.example.com | 2018-01-18 09:29:49.223 UTC [policies] ProposePolicy -> DEBU bc0 Proposed new policy Writers for Channel +orderer.example.com | 2018-01-18 09:29:49.223 UTC [common/config] NewStandardValues -> DEBU bc1 Initializing protos for *config.OrdererProtos +orderer.example.com | 2018-01-18 09:29:49.223 UTC [common/config] initializeProtosStruct -> DEBU bc2 Processing field: ConsensusType +orderer.example.com | 2018-01-18 09:29:49.223 UTC [common/config] initializeProtosStruct -> DEBU bc3 Processing field: BatchSize +orderer.example.com | 2018-01-18 09:29:49.224 UTC [common/config] initializeProtosStruct -> DEBU bc4 Processing field: BatchTimeout +orderer.example.com | 2018-01-18 09:29:49.224 UTC [common/config] initializeProtosStruct -> DEBU bc5 Processing field: KafkaBrokers +orderer.example.com | 2018-01-18 09:29:49.224 UTC [common/config] initializeProtosStruct -> DEBU bc6 Processing field: ChannelRestrictions +orderer.example.com | 2018-01-18 09:29:49.224 UTC [policies] ProposePolicy -> DEBU bc7 Proposed new policy BlockValidation for Orderer +orderer.example.com | 2018-01-18 09:29:49.224 UTC [policies] ProposePolicy -> DEBU bc8 Proposed new policy Readers for Orderer +orderer.example.com | 2018-01-18 09:29:49.224 UTC [policies] ProposePolicy -> DEBU bc9 Proposed new policy Writers for Orderer +orderer.example.com | 2018-01-18 09:29:49.224 UTC [policies] ProposePolicy -> DEBU bca Proposed new policy Admins for Orderer +orderer.example.com | 2018-01-18 09:29:49.224 UTC [common/config] NewStandardValues -> DEBU bcb Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:49.224 UTC [common/config] initializeProtosStruct -> DEBU bcc Processing field: MSP +orderer.example.com | 2018-01-18 09:29:49.225 UTC [policies] ProposePolicy -> DEBU bcd Proposed new policy Admins for OrdererOrg +orderer.example.com | 2018-01-18 09:29:49.225 UTC [policies] ProposePolicy -> DEBU bce Proposed new policy Readers for OrdererOrg +orderer.example.com | 2018-01-18 09:29:49.225 UTC [policies] ProposePolicy -> DEBU bcf Proposed new policy Writers for OrdererOrg +orderer.example.com | 2018-01-18 09:29:49.225 UTC [common/config] NewStandardValues -> DEBU bd0 Initializing protos for *struct {} +orderer.example.com | 2018-01-18 09:29:49.225 UTC [policies] ProposePolicy -> DEBU bd1 Proposed new policy Writers for Application +orderer.example.com | 2018-01-18 09:29:49.225 UTC [policies] ProposePolicy -> DEBU bd2 Proposed new policy Readers for Application +orderer.example.com | 2018-01-18 09:29:49.225 UTC [policies] ProposePolicy -> DEBU bd3 Proposed new policy Admins for Application +orderer.example.com | 2018-01-18 09:29:49.225 UTC [common/config] NewStandardValues -> DEBU bd4 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:49.225 UTC [common/config] initializeProtosStruct -> DEBU bd5 Processing field: MSP +orderer.example.com | 2018-01-18 09:29:49.225 UTC [common/config] NewStandardValues -> DEBU bd6 Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | 2018-01-18 09:29:49.226 UTC [common/config] initializeProtosStruct -> DEBU bd7 Processing field: AnchorPeers +orderer.example.com | 2018-01-18 09:29:49.226 UTC [common/config] NewStandardValues -> DEBU bd8 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:49.226 UTC [common/config] initializeProtosStruct -> DEBU bd9 Processing field: MSP +orderer.example.com | 2018-01-18 09:29:49.226 UTC [policies] ProposePolicy -> DEBU bda Proposed new policy Readers for Org1MSP +orderer.example.com | 2018-01-18 09:29:49.226 UTC [policies] ProposePolicy -> DEBU bdb Proposed new policy Writers for Org1MSP +orderer.example.com | 2018-01-18 09:29:49.226 UTC [policies] ProposePolicy -> DEBU bdc Proposed new policy Admins for Org1MSP +orderer.example.com | 2018-01-18 09:29:49.226 UTC [common/config] NewStandardValues -> DEBU bdd Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:49.226 UTC [common/config] initializeProtosStruct -> DEBU bde Processing field: MSP +orderer.example.com | 2018-01-18 09:29:49.226 UTC [common/config] NewStandardValues -> DEBU bdf Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | 2018-01-18 09:29:49.227 UTC [common/config] initializeProtosStruct -> DEBU be0 Processing field: AnchorPeers +orderer.example.com | 2018-01-18 09:29:49.227 UTC [common/config] NewStandardValues -> DEBU be1 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:49.227 UTC [common/config] initializeProtosStruct -> DEBU be2 Processing field: MSP +orderer.example.com | 2018-01-18 09:29:49.227 UTC [policies] ProposePolicy -> DEBU be3 Proposed new policy Admins for Org2MSP +orderer.example.com | 2018-01-18 09:29:49.228 UTC [policies] ProposePolicy -> DEBU be4 Proposed new policy Readers for Org2MSP +orderer.example.com | 2018-01-18 09:29:49.228 UTC [policies] ProposePolicy -> DEBU be5 Proposed new policy Writers for Org2MSP +orderer.example.com | 2018-01-18 09:29:49.228 UTC [common/config] validateMSP -> DEBU be6 Setting up MSP for org OrdererOrg +orderer.example.com | 2018-01-18 09:29:49.228 UTC [msp] NewBccspMsp -> DEBU be7 Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-18 09:29:49.228 UTC [msp] Setup -> DEBU be8 Setting up MSP instance OrdererMSP +orderer.example.com | 2018-01-18 09:29:49.228 UTC [msp/identity] newIdentity -> DEBU be9 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +orderer.example.com | cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW +orderer.example.com | gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +orderer.example.com | AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK +orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs +orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:49.229 UTC [msp/identity] newIdentity -> DEBU bea Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:49.230 UTC [msp/identity] newIdentity -> DEBU beb Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:49.230 UTC [msp] Validate -> DEBU bec MSP OrdererMSP validating identity +orderer.example.com | 2018-01-18 09:29:49.231 UTC [common/config] Validate -> DEBU bed Anchor peers for org Org1MSP are anchor_peers: +orderer.example.com | 2018-01-18 09:29:49.231 UTC [common/config] validateMSP -> DEBU bee Setting up MSP for org Org1MSP +orderer.example.com | 2018-01-18 09:29:49.231 UTC [msp] NewBccspMsp -> DEBU bef Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-18 09:29:49.231 UTC [msp] Setup -> DEBU bf0 Setting up MSP instance Org1MSP +orderer.example.com | 2018-01-18 09:29:49.232 UTC [msp/identity] newIdentity -> DEBU bf1 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +orderer.example.com | BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf +orderer.example.com | db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx +orderer.example.com | JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi +orderer.example.com | /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ +orderer.example.com | H7n8z1pj5w== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:49.233 UTC [msp/identity] newIdentity -> DEBU bf2 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:49.233 UTC [msp/identity] newIdentity -> DEBU bf3 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:49.234 UTC [msp] Validate -> DEBU bf4 MSP Org1MSP validating identity +orderer.example.com | 2018-01-18 09:29:49.235 UTC [common/config] Validate -> DEBU bf5 Anchor peers for org Org2MSP are anchor_peers: +orderer.example.com | 2018-01-18 09:29:49.235 UTC [common/config] validateMSP -> DEBU bf6 Setting up MSP for org Org2MSP +orderer.example.com | 2018-01-18 09:29:49.235 UTC [msp] NewBccspMsp -> DEBU bf7 Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-18 09:29:49.235 UTC [msp] Setup -> DEBU bf8 Setting up MSP instance Org2MSP +orderer.example.com | 2018-01-18 09:29:49.236 UTC [msp/identity] newIdentity -> DEBU bf9 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +orderer.example.com | mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 +orderer.example.com | sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ +orderer.example.com | xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv +orderer.example.com | WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk +orderer.example.com | SCjyRdD3aQ== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:49.236 UTC [msp/identity] newIdentity -> DEBU bfa Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +orderer.example.com | AXYxULZpXYDQXt1KaLI= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:49.238 UTC [msp/identity] newIdentity -> DEBU bfb Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +orderer.example.com | AXYxULZpXYDQXt1KaLI= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:49.239 UTC [msp] Validate -> DEBU bfc MSP Org2MSP validating identity +orderer.example.com | 2018-01-18 09:29:49.239 UTC [msp] Setup -> DEBU bfd Setting up the MSP manager (3 msps) +orderer.example.com | 2018-01-18 09:29:49.239 UTC [msp] Setup -> DEBU bfe MSP manager setup complete, setup 3 msps +orderer.example.com | 2018-01-18 09:29:49.239 UTC [msp] GetLocalMSP -> DEBU bff Returning existing local MSP +orderer.example.com | 2018-01-18 09:29:49.240 UTC [msp] GetDefaultSigningIdentity -> DEBU c00 Obtaining default signing identity +orderer.example.com | 2018-01-18 09:29:49.241 UTC [msp] GetLocalMSP -> DEBU c01 Returning existing local MSP +orderer.example.com | 2018-01-18 09:29:49.241 UTC [msp] GetDefaultSigningIdentity -> DEBU c02 Obtaining default signing identity +orderer.example.com | 2018-01-18 09:29:49.241 UTC [msp/identity] Sign -> DEBU c03 Sign: plaintext: 0AB7060A1B08011A06088DD281D30522...409D6404C8A53C39F9ABDB46BE6954C4 +orderer.example.com | 2018-01-18 09:29:49.241 UTC [msp/identity] Sign -> DEBU c04 Sign: digest: 3B37DBD02F07C00F099392A6C41F5C07A28C8DB5C74412436881CAF3D1720FE3 +orderer.example.com | 2018-01-18 09:29:49.242 UTC [orderer/common/broadcast] Handle -> DEBU c05 [channel: businesschannel] Broadcast is filtering message of type CONFIG +orderer.example.com | 2018-01-18 09:29:49.242 UTC [policies] GetPolicy -> DEBU c06 Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:49.242 UTC [cauthdsl] func1 -> DEBU c07 0xc42014a470 gate 1516267789242388472 evaluation starts +orderer.example.com | 2018-01-18 09:29:49.242 UTC [cauthdsl] func2 -> DEBU c08 0xc42014a470 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:29:49.242 UTC [cauthdsl] func2 -> DEBU c09 0xc42014a470 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:29:49.243 UTC [msp/identity] newIdentity -> DEBU c0a Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq +orderer.example.com | hkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz +orderer.example.com | MKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw +orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN +orderer.example.com | RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH +orderer.example.com | /4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:49.243 UTC [cauthdsl] func2 -> DEBU c0b 0xc42014a470 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +orderer.example.com | 2018-01-18 09:29:49.243 UTC [cauthdsl] func2 -> DEBU c0c 0xc42014a470 principal evaluation fails +orderer.example.com | 2018-01-18 09:29:49.243 UTC [cauthdsl] func1 -> DEBU c0d 0xc42014a470 gate 1516267789242388472 evaluation fails +orderer.example.com | 2018-01-18 09:29:49.243 UTC [cauthdsl] func1 -> DEBU c0e 0xc42014a498 gate 1516267789243906812 evaluation starts +orderer.example.com | 2018-01-18 09:29:49.244 UTC [cauthdsl] func2 -> DEBU c0f 0xc42014a498 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:29:49.244 UTC [cauthdsl] func2 -> DEBU c10 0xc42014a498 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:29:49.244 UTC [msp/identity] newIdentity -> DEBU c11 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq +orderer.example.com | hkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz +orderer.example.com | MKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw +orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN +orderer.example.com | RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH +orderer.example.com | /4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:49.245 UTC [cauthdsl] func2 -> DEBU c12 0xc42014a498 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +orderer.example.com | 2018-01-18 09:29:49.245 UTC [cauthdsl] func2 -> DEBU c13 0xc42014a498 principal evaluation fails +orderer.example.com | 2018-01-18 09:29:49.245 UTC [cauthdsl] func1 -> DEBU c14 0xc42014a498 gate 1516267789243906812 evaluation fails +orderer.example.com | 2018-01-18 09:29:49.245 UTC [cauthdsl] func1 -> DEBU c15 0xc42014a4a8 gate 1516267789245973578 evaluation starts +orderer.example.com | 2018-01-18 09:29:49.246 UTC [cauthdsl] func2 -> DEBU c16 0xc42014a4a8 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:29:49.246 UTC [cauthdsl] func2 -> DEBU c17 0xc42014a4a8 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:29:49.246 UTC [msp/identity] newIdentity -> DEBU c18 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq +orderer.example.com | hkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz +orderer.example.com | MKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw +orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN +orderer.example.com | RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH +orderer.example.com | /4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:49.246 UTC [msp] SatisfiesPrincipal -> DEBU c19 Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | 2018-01-18 09:29:49.247 UTC [msp] Validate -> DEBU c1a MSP OrdererMSP validating identity +orderer.example.com | 2018-01-18 09:29:49.247 UTC [cauthdsl] func2 -> DEBU c1b 0xc42014a4a8 principal matched by identity 0 +orderer.example.com | 2018-01-18 09:29:49.247 UTC [msp/identity] Verify -> DEBU c1c Verify: digest = 00000000 3b 37 db d0 2f 07 c0 0f 09 93 92 a6 c4 1f 5c 07 |;7../.........\.| +orderer.example.com | 00000010 a2 8c 8d b5 c7 44 12 43 68 81 ca f3 d1 72 0f e3 |.....D.Ch....r..| +orderer.example.com | 2018-01-18 09:29:49.247 UTC [msp/identity] Verify -> DEBU c1d Verify: sig = 00000000 30 44 02 20 0e fc 11 50 96 25 9d a1 58 54 c7 37 |0D. ...P.%..XT.7| +orderer.example.com | 00000010 8a 5d 29 62 ee fb 8f 0b 69 75 55 c3 fd 6d 07 15 |.])b....iuU..m..| +orderer.example.com | 00000020 ac 3b 3f 26 02 20 29 91 da 52 6a da 16 74 8f cc |.;?&. )..Rj..t..| +orderer.example.com | 00000030 20 dc 28 82 b9 5e 2f 2a 23 e2 60 1d 23 ba 4b dc | .(..^/*#.`.#.K.| +orderer.example.com | 00000040 bd 92 c2 87 39 d0 |....9.| +orderer.example.com | 2018-01-18 09:29:49.248 UTC [cauthdsl] func2 -> DEBU c1e 0xc42014a4a8 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-18 09:29:49.248 UTC [cauthdsl] func1 -> DEBU c1f 0xc42014a4a8 gate 1516267789245973578 evaluation succeeds +orderer.example.com | 2018-01-18 09:29:49.248 UTC [orderer/common/sigfilter] Apply -> DEBU c20 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420ba0fc0 1 [0xc4200268f8 0xc4200269b8]}) %!s(*policies.implicitMetaPolicy=&{0xc420ba1d00 1 [0xc420026a58]})]} +orderer.example.com | 2018-01-18 09:29:49.249 UTC [common/configtx] addToMap -> DEBU c21 Adding to config map: [Groups] /Channel +orderer.example.com | 2018-01-18 09:29:49.249 UTC [common/configtx] addToMap -> DEBU c22 Adding to config map: [Groups] /Channel/Application +orderer.example.com | 2018-01-18 09:29:49.249 UTC [common/configtx] addToMap -> DEBU c23 Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | 2018-01-18 09:29:49.249 UTC [common/configtx] addToMap -> DEBU c24 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +orderer.example.com | 2018-01-18 09:29:49.249 UTC [common/configtx] addToMap -> DEBU c25 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | 2018-01-18 09:29:49.249 UTC [common/configtx] addToMap -> DEBU c26 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | 2018-01-18 09:29:49.249 UTC [common/configtx] addToMap -> DEBU c27 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | 2018-01-18 09:29:49.249 UTC [common/configtx] addToMap -> DEBU c28 Adding to config map: [Groups] /Channel +orderer.example.com | 2018-01-18 09:29:49.249 UTC [common/configtx] addToMap -> DEBU c29 Adding to config map: [Groups] /Channel/Application +orderer.example.com | 2018-01-18 09:29:49.249 UTC [common/configtx] addToMap -> DEBU c2a Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | 2018-01-18 09:29:49.249 UTC [common/configtx] addToMap -> DEBU c2b Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers +orderer.example.com | 2018-01-18 09:29:49.249 UTC [common/configtx] addToMap -> DEBU c2c Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +orderer.example.com | 2018-01-18 09:29:49.249 UTC [common/configtx] addToMap -> DEBU c2d Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | 2018-01-18 09:29:49.250 UTC [common/configtx] addToMap -> DEBU c2e Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | 2018-01-18 09:29:49.250 UTC [common/configtx] addToMap -> DEBU c2f Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | 2018-01-18 09:29:49.250 UTC [policies] GetPolicy -> DEBU c30 Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:49.251 UTC [cauthdsl] func1 -> DEBU c31 0xc42014ab48 gate 1516267789251298215 evaluation starts +orderer.example.com | 2018-01-18 09:29:49.251 UTC [cauthdsl] func2 -> DEBU c32 0xc42014ab48 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:29:49.251 UTC [cauthdsl] func2 -> DEBU c33 0xc42014ab48 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:29:49.253 UTC [msp/identity] newIdentity -> DEBU c34 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +orderer.example.com | AXYxULZpXYDQXt1KaLI= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:49.253 UTC [msp] SatisfiesPrincipal -> DEBU c35 Checking if identity satisfies ADMIN role for Org2MSP +orderer.example.com | 2018-01-18 09:29:49.253 UTC [cauthdsl] func2 -> DEBU c36 0xc42014ab48 principal matched by identity 0 +orderer.example.com | 2018-01-18 09:29:49.253 UTC [msp/identity] Verify -> DEBU c37 Verify: digest = 00000000 e3 2e bc 09 2e aa 2c ee 2d d8 57 24 a8 da 75 26 |......,.-.W$..u&| +orderer.example.com | 00000010 76 f4 64 21 f8 97 85 b8 3e 1d 7e 6e 42 62 03 14 |v.d!....>.~nBb..| +orderer.example.com | 2018-01-18 09:29:49.253 UTC [msp/identity] Verify -> DEBU c38 Verify: sig = 00000000 30 44 02 20 48 e1 84 3e 07 f3 e5 77 3f 0a 13 70 |0D. H..>...w?..p| +orderer.example.com | 00000010 88 13 09 23 43 ec 85 b3 36 94 70 17 22 ce 11 47 |...#C...6.p."..G| +orderer.example.com | 00000020 bb 3f dc 05 02 20 54 76 42 4a a3 19 16 da fe 43 |.?... TvBJ.....C| +orderer.example.com | 00000030 28 50 a5 02 b8 00 63 81 75 68 de 48 c5 86 e0 ee |(P....c.uh.H....| +orderer.example.com | 00000040 7c 87 76 59 5d 71 ||.vY]q| +orderer.example.com | 2018-01-18 09:29:49.254 UTC [cauthdsl] func2 -> DEBU c39 0xc42014ab48 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-18 09:29:49.254 UTC [cauthdsl] func1 -> DEBU c3a 0xc42014ab48 gate 1516267789251298215 evaluation succeeds +orderer.example.com | 2018-01-18 09:29:49.254 UTC [common/configtx] recurseConfigMap -> DEBU c3b Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:49.255 UTC [common/configtx] recurseConfigMap -> DEBU c3c Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:49.255 UTC [common/configtx] recurseConfigMap -> DEBU c3d Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:49.255 UTC [common/configtx] recurseConfigMap -> DEBU c3e Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:49.255 UTC [common/configtx] recurseConfigMap -> DEBU c3f Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:49.255 UTC [common/configtx] recurseConfigMap -> DEBU c40 Setting policy for key BlockValidation to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:49.255 UTC [common/configtx] recurseConfigMap -> DEBU c41 Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:49.256 UTC [common/configtx] recurseConfigMap -> DEBU c42 Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:49.256 UTC [common/configtx] recurseConfigMap -> DEBU c43 Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:49.256 UTC [common/configtx] recurseConfigMap -> DEBU c44 Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:49.256 UTC [common/configtx] recurseConfigMap -> DEBU c45 Setting policy for key Admins to +orderer.example.com | 2018-01-18 09:29:49.256 UTC [common/configtx] recurseConfigMap -> DEBU c46 Setting policy for key Readers to +orderer.example.com | 2018-01-18 09:29:49.256 UTC [common/configtx] recurseConfigMap -> DEBU c47 Setting policy for key Writers to +orderer.example.com | 2018-01-18 09:29:49.257 UTC [common/configtx] recurseConfigMap -> DEBU c48 Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:49.257 UTC [common/configtx] recurseConfigMap -> DEBU c49 Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:49.257 UTC [common/configtx] recurseConfigMap -> DEBU c4a Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:49.257 UTC [common/configtx] recurseConfigMap -> DEBU c4b Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:49.257 UTC [common/configtx] recurseConfigMap -> DEBU c4c Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:49.257 UTC [common/configtx] recurseConfigMap -> DEBU c4d Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:49.257 UTC [common/configtx] processConfig -> DEBU c4e Beginning new config for channel businesschannel +orderer.example.com | 2018-01-18 09:29:49.257 UTC [common/config] NewStandardValues -> DEBU c4f Initializing protos for *config.ChannelProtos +orderer.example.com | 2018-01-18 09:29:49.257 UTC [common/config] initializeProtosStruct -> DEBU c50 Processing field: HashingAlgorithm +orderer.example.com | 2018-01-18 09:29:49.257 UTC [common/config] initializeProtosStruct -> DEBU c51 Processing field: BlockDataHashingStructure +orderer.example.com | 2018-01-18 09:29:49.257 UTC [common/config] initializeProtosStruct -> DEBU c52 Processing field: OrdererAddresses +orderer.example.com | 2018-01-18 09:29:49.257 UTC [common/config] initializeProtosStruct -> DEBU c53 Processing field: Consortium +orderer.example.com | 2018-01-18 09:29:49.257 UTC [policies] ProposePolicy -> DEBU c54 Proposed new policy Admins for Channel +orderer.example.com | 2018-01-18 09:29:49.257 UTC [policies] ProposePolicy -> DEBU c55 Proposed new policy Readers for Channel +orderer.example.com | 2018-01-18 09:29:49.257 UTC [policies] ProposePolicy -> DEBU c56 Proposed new policy Writers for Channel +orderer.example.com | 2018-01-18 09:29:49.257 UTC [common/config] NewStandardValues -> DEBU c57 Initializing protos for *config.OrdererProtos +orderer.example.com | 2018-01-18 09:29:49.257 UTC [common/config] initializeProtosStruct -> DEBU c58 Processing field: ConsensusType +orderer.example.com | 2018-01-18 09:29:49.257 UTC [common/config] initializeProtosStruct -> DEBU c59 Processing field: BatchSize +orderer.example.com | 2018-01-18 09:29:49.257 UTC [common/config] initializeProtosStruct -> DEBU c5a Processing field: BatchTimeout +orderer.example.com | 2018-01-18 09:29:49.257 UTC [common/config] initializeProtosStruct -> DEBU c5b Processing field: KafkaBrokers +orderer.example.com | 2018-01-18 09:29:49.258 UTC [common/config] initializeProtosStruct -> DEBU c5c Processing field: ChannelRestrictions +orderer.example.com | 2018-01-18 09:29:49.258 UTC [policies] ProposePolicy -> DEBU c5d Proposed new policy Readers for Orderer +orderer.example.com | 2018-01-18 09:29:49.258 UTC [policies] ProposePolicy -> DEBU c5e Proposed new policy Writers for Orderer +orderer.example.com | 2018-01-18 09:29:49.258 UTC [policies] ProposePolicy -> DEBU c5f Proposed new policy Admins for Orderer +orderer.example.com | 2018-01-18 09:29:49.258 UTC [policies] ProposePolicy -> DEBU c60 Proposed new policy BlockValidation for Orderer +orderer.example.com | 2018-01-18 09:29:49.258 UTC [common/config] NewStandardValues -> DEBU c61 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:49.258 UTC [common/config] initializeProtosStruct -> DEBU c62 Processing field: MSP +orderer.example.com | 2018-01-18 09:29:49.258 UTC [policies] ProposePolicy -> DEBU c63 Proposed new policy Admins for OrdererOrg +orderer.example.com | 2018-01-18 09:29:49.258 UTC [policies] ProposePolicy -> DEBU c64 Proposed new policy Readers for OrdererOrg +orderer.example.com | 2018-01-18 09:29:49.259 UTC [policies] ProposePolicy -> DEBU c65 Proposed new policy Writers for OrdererOrg +orderer.example.com | 2018-01-18 09:29:49.259 UTC [common/config] NewStandardValues -> DEBU c66 Initializing protos for *struct {} +orderer.example.com | 2018-01-18 09:29:49.259 UTC [policies] ProposePolicy -> DEBU c67 Proposed new policy Writers for Application +orderer.example.com | 2018-01-18 09:29:49.259 UTC [policies] ProposePolicy -> DEBU c68 Proposed new policy Readers for Application +orderer.example.com | 2018-01-18 09:29:49.260 UTC [policies] ProposePolicy -> DEBU c69 Proposed new policy Admins for Application +orderer.example.com | 2018-01-18 09:29:49.260 UTC [common/config] NewStandardValues -> DEBU c6a Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:49.260 UTC [common/config] initializeProtosStruct -> DEBU c6b Processing field: MSP +orderer.example.com | 2018-01-18 09:29:49.260 UTC [common/config] NewStandardValues -> DEBU c6c Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | 2018-01-18 09:29:49.260 UTC [common/config] initializeProtosStruct -> DEBU c6d Processing field: AnchorPeers +orderer.example.com | 2018-01-18 09:29:49.260 UTC [common/config] NewStandardValues -> DEBU c6e Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:49.260 UTC [common/config] initializeProtosStruct -> DEBU c6f Processing field: MSP +orderer.example.com | 2018-01-18 09:29:49.260 UTC [policies] ProposePolicy -> DEBU c70 Proposed new policy Readers for Org1MSP +orderer.example.com | 2018-01-18 09:29:49.260 UTC [policies] ProposePolicy -> DEBU c71 Proposed new policy Writers for Org1MSP +orderer.example.com | 2018-01-18 09:29:49.260 UTC [policies] ProposePolicy -> DEBU c72 Proposed new policy Admins for Org1MSP +orderer.example.com | 2018-01-18 09:29:49.261 UTC [common/config] NewStandardValues -> DEBU c73 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:49.261 UTC [common/config] initializeProtosStruct -> DEBU c74 Processing field: MSP +orderer.example.com | 2018-01-18 09:29:49.261 UTC [common/config] NewStandardValues -> DEBU c75 Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | 2018-01-18 09:29:49.261 UTC [common/config] initializeProtosStruct -> DEBU c76 Processing field: AnchorPeers +orderer.example.com | 2018-01-18 09:29:49.261 UTC [common/config] NewStandardValues -> DEBU c77 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:49.261 UTC [common/config] initializeProtosStruct -> DEBU c78 Processing field: MSP +orderer.example.com | 2018-01-18 09:29:49.261 UTC [policies] ProposePolicy -> DEBU c79 Proposed new policy Admins for Org2MSP +orderer.example.com | 2018-01-18 09:29:49.261 UTC [policies] ProposePolicy -> DEBU c7a Proposed new policy Readers for Org2MSP +orderer.example.com | 2018-01-18 09:29:49.261 UTC [policies] ProposePolicy -> DEBU c7b Proposed new policy Writers for Org2MSP +orderer.example.com | 2018-01-18 09:29:49.261 UTC [common/config] validateMSP -> DEBU c7c Setting up MSP for org OrdererOrg +orderer.example.com | 2018-01-18 09:29:49.261 UTC [msp] NewBccspMsp -> DEBU c7d Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-18 09:29:49.261 UTC [msp] Setup -> DEBU c7e Setting up MSP instance OrdererMSP +orderer.example.com | 2018-01-18 09:29:49.262 UTC [msp/identity] newIdentity -> DEBU c7f Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +orderer.example.com | cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW +orderer.example.com | gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +orderer.example.com | AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK +orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs +orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:49.263 UTC [msp/identity] newIdentity -> DEBU c80 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:49.263 UTC [msp/identity] newIdentity -> DEBU c81 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:49.265 UTC [msp] Validate -> DEBU c82 MSP OrdererMSP validating identity +orderer.example.com | 2018-01-18 09:29:49.266 UTC [common/config] Validate -> DEBU c83 Anchor peers for org Org1MSP are anchor_peers: +orderer.example.com | 2018-01-18 09:29:49.266 UTC [common/config] validateMSP -> DEBU c84 Setting up MSP for org Org1MSP +orderer.example.com | 2018-01-18 09:29:49.266 UTC [msp] NewBccspMsp -> DEBU c85 Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-18 09:29:49.266 UTC [msp] Setup -> DEBU c86 Setting up MSP instance Org1MSP +orderer.example.com | 2018-01-18 09:29:49.267 UTC [msp/identity] newIdentity -> DEBU c87 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +orderer.example.com | BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf +orderer.example.com | db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx +orderer.example.com | JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi +orderer.example.com | /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ +orderer.example.com | H7n8z1pj5w== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:49.267 UTC [msp/identity] newIdentity -> DEBU c88 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:49.271 UTC [msp/identity] newIdentity -> DEBU c89 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:49.272 UTC [msp] Validate -> DEBU c8a MSP Org1MSP validating identity +orderer.example.com | 2018-01-18 09:29:49.273 UTC [common/config] Validate -> DEBU c8b Anchor peers for org Org2MSP are anchor_peers: +orderer.example.com | 2018-01-18 09:29:49.273 UTC [common/config] validateMSP -> DEBU c8c Setting up MSP for org Org2MSP +orderer.example.com | 2018-01-18 09:29:49.273 UTC [msp] NewBccspMsp -> DEBU c8d Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-18 09:29:49.273 UTC [msp] Setup -> DEBU c8e Setting up MSP instance Org2MSP +orderer.example.com | 2018-01-18 09:29:49.274 UTC [msp/identity] newIdentity -> DEBU c8f Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +orderer.example.com | mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 +orderer.example.com | sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ +orderer.example.com | xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv +orderer.example.com | WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk +orderer.example.com | SCjyRdD3aQ== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:49.275 UTC [msp/identity] newIdentity -> DEBU c90 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +orderer.example.com | AXYxULZpXYDQXt1KaLI= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:49.275 UTC [msp/identity] newIdentity -> DEBU c91 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +orderer.example.com | AXYxULZpXYDQXt1KaLI= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:49.277 UTC [msp] Validate -> DEBU c92 MSP Org2MSP validating identity +orderer.example.com | 2018-01-18 09:29:49.278 UTC [msp] Setup -> DEBU c93 Setting up the MSP manager (3 msps) +orderer.example.com | 2018-01-18 09:29:49.278 UTC [msp] Setup -> DEBU c94 MSP manager setup complete, setup 3 msps +orderer.example.com | 2018-01-18 09:29:49.278 UTC [orderer/common/broadcast] Handle -> DEBU c95 [channel: businesschannel] Broadcast has successfully enqueued message of type CONFIG +orderer.example.com | 2018-01-18 09:29:49.278 UTC [policies] GetPolicy -> DEBU c96 Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:49.278 UTC [cauthdsl] func1 -> DEBU c97 0xc420026050 gate 1516267789278983865 evaluation starts +orderer.example.com | 2018-01-18 09:29:49.279 UTC [cauthdsl] func2 -> DEBU c98 0xc420026050 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:29:49.279 UTC [cauthdsl] func2 -> DEBU c99 0xc420026050 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:29:49.279 UTC [msp/identity] newIdentity -> DEBU c9a Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq +orderer.example.com | hkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz +orderer.example.com | MKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw +orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN +orderer.example.com | RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH +orderer.example.com | /4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:49.280 UTC [cauthdsl] func2 -> DEBU c9b 0xc420026050 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +orderer.example.com | 2018-01-18 09:29:49.280 UTC [cauthdsl] func2 -> DEBU c9c 0xc420026050 principal evaluation fails +orderer.example.com | 2018-01-18 09:29:49.280 UTC [cauthdsl] func1 -> DEBU c9d 0xc420026050 gate 1516267789278983865 evaluation fails +orderer.example.com | 2018-01-18 09:29:49.280 UTC [cauthdsl] func1 -> DEBU c9e 0xc420026078 gate 1516267789280920596 evaluation starts +orderer.example.com | 2018-01-18 09:29:49.281 UTC [cauthdsl] func2 -> DEBU c9f 0xc420026078 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:29:49.281 UTC [cauthdsl] func2 -> DEBU ca0 0xc420026078 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:29:49.282 UTC [msp/identity] newIdentity -> DEBU ca1 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq +orderer.example.com | hkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz +orderer.example.com | MKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw +orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN +orderer.example.com | RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH +orderer.example.com | /4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:49.283 UTC [orderer/common/deliver] Handle -> WARN ca2 Error reading from stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | 2018-01-18 09:29:49.283 UTC [orderer/main] func1 -> DEBU ca3 Closing Deliver stream +orderer.example.com | 2018-01-18 09:29:49.284 UTC [orderer/common/broadcast] Handle -> WARN ca4 Error reading from stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | 2018-01-18 09:29:49.284 UTC [orderer/main] func1 -> DEBU ca5 Closing Broadcast stream +orderer.example.com | 2018-01-18 09:29:49.287 UTC [cauthdsl] func2 -> DEBU ca6 0xc420026078 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +orderer.example.com | 2018-01-18 09:29:49.287 UTC [cauthdsl] func2 -> DEBU ca7 0xc420026078 principal evaluation fails +orderer.example.com | 2018-01-18 09:29:49.287 UTC [cauthdsl] func1 -> DEBU ca8 0xc420026078 gate 1516267789280920596 evaluation fails +orderer.example.com | 2018-01-18 09:29:49.287 UTC [cauthdsl] func1 -> DEBU ca9 0xc420026088 gate 1516267789287971869 evaluation starts +orderer.example.com | 2018-01-18 09:29:49.288 UTC [cauthdsl] func2 -> DEBU caa 0xc420026088 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:29:49.288 UTC [cauthdsl] func2 -> DEBU cab 0xc420026088 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:29:49.289 UTC [msp/identity] newIdentity -> DEBU cac Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq +orderer.example.com | hkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz +orderer.example.com | MKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw +orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN +orderer.example.com | RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH +orderer.example.com | /4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:49.289 UTC [msp] SatisfiesPrincipal -> DEBU cad Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | 2018-01-18 09:29:49.290 UTC [msp] Validate -> DEBU cae MSP OrdererMSP validating identity +orderer.example.com | 2018-01-18 09:29:49.291 UTC [cauthdsl] func2 -> DEBU caf 0xc420026088 principal matched by identity 0 +orderer.example.com | 2018-01-18 09:29:49.292 UTC [msp/identity] Verify -> DEBU cb0 Verify: digest = 00000000 3b 37 db d0 2f 07 c0 0f 09 93 92 a6 c4 1f 5c 07 |;7../.........\.| +orderer.example.com | 00000010 a2 8c 8d b5 c7 44 12 43 68 81 ca f3 d1 72 0f e3 |.....D.Ch....r..| +orderer.example.com | 2018-01-18 09:29:49.292 UTC [msp/identity] Verify -> DEBU cb1 Verify: sig = 00000000 30 44 02 20 0e fc 11 50 96 25 9d a1 58 54 c7 37 |0D. ...P.%..XT.7| +orderer.example.com | 00000010 8a 5d 29 62 ee fb 8f 0b 69 75 55 c3 fd 6d 07 15 |.])b....iuU..m..| +orderer.example.com | 00000020 ac 3b 3f 26 02 20 29 91 da 52 6a da 16 74 8f cc |.;?&. )..Rj..t..| +orderer.example.com | 00000030 20 dc 28 82 b9 5e 2f 2a 23 e2 60 1d 23 ba 4b dc | .(..^/*#.`.#.K.| +orderer.example.com | 00000040 bd 92 c2 87 39 d0 |....9.| +orderer.example.com | 2018-01-18 09:29:49.293 UTC [cauthdsl] func2 -> DEBU cb2 0xc420026088 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-18 09:29:49.293 UTC [cauthdsl] func1 -> DEBU cb3 0xc420026088 gate 1516267789287971869 evaluation succeeds +orderer.example.com | 2018-01-18 09:29:49.293 UTC [orderer/common/sigfilter] Apply -> DEBU cb4 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420ba0fc0 1 [0xc4200268f8 0xc4200269b8]}) %!s(*policies.implicitMetaPolicy=&{0xc420ba1d00 1 [0xc420026a58]})]} +orderer.example.com | 2018-01-18 09:29:49.294 UTC [common/configtx] addToMap -> DEBU cb5 Adding to config map: [Groups] /Channel +orderer.example.com | 2018-01-18 09:29:49.294 UTC [common/configtx] addToMap -> DEBU cb6 Adding to config map: [Groups] /Channel/Application +orderer.example.com | 2018-01-18 09:29:49.294 UTC [common/configtx] addToMap -> DEBU cb7 Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | 2018-01-18 09:29:49.294 UTC [common/configtx] addToMap -> DEBU cb8 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +orderer.example.com | 2018-01-18 09:29:49.294 UTC [common/configtx] addToMap -> DEBU cb9 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | 2018-01-18 09:29:49.294 UTC [common/configtx] addToMap -> DEBU cba Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | 2018-01-18 09:29:49.294 UTC [common/configtx] addToMap -> DEBU cbb Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | 2018-01-18 09:29:49.295 UTC [common/configtx] addToMap -> DEBU cbc Adding to config map: [Groups] /Channel +orderer.example.com | 2018-01-18 09:29:49.295 UTC [common/configtx] addToMap -> DEBU cbd Adding to config map: [Groups] /Channel/Application +orderer.example.com | 2018-01-18 09:29:49.295 UTC [common/configtx] addToMap -> DEBU cbe Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | 2018-01-18 09:29:49.295 UTC [common/configtx] addToMap -> DEBU cbf Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers +orderer.example.com | 2018-01-18 09:29:49.295 UTC [common/configtx] addToMap -> DEBU cc0 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +orderer.example.com | 2018-01-18 09:29:49.296 UTC [common/configtx] addToMap -> DEBU cc1 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | 2018-01-18 09:29:49.296 UTC [common/configtx] addToMap -> DEBU cc2 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | 2018-01-18 09:29:49.296 UTC [common/configtx] addToMap -> DEBU cc3 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | 2018-01-18 09:29:49.296 UTC [policies] GetPolicy -> DEBU cc4 Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:49.296 UTC [cauthdsl] func1 -> DEBU cc5 0xc420026b08 gate 1516267789296524190 evaluation starts +orderer.example.com | 2018-01-18 09:29:49.296 UTC [cauthdsl] func2 -> DEBU cc6 0xc420026b08 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:29:49.298 UTC [cauthdsl] func2 -> DEBU cc7 0xc420026b08 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:29:49.299 UTC [msp/identity] newIdentity -> DEBU cc8 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +orderer.example.com | AXYxULZpXYDQXt1KaLI= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:49.299 UTC [msp] SatisfiesPrincipal -> DEBU cc9 Checking if identity satisfies ADMIN role for Org2MSP +orderer.example.com | 2018-01-18 09:29:49.299 UTC [cauthdsl] func2 -> DEBU cca 0xc420026b08 principal matched by identity 0 +orderer.example.com | 2018-01-18 09:29:49.300 UTC [msp/identity] Verify -> DEBU ccb Verify: digest = 00000000 e3 2e bc 09 2e aa 2c ee 2d d8 57 24 a8 da 75 26 |......,.-.W$..u&| +orderer.example.com | 00000010 76 f4 64 21 f8 97 85 b8 3e 1d 7e 6e 42 62 03 14 |v.d!....>.~nBb..| +orderer.example.com | 2018-01-18 09:29:49.300 UTC [msp/identity] Verify -> DEBU ccc Verify: sig = 00000000 30 44 02 20 48 e1 84 3e 07 f3 e5 77 3f 0a 13 70 |0D. H..>...w?..p| +orderer.example.com | 00000010 88 13 09 23 43 ec 85 b3 36 94 70 17 22 ce 11 47 |...#C...6.p."..G| +orderer.example.com | 00000020 bb 3f dc 05 02 20 54 76 42 4a a3 19 16 da fe 43 |.?... TvBJ.....C| +orderer.example.com | 00000030 28 50 a5 02 b8 00 63 81 75 68 de 48 c5 86 e0 ee |(P....c.uh.H....| +orderer.example.com | 00000040 7c 87 76 59 5d 71 ||.vY]q| +orderer.example.com | 2018-01-18 09:29:49.300 UTC [cauthdsl] func2 -> DEBU ccd 0xc420026b08 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-18 09:29:49.300 UTC [cauthdsl] func1 -> DEBU cce 0xc420026b08 gate 1516267789296524190 evaluation succeeds +orderer.example.com | 2018-01-18 09:29:49.301 UTC [common/configtx] recurseConfigMap -> DEBU ccf Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:49.301 UTC [common/configtx] recurseConfigMap -> DEBU cd0 Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:49.330 UTC [common/configtx] recurseConfigMap -> DEBU cd1 Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:49.342 UTC [common/configtx] recurseConfigMap -> DEBU cd2 Setting policy for key Readers to +orderer.example.com | 2018-01-18 09:29:49.345 UTC [common/configtx] recurseConfigMap -> DEBU cd3 Setting policy for key Writers to +orderer.example.com | 2018-01-18 09:29:49.345 UTC [common/configtx] recurseConfigMap -> DEBU cd4 Setting policy for key Admins to +orderer.example.com | 2018-01-18 09:29:49.345 UTC [common/configtx] recurseConfigMap -> DEBU cd5 Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:49.345 UTC [common/configtx] recurseConfigMap -> DEBU cd6 Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:49.345 UTC [common/configtx] recurseConfigMap -> DEBU cd7 Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:49.346 UTC [common/configtx] recurseConfigMap -> DEBU cd8 Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:49.346 UTC [common/configtx] recurseConfigMap -> DEBU cd9 Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:49.346 UTC [common/configtx] recurseConfigMap -> DEBU cda Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:49.346 UTC [common/configtx] recurseConfigMap -> DEBU cdb Setting policy for key BlockValidation to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:49.346 UTC [common/configtx] recurseConfigMap -> DEBU cdc Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:49.346 UTC [common/configtx] recurseConfigMap -> DEBU cdd Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:49.346 UTC [common/configtx] recurseConfigMap -> DEBU cde Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:49.346 UTC [common/configtx] recurseConfigMap -> DEBU cdf Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:49.347 UTC [common/configtx] recurseConfigMap -> DEBU ce0 Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:49.347 UTC [common/configtx] recurseConfigMap -> DEBU ce1 Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:49.347 UTC [common/configtx] processConfig -> DEBU ce2 Beginning new config for channel businesschannel +orderer.example.com | 2018-01-18 09:29:49.347 UTC [common/config] NewStandardValues -> DEBU ce3 Initializing protos for *config.ChannelProtos +orderer.example.com | 2018-01-18 09:29:49.348 UTC [common/config] initializeProtosStruct -> DEBU ce4 Processing field: HashingAlgorithm +orderer.example.com | 2018-01-18 09:29:49.348 UTC [common/config] initializeProtosStruct -> DEBU ce5 Processing field: BlockDataHashingStructure +orderer.example.com | 2018-01-18 09:29:49.349 UTC [common/config] initializeProtosStruct -> DEBU ce6 Processing field: OrdererAddresses +orderer.example.com | 2018-01-18 09:29:49.349 UTC [common/config] initializeProtosStruct -> DEBU ce7 Processing field: Consortium +orderer.example.com | 2018-01-18 09:29:49.349 UTC [policies] ProposePolicy -> DEBU ce8 Proposed new policy Admins for Channel +orderer.example.com | 2018-01-18 09:29:49.350 UTC [policies] ProposePolicy -> DEBU ce9 Proposed new policy Readers for Channel +orderer.example.com | 2018-01-18 09:29:49.350 UTC [policies] ProposePolicy -> DEBU cea Proposed new policy Writers for Channel +orderer.example.com | 2018-01-18 09:29:49.352 UTC [common/config] NewStandardValues -> DEBU ceb Initializing protos for *config.OrdererProtos +orderer.example.com | 2018-01-18 09:29:49.352 UTC [common/config] initializeProtosStruct -> DEBU cec Processing field: ConsensusType +orderer.example.com | 2018-01-18 09:29:49.356 UTC [common/config] initializeProtosStruct -> DEBU ced Processing field: BatchSize +orderer.example.com | 2018-01-18 09:29:49.359 UTC [common/config] initializeProtosStruct -> DEBU cee Processing field: BatchTimeout +orderer.example.com | 2018-01-18 09:29:49.360 UTC [common/config] initializeProtosStruct -> DEBU cef Processing field: KafkaBrokers +orderer.example.com | 2018-01-18 09:29:49.360 UTC [common/config] initializeProtosStruct -> DEBU cf0 Processing field: ChannelRestrictions +orderer.example.com | 2018-01-18 09:29:49.362 UTC [policies] ProposePolicy -> DEBU cf1 Proposed new policy BlockValidation for Orderer +orderer.example.com | 2018-01-18 09:29:49.362 UTC [policies] ProposePolicy -> DEBU cf2 Proposed new policy Readers for Orderer +orderer.example.com | 2018-01-18 09:29:49.362 UTC [policies] ProposePolicy -> DEBU cf3 Proposed new policy Writers for Orderer +orderer.example.com | 2018-01-18 09:29:49.363 UTC [policies] ProposePolicy -> DEBU cf4 Proposed new policy Admins for Orderer +orderer.example.com | 2018-01-18 09:29:49.363 UTC [common/config] NewStandardValues -> DEBU cf5 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:49.363 UTC [common/config] initializeProtosStruct -> DEBU cf6 Processing field: MSP +orderer.example.com | 2018-01-18 09:29:49.363 UTC [policies] ProposePolicy -> DEBU cf7 Proposed new policy Admins for OrdererOrg +orderer.example.com | 2018-01-18 09:29:49.364 UTC [policies] ProposePolicy -> DEBU cf8 Proposed new policy Readers for OrdererOrg +orderer.example.com | 2018-01-18 09:29:49.364 UTC [policies] ProposePolicy -> DEBU cf9 Proposed new policy Writers for OrdererOrg +orderer.example.com | 2018-01-18 09:29:49.364 UTC [common/config] NewStandardValues -> DEBU cfa Initializing protos for *struct {} +orderer.example.com | 2018-01-18 09:29:49.364 UTC [policies] ProposePolicy -> DEBU cfb Proposed new policy Readers for Application +orderer.example.com | 2018-01-18 09:29:49.365 UTC [policies] ProposePolicy -> DEBU cfc Proposed new policy Admins for Application +orderer.example.com | 2018-01-18 09:29:49.365 UTC [policies] ProposePolicy -> DEBU cfd Proposed new policy Writers for Application +orderer.example.com | 2018-01-18 09:29:49.366 UTC [common/config] NewStandardValues -> DEBU cfe Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:49.366 UTC [common/config] initializeProtosStruct -> DEBU cff Processing field: MSP +orderer.example.com | 2018-01-18 09:29:49.366 UTC [common/config] NewStandardValues -> DEBU d00 Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | 2018-01-18 09:29:49.367 UTC [common/config] initializeProtosStruct -> DEBU d01 Processing field: AnchorPeers +orderer.example.com | 2018-01-18 09:29:49.367 UTC [common/config] NewStandardValues -> DEBU d02 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:49.367 UTC [common/config] initializeProtosStruct -> DEBU d03 Processing field: MSP +orderer.example.com | 2018-01-18 09:29:49.367 UTC [policies] ProposePolicy -> DEBU d04 Proposed new policy Readers for Org1MSP +orderer.example.com | 2018-01-18 09:29:49.368 UTC [policies] ProposePolicy -> DEBU d05 Proposed new policy Writers for Org1MSP +orderer.example.com | 2018-01-18 09:29:49.368 UTC [policies] ProposePolicy -> DEBU d06 Proposed new policy Admins for Org1MSP +orderer.example.com | 2018-01-18 09:29:49.369 UTC [common/config] NewStandardValues -> DEBU d07 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:49.369 UTC [common/config] initializeProtosStruct -> DEBU d08 Processing field: MSP +orderer.example.com | 2018-01-18 09:29:49.371 UTC [common/config] NewStandardValues -> DEBU d09 Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | 2018-01-18 09:29:49.373 UTC [common/config] initializeProtosStruct -> DEBU d0a Processing field: AnchorPeers +orderer.example.com | 2018-01-18 09:29:49.379 UTC [common/config] NewStandardValues -> DEBU d0b Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:49.379 UTC [common/config] initializeProtosStruct -> DEBU d0c Processing field: MSP +orderer.example.com | 2018-01-18 09:29:49.380 UTC [policies] ProposePolicy -> DEBU d0d Proposed new policy Admins for Org2MSP +orderer.example.com | 2018-01-18 09:29:49.380 UTC [policies] ProposePolicy -> DEBU d0e Proposed new policy Readers for Org2MSP +orderer.example.com | 2018-01-18 09:29:49.380 UTC [policies] ProposePolicy -> DEBU d0f Proposed new policy Writers for Org2MSP +orderer.example.com | 2018-01-18 09:29:49.381 UTC [common/config] validateMSP -> DEBU d10 Setting up MSP for org OrdererOrg +orderer.example.com | 2018-01-18 09:29:49.381 UTC [msp] NewBccspMsp -> DEBU d11 Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-18 09:29:49.382 UTC [msp] Setup -> DEBU d12 Setting up MSP instance OrdererMSP +orderer.example.com | 2018-01-18 09:29:49.382 UTC [msp/identity] newIdentity -> DEBU d13 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +orderer.example.com | cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW +orderer.example.com | gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +orderer.example.com | AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK +orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs +orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:49.384 UTC [msp/identity] newIdentity -> DEBU d14 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:49.389 UTC [msp/identity] newIdentity -> DEBU d15 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:49.393 UTC [msp] Validate -> DEBU d16 MSP OrdererMSP validating identity +orderer.example.com | 2018-01-18 09:29:49.393 UTC [common/config] Validate -> DEBU d17 Anchor peers for org Org1MSP are anchor_peers: +orderer.example.com | 2018-01-18 09:29:49.393 UTC [common/config] validateMSP -> DEBU d18 Setting up MSP for org Org1MSP +orderer.example.com | 2018-01-18 09:29:49.394 UTC [msp] NewBccspMsp -> DEBU d19 Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-18 09:29:49.394 UTC [msp] Setup -> DEBU d1a Setting up MSP instance Org1MSP +orderer.example.com | 2018-01-18 09:29:49.394 UTC [msp/identity] newIdentity -> DEBU d1b Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +orderer.example.com | BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf +orderer.example.com | db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx +orderer.example.com | JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi +orderer.example.com | /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ +orderer.example.com | H7n8z1pj5w== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:49.395 UTC [msp/identity] newIdentity -> DEBU d1c Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:49.396 UTC [msp/identity] newIdentity -> DEBU d1d Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:49.397 UTC [msp] Validate -> DEBU d1e MSP Org1MSP validating identity +orderer.example.com | 2018-01-18 09:29:49.397 UTC [common/config] Validate -> DEBU d1f Anchor peers for org Org2MSP are anchor_peers: +orderer.example.com | 2018-01-18 09:29:49.397 UTC [common/config] validateMSP -> DEBU d20 Setting up MSP for org Org2MSP +orderer.example.com | 2018-01-18 09:29:49.397 UTC [msp] NewBccspMsp -> DEBU d21 Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-18 09:29:49.397 UTC [msp] Setup -> DEBU d22 Setting up MSP instance Org2MSP +orderer.example.com | 2018-01-18 09:29:49.397 UTC [msp/identity] newIdentity -> DEBU d23 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +orderer.example.com | mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 +orderer.example.com | sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ +orderer.example.com | xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv +orderer.example.com | WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk +orderer.example.com | SCjyRdD3aQ== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:49.398 UTC [msp/identity] newIdentity -> DEBU d24 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +orderer.example.com | AXYxULZpXYDQXt1KaLI= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:49.399 UTC [msp/identity] newIdentity -> DEBU d25 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +orderer.example.com | AXYxULZpXYDQXt1KaLI= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:49.400 UTC [msp] Validate -> DEBU d26 MSP Org2MSP validating identity +orderer.example.com | 2018-01-18 09:29:49.401 UTC [msp] Setup -> DEBU d27 Setting up the MSP manager (3 msps) +orderer.example.com | 2018-01-18 09:29:49.401 UTC [msp] Setup -> DEBU d28 MSP manager setup complete, setup 3 msps +orderer.example.com | 2018-01-18 09:29:49.401 UTC [orderer/common/blockcutter] Ordered -> DEBU d29 Found message which requested to be isolated, cutting into its own batch +orderer.example.com | 2018-01-18 09:29:49.401 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU d2a retrieveBlockByNumber() - blockNum = [1] +orderer.example.com | 2018-01-18 09:29:49.401 UTC [fsblkstorage] newBlockfileStream -> DEBU d2b newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[11934] +orderer.example.com | 2018-01-18 09:29:49.401 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU d2c Remaining bytes=[13733], Going to peek [8] bytes +orderer.example.com | 2018-01-18 09:29:49.402 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU d2d Returning blockbytes - length=[13731], placementInfo={fileNum=[0], startOffset=[11934], bytesOffset=[11936]} +orderer.example.com | 2018-01-18 09:29:49.402 UTC [common/configtx] addToMap -> DEBU d2e Adding to config map: [Groups] /Channel +orderer.example.com | 2018-01-18 09:29:49.402 UTC [common/configtx] addToMap -> DEBU d2f Adding to config map: [Groups] /Channel/Orderer +orderer.example.com | 2018-01-18 09:29:49.403 UTC [common/configtx] addToMap -> DEBU d30 Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +orderer.example.com | 2018-01-18 09:29:49.404 UTC [common/configtx] addToMap -> DEBU d31 Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +orderer.example.com | 2018-01-18 09:29:49.404 UTC [common/configtx] addToMap -> DEBU d32 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +orderer.example.com | 2018-01-18 09:29:49.405 UTC [common/configtx] addToMap -> DEBU d33 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | 2018-01-18 09:29:49.405 UTC [common/configtx] addToMap -> DEBU d34 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +orderer.example.com | 2018-01-18 09:29:49.405 UTC [common/configtx] addToMap -> DEBU d35 Adding to config map: [Values] /Channel/Orderer/ConsensusType +orderer.example.com | 2018-01-18 09:29:49.405 UTC [common/configtx] addToMap -> DEBU d36 Adding to config map: [Values] /Channel/Orderer/BatchSize +orderer.example.com | 2018-01-18 09:29:49.405 UTC [common/configtx] addToMap -> DEBU d37 Adding to config map: [Values] /Channel/Orderer/BatchTimeout +orderer.example.com | 2018-01-18 09:29:49.405 UTC [common/configtx] addToMap -> DEBU d38 Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +orderer.example.com | 2018-01-18 09:29:49.406 UTC [common/configtx] addToMap -> DEBU d39 Adding to config map: [Policy] /Channel/Orderer/BlockValidation +orderer.example.com | 2018-01-18 09:29:49.406 UTC [common/configtx] addToMap -> DEBU d3a Adding to config map: [Policy] /Channel/Orderer/Readers +orderer.example.com | 2018-01-18 09:29:49.406 UTC [common/configtx] addToMap -> DEBU d3b Adding to config map: [Policy] /Channel/Orderer/Writers +orderer.example.com | 2018-01-18 09:29:49.406 UTC [common/configtx] addToMap -> DEBU d3c Adding to config map: [Policy] /Channel/Orderer/Admins +orderer.example.com | 2018-01-18 09:29:49.406 UTC [common/configtx] addToMap -> DEBU d3d Adding to config map: [Groups] /Channel/Application +orderer.example.com | 2018-01-18 09:29:49.406 UTC [common/configtx] addToMap -> DEBU d3e Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | 2018-01-18 09:29:49.406 UTC [common/configtx] addToMap -> DEBU d3f Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers +orderer.example.com | 2018-01-18 09:29:49.406 UTC [common/configtx] addToMap -> DEBU d40 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +orderer.example.com | 2018-01-18 09:29:49.406 UTC [common/configtx] addToMap -> DEBU d41 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | 2018-01-18 09:29:49.407 UTC [common/configtx] addToMap -> DEBU d42 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | 2018-01-18 09:29:49.407 UTC [common/configtx] addToMap -> DEBU d43 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | 2018-01-18 09:29:49.407 UTC [common/configtx] addToMap -> DEBU d44 Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | 2018-01-18 09:29:49.407 UTC [common/configtx] addToMap -> DEBU d45 Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +orderer.example.com | 2018-01-18 09:29:49.407 UTC [common/configtx] addToMap -> DEBU d46 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +orderer.example.com | 2018-01-18 09:29:49.408 UTC [common/configtx] addToMap -> DEBU d47 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | 2018-01-18 09:29:49.408 UTC [common/configtx] addToMap -> DEBU d48 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | 2018-01-18 09:29:49.408 UTC [common/configtx] addToMap -> DEBU d49 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | 2018-01-18 09:29:49.408 UTC [common/configtx] addToMap -> DEBU d4a Adding to config map: [Policy] /Channel/Application/Writers +orderer.example.com | 2018-01-18 09:29:49.408 UTC [common/configtx] addToMap -> DEBU d4b Adding to config map: [Policy] /Channel/Application/Readers +orderer.example.com | 2018-01-18 09:29:49.408 UTC [common/configtx] addToMap -> DEBU d4c Adding to config map: [Policy] /Channel/Application/Admins +orderer.example.com | 2018-01-18 09:29:49.408 UTC [common/configtx] addToMap -> DEBU d4d Adding to config map: [Values] /Channel/BlockDataHashingStructure +orderer.example.com | 2018-01-18 09:29:49.409 UTC [common/configtx] addToMap -> DEBU d4e Adding to config map: [Values] /Channel/OrdererAddresses +orderer.example.com | 2018-01-18 09:29:49.409 UTC [common/configtx] addToMap -> DEBU d4f Adding to config map: [Values] /Channel/HashingAlgorithm +orderer.example.com | 2018-01-18 09:29:49.409 UTC [common/configtx] addToMap -> DEBU d50 Adding to config map: [Values] /Channel/Consortium +orderer.example.com | 2018-01-18 09:29:49.409 UTC [common/configtx] addToMap -> DEBU d51 Adding to config map: [Policy] /Channel/Writers +orderer.example.com | 2018-01-18 09:29:49.409 UTC [common/configtx] addToMap -> DEBU d52 Adding to config map: [Policy] /Channel/Admins +orderer.example.com | 2018-01-18 09:29:49.410 UTC [common/configtx] addToMap -> DEBU d53 Adding to config map: [Policy] /Channel/Readers +orderer.example.com | 2018-01-18 09:29:49.410 UTC [common/configtx] addToMap -> DEBU d54 Adding to config map: [Groups] /Channel +orderer.example.com | 2018-01-18 09:29:49.410 UTC [common/configtx] addToMap -> DEBU d55 Adding to config map: [Groups] /Channel/Application +orderer.example.com | 2018-01-18 09:29:49.410 UTC [common/configtx] addToMap -> DEBU d56 Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | 2018-01-18 09:29:49.410 UTC [common/configtx] addToMap -> DEBU d57 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +orderer.example.com | 2018-01-18 09:29:49.410 UTC [common/configtx] addToMap -> DEBU d58 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | 2018-01-18 09:29:49.412 UTC [common/configtx] addToMap -> DEBU d59 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | 2018-01-18 09:29:49.413 UTC [common/configtx] addToMap -> DEBU d5a Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | 2018-01-18 09:29:49.414 UTC [common/configtx] addToMap -> DEBU d5b Adding to config map: [Groups] /Channel +orderer.example.com | 2018-01-18 09:29:49.414 UTC [common/configtx] addToMap -> DEBU d5c Adding to config map: [Groups] /Channel/Application +orderer.example.com | 2018-01-18 09:29:49.414 UTC [common/configtx] addToMap -> DEBU d5d Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | 2018-01-18 09:29:49.415 UTC [common/configtx] addToMap -> DEBU d5e Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers +orderer.example.com | 2018-01-18 09:29:49.415 UTC [common/configtx] addToMap -> DEBU d5f Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +orderer.example.com | 2018-01-18 09:29:49.416 UTC [common/configtx] addToMap -> DEBU d60 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | 2018-01-18 09:29:49.416 UTC [common/configtx] addToMap -> DEBU d61 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | 2018-01-18 09:29:49.416 UTC [common/configtx] addToMap -> DEBU d62 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | 2018-01-18 09:29:49.416 UTC [policies] GetPolicy -> DEBU d63 Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:49.417 UTC [cauthdsl] func1 -> DEBU d64 0xc42014a470 gate 1516267789417008418 evaluation starts +orderer.example.com | 2018-01-18 09:29:49.417 UTC [cauthdsl] func2 -> DEBU d65 0xc42014a470 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:29:49.417 UTC [cauthdsl] func2 -> DEBU d66 0xc42014a470 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:29:49.418 UTC [msp/identity] newIdentity -> DEBU d67 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +orderer.example.com | AXYxULZpXYDQXt1KaLI= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:49.419 UTC [msp] SatisfiesPrincipal -> DEBU d68 Checking if identity satisfies ADMIN role for Org2MSP +orderer.example.com | 2018-01-18 09:29:49.420 UTC [cauthdsl] func2 -> DEBU d69 0xc42014a470 principal matched by identity 0 +orderer.example.com | 2018-01-18 09:29:49.420 UTC [msp/identity] Verify -> DEBU d6a Verify: digest = 00000000 e3 2e bc 09 2e aa 2c ee 2d d8 57 24 a8 da 75 26 |......,.-.W$..u&| +orderer.example.com | 00000010 76 f4 64 21 f8 97 85 b8 3e 1d 7e 6e 42 62 03 14 |v.d!....>.~nBb..| +orderer.example.com | 2018-01-18 09:29:49.420 UTC [msp/identity] Verify -> DEBU d6b Verify: sig = 00000000 30 44 02 20 48 e1 84 3e 07 f3 e5 77 3f 0a 13 70 |0D. H..>...w?..p| +orderer.example.com | 00000010 88 13 09 23 43 ec 85 b3 36 94 70 17 22 ce 11 47 |...#C...6.p."..G| +orderer.example.com | 00000020 bb 3f dc 05 02 20 54 76 42 4a a3 19 16 da fe 43 |.?... TvBJ.....C| +orderer.example.com | 00000030 28 50 a5 02 b8 00 63 81 75 68 de 48 c5 86 e0 ee |(P....c.uh.H....| +orderer.example.com | 00000040 7c 87 76 59 5d 71 ||.vY]q| +orderer.example.com | 2018-01-18 09:29:49.421 UTC [cauthdsl] func2 -> DEBU d6c 0xc42014a470 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-18 09:29:49.421 UTC [cauthdsl] func1 -> DEBU d6d 0xc42014a470 gate 1516267789417008418 evaluation succeeds +orderer.example.com | 2018-01-18 09:29:49.422 UTC [common/configtx] recurseConfigMap -> DEBU d6e Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:49.422 UTC [common/configtx] recurseConfigMap -> DEBU d6f Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:49.422 UTC [common/configtx] recurseConfigMap -> DEBU d70 Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:49.422 UTC [common/configtx] recurseConfigMap -> DEBU d71 Setting policy for key Admins to +orderer.example.com | 2018-01-18 09:29:49.422 UTC [common/configtx] recurseConfigMap -> DEBU d72 Setting policy for key Readers to +orderer.example.com | 2018-01-18 09:29:49.422 UTC [common/configtx] recurseConfigMap -> DEBU d73 Setting policy for key Writers to +orderer.example.com | 2018-01-18 09:29:49.422 UTC [common/configtx] recurseConfigMap -> DEBU d74 Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:49.422 UTC [common/configtx] recurseConfigMap -> DEBU d75 Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:49.422 UTC [common/configtx] recurseConfigMap -> DEBU d76 Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:49.422 UTC [common/configtx] recurseConfigMap -> DEBU d77 Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:49.422 UTC [common/configtx] recurseConfigMap -> DEBU d78 Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:49.422 UTC [common/configtx] recurseConfigMap -> DEBU d79 Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:49.422 UTC [common/configtx] recurseConfigMap -> DEBU d7a Setting policy for key BlockValidation to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:49.422 UTC [common/configtx] recurseConfigMap -> DEBU d7b Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:49.422 UTC [common/configtx] recurseConfigMap -> DEBU d7c Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:49.422 UTC [common/configtx] recurseConfigMap -> DEBU d7d Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:49.422 UTC [common/configtx] recurseConfigMap -> DEBU d7e Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:49.422 UTC [common/configtx] recurseConfigMap -> DEBU d7f Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:49.422 UTC [common/configtx] recurseConfigMap -> DEBU d80 Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-18 09:29:49.424 UTC [common/configtx] processConfig -> DEBU d81 Beginning new config for channel businesschannel +orderer.example.com | 2018-01-18 09:29:49.424 UTC [common/config] NewStandardValues -> DEBU d82 Initializing protos for *config.ChannelProtos +orderer.example.com | 2018-01-18 09:29:49.424 UTC [common/config] initializeProtosStruct -> DEBU d83 Processing field: HashingAlgorithm +orderer.example.com | 2018-01-18 09:29:49.424 UTC [common/config] initializeProtosStruct -> DEBU d84 Processing field: BlockDataHashingStructure +orderer.example.com | 2018-01-18 09:29:49.424 UTC [common/config] initializeProtosStruct -> DEBU d85 Processing field: OrdererAddresses +orderer.example.com | 2018-01-18 09:29:49.424 UTC [common/config] initializeProtosStruct -> DEBU d86 Processing field: Consortium +orderer.example.com | 2018-01-18 09:29:49.425 UTC [policies] ProposePolicy -> DEBU d87 Proposed new policy Writers for Channel +orderer.example.com | 2018-01-18 09:29:49.425 UTC [policies] ProposePolicy -> DEBU d88 Proposed new policy Admins for Channel +orderer.example.com | 2018-01-18 09:29:49.425 UTC [policies] ProposePolicy -> DEBU d89 Proposed new policy Readers for Channel +orderer.example.com | 2018-01-18 09:29:49.425 UTC [common/config] NewStandardValues -> DEBU d8a Initializing protos for *struct {} +orderer.example.com | 2018-01-18 09:29:49.425 UTC [policies] ProposePolicy -> DEBU d8b Proposed new policy Writers for Application +orderer.example.com | 2018-01-18 09:29:49.425 UTC [policies] ProposePolicy -> DEBU d8c Proposed new policy Readers for Application +orderer.example.com | 2018-01-18 09:29:49.425 UTC [policies] ProposePolicy -> DEBU d8d Proposed new policy Admins for Application +orderer.example.com | 2018-01-18 09:29:49.425 UTC [common/config] NewStandardValues -> DEBU d8e Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:49.425 UTC [common/config] initializeProtosStruct -> DEBU d8f Processing field: MSP +orderer.example.com | 2018-01-18 09:29:49.425 UTC [common/config] NewStandardValues -> DEBU d90 Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | 2018-01-18 09:29:49.425 UTC [common/config] initializeProtosStruct -> DEBU d91 Processing field: AnchorPeers +orderer.example.com | 2018-01-18 09:29:49.425 UTC [common/config] NewStandardValues -> DEBU d92 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:49.425 UTC [common/config] initializeProtosStruct -> DEBU d93 Processing field: MSP +orderer.example.com | 2018-01-18 09:29:49.426 UTC [policies] ProposePolicy -> DEBU d94 Proposed new policy Writers for Org1MSP +orderer.example.com | 2018-01-18 09:29:49.426 UTC [policies] ProposePolicy -> DEBU d95 Proposed new policy Admins for Org1MSP +orderer.example.com | 2018-01-18 09:29:49.426 UTC [policies] ProposePolicy -> DEBU d96 Proposed new policy Readers for Org1MSP +orderer.example.com | 2018-01-18 09:29:49.426 UTC [common/config] NewStandardValues -> DEBU d97 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:49.426 UTC [common/config] initializeProtosStruct -> DEBU d98 Processing field: MSP +orderer.example.com | 2018-01-18 09:29:49.427 UTC [common/config] NewStandardValues -> DEBU d99 Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | 2018-01-18 09:29:49.427 UTC [common/config] initializeProtosStruct -> DEBU d9a Processing field: AnchorPeers +orderer.example.com | 2018-01-18 09:29:49.427 UTC [common/config] NewStandardValues -> DEBU d9b Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:49.427 UTC [common/config] initializeProtosStruct -> DEBU d9c Processing field: MSP +orderer.example.com | 2018-01-18 09:29:49.427 UTC [policies] ProposePolicy -> DEBU d9d Proposed new policy Readers for Org2MSP +orderer.example.com | 2018-01-18 09:29:49.427 UTC [policies] ProposePolicy -> DEBU d9e Proposed new policy Writers for Org2MSP +orderer.example.com | 2018-01-18 09:29:49.427 UTC [policies] ProposePolicy -> DEBU d9f Proposed new policy Admins for Org2MSP +orderer.example.com | 2018-01-18 09:29:49.427 UTC [common/config] NewStandardValues -> DEBU da0 Initializing protos for *config.OrdererProtos +orderer.example.com | 2018-01-18 09:29:49.427 UTC [common/config] initializeProtosStruct -> DEBU da1 Processing field: ConsensusType +orderer.example.com | 2018-01-18 09:29:49.428 UTC [common/config] initializeProtosStruct -> DEBU da2 Processing field: BatchSize +orderer.example.com | 2018-01-18 09:29:49.428 UTC [common/config] initializeProtosStruct -> DEBU da3 Processing field: BatchTimeout +orderer.example.com | 2018-01-18 09:29:49.428 UTC [common/config] initializeProtosStruct -> DEBU da4 Processing field: KafkaBrokers +orderer.example.com | 2018-01-18 09:29:49.428 UTC [common/config] initializeProtosStruct -> DEBU da5 Processing field: ChannelRestrictions +orderer.example.com | 2018-01-18 09:29:49.428 UTC [policies] ProposePolicy -> DEBU da6 Proposed new policy Readers for Orderer +orderer.example.com | 2018-01-18 09:29:49.428 UTC [policies] ProposePolicy -> DEBU da7 Proposed new policy Writers for Orderer +orderer.example.com | 2018-01-18 09:29:49.428 UTC [policies] ProposePolicy -> DEBU da8 Proposed new policy Admins for Orderer +orderer.example.com | 2018-01-18 09:29:49.428 UTC [policies] ProposePolicy -> DEBU da9 Proposed new policy BlockValidation for Orderer +orderer.example.com | 2018-01-18 09:29:49.428 UTC [common/config] NewStandardValues -> DEBU daa Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-18 09:29:49.428 UTC [common/config] initializeProtosStruct -> DEBU dab Processing field: MSP +orderer.example.com | 2018-01-18 09:29:49.428 UTC [policies] ProposePolicy -> DEBU dac Proposed new policy Admins for OrdererOrg +orderer.example.com | 2018-01-18 09:29:49.428 UTC [policies] ProposePolicy -> DEBU dad Proposed new policy Readers for OrdererOrg +orderer.example.com | 2018-01-18 09:29:49.428 UTC [policies] ProposePolicy -> DEBU dae Proposed new policy Writers for OrdererOrg +orderer.example.com | 2018-01-18 09:29:49.428 UTC [common/config] Validate -> DEBU daf Anchor peers for org Org1MSP are anchor_peers: +orderer.example.com | 2018-01-18 09:29:49.428 UTC [common/config] validateMSP -> DEBU db0 Setting up MSP for org Org1MSP +orderer.example.com | 2018-01-18 09:29:49.428 UTC [msp] NewBccspMsp -> DEBU db1 Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-18 09:29:49.428 UTC [msp] Setup -> DEBU db2 Setting up MSP instance Org1MSP +orderer.example.com | 2018-01-18 09:29:49.429 UTC [msp/identity] newIdentity -> DEBU db3 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +orderer.example.com | BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf +orderer.example.com | db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx +orderer.example.com | JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi +orderer.example.com | /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ +orderer.example.com | H7n8z1pj5w== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:49.429 UTC [msp/identity] newIdentity -> DEBU db4 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:49.430 UTC [msp/identity] newIdentity -> DEBU db5 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:49.431 UTC [msp] Validate -> DEBU db6 MSP Org1MSP validating identity +orderer.example.com | 2018-01-18 09:29:49.432 UTC [common/config] Validate -> DEBU db7 Anchor peers for org Org2MSP are anchor_peers: +orderer.example.com | 2018-01-18 09:29:49.432 UTC [common/config] validateMSP -> DEBU db8 Setting up MSP for org Org2MSP +orderer.example.com | 2018-01-18 09:29:49.432 UTC [msp] NewBccspMsp -> DEBU db9 Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-18 09:29:49.432 UTC [msp] Setup -> DEBU dba Setting up MSP instance Org2MSP +orderer.example.com | 2018-01-18 09:29:49.432 UTC [msp/identity] newIdentity -> DEBU dbb Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +orderer.example.com | mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 +orderer.example.com | sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ +orderer.example.com | xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv +orderer.example.com | WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk +orderer.example.com | SCjyRdD3aQ== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:49.433 UTC [msp/identity] newIdentity -> DEBU dbc Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +orderer.example.com | AXYxULZpXYDQXt1KaLI= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:49.433 UTC [msp/identity] newIdentity -> DEBU dbd Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +orderer.example.com | AXYxULZpXYDQXt1KaLI= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:49.434 UTC [msp] Validate -> DEBU dbe MSP Org2MSP validating identity +orderer.example.com | 2018-01-18 09:29:49.436 UTC [common/config] validateMSP -> DEBU dbf Setting up MSP for org OrdererOrg +orderer.example.com | 2018-01-18 09:29:49.436 UTC [msp] NewBccspMsp -> DEBU dc0 Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-18 09:29:49.436 UTC [msp] Setup -> DEBU dc1 Setting up MSP instance OrdererMSP +orderer.example.com | 2018-01-18 09:29:49.437 UTC [msp/identity] newIdentity -> DEBU dc2 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +orderer.example.com | cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW +orderer.example.com | gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +orderer.example.com | AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK +orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs +orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:49.437 UTC [msp/identity] newIdentity -> DEBU dc3 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:49.438 UTC [msp/identity] newIdentity -> DEBU dc4 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:49.439 UTC [msp] Validate -> DEBU dc5 MSP OrdererMSP validating identity +orderer.example.com | 2018-01-18 09:29:49.439 UTC [msp] Setup -> DEBU dc6 Setting up the MSP manager (3 msps) +orderer.example.com | 2018-01-18 09:29:49.439 UTC [msp] Setup -> DEBU dc7 MSP manager setup complete, setup 3 msps +orderer.example.com | 2018-01-18 09:29:49.439 UTC [policies] GetPolicy -> DEBU dc8 Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:49.439 UTC [policies] CommitProposals -> DEBU dc9 In commit adding relative sub-policy Org1MSP/Writers to Application +orderer.example.com | 2018-01-18 09:29:49.439 UTC [policies] GetPolicy -> DEBU dca Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:49.439 UTC [policies] CommitProposals -> DEBU dcb In commit adding relative sub-policy Org1MSP/Admins to Application +orderer.example.com | 2018-01-18 09:29:49.439 UTC [policies] GetPolicy -> DEBU dcc Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:49.439 UTC [policies] CommitProposals -> DEBU dcd In commit adding relative sub-policy Org1MSP/Readers to Application +orderer.example.com | 2018-01-18 09:29:49.440 UTC [policies] GetPolicy -> DEBU dce Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:49.440 UTC [policies] CommitProposals -> DEBU dcf In commit adding relative sub-policy Org2MSP/Readers to Application +orderer.example.com | 2018-01-18 09:29:49.440 UTC [policies] GetPolicy -> DEBU dd0 Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:49.440 UTC [policies] CommitProposals -> DEBU dd1 In commit adding relative sub-policy Org2MSP/Writers to Application +orderer.example.com | 2018-01-18 09:29:49.440 UTC [policies] GetPolicy -> DEBU dd2 Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:49.440 UTC [policies] CommitProposals -> DEBU dd3 In commit adding relative sub-policy Org2MSP/Admins to Application +orderer.example.com | 2018-01-18 09:29:49.440 UTC [policies] GetPolicy -> DEBU dd4 Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:49.440 UTC [policies] GetPolicy -> DEBU dd5 Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:49.440 UTC [policies] GetPolicy -> DEBU dd6 Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:49.440 UTC [policies] GetPolicy -> DEBU dd7 Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:49.440 UTC [policies] GetPolicy -> DEBU dd8 Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:49.440 UTC [policies] GetPolicy -> DEBU dd9 Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:49.440 UTC [policies] GetPolicy -> DEBU dda Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:49.440 UTC [policies] CommitProposals -> DEBU ddb In commit adding relative sub-policy OrdererOrg/Admins to Orderer +orderer.example.com | 2018-01-18 09:29:49.440 UTC [policies] GetPolicy -> DEBU ddc Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:49.440 UTC [policies] CommitProposals -> DEBU ddd In commit adding relative sub-policy OrdererOrg/Readers to Orderer +orderer.example.com | 2018-01-18 09:29:49.440 UTC [policies] GetPolicy -> DEBU dde Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:49.440 UTC [policies] CommitProposals -> DEBU ddf In commit adding relative sub-policy OrdererOrg/Writers to Orderer +orderer.example.com | 2018-01-18 09:29:49.440 UTC [policies] GetPolicy -> DEBU de0 Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:49.440 UTC [policies] GetPolicy -> DEBU de1 Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:49.440 UTC [policies] GetPolicy -> DEBU de2 Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:49.440 UTC [policies] GetPolicy -> DEBU de3 Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:49.440 UTC [policies] GetPolicy -> DEBU de4 Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:49.440 UTC [policies] CommitProposals -> DEBU de5 In commit adding relative sub-policy Application/Admins to Channel +orderer.example.com | 2018-01-18 09:29:49.440 UTC [policies] GetPolicy -> DEBU de6 Returning policy Org1MSP/Readers for evaluation +orderer.example.com | 2018-01-18 09:29:49.440 UTC [policies] CommitProposals -> DEBU de7 In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +orderer.example.com | 2018-01-18 09:29:49.440 UTC [policies] GetPolicy -> DEBU de8 Returning policy Org2MSP/Admins for evaluation +orderer.example.com | 2018-01-18 09:29:49.440 UTC [policies] CommitProposals -> DEBU de9 In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +orderer.example.com | 2018-01-18 09:29:49.441 UTC [policies] GetPolicy -> DEBU dea Returning policy Org2MSP/Writers for evaluation +orderer.example.com | 2018-01-18 09:29:49.441 UTC [policies] CommitProposals -> DEBU deb In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +orderer.example.com | 2018-01-18 09:29:49.441 UTC [policies] GetPolicy -> DEBU dec Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:49.441 UTC [policies] CommitProposals -> DEBU ded In commit adding relative sub-policy Application/Writers to Channel +orderer.example.com | 2018-01-18 09:29:49.441 UTC [policies] GetPolicy -> DEBU dee Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:49.441 UTC [policies] CommitProposals -> DEBU def In commit adding relative sub-policy Application/Readers to Channel +orderer.example.com | 2018-01-18 09:29:49.441 UTC [policies] GetPolicy -> DEBU df0 Returning policy Org1MSP/Writers for evaluation +orderer.example.com | 2018-01-18 09:29:49.441 UTC [policies] CommitProposals -> DEBU df1 In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +orderer.example.com | 2018-01-18 09:29:49.441 UTC [policies] GetPolicy -> DEBU df2 Returning policy Org1MSP/Admins for evaluation +orderer.example.com | 2018-01-18 09:29:49.441 UTC [policies] CommitProposals -> DEBU df3 In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +orderer.example.com | 2018-01-18 09:29:49.441 UTC [policies] GetPolicy -> DEBU df4 Returning policy Org2MSP/Readers for evaluation +orderer.example.com | 2018-01-18 09:29:49.442 UTC [policies] CommitProposals -> DEBU df5 In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +orderer.example.com | 2018-01-18 09:29:49.442 UTC [policies] GetPolicy -> DEBU df6 Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:49.442 UTC [policies] CommitProposals -> DEBU df7 In commit adding relative sub-policy Orderer/Writers to Channel +orderer.example.com | 2018-01-18 09:29:49.442 UTC [policies] GetPolicy -> DEBU df8 Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:49.442 UTC [policies] CommitProposals -> DEBU df9 In commit adding relative sub-policy Orderer/Admins to Channel +orderer.example.com | 2018-01-18 09:29:49.442 UTC [policies] GetPolicy -> DEBU dfa Returning policy BlockValidation for evaluation +orderer.example.com | 2018-01-18 09:29:49.443 UTC [policies] CommitProposals -> DEBU dfb In commit adding relative sub-policy Orderer/BlockValidation to Channel +orderer.example.com | 2018-01-18 09:29:49.443 UTC [policies] GetPolicy -> DEBU dfc Returning policy OrdererOrg/Admins for evaluation +orderer.example.com | 2018-01-18 09:29:49.443 UTC [policies] CommitProposals -> DEBU dfd In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +orderer.example.com | 2018-01-18 09:29:49.443 UTC [policies] GetPolicy -> DEBU dfe Returning policy OrdererOrg/Readers for evaluation +orderer.example.com | 2018-01-18 09:29:49.443 UTC [policies] CommitProposals -> DEBU dff In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +orderer.example.com | 2018-01-18 09:29:49.445 UTC [policies] GetPolicy -> DEBU e00 Returning policy OrdererOrg/Writers for evaluation +orderer.example.com | 2018-01-18 09:29:49.445 UTC [policies] CommitProposals -> DEBU e01 In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +orderer.example.com | 2018-01-18 09:29:49.445 UTC [policies] GetPolicy -> DEBU e02 Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:49.446 UTC [policies] CommitProposals -> DEBU e03 In commit adding relative sub-policy Orderer/Readers to Channel +orderer.example.com | 2018-01-18 09:29:49.446 UTC [policies] GetPolicy -> DEBU e04 Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:49.446 UTC [policies] GetPolicy -> DEBU e05 Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:49.447 UTC [policies] GetPolicy -> DEBU e06 Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:49.447 UTC [policies] GetPolicy -> DEBU e07 Returning policy Admins for evaluation +orderer.example.com | 2018-01-18 09:29:49.447 UTC [policies] GetPolicy -> DEBU e08 Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:49.447 UTC [policies] GetPolicy -> DEBU e09 Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:49.447 UTC [policies] GetPolicy -> DEBU e0a Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:49.447 UTC [policies] CommitProposals -> DEBU e0b As expected, current configuration has policy '/Channel/Readers' +orderer.example.com | 2018-01-18 09:29:49.448 UTC [policies] GetPolicy -> DEBU e0c Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:29:49.448 UTC [policies] CommitProposals -> DEBU e0d As expected, current configuration has policy '/Channel/Writers' +orderer.example.com | 2018-01-18 09:29:49.448 UTC [policies] GetPolicy -> DEBU e0e Returning policy Application/Readers for evaluation +orderer.example.com | 2018-01-18 09:29:49.448 UTC [policies] CommitProposals -> DEBU e0f As expected, current configuration has policy '/Channel/Application/Readers' +orderer.example.com | 2018-01-18 09:29:49.448 UTC [policies] GetPolicy -> DEBU e10 Returning policy Application/Writers for evaluation +orderer.example.com | 2018-01-18 09:29:49.448 UTC [policies] CommitProposals -> DEBU e11 As expected, current configuration has policy '/Channel/Application/Writers' +orderer.example.com | 2018-01-18 09:29:49.448 UTC [policies] GetPolicy -> DEBU e12 Returning policy Application/Admins for evaluation +orderer.example.com | 2018-01-18 09:29:49.448 UTC [policies] CommitProposals -> DEBU e13 As expected, current configuration has policy '/Channel/Application/Admins' +orderer.example.com | 2018-01-18 09:29:49.448 UTC [policies] GetPolicy -> DEBU e14 Returning policy Orderer/BlockValidation for evaluation +orderer.example.com | 2018-01-18 09:29:49.448 UTC [policies] CommitProposals -> DEBU e15 As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +orderer.example.com | 2018-01-18 09:29:49.448 UTC [orderer/multichain] addBlockSignature -> DEBU e16 &{ledgerResources:0xc4209b5140 chain:0xc4209b5a00 cutter:0xc420863b80 filters:0xc4209b5640 signer:0x1274e88 lastConfig:1 lastConfigSeq:2} +orderer.example.com | 2018-01-18 09:29:49.449 UTC [orderer/multichain] addBlockSignature -> DEBU e17 &{} +orderer.example.com | 2018-01-18 09:29:49.449 UTC [msp] GetLocalMSP -> DEBU e18 Returning existing local MSP +orderer.example.com | 2018-01-18 09:29:49.449 UTC [msp] GetDefaultSigningIdentity -> DEBU e19 Obtaining default signing identity +orderer.example.com | 2018-01-18 09:29:49.449 UTC [msp] GetLocalMSP -> DEBU e1a Returning existing local MSP +orderer.example.com | 2018-01-18 09:29:49.449 UTC [msp] GetDefaultSigningIdentity -> DEBU e1b Obtaining default signing identity +orderer.example.com | 2018-01-18 09:29:49.449 UTC [msp/identity] Sign -> DEBU e1c Sign: plaintext: 0AFA050A0A4F7264657265724D535012...E575133E22EB87D4110A2391BC2D310A +orderer.example.com | 2018-01-18 09:29:49.449 UTC [msp/identity] Sign -> DEBU e1d Sign: digest: 310D9A02DB59D74D3770579D924AF0C22EB48F1D8A72E8192EF494C1354570FB +orderer.example.com | 2018-01-18 09:29:49.450 UTC [orderer/multichain] addLastConfigSignature -> DEBU e1e [channel: businesschannel] Detected lastConfigSeq transitioning from 2 to 3, setting lastConfig from 1 to 2 +orderer.example.com | 2018-01-18 09:29:49.450 UTC [msp] GetLocalMSP -> DEBU e1f Returning existing local MSP +orderer.example.com | 2018-01-18 09:29:49.450 UTC [msp] GetDefaultSigningIdentity -> DEBU e20 Obtaining default signing identity +orderer.example.com | 2018-01-18 09:29:49.450 UTC [orderer/multichain] addLastConfigSignature -> DEBU e21 [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 +orderer.example.com | 2018-01-18 09:29:49.450 UTC [msp] GetLocalMSP -> DEBU e22 Returning existing local MSP +orderer.example.com | 2018-01-18 09:29:49.450 UTC [msp] GetDefaultSigningIdentity -> DEBU e23 Obtaining default signing identity +orderer.example.com | 2018-01-18 09:29:49.450 UTC [msp/identity] Sign -> DEBU e24 Sign: plaintext: 08020AFA050A0A4F7264657265724D53...E575133E22EB87D4110A2391BC2D310A +orderer.example.com | 2018-01-18 09:29:49.450 UTC [msp/identity] Sign -> DEBU e25 Sign: digest: 9D164C09BDED22C62ACE903A4F32EE2574CA9486A9047DE9768586A97D66D4CF +orderer.example.com | 2018-01-18 09:29:49.456 UTC [fsblkstorage] indexBlock -> DEBU e26 Indexing block [blockNum=2, blockHash=[]byte{0xee, 0x42, 0x73, 0x43, 0x9f, 0x78, 0x50, 0xc6, 0xa0, 0xfa, 0x48, 0x1, 0x7b, 0x5c, 0xa5, 0xf0, 0xab, 0x77, 0x31, 0x9d, 0xaf, 0x30, 0x17, 0xcc, 0x6f, 0xfc, 0x28, 0x70, 0xf7, 0xc4, 0x5f, 0xf} txOffsets= +orderer.example.com | txId= locPointer=offset=70, bytesLength=11971 +orderer.example.com | ] +orderer.example.com | 2018-01-18 09:29:49.456 UTC [fsblkstorage] updateCheckpoint -> DEBU e27 Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[39458], isChainEmpty=[false], lastBlockNumber=[2] +orderer.example.com | 2018-01-18 09:29:49.456 UTC [orderer/multichain] WriteBlock -> DEBU e28 [channel: businesschannel] Wrote block 2 +orderer.example.com | 2018-01-18 09:29:51.311 UTC [orderer/main] Deliver -> DEBU e29 Starting new Deliver handler +orderer.example.com | 2018-01-18 09:29:51.311 UTC [orderer/common/deliver] Handle -> DEBU e2a Starting new deliver loop +orderer.example.com | 2018-01-18 09:29:51.315 UTC [orderer/common/deliver] Handle -> DEBU e2b Attempting to read seek info message +orderer.example.com | 2018-01-18 09:29:51.322 UTC [policies] GetPolicy -> DEBU e2c Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:51.322 UTC [cauthdsl] func1 -> DEBU e2d 0xc420026070 gate 1516267791322561765 evaluation starts +orderer.example.com | 2018-01-18 09:29:51.322 UTC [cauthdsl] func2 -> DEBU e2e 0xc420026070 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:29:51.322 UTC [cauthdsl] func2 -> DEBU e2f 0xc420026070 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414c77306a542f4649616e4d78506736773275554d536f77436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a417562334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424b71666457462f6f592b32796d716a6b2b416c424e2b524254687850702f6b0a6c552b42686d474172706e6c474e643769543670696c2f69534474664135785a397765354e496654656846716d5a63493667314e3137326a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413063414d45514349414c534a7147630a76645a48434a305265635651325264746b646e6f6b353770363858466c524279326c34784169414a53365a32797879456c4275625049304d426e2f2f5873396c0a30356e304d624c772f55673365674a334a413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:29:51.324 UTC [msp/identity] newIdentity -> DEBU e30 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRALw0jT/FIanMxPg6w2uUMSowCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABKqfdWF/oY+2ymqjk+AlBN+RBThxPp/k +orderer.example.com | lU+BhmGArpnlGNd7iT6pil/iSDtfA5xZ9we5NIfTehFqmZcI6g1N172jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIALSJqGc +orderer.example.com | vdZHCJ0RecVQ2Rdtkdnok57p68XFlRBy2l4xAiAJS6Z2yxyElBubPI0MBn//Xs9l +orderer.example.com | 05n0MbLw/Ug3egJ3JA== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:51.327 UTC [msp] SatisfiesPrincipal -> DEBU e31 Checking if identity satisfies MEMBER role for Org1MSP +orderer.example.com | 2018-01-18 09:29:51.327 UTC [msp] Validate -> DEBU e32 MSP Org1MSP validating identity +orderer.example.com | 2018-01-18 09:29:51.327 UTC [cauthdsl] func2 -> DEBU e33 0xc420026070 principal matched by identity 0 +orderer.example.com | 2018-01-18 09:29:51.328 UTC [msp/identity] Verify -> DEBU e34 Verify: digest = 00000000 ca 96 cc 95 14 c6 6c 33 ed 90 cf 19 1e b0 f8 5a |......l3.......Z| +orderer.example.com | 00000010 c4 8e c5 f9 01 ff 1a c6 de e6 fb c5 d9 64 ef f5 |.............d..| +orderer.example.com | 2018-01-18 09:29:51.328 UTC [msp/identity] Verify -> DEBU e35 Verify: sig = 00000000 30 44 02 20 70 da 8d 86 96 79 3a 37 40 95 2c bf |0D. p....y:7@.,.| +orderer.example.com | 00000010 41 25 c0 21 e7 0d 48 b1 c0 76 81 9f 2f 89 c2 ec |A%.!..H..v../...| +orderer.example.com | 00000020 63 9a 2f f8 02 20 0c 9f 8a 7d a5 69 09 f1 6e d8 |c./.. ...}.i..n.| +orderer.example.com | 00000030 03 df 7a b3 fe b3 92 ce 19 bf ed 21 52 fa 4b b3 |..z........!R.K.| +orderer.example.com | 00000040 38 ba c2 68 65 aa |8..he.| +orderer.example.com | 2018-01-18 09:29:51.328 UTC [cauthdsl] func2 -> DEBU e36 0xc420026070 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-18 09:29:51.328 UTC [cauthdsl] func1 -> DEBU e37 0xc420026070 gate 1516267791322561765 evaluation succeeds +orderer.example.com | 2018-01-18 09:29:51.328 UTC [orderer/common/sigfilter] Apply -> DEBU e38 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4208371e0 1 [0xc42014a638 0xc42014a688]}) %!s(*policies.implicitMetaPolicy=&{0xc4202d8040 1 [0xc42014a750]})]} +orderer.example.com | 2018-01-18 09:29:51.340 UTC [orderer/common/deliver] Handle -> DEBU e39 [channel: businesschannel] Received seekInfo (0xc42037a6c0) start: > stop: > +orderer.example.com | 2018-01-18 09:29:51.346 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU e3a retrieveBlockByNumber() - blockNum = [1] +orderer.example.com | 2018-01-18 09:29:51.346 UTC [fsblkstorage] newBlockfileStream -> DEBU e3b newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[11934] +orderer.example.com | 2018-01-18 09:29:51.348 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e3c Remaining bytes=[27524], Going to peek [8] bytes +orderer.example.com | 2018-01-18 09:29:51.352 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e3d Returning blockbytes - length=[13731], placementInfo={fileNum=[0], startOffset=[11934], bytesOffset=[11936]} +orderer.example.com | 2018-01-18 09:29:51.353 UTC [orderer/common/deliver] Handle -> DEBU e3e [channel: businesschannel] Delivering block for (0xc42037a6c0) +orderer.example.com | 2018-01-18 09:29:51.364 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU e3f retrieveBlockByNumber() - blockNum = [2] +orderer.example.com | 2018-01-18 09:29:51.364 UTC [fsblkstorage] newBlockfileStream -> DEBU e40 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[25667] +orderer.example.com | 2018-01-18 09:29:51.365 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e41 Remaining bytes=[13791], Going to peek [8] bytes +orderer.example.com | 2018-01-18 09:29:51.365 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e42 Returning blockbytes - length=[13789], placementInfo={fileNum=[0], startOffset=[25667], bytesOffset=[25669]} +orderer.example.com | 2018-01-18 09:29:51.365 UTC [orderer/common/deliver] Handle -> DEBU e43 [channel: businesschannel] Delivering block for (0xc42037a6c0) +orderer.example.com | 2018-01-18 09:29:51.809 UTC [orderer/main] Deliver -> DEBU e44 Starting new Deliver handler +orderer.example.com | 2018-01-18 09:29:51.809 UTC [orderer/common/deliver] Handle -> DEBU e45 Starting new deliver loop +orderer.example.com | 2018-01-18 09:29:51.809 UTC [orderer/common/deliver] Handle -> DEBU e46 Attempting to read seek info message +orderer.example.com | 2018-01-18 09:29:51.811 UTC [policies] GetPolicy -> DEBU e47 Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:51.811 UTC [cauthdsl] func1 -> DEBU e48 0xc420026118 gate 1516267791811825910 evaluation starts +orderer.example.com | 2018-01-18 09:29:51.812 UTC [cauthdsl] func2 -> DEBU e49 0xc420026118 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:29:51.812 UTC [cauthdsl] func2 -> DEBU e4a 0xc420026118 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434754434341634367417749424167495241502f2f7a71574b597a53484c57374766784b734d5a5977436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a457562334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424d6b687a797a6b42514d6d444946496a2b446d6e75642b6a372f33682f4c4d0a735577466a4c344171625242454736764e4458346c46316a774242743339754a78764f424c32774b796d5a3072592f4c564e4b3476756d6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413063414d4551434942312f4e3176710a4e5a3873726730444e2f6b5a735247476247785a44643653556d555350476f70455a2b42416941464c4751632f6e565a3748396533544f5350576b6a397858490a7a42777458626145327270753177434e5a673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:29:51.812 UTC [msp/identity] newIdentity -> DEBU e4b Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAP//zqWKYzSHLW7GfxKsMZYwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMkhzyzkBQMmDIFIj+Dmnud+j7/3h/LM +orderer.example.com | sUwFjL4AqbRBEG6vNDX4lF1jwBBt39uJxvOBL2wKymZ0rY/LVNK4vumjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIB1/N1vq +orderer.example.com | NZ8srg0DN/kZsRGGbGxZDd6SUmUSPGopEZ+BAiAFLGQc/nVZ7H9e3TOSPWkj9xXI +orderer.example.com | zBwtXbaE2rpu1wCNZg== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:51.813 UTC [msp] SatisfiesPrincipal -> DEBU e4c Checking if identity satisfies MEMBER role for Org1MSP +orderer.example.com | 2018-01-18 09:29:51.813 UTC [msp] Validate -> DEBU e4d MSP Org1MSP validating identity +orderer.example.com | 2018-01-18 09:29:51.814 UTC [cauthdsl] func2 -> DEBU e4e 0xc420026118 principal matched by identity 0 +orderer.example.com | 2018-01-18 09:29:51.814 UTC [msp/identity] Verify -> DEBU e4f Verify: digest = 00000000 a5 6f cc 4d d4 58 34 ac 95 96 df 69 1d a7 ce 72 |.o.M.X4....i...r| +orderer.example.com | 00000010 59 37 e7 05 eb 92 e7 a7 d9 0c 23 0d 2a b2 e9 27 |Y7........#.*..'| +orderer.example.com | 2018-01-18 09:29:51.815 UTC [msp/identity] Verify -> DEBU e50 Verify: sig = 00000000 30 45 02 21 00 ca 66 34 9c db c6 48 57 64 ad 92 |0E.!..f4...HWd..| +orderer.example.com | 00000010 06 22 49 d5 21 27 c3 44 ac 06 4d 28 bb ba bb 3d |."I.!'.D..M(...=| +orderer.example.com | 00000020 fa 7b f0 f4 5b 02 20 73 2b 55 de 66 40 e9 e1 4a |.{..[. s+U.f@..J| +orderer.example.com | 00000030 c8 13 43 47 ae 87 03 62 06 f5 a5 56 71 6e 35 ef |..CG...b...Vqn5.| +orderer.example.com | 00000040 90 ce 1e 13 87 b1 03 |.......| +orderer.example.com | 2018-01-18 09:29:51.815 UTC [cauthdsl] func2 -> DEBU e51 0xc420026118 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-18 09:29:51.815 UTC [cauthdsl] func1 -> DEBU e52 0xc420026118 gate 1516267791811825910 evaluation succeeds +orderer.example.com | 2018-01-18 09:29:51.815 UTC [orderer/common/sigfilter] Apply -> DEBU e53 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4208371e0 1 [0xc42014a638 0xc42014a688]}) %!s(*policies.implicitMetaPolicy=&{0xc4202d8040 1 [0xc42014a750]})]} +orderer.example.com | 2018-01-18 09:29:51.817 UTC [orderer/common/deliver] Handle -> DEBU e54 [channel: businesschannel] Received seekInfo (0xc420363320) start: > stop: > +orderer.example.com | 2018-01-18 09:29:51.817 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU e55 retrieveBlockByNumber() - blockNum = [1] +orderer.example.com | 2018-01-18 09:29:51.818 UTC [fsblkstorage] newBlockfileStream -> DEBU e56 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[11934] +orderer.example.com | 2018-01-18 09:29:51.818 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e57 Remaining bytes=[27524], Going to peek [8] bytes +orderer.example.com | 2018-01-18 09:29:51.818 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e58 Returning blockbytes - length=[13731], placementInfo={fileNum=[0], startOffset=[11934], bytesOffset=[11936]} +orderer.example.com | 2018-01-18 09:29:51.818 UTC [orderer/common/deliver] Handle -> DEBU e59 [channel: businesschannel] Delivering block for (0xc420363320) +orderer.example.com | 2018-01-18 09:29:51.819 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU e5a retrieveBlockByNumber() - blockNum = [2] +orderer.example.com | 2018-01-18 09:29:51.820 UTC [fsblkstorage] newBlockfileStream -> DEBU e5b newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[25667] +orderer.example.com | 2018-01-18 09:29:51.820 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e5c Remaining bytes=[13791], Going to peek [8] bytes +orderer.example.com | 2018-01-18 09:29:51.821 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e5d Returning blockbytes - length=[13789], placementInfo={fileNum=[0], startOffset=[25667], bytesOffset=[25669]} +orderer.example.com | 2018-01-18 09:29:51.823 UTC [orderer/common/deliver] Handle -> DEBU e5e [channel: businesschannel] Delivering block for (0xc420363320) +orderer.example.com | 2018-01-18 09:29:52.272 UTC [orderer/main] Deliver -> DEBU e5f Starting new Deliver handler +orderer.example.com | 2018-01-18 09:29:52.272 UTC [orderer/common/deliver] Handle -> DEBU e60 Starting new deliver loop +orderer.example.com | 2018-01-18 09:29:52.273 UTC [orderer/common/deliver] Handle -> DEBU e61 Attempting to read seek info message +orderer.example.com | 2018-01-18 09:29:52.273 UTC [policies] GetPolicy -> DEBU e62 Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:29:52.274 UTC [cauthdsl] func1 -> DEBU e63 0xc42014a868 gate 1516267792274016699 evaluation starts +orderer.example.com | 2018-01-18 09:29:52.274 UTC [cauthdsl] func2 -> DEBU e64 0xc42014a868 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:29:52.274 UTC [cauthdsl] func2 -> DEBU e65 0xc42014a868 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952415077537a796731505072436556685271446f3449526377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a417562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d343941774548413049414248494f3843636b4e3548675931692f376730494a647a6b31373245327834440a6c45796d73507842544336534d78324837366779415a626155484c7a444f633033575875784e6d2f35434562305043756734674c6d59716a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495144754d4344310a63427a353934367a51536178435875616e626c7676506d446f34454a6a33664e3154546c347749674b364f4a4e6f693555594668762f43577448767238364a550a437037666f70594c415230435579772b58796b3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:29:52.274 UTC [msp/identity] newIdentity -> DEBU e66 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAPwSzyg1PPrCeVhRqDo4IRcwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABHIO8CckN5HgY1i/7g0IJdzk172E2x4D +orderer.example.com | lEymsPxBTC6SMx2H76gyAZbaUHLzDOc03WXuxNm/5CEb0PCug4gLmYqjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQDuMCD1 +orderer.example.com | cBz5946zQSaxCXuanblvvPmDo4EJj3fN1TTl4wIgK6OJNoi5UYFhv/CWtHvr86JU +orderer.example.com | Cp7fopYLAR0CUyw+Xyk= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:52.275 UTC [cauthdsl] func2 -> DEBU e67 0xc42014a868 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got Org2MSP) +orderer.example.com | 2018-01-18 09:29:52.275 UTC [cauthdsl] func2 -> DEBU e68 0xc42014a868 principal evaluation fails +orderer.example.com | 2018-01-18 09:29:52.275 UTC [cauthdsl] func1 -> DEBU e69 0xc42014a868 gate 1516267792274016699 evaluation fails +orderer.example.com | 2018-01-18 09:29:52.275 UTC [cauthdsl] func1 -> DEBU e6a 0xc42014a878 gate 1516267792275740737 evaluation starts +orderer.example.com | 2018-01-18 09:29:52.275 UTC [cauthdsl] func2 -> DEBU e6b 0xc42014a878 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:29:52.276 UTC [cauthdsl] func2 -> DEBU e6c 0xc42014a878 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952415077537a796731505072436556685271446f3449526377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a417562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d343941774548413049414248494f3843636b4e3548675931692f376730494a647a6b31373245327834440a6c45796d73507842544336534d78324837366779415a626155484c7a444f633033575875784e6d2f35434562305043756734674c6d59716a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495144754d4344310a63427a353934367a51536178435875616e626c7676506d446f34454a6a33664e3154546c347749674b364f4a4e6f693555594668762f43577448767238364a550a437037666f70594c415230435579772b58796b3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:29:52.276 UTC [msp/identity] newIdentity -> DEBU e6d Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAPwSzyg1PPrCeVhRqDo4IRcwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABHIO8CckN5HgY1i/7g0IJdzk172E2x4D +orderer.example.com | lEymsPxBTC6SMx2H76gyAZbaUHLzDOc03WXuxNm/5CEb0PCug4gLmYqjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQDuMCD1 +orderer.example.com | cBz5946zQSaxCXuanblvvPmDo4EJj3fN1TTl4wIgK6OJNoi5UYFhv/CWtHvr86JU +orderer.example.com | Cp7fopYLAR0CUyw+Xyk= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:29:52.277 UTC [msp] SatisfiesPrincipal -> DEBU e6e Checking if identity satisfies MEMBER role for Org2MSP +orderer.example.com | 2018-01-18 09:29:52.277 UTC [msp] Validate -> DEBU e6f MSP Org2MSP validating identity +orderer.example.com | 2018-01-18 09:29:52.277 UTC [cauthdsl] func2 -> DEBU e70 0xc42014a878 principal matched by identity 0 +orderer.example.com | 2018-01-18 09:29:52.277 UTC [msp/identity] Verify -> DEBU e71 Verify: digest = 00000000 06 e0 86 45 6e 80 1a 21 1d ca 8a 66 1e 99 a8 c2 |...En..!...f....| +orderer.example.com | 00000010 a8 3b 36 e6 9f 61 db e5 8b 02 60 c7 af 9c 06 09 |.;6..a....`.....| +orderer.example.com | 2018-01-18 09:29:52.278 UTC [msp/identity] Verify -> DEBU e72 Verify: sig = 00000000 30 45 02 21 00 c6 72 e9 f4 53 82 e5 a2 97 c7 a0 |0E.!..r..S......| +orderer.example.com | 00000010 54 b8 5d 91 55 05 3b bb 0f 96 b0 f6 de 2d 80 08 |T.].U.;......-..| +orderer.example.com | 00000020 35 51 b0 97 d1 02 20 2c e2 d6 47 b7 df 67 91 33 |5Q.... ,..G..g.3| +orderer.example.com | 00000030 d2 d3 4e 02 d6 5c a2 7c 48 fa 62 25 1c b8 b9 56 |..N..\.|H.b%...V| +orderer.example.com | 00000040 6f 20 44 d1 80 c7 b6 |o D....| +orderer.example.com | 2018-01-18 09:29:52.278 UTC [cauthdsl] func2 -> DEBU e73 0xc42014a878 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-18 09:29:52.278 UTC [cauthdsl] func1 -> DEBU e74 0xc42014a878 gate 1516267792275740737 evaluation succeeds +orderer.example.com | 2018-01-18 09:29:52.278 UTC [orderer/common/sigfilter] Apply -> DEBU e75 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4208371e0 1 [0xc42014a638 0xc42014a688]}) %!s(*policies.implicitMetaPolicy=&{0xc4202d8040 1 [0xc42014a750]})]} +orderer.example.com | 2018-01-18 09:29:52.278 UTC [orderer/common/deliver] Handle -> DEBU e76 [channel: businesschannel] Received seekInfo (0xc420b7cce0) start: > stop: > +orderer.example.com | 2018-01-18 09:29:52.278 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU e77 retrieveBlockByNumber() - blockNum = [1] +orderer.example.com | 2018-01-18 09:29:52.279 UTC [fsblkstorage] newBlockfileStream -> DEBU e78 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[11934] +orderer.example.com | 2018-01-18 09:29:52.279 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e79 Remaining bytes=[27524], Going to peek [8] bytes +orderer.example.com | 2018-01-18 09:29:52.279 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e7a Returning blockbytes - length=[13731], placementInfo={fileNum=[0], startOffset=[11934], bytesOffset=[11936]} +orderer.example.com | 2018-01-18 09:29:52.279 UTC [orderer/common/deliver] Handle -> DEBU e7b [channel: businesschannel] Delivering block for (0xc420b7cce0) +orderer.example.com | 2018-01-18 09:29:52.280 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU e7c retrieveBlockByNumber() - blockNum = [2] +orderer.example.com | 2018-01-18 09:29:52.280 UTC [fsblkstorage] newBlockfileStream -> DEBU e7d newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[25667] +orderer.example.com | 2018-01-18 09:29:52.280 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e7e Remaining bytes=[13791], Going to peek [8] bytes +orderer.example.com | 2018-01-18 09:29:52.281 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e7f Returning blockbytes - length=[13789], placementInfo={fileNum=[0], startOffset=[25667], bytesOffset=[25669]} +orderer.example.com | 2018-01-18 09:29:52.281 UTC [orderer/common/deliver] Handle -> DEBU e80 [channel: businesschannel] Delivering block for (0xc420b7cce0) +orderer.example.com | 2018-01-18 09:29:55.552 UTC [orderer/main] Broadcast -> DEBU e81 Starting new Broadcast handler +orderer.example.com | 2018-01-18 09:29:55.552 UTC [orderer/common/broadcast] Handle -> DEBU e82 Starting new broadcast loop +orderer.example.com | 2018-01-18 09:30:21.551 UTC [orderer/common/broadcast] Handle -> DEBU e83 [channel: businesschannel] Broadcast is filtering message of type ENDORSER_TRANSACTION +orderer.example.com | 2018-01-18 09:30:21.551 UTC [policies] GetPolicy -> DEBU e84 Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:30:21.553 UTC [cauthdsl] func1 -> DEBU e85 0xc42014a8d0 gate 1516267821553126217 evaluation starts +orderer.example.com | 2018-01-18 09:30:21.553 UTC [cauthdsl] func2 -> DEBU e86 0xc42014a8d0 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:30:21.558 UTC [cauthdsl] func2 -> DEBU e87 0xc42014a8d0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:30:21.560 UTC [msp/identity] newIdentity -> DEBU e88 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:30:21.562 UTC [cauthdsl] func2 -> DEBU e89 0xc42014a8d0 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) +orderer.example.com | 2018-01-18 09:30:21.562 UTC [cauthdsl] func2 -> DEBU e8a 0xc42014a8d0 principal evaluation fails +orderer.example.com | 2018-01-18 09:30:21.563 UTC [cauthdsl] func1 -> DEBU e8b 0xc42014a8d0 gate 1516267821553126217 evaluation fails +orderer.example.com | 2018-01-18 09:30:21.563 UTC [cauthdsl] func1 -> DEBU e8c 0xc42014a8e0 gate 1516267821563700428 evaluation starts +orderer.example.com | 2018-01-18 09:30:21.563 UTC [cauthdsl] func2 -> DEBU e8d 0xc42014a8e0 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:30:21.564 UTC [cauthdsl] func2 -> DEBU e8e 0xc42014a8e0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:30:21.568 UTC [msp/identity] newIdentity -> DEBU e8f Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:30:21.569 UTC [cauthdsl] func2 -> DEBU e90 0xc42014a8e0 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got Org1MSP) +orderer.example.com | 2018-01-18 09:30:21.569 UTC [cauthdsl] func2 -> DEBU e91 0xc42014a8e0 principal evaluation fails +orderer.example.com | 2018-01-18 09:30:21.569 UTC [cauthdsl] func1 -> DEBU e92 0xc42014a8e0 gate 1516267821563700428 evaluation fails +orderer.example.com | 2018-01-18 09:30:21.570 UTC [cauthdsl] func1 -> DEBU e93 0xc42014a8f0 gate 1516267821570127412 evaluation starts +orderer.example.com | 2018-01-18 09:30:21.570 UTC [cauthdsl] func2 -> DEBU e94 0xc42014a8f0 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:30:21.571 UTC [cauthdsl] func2 -> DEBU e95 0xc42014a8f0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:30:21.575 UTC [msp/identity] newIdentity -> DEBU e96 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:30:21.576 UTC [msp] SatisfiesPrincipal -> DEBU e97 Checking if identity satisfies MEMBER role for Org1MSP +orderer.example.com | 2018-01-18 09:30:21.576 UTC [msp] Validate -> DEBU e98 MSP Org1MSP validating identity +orderer.example.com | 2018-01-18 09:30:21.578 UTC [cauthdsl] func2 -> DEBU e99 0xc42014a8f0 principal matched by identity 0 +orderer.example.com | 2018-01-18 09:30:21.578 UTC [msp/identity] Verify -> DEBU e9a Verify: digest = 00000000 b1 92 da a3 15 e9 e5 65 7d ae 3f 83 e4 31 a5 a3 |.......e}.?..1..| +orderer.example.com | 00000010 33 27 f0 53 a3 96 e4 4a 87 7d c9 ca ae 5d 68 4c |3'.S...J.}...]hL| +orderer.example.com | 2018-01-18 09:30:21.578 UTC [msp/identity] Verify -> DEBU e9b Verify: sig = 00000000 30 44 02 20 70 eb 48 f1 b3 f6 1f 2e 44 7a 3f 20 |0D. p.H.....Dz? | +orderer.example.com | 00000010 fe 8b a3 e1 bb 9f 5a b0 7e 0c 69 2c f4 68 24 17 |......Z.~.i,.h$.| +orderer.example.com | 00000020 2d cf dd 6c 02 20 7f d3 9b 7a 25 44 22 de 49 b3 |-..l. ...z%D".I.| +orderer.example.com | 00000030 d1 f0 a0 67 d2 5f a3 47 68 e8 47 c9 9d 7c f7 8c |...g._.Gh.G..|..| +orderer.example.com | 00000040 7f ea 0a 2c 45 9a |...,E.| +orderer.example.com | 2018-01-18 09:30:21.578 UTC [cauthdsl] func2 -> DEBU e9c 0xc42014a8f0 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-18 09:30:21.578 UTC [cauthdsl] func1 -> DEBU e9d 0xc42014a8f0 gate 1516267821570127412 evaluation succeeds +orderer.example.com | 2018-01-18 09:30:21.578 UTC [orderer/common/sigfilter] Apply -> DEBU e9e Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4202d80c0 1 [0xc42014a778]}) %!s(*policies.implicitMetaPolicy=&{0xc420837160 1 [0xc42014a6b0 0xc42014a5d8]})]} +orderer.example.com | 2018-01-18 09:30:21.578 UTC [orderer/common/broadcast] Handle -> DEBU e9f [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION +orderer.example.com | 2018-01-18 09:30:21.580 UTC [policies] GetPolicy -> DEBU ea0 Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:30:21.597 UTC [cauthdsl] func1 -> DEBU ea1 0xc4200261b0 gate 1516267821597403168 evaluation starts +orderer.example.com | 2018-01-18 09:30:21.597 UTC [cauthdsl] func2 -> DEBU ea2 0xc4200261b0 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:30:21.598 UTC [orderer/common/broadcast] Handle -> WARN ea4 Error reading from stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | 2018-01-18 09:30:21.598 UTC [orderer/main] func1 -> DEBU ea5 Closing Broadcast stream +orderer.example.com | 2018-01-18 09:30:21.598 UTC [cauthdsl] func2 -> DEBU ea3 0xc4200261b0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:30:21.601 UTC [msp/identity] newIdentity -> DEBU ea6 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:30:21.615 UTC [cauthdsl] func2 -> DEBU ea7 0xc4200261b0 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) +orderer.example.com | 2018-01-18 09:30:21.619 UTC [cauthdsl] func2 -> DEBU ea8 0xc4200261b0 principal evaluation fails +orderer.example.com | 2018-01-18 09:30:21.620 UTC [cauthdsl] func1 -> DEBU ea9 0xc4200261b0 gate 1516267821597403168 evaluation fails +orderer.example.com | 2018-01-18 09:30:21.626 UTC [cauthdsl] func1 -> DEBU eaa 0xc4200261c0 gate 1516267821626024450 evaluation starts +orderer.example.com | 2018-01-18 09:30:21.626 UTC [cauthdsl] func2 -> DEBU eab 0xc4200261c0 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:30:21.626 UTC [cauthdsl] func2 -> DEBU eac 0xc4200261c0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:30:21.626 UTC [msp/identity] newIdentity -> DEBU ead Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:30:21.627 UTC [cauthdsl] func2 -> DEBU eae 0xc4200261c0 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got Org1MSP) +orderer.example.com | 2018-01-18 09:30:21.627 UTC [cauthdsl] func2 -> DEBU eaf 0xc4200261c0 principal evaluation fails +orderer.example.com | 2018-01-18 09:30:21.627 UTC [cauthdsl] func1 -> DEBU eb0 0xc4200261c0 gate 1516267821626024450 evaluation fails +orderer.example.com | 2018-01-18 09:30:21.627 UTC [cauthdsl] func1 -> DEBU eb1 0xc4200261e0 gate 1516267821627480122 evaluation starts +orderer.example.com | 2018-01-18 09:30:21.627 UTC [cauthdsl] func2 -> DEBU eb2 0xc4200261e0 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:30:21.627 UTC [cauthdsl] func2 -> DEBU eb3 0xc4200261e0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:30:21.628 UTC [msp/identity] newIdentity -> DEBU eb4 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:30:21.628 UTC [msp] SatisfiesPrincipal -> DEBU eb5 Checking if identity satisfies MEMBER role for Org1MSP +orderer.example.com | 2018-01-18 09:30:21.628 UTC [msp] Validate -> DEBU eb6 MSP Org1MSP validating identity +orderer.example.com | 2018-01-18 09:30:21.633 UTC [cauthdsl] func2 -> DEBU eb7 0xc4200261e0 principal matched by identity 0 +orderer.example.com | 2018-01-18 09:30:21.633 UTC [msp/identity] Verify -> DEBU eb8 Verify: digest = 00000000 b1 92 da a3 15 e9 e5 65 7d ae 3f 83 e4 31 a5 a3 |.......e}.?..1..| +orderer.example.com | 00000010 33 27 f0 53 a3 96 e4 4a 87 7d c9 ca ae 5d 68 4c |3'.S...J.}...]hL| +orderer.example.com | 2018-01-18 09:30:21.633 UTC [msp/identity] Verify -> DEBU eb9 Verify: sig = 00000000 30 44 02 20 70 eb 48 f1 b3 f6 1f 2e 44 7a 3f 20 |0D. p.H.....Dz? | +orderer.example.com | 00000010 fe 8b a3 e1 bb 9f 5a b0 7e 0c 69 2c f4 68 24 17 |......Z.~.i,.h$.| +orderer.example.com | 00000020 2d cf dd 6c 02 20 7f d3 9b 7a 25 44 22 de 49 b3 |-..l. ...z%D".I.| +orderer.example.com | 00000030 d1 f0 a0 67 d2 5f a3 47 68 e8 47 c9 9d 7c f7 8c |...g._.Gh.G..|..| +orderer.example.com | 00000040 7f ea 0a 2c 45 9a |...,E.| +orderer.example.com | 2018-01-18 09:30:21.633 UTC [cauthdsl] func2 -> DEBU eba 0xc4200261e0 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-18 09:30:21.633 UTC [cauthdsl] func1 -> DEBU ebb 0xc4200261e0 gate 1516267821627480122 evaluation succeeds +orderer.example.com | 2018-01-18 09:30:21.633 UTC [orderer/common/sigfilter] Apply -> DEBU ebc Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4202d80c0 1 [0xc42014a778]}) %!s(*policies.implicitMetaPolicy=&{0xc420837160 1 [0xc42014a6b0 0xc42014a5d8]})]} +orderer.example.com | 2018-01-18 09:30:21.634 UTC [orderer/common/blockcutter] Ordered -> DEBU ebd Enqueuing message into batch +orderer.example.com | 2018-01-18 09:30:22.087 UTC [orderer/main] Broadcast -> DEBU ebe Starting new Broadcast handler +orderer.example.com | 2018-01-18 09:30:22.087 UTC [orderer/common/broadcast] Handle -> DEBU ebf Starting new broadcast loop +orderer.example.com | 2018-01-18 09:30:23.635 UTC [orderer/solo] main -> DEBU ec0 Batch timer expired, creating block +orderer.example.com | 2018-01-18 09:30:23.635 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU ec1 retrieveBlockByNumber() - blockNum = [2] +orderer.example.com | 2018-01-18 09:30:23.635 UTC [fsblkstorage] newBlockfileStream -> DEBU ec2 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[25667] +orderer.example.com | 2018-01-18 09:30:23.635 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU ec3 Remaining bytes=[13791], Going to peek [8] bytes +orderer.example.com | 2018-01-18 09:30:23.635 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU ec4 Returning blockbytes - length=[13789], placementInfo={fileNum=[0], startOffset=[25667], bytesOffset=[25669]} +orderer.example.com | 2018-01-18 09:30:23.636 UTC [orderer/multichain] addBlockSignature -> DEBU ec5 &{ledgerResources:0xc4209b5140 chain:0xc4209b5a00 cutter:0xc420863b80 filters:0xc4209b5640 signer:0x1274e88 lastConfig:2 lastConfigSeq:3} +orderer.example.com | 2018-01-18 09:30:23.636 UTC [orderer/multichain] addBlockSignature -> DEBU ec6 &{} +orderer.example.com | 2018-01-18 09:30:23.636 UTC [msp] GetLocalMSP -> DEBU ec7 Returning existing local MSP +orderer.example.com | 2018-01-18 09:30:23.636 UTC [msp] GetDefaultSigningIdentity -> DEBU ec8 Obtaining default signing identity +orderer.example.com | 2018-01-18 09:30:23.637 UTC [msp] GetLocalMSP -> DEBU ec9 Returning existing local MSP +orderer.example.com | 2018-01-18 09:30:23.637 UTC [msp] GetDefaultSigningIdentity -> DEBU eca Obtaining default signing identity +orderer.example.com | 2018-01-18 09:30:23.637 UTC [msp/identity] Sign -> DEBU ecb Sign: plaintext: 0AFA050A0A4F7264657265724D535012...5E77D824BA9811C84DEA368297FB10ED +orderer.example.com | 2018-01-18 09:30:23.637 UTC [msp/identity] Sign -> DEBU ecc Sign: digest: AAF6A149474A4E88CDC3FD6F856BCF3DD9822F30E42525314168E58ABA5FB451 +orderer.example.com | 2018-01-18 09:30:23.638 UTC [msp] GetLocalMSP -> DEBU ecd Returning existing local MSP +orderer.example.com | 2018-01-18 09:30:23.638 UTC [msp] GetDefaultSigningIdentity -> DEBU ece Obtaining default signing identity +orderer.example.com | 2018-01-18 09:30:23.639 UTC [orderer/multichain] addLastConfigSignature -> DEBU ecf [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 +orderer.example.com | 2018-01-18 09:30:23.639 UTC [msp] GetLocalMSP -> DEBU ed0 Returning existing local MSP +orderer.example.com | 2018-01-18 09:30:23.639 UTC [msp] GetDefaultSigningIdentity -> DEBU ed1 Obtaining default signing identity +orderer.example.com | 2018-01-18 09:30:23.640 UTC [msp/identity] Sign -> DEBU ed2 Sign: plaintext: 08020AFA050A0A4F7264657265724D53...5E77D824BA9811C84DEA368297FB10ED +orderer.example.com | 2018-01-18 09:30:23.640 UTC [msp/identity] Sign -> DEBU ed3 Sign: digest: A370933C04B33C4963BDFA82FB3F15F27AEC7CA23378D34521313FB22BA6A9AF +orderer.example.com | 2018-01-18 09:30:23.646 UTC [fsblkstorage] indexBlock -> DEBU ed4 Indexing block [blockNum=3, blockHash=[]byte{0x8a, 0x53, 0x56, 0xf, 0x7f, 0x2f, 0x8e, 0x2d, 0xd8, 0x4c, 0x3b, 0x34, 0x50, 0xc5, 0x52, 0x82, 0xe4, 0xc0, 0x8c, 0x36, 0x63, 0x95, 0x3a, 0xc, 0x39, 0x9b, 0xb8, 0x1a, 0x82, 0x88, 0x47, 0xb9} txOffsets= +orderer.example.com | txId=651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6 locPointer=offset=70, bytesLength=3393 +orderer.example.com | ] +orderer.example.com | 2018-01-18 09:30:23.646 UTC [fsblkstorage] updateCheckpoint -> DEBU ed5 Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[44670], isChainEmpty=[false], lastBlockNumber=[3] +orderer.example.com | 2018-01-18 09:30:23.646 UTC [orderer/multichain] WriteBlock -> DEBU ed6 [channel: businesschannel] Wrote block 3 +orderer.example.com | 2018-01-18 09:30:23.647 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU ed7 retrieveBlockByNumber() - blockNum = [3] +orderer.example.com | 2018-01-18 09:30:23.647 UTC [fsblkstorage] newBlockfileStream -> DEBU eda newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[39458] +orderer.example.com | 2018-01-18 09:30:23.647 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU edb Remaining bytes=[5212], Going to peek [8] bytes +orderer.example.com | 2018-01-18 09:30:23.647 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU edc Returning blockbytes - length=[5210], placementInfo={fileNum=[0], startOffset=[39458], bytesOffset=[39460]} +orderer.example.com | 2018-01-18 09:30:23.647 UTC [orderer/common/deliver] Handle -> DEBU edd [channel: businesschannel] Delivering block for (0xc42037a6c0) +orderer.example.com | 2018-01-18 09:30:23.647 UTC [orderer/common/deliver] Handle -> WARN ede [channel: businesschannel] Error sending to stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | 2018-01-18 09:30:23.647 UTC [orderer/main] func1 -> DEBU edf Closing Deliver stream +orderer.example.com | 2018-01-18 09:30:23.647 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU ed9 retrieveBlockByNumber() - blockNum = [3] +orderer.example.com | 2018-01-18 09:30:23.648 UTC [fsblkstorage] newBlockfileStream -> DEBU ee0 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[39458] +orderer.example.com | 2018-01-18 09:30:23.648 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU ee1 Remaining bytes=[5212], Going to peek [8] bytes +orderer.example.com | 2018-01-18 09:30:23.648 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU ee2 Returning blockbytes - length=[5210], placementInfo={fileNum=[0], startOffset=[39458], bytesOffset=[39460]} +orderer.example.com | 2018-01-18 09:30:23.648 UTC [orderer/common/deliver] Handle -> DEBU ee3 [channel: businesschannel] Delivering block for (0xc420363320) +orderer.example.com | 2018-01-18 09:30:23.647 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU ed8 retrieveBlockByNumber() - blockNum = [3] +orderer.example.com | 2018-01-18 09:30:23.648 UTC [fsblkstorage] newBlockfileStream -> DEBU ee4 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[39458] +orderer.example.com | 2018-01-18 09:30:23.649 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU ee5 Remaining bytes=[5212], Going to peek [8] bytes +orderer.example.com | 2018-01-18 09:30:23.649 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU ee6 Returning blockbytes - length=[5210], placementInfo={fileNum=[0], startOffset=[39458], bytesOffset=[39460]} +orderer.example.com | 2018-01-18 09:30:23.649 UTC [orderer/common/deliver] Handle -> DEBU ee7 [channel: businesschannel] Delivering block for (0xc420b7cce0) +orderer.example.com | 2018-01-18 09:30:45.071 UTC [orderer/common/broadcast] Handle -> DEBU ee8 [channel: businesschannel] Broadcast is filtering message of type ENDORSER_TRANSACTION +orderer.example.com | 2018-01-18 09:30:45.071 UTC [policies] GetPolicy -> DEBU ee9 Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:30:45.071 UTC [cauthdsl] func1 -> DEBU eea 0xc42014a940 gate 1516267845071933028 evaluation starts +orderer.example.com | 2018-01-18 09:30:45.072 UTC [cauthdsl] func2 -> DEBU eeb 0xc42014a940 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:30:45.072 UTC [cauthdsl] func2 -> DEBU eec 0xc42014a940 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:30:45.072 UTC [msp/identity] newIdentity -> DEBU eed Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +orderer.example.com | AXYxULZpXYDQXt1KaLI= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:30:45.073 UTC [cauthdsl] func2 -> DEBU eee 0xc42014a940 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) +orderer.example.com | 2018-01-18 09:30:45.073 UTC [cauthdsl] func2 -> DEBU eef 0xc42014a940 principal evaluation fails +orderer.example.com | 2018-01-18 09:30:45.073 UTC [cauthdsl] func1 -> DEBU ef0 0xc42014a940 gate 1516267845071933028 evaluation fails +orderer.example.com | 2018-01-18 09:30:45.073 UTC [cauthdsl] func1 -> DEBU ef1 0xc42014a950 gate 1516267845073317736 evaluation starts +orderer.example.com | 2018-01-18 09:30:45.073 UTC [cauthdsl] func2 -> DEBU ef2 0xc42014a950 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:30:45.073 UTC [cauthdsl] func2 -> DEBU ef3 0xc42014a950 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:30:45.074 UTC [msp/identity] newIdentity -> DEBU ef4 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +orderer.example.com | AXYxULZpXYDQXt1KaLI= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:30:45.074 UTC [msp] SatisfiesPrincipal -> DEBU ef5 Checking if identity satisfies MEMBER role for Org2MSP +orderer.example.com | 2018-01-18 09:30:45.074 UTC [msp] Validate -> DEBU ef6 MSP Org2MSP validating identity +orderer.example.com | 2018-01-18 09:30:45.075 UTC [cauthdsl] func2 -> DEBU ef7 0xc42014a950 principal matched by identity 0 +orderer.example.com | 2018-01-18 09:30:45.075 UTC [msp/identity] Verify -> DEBU ef8 Verify: digest = 00000000 b5 73 b3 54 d1 e1 01 7e 02 61 8f 23 c6 5b 3f fe |.s.T...~.a.#.[?.| +orderer.example.com | 00000010 5f 91 94 4d 92 a1 96 ae e2 77 e7 ec 35 5c 22 88 |_..M.....w..5\".| +orderer.example.com | 2018-01-18 09:30:45.075 UTC [msp/identity] Verify -> DEBU ef9 Verify: sig = 00000000 30 44 02 20 72 99 11 9c 93 93 0b eb d9 d4 40 d6 |0D. r.........@.| +orderer.example.com | 00000010 75 c6 e6 76 a0 a1 6c 88 6d 8f 48 48 77 58 52 60 |u..v..l.m.HHwXR`| +orderer.example.com | 00000020 4b 27 1c 41 02 20 14 22 34 1f aa 23 f8 69 3c 0d |K'.A. ."4..#.i<.| +orderer.example.com | 00000030 ff 39 11 6f 9e b4 fa 0c da 28 ad 88 dd 53 25 4e |.9.o.....(...S%N| +orderer.example.com | 00000040 5b c5 fc 06 e6 a1 |[.....| +orderer.example.com | 2018-01-18 09:30:45.075 UTC [cauthdsl] func2 -> DEBU efa 0xc42014a950 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-18 09:30:45.075 UTC [cauthdsl] func1 -> DEBU efb 0xc42014a950 gate 1516267845073317736 evaluation succeeds +orderer.example.com | 2018-01-18 09:30:45.075 UTC [orderer/common/sigfilter] Apply -> DEBU efc Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4202d80c0 1 [0xc42014a778]}) %!s(*policies.implicitMetaPolicy=&{0xc420837160 1 [0xc42014a6b0 0xc42014a5d8]})]} +orderer.example.com | 2018-01-18 09:30:45.076 UTC [orderer/common/broadcast] Handle -> DEBU efd [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION +orderer.example.com | 2018-01-18 09:30:45.076 UTC [policies] GetPolicy -> DEBU efe Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:30:45.076 UTC [cauthdsl] func1 -> DEBU eff 0xc4200262a8 gate 1516267845076591298 evaluation starts +orderer.example.com | 2018-01-18 09:30:45.076 UTC [cauthdsl] func2 -> DEBU f00 0xc4200262a8 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:30:45.077 UTC [cauthdsl] func2 -> DEBU f02 0xc4200262a8 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:30:45.078 UTC [msp/identity] newIdentity -> DEBU f03 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +orderer.example.com | AXYxULZpXYDQXt1KaLI= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:30:45.078 UTC [cauthdsl] func2 -> DEBU f04 0xc4200262a8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) +orderer.example.com | 2018-01-18 09:30:45.078 UTC [cauthdsl] func2 -> DEBU f05 0xc4200262a8 principal evaluation fails +orderer.example.com | 2018-01-18 09:30:45.078 UTC [cauthdsl] func1 -> DEBU f06 0xc4200262a8 gate 1516267845076591298 evaluation fails +orderer.example.com | 2018-01-18 09:30:45.078 UTC [cauthdsl] func1 -> DEBU f07 0xc4200262b8 gate 1516267845078805990 evaluation starts +orderer.example.com | 2018-01-18 09:30:45.078 UTC [cauthdsl] func2 -> DEBU f08 0xc4200262b8 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:30:45.078 UTC [cauthdsl] func2 -> DEBU f09 0xc4200262b8 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:30:45.079 UTC [msp/identity] newIdentity -> DEBU f0a Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +orderer.example.com | AXYxULZpXYDQXt1KaLI= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:30:45.079 UTC [msp] SatisfiesPrincipal -> DEBU f0b Checking if identity satisfies MEMBER role for Org2MSP +orderer.example.com | 2018-01-18 09:30:45.079 UTC [msp] Validate -> DEBU f0c MSP Org2MSP validating identity +orderer.example.com | 2018-01-18 09:30:45.079 UTC [cauthdsl] func2 -> DEBU f0d 0xc4200262b8 principal matched by identity 0 +orderer.example.com | 2018-01-18 09:30:45.080 UTC [msp/identity] Verify -> DEBU f0e Verify: digest = 00000000 b5 73 b3 54 d1 e1 01 7e 02 61 8f 23 c6 5b 3f fe |.s.T...~.a.#.[?.| +orderer.example.com | 00000010 5f 91 94 4d 92 a1 96 ae e2 77 e7 ec 35 5c 22 88 |_..M.....w..5\".| +orderer.example.com | 2018-01-18 09:30:45.080 UTC [msp/identity] Verify -> DEBU f0f Verify: sig = 00000000 30 44 02 20 72 99 11 9c 93 93 0b eb d9 d4 40 d6 |0D. r.........@.| +orderer.example.com | 00000010 75 c6 e6 76 a0 a1 6c 88 6d 8f 48 48 77 58 52 60 |u..v..l.m.HHwXR`| +orderer.example.com | 00000020 4b 27 1c 41 02 20 14 22 34 1f aa 23 f8 69 3c 0d |K'.A. ."4..#.i<.| +orderer.example.com | 00000030 ff 39 11 6f 9e b4 fa 0c da 28 ad 88 dd 53 25 4e |.9.o.....(...S%N| +orderer.example.com | 00000040 5b c5 fc 06 e6 a1 |[.....| +orderer.example.com | 2018-01-18 09:30:45.080 UTC [cauthdsl] func2 -> DEBU f10 0xc4200262b8 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-18 09:30:45.081 UTC [cauthdsl] func1 -> DEBU f11 0xc4200262b8 gate 1516267845078805990 evaluation succeeds +orderer.example.com | 2018-01-18 09:30:45.081 UTC [orderer/common/sigfilter] Apply -> DEBU f12 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4202d80c0 1 [0xc42014a778]}) %!s(*policies.implicitMetaPolicy=&{0xc420837160 1 [0xc42014a6b0 0xc42014a5d8]})]} +orderer.example.com | 2018-01-18 09:30:45.081 UTC [orderer/common/blockcutter] Ordered -> DEBU f13 Enqueuing message into batch +orderer.example.com | 2018-01-18 09:30:45.077 UTC [orderer/common/broadcast] Handle -> WARN f01 Error reading from stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | 2018-01-18 09:30:45.082 UTC [orderer/main] func1 -> DEBU f14 Closing Broadcast stream +orderer.example.com | 2018-01-18 09:30:47.083 UTC [orderer/solo] main -> DEBU f15 Batch timer expired, creating block +orderer.example.com | 2018-01-18 09:30:47.083 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU f16 retrieveBlockByNumber() - blockNum = [3] +orderer.example.com | 2018-01-18 09:30:47.083 UTC [fsblkstorage] newBlockfileStream -> DEBU f17 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[39458] +orderer.example.com | 2018-01-18 09:30:47.083 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f18 Remaining bytes=[5212], Going to peek [8] bytes +orderer.example.com | 2018-01-18 09:30:47.083 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f19 Returning blockbytes - length=[5210], placementInfo={fileNum=[0], startOffset=[39458], bytesOffset=[39460]} +orderer.example.com | 2018-01-18 09:30:47.084 UTC [orderer/multichain] addBlockSignature -> DEBU f1a &{ledgerResources:0xc4209b5140 chain:0xc4209b5a00 cutter:0xc420863b80 filters:0xc4209b5640 signer:0x1274e88 lastConfig:2 lastConfigSeq:3} +orderer.example.com | 2018-01-18 09:30:47.084 UTC [orderer/multichain] addBlockSignature -> DEBU f1b &{} +orderer.example.com | 2018-01-18 09:30:47.084 UTC [msp] GetLocalMSP -> DEBU f1c Returning existing local MSP +orderer.example.com | 2018-01-18 09:30:47.084 UTC [msp] GetDefaultSigningIdentity -> DEBU f1d Obtaining default signing identity +orderer.example.com | 2018-01-18 09:30:47.084 UTC [msp] GetLocalMSP -> DEBU f1e Returning existing local MSP +orderer.example.com | 2018-01-18 09:30:47.084 UTC [msp] GetDefaultSigningIdentity -> DEBU f1f Obtaining default signing identity +orderer.example.com | 2018-01-18 09:30:47.084 UTC [msp/identity] Sign -> DEBU f20 Sign: plaintext: 0AFA050A0A4F7264657265724D535012...D11C584A46DA0F23C69FDFB4118B619E +orderer.example.com | 2018-01-18 09:30:47.084 UTC [msp/identity] Sign -> DEBU f21 Sign: digest: 40A259B6BB0B23569F107FE292554B7FEC91C7D6D00639921DC9DA3D9AC81B87 +orderer.example.com | 2018-01-18 09:30:47.085 UTC [msp] GetLocalMSP -> DEBU f22 Returning existing local MSP +orderer.example.com | 2018-01-18 09:30:47.085 UTC [msp] GetDefaultSigningIdentity -> DEBU f23 Obtaining default signing identity +orderer.example.com | 2018-01-18 09:30:47.085 UTC [orderer/multichain] addLastConfigSignature -> DEBU f24 [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 +orderer.example.com | 2018-01-18 09:30:47.085 UTC [msp] GetLocalMSP -> DEBU f25 Returning existing local MSP +orderer.example.com | 2018-01-18 09:30:47.085 UTC [msp] GetDefaultSigningIdentity -> DEBU f26 Obtaining default signing identity +orderer.example.com | 2018-01-18 09:30:47.085 UTC [msp/identity] Sign -> DEBU f27 Sign: plaintext: 08020AFA050A0A4F7264657265724D53...D11C584A46DA0F23C69FDFB4118B619E +orderer.example.com | 2018-01-18 09:30:47.085 UTC [msp/identity] Sign -> DEBU f28 Sign: digest: FF39799916030A17545301657D598E401DC682356F39CD65AE3784801D828F0E +orderer.example.com | 2018-01-18 09:30:47.093 UTC [fsblkstorage] indexBlock -> DEBU f29 Indexing block [blockNum=4, blockHash=[]byte{0x93, 0xa4, 0xeb, 0x23, 0x11, 0xc5, 0x82, 0x3, 0x71, 0xbf, 0xef, 0x31, 0x5d, 0x62, 0x4, 0x79, 0xce, 0xd9, 0xc3, 0x8e, 0xe0, 0x77, 0x29, 0xaf, 0x45, 0x72, 0x23, 0x4e, 0x53, 0x11, 0xbd, 0x26} txOffsets= +orderer.example.com | txId=79910bc72d1a9ba3fd9ac6a98cdec470c2b4c2afd8dd6128c715aa89ad94672c locPointer=offset=70, bytesLength=3393 +orderer.example.com | ] +orderer.example.com | 2018-01-18 09:30:47.093 UTC [fsblkstorage] updateCheckpoint -> DEBU f2a Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[49883], isChainEmpty=[false], lastBlockNumber=[4] +orderer.example.com | 2018-01-18 09:30:47.093 UTC [orderer/multichain] WriteBlock -> DEBU f2b [channel: businesschannel] Wrote block 4 +orderer.example.com | 2018-01-18 09:30:47.093 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU f2c retrieveBlockByNumber() - blockNum = [4] +orderer.example.com | 2018-01-18 09:30:47.093 UTC [fsblkstorage] newBlockfileStream -> DEBU f2e newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[44670] +orderer.example.com | 2018-01-18 09:30:47.094 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f2f Remaining bytes=[5213], Going to peek [8] bytes +orderer.example.com | 2018-01-18 09:30:47.094 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f30 Returning blockbytes - length=[5211], placementInfo={fileNum=[0], startOffset=[44670], bytesOffset=[44672]} +orderer.example.com | 2018-01-18 09:30:47.095 UTC [orderer/common/deliver] Handle -> DEBU f31 [channel: businesschannel] Delivering block for (0xc420b7cce0) +orderer.example.com | 2018-01-18 09:30:47.093 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU f2d retrieveBlockByNumber() - blockNum = [4] +orderer.example.com | 2018-01-18 09:30:47.095 UTC [fsblkstorage] newBlockfileStream -> DEBU f32 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[44670] +orderer.example.com | 2018-01-18 09:30:47.096 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f33 Remaining bytes=[5213], Going to peek [8] bytes +orderer.example.com | 2018-01-18 09:30:47.096 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f34 Returning blockbytes - length=[5211], placementInfo={fileNum=[0], startOffset=[44670], bytesOffset=[44672]} +orderer.example.com | 2018-01-18 09:30:47.097 UTC [orderer/common/deliver] Handle -> DEBU f35 [channel: businesschannel] Delivering block for (0xc420363320) +orderer.example.com | 2018-01-18 09:31:07.050 UTC [orderer/main] Broadcast -> DEBU f36 Starting new Broadcast handler +orderer.example.com | 2018-01-18 09:31:07.050 UTC [orderer/common/broadcast] Handle -> DEBU f37 Starting new broadcast loop +orderer.example.com | 2018-01-18 09:31:07.164 UTC [orderer/common/broadcast] Handle -> DEBU f38 [channel: businesschannel] Broadcast is filtering message of type ENDORSER_TRANSACTION +orderer.example.com | 2018-01-18 09:31:07.165 UTC [policies] GetPolicy -> DEBU f39 Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:31:07.165 UTC [cauthdsl] func1 -> DEBU f3a 0xc4200264e8 gate 1516267867165420156 evaluation starts +orderer.example.com | 2018-01-18 09:31:07.167 UTC [cauthdsl] func2 -> DEBU f3b 0xc4200264e8 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:31:07.167 UTC [cauthdsl] func2 -> DEBU f3c 0xc4200264e8 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:31:07.167 UTC [msp/identity] newIdentity -> DEBU f3d Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:31:07.168 UTC [cauthdsl] func2 -> DEBU f3e 0xc4200264e8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) +orderer.example.com | 2018-01-18 09:31:07.168 UTC [cauthdsl] func2 -> DEBU f3f 0xc4200264e8 principal evaluation fails +orderer.example.com | 2018-01-18 09:31:07.168 UTC [cauthdsl] func1 -> DEBU f40 0xc4200264e8 gate 1516267867165420156 evaluation fails +orderer.example.com | 2018-01-18 09:31:07.169 UTC [cauthdsl] func1 -> DEBU f41 0xc420026510 gate 1516267867168971879 evaluation starts +orderer.example.com | 2018-01-18 09:31:07.169 UTC [cauthdsl] func2 -> DEBU f42 0xc420026510 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:31:07.169 UTC [cauthdsl] func2 -> DEBU f43 0xc420026510 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:31:07.170 UTC [msp/identity] newIdentity -> DEBU f44 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:31:07.171 UTC [cauthdsl] func2 -> DEBU f45 0xc420026510 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got Org1MSP) +orderer.example.com | 2018-01-18 09:31:07.172 UTC [cauthdsl] func2 -> DEBU f46 0xc420026510 principal evaluation fails +orderer.example.com | 2018-01-18 09:31:07.172 UTC [cauthdsl] func1 -> DEBU f47 0xc420026510 gate 1516267867168971879 evaluation fails +orderer.example.com | 2018-01-18 09:31:07.172 UTC [cauthdsl] func1 -> DEBU f48 0xc420026520 gate 1516267867172779075 evaluation starts +orderer.example.com | 2018-01-18 09:31:07.172 UTC [cauthdsl] func2 -> DEBU f49 0xc420026520 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:31:07.173 UTC [cauthdsl] func2 -> DEBU f4a 0xc420026520 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:31:07.181 UTC [msp/identity] newIdentity -> DEBU f4b Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:31:07.182 UTC [msp] SatisfiesPrincipal -> DEBU f4c Checking if identity satisfies MEMBER role for Org1MSP +orderer.example.com | 2018-01-18 09:31:07.184 UTC [msp] Validate -> DEBU f4d MSP Org1MSP validating identity +orderer.example.com | 2018-01-18 09:31:07.186 UTC [cauthdsl] func2 -> DEBU f4e 0xc420026520 principal matched by identity 0 +orderer.example.com | 2018-01-18 09:31:07.187 UTC [msp/identity] Verify -> DEBU f4f Verify: digest = 00000000 2c 91 e1 87 41 fd fc bf 85 7c 3d 6b b0 73 2b 4e |,...A....|=k.s+N| +orderer.example.com | 00000010 34 6e 08 6f 4a 5b ec d9 3d 83 1c bb a9 06 6e 63 |4n.oJ[..=.....nc| +orderer.example.com | 2018-01-18 09:31:07.188 UTC [msp/identity] Verify -> DEBU f50 Verify: sig = 00000000 30 45 02 21 00 b2 5c 4a 64 9d 4a a3 bd fa 95 bb |0E.!..\Jd.J.....| +orderer.example.com | 00000010 2f 57 4d 1f 4f 52 a2 be 88 72 04 57 0d f5 61 ae |/WM.OR...r.W..a.| +orderer.example.com | 00000020 71 0f 2f 4b 51 02 20 27 7b 22 50 7d 3d 47 9c 23 |q./KQ. '{"P}=G.#| +orderer.example.com | 00000030 25 5c e8 1e bb 96 e1 45 d8 a0 2d cb c0 cb 13 94 |%\.....E..-.....| +orderer.example.com | 00000040 0d 50 48 c5 8a 02 d9 |.PH....| +orderer.example.com | 2018-01-18 09:31:07.189 UTC [cauthdsl] func2 -> DEBU f51 0xc420026520 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-18 09:31:07.190 UTC [cauthdsl] func1 -> DEBU f52 0xc420026520 gate 1516267867172779075 evaluation succeeds +orderer.example.com | 2018-01-18 09:31:07.190 UTC [orderer/common/sigfilter] Apply -> DEBU f53 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4202d80c0 1 [0xc42014a778]}) %!s(*policies.implicitMetaPolicy=&{0xc420837160 1 [0xc42014a6b0 0xc42014a5d8]})]} +orderer.example.com | 2018-01-18 09:31:07.191 UTC [orderer/common/broadcast] Handle -> DEBU f54 [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION +orderer.example.com | 2018-01-18 09:31:07.191 UTC [policies] GetPolicy -> DEBU f55 Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:31:07.191 UTC [cauthdsl] func1 -> DEBU f56 0xc42014a980 gate 1516267867191729595 evaluation starts +orderer.example.com | 2018-01-18 09:31:07.191 UTC [cauthdsl] func2 -> DEBU f57 0xc42014a980 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:31:07.192 UTC [cauthdsl] func2 -> DEBU f58 0xc42014a980 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:31:07.192 UTC [msp/identity] newIdentity -> DEBU f59 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:31:07.193 UTC [cauthdsl] func2 -> DEBU f5a 0xc42014a980 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) +orderer.example.com | 2018-01-18 09:31:07.193 UTC [cauthdsl] func2 -> DEBU f5b 0xc42014a980 principal evaluation fails +orderer.example.com | 2018-01-18 09:31:07.193 UTC [cauthdsl] func1 -> DEBU f5c 0xc42014a980 gate 1516267867191729595 evaluation fails +orderer.example.com | 2018-01-18 09:31:07.193 UTC [cauthdsl] func1 -> DEBU f5d 0xc42014a990 gate 1516267867193418150 evaluation starts +orderer.example.com | 2018-01-18 09:31:07.193 UTC [cauthdsl] func2 -> DEBU f5e 0xc42014a990 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:31:07.193 UTC [cauthdsl] func2 -> DEBU f5f 0xc42014a990 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:31:07.194 UTC [msp/identity] newIdentity -> DEBU f60 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:31:07.194 UTC [cauthdsl] func2 -> DEBU f61 0xc42014a990 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got Org1MSP) +orderer.example.com | 2018-01-18 09:31:07.194 UTC [cauthdsl] func2 -> DEBU f62 0xc42014a990 principal evaluation fails +orderer.example.com | 2018-01-18 09:31:07.195 UTC [cauthdsl] func1 -> DEBU f63 0xc42014a990 gate 1516267867193418150 evaluation fails +orderer.example.com | 2018-01-18 09:31:07.195 UTC [cauthdsl] func1 -> DEBU f64 0xc42014a9a0 gate 1516267867195288814 evaluation starts +orderer.example.com | 2018-01-18 09:31:07.195 UTC [cauthdsl] func2 -> DEBU f65 0xc42014a9a0 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:31:07.195 UTC [cauthdsl] func2 -> DEBU f66 0xc42014a9a0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:31:07.195 UTC [msp/identity] newIdentity -> DEBU f67 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:31:07.196 UTC [msp] SatisfiesPrincipal -> DEBU f68 Checking if identity satisfies MEMBER role for Org1MSP +orderer.example.com | 2018-01-18 09:31:07.196 UTC [msp] Validate -> DEBU f69 MSP Org1MSP validating identity +orderer.example.com | 2018-01-18 09:31:07.196 UTC [cauthdsl] func2 -> DEBU f6a 0xc42014a9a0 principal matched by identity 0 +orderer.example.com | 2018-01-18 09:31:07.197 UTC [msp/identity] Verify -> DEBU f6b Verify: digest = 00000000 2c 91 e1 87 41 fd fc bf 85 7c 3d 6b b0 73 2b 4e |,...A....|=k.s+N| +orderer.example.com | 00000010 34 6e 08 6f 4a 5b ec d9 3d 83 1c bb a9 06 6e 63 |4n.oJ[..=.....nc| +orderer.example.com | 2018-01-18 09:31:07.197 UTC [msp/identity] Verify -> DEBU f6c Verify: sig = 00000000 30 45 02 21 00 b2 5c 4a 64 9d 4a a3 bd fa 95 bb |0E.!..\Jd.J.....| +orderer.example.com | 00000010 2f 57 4d 1f 4f 52 a2 be 88 72 04 57 0d f5 61 ae |/WM.OR...r.W..a.| +orderer.example.com | 00000020 71 0f 2f 4b 51 02 20 27 7b 22 50 7d 3d 47 9c 23 |q./KQ. '{"P}=G.#| +orderer.example.com | 00000030 25 5c e8 1e bb 96 e1 45 d8 a0 2d cb c0 cb 13 94 |%\.....E..-.....| +orderer.example.com | 00000040 0d 50 48 c5 8a 02 d9 |.PH....| +orderer.example.com | 2018-01-18 09:31:07.197 UTC [cauthdsl] func2 -> DEBU f6d 0xc42014a9a0 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-18 09:31:07.198 UTC [cauthdsl] func1 -> DEBU f6e 0xc42014a9a0 gate 1516267867195288814 evaluation succeeds +orderer.example.com | 2018-01-18 09:31:07.198 UTC [orderer/common/sigfilter] Apply -> DEBU f6f Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4202d80c0 1 [0xc42014a778]}) %!s(*policies.implicitMetaPolicy=&{0xc420837160 1 [0xc42014a6b0 0xc42014a5d8]})]} +orderer.example.com | 2018-01-18 09:31:07.198 UTC [orderer/common/blockcutter] Ordered -> DEBU f70 Enqueuing message into batch +orderer.example.com | 2018-01-18 09:31:07.200 UTC [orderer/common/broadcast] Handle -> WARN f71 Error reading from stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | 2018-01-18 09:31:07.200 UTC [orderer/main] func1 -> DEBU f72 Closing Broadcast stream +orderer.example.com | 2018-01-18 09:31:09.199 UTC [orderer/solo] main -> DEBU f73 Batch timer expired, creating block +orderer.example.com | 2018-01-18 09:31:09.199 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU f74 retrieveBlockByNumber() - blockNum = [4] +orderer.example.com | 2018-01-18 09:31:09.199 UTC [fsblkstorage] newBlockfileStream -> DEBU f75 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[44670] +orderer.example.com | 2018-01-18 09:31:09.200 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f76 Remaining bytes=[5213], Going to peek [8] bytes +orderer.example.com | 2018-01-18 09:31:09.200 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f77 Returning blockbytes - length=[5211], placementInfo={fileNum=[0], startOffset=[44670], bytesOffset=[44672]} +orderer.example.com | 2018-01-18 09:31:09.200 UTC [orderer/multichain] addBlockSignature -> DEBU f78 &{ledgerResources:0xc4209b5140 chain:0xc4209b5a00 cutter:0xc420863b80 filters:0xc4209b5640 signer:0x1274e88 lastConfig:2 lastConfigSeq:3} +orderer.example.com | 2018-01-18 09:31:09.200 UTC [orderer/multichain] addBlockSignature -> DEBU f79 &{} +orderer.example.com | 2018-01-18 09:31:09.200 UTC [msp] GetLocalMSP -> DEBU f7a Returning existing local MSP +orderer.example.com | 2018-01-18 09:31:09.200 UTC [msp] GetDefaultSigningIdentity -> DEBU f7b Obtaining default signing identity +orderer.example.com | 2018-01-18 09:31:09.200 UTC [msp] GetLocalMSP -> DEBU f7c Returning existing local MSP +orderer.example.com | 2018-01-18 09:31:09.200 UTC [msp] GetDefaultSigningIdentity -> DEBU f7d Obtaining default signing identity +orderer.example.com | 2018-01-18 09:31:09.201 UTC [msp/identity] Sign -> DEBU f7e Sign: plaintext: 0AFA050A0A4F7264657265724D535012...49E9C87649B917259CC633BF1B1A9DFC +orderer.example.com | 2018-01-18 09:31:09.201 UTC [msp/identity] Sign -> DEBU f7f Sign: digest: 0C0228110C91A72B8C801D1A9FC3D45ED4E8A0C2B25B6E20E0FFCFE177CE8075 +orderer.example.com | 2018-01-18 09:31:09.201 UTC [msp] GetLocalMSP -> DEBU f80 Returning existing local MSP +orderer.example.com | 2018-01-18 09:31:09.201 UTC [msp] GetDefaultSigningIdentity -> DEBU f81 Obtaining default signing identity +orderer.example.com | 2018-01-18 09:31:09.201 UTC [orderer/multichain] addLastConfigSignature -> DEBU f82 [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 +orderer.example.com | 2018-01-18 09:31:09.201 UTC [msp] GetLocalMSP -> DEBU f83 Returning existing local MSP +orderer.example.com | 2018-01-18 09:31:09.202 UTC [msp] GetDefaultSigningIdentity -> DEBU f84 Obtaining default signing identity +orderer.example.com | 2018-01-18 09:31:09.202 UTC [msp/identity] Sign -> DEBU f85 Sign: plaintext: 08020AFA050A0A4F7264657265724D53...49E9C87649B917259CC633BF1B1A9DFC +orderer.example.com | 2018-01-18 09:31:09.202 UTC [msp/identity] Sign -> DEBU f86 Sign: digest: CB09A6F7DDB7EEB746B97330BE42F6F9D5233A72E3F45C9AFEAFF86C85B8426D +orderer.example.com | 2018-01-18 09:31:09.204 UTC [fsblkstorage] indexBlock -> DEBU f87 Indexing block [blockNum=5, blockHash=[]byte{0x14, 0x79, 0x5b, 0xd3, 0x7, 0x12, 0xdf, 0xbb, 0x6c, 0xf, 0xfc, 0x0, 0x56, 0xb5, 0xce, 0x33, 0x6a, 0x55, 0xf7, 0xe6, 0xf, 0x23, 0x39, 0xcd, 0x2d, 0xe9, 0xe3, 0xb1, 0x3, 0x84, 0xfe, 0x7c} txOffsets= +orderer.example.com | txId=7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9 locPointer=offset=70, bytesLength=2855 +orderer.example.com | ] +orderer.example.com | 2018-01-18 09:31:09.205 UTC [fsblkstorage] updateCheckpoint -> DEBU f88 Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[54558], isChainEmpty=[false], lastBlockNumber=[5] +orderer.example.com | 2018-01-18 09:31:09.205 UTC [orderer/multichain] WriteBlock -> DEBU f89 [channel: businesschannel] Wrote block 5 +orderer.example.com | 2018-01-18 09:31:09.205 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU f8a retrieveBlockByNumber() - blockNum = [5] +orderer.example.com | 2018-01-18 09:31:09.205 UTC [fsblkstorage] newBlockfileStream -> DEBU f8b newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[49883] +orderer.example.com | 2018-01-18 09:31:09.205 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f8c Remaining bytes=[4675], Going to peek [8] bytes +orderer.example.com | 2018-01-18 09:31:09.205 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f8d Returning blockbytes - length=[4673], placementInfo={fileNum=[0], startOffset=[49883], bytesOffset=[49885]} +orderer.example.com | 2018-01-18 09:31:09.206 UTC [orderer/common/deliver] Handle -> DEBU f8e [channel: businesschannel] Delivering block for (0xc420b7cce0) +orderer.example.com | 2018-01-18 09:31:09.206 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU f8f retrieveBlockByNumber() - blockNum = [5] +orderer.example.com | 2018-01-18 09:31:09.206 UTC [fsblkstorage] newBlockfileStream -> DEBU f90 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[49883] +orderer.example.com | 2018-01-18 09:31:09.206 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f91 Remaining bytes=[4675], Going to peek [8] bytes +orderer.example.com | 2018-01-18 09:31:09.206 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f92 Returning blockbytes - length=[4673], placementInfo={fileNum=[0], startOffset=[49883], bytesOffset=[49885]} +orderer.example.com | 2018-01-18 09:31:09.206 UTC [orderer/common/deliver] Handle -> DEBU f93 [channel: businesschannel] Delivering block for (0xc420363320) +orderer.example.com | 2018-01-18 09:31:27.697 UTC [orderer/main] Broadcast -> DEBU f94 Starting new Broadcast handler +orderer.example.com | 2018-01-18 09:31:27.697 UTC [orderer/common/broadcast] Handle -> DEBU f95 Starting new broadcast loop +orderer.example.com | 2018-01-18 09:31:27.723 UTC [orderer/common/broadcast] Handle -> DEBU f96 [channel: businesschannel] Broadcast is filtering message of type ENDORSER_TRANSACTION +orderer.example.com | 2018-01-18 09:31:27.724 UTC [policies] GetPolicy -> DEBU f97 Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:31:27.724 UTC [cauthdsl] func1 -> DEBU f98 0xc4200265d8 gate 1516267887724063790 evaluation starts +orderer.example.com | 2018-01-18 09:31:27.724 UTC [cauthdsl] func2 -> DEBU f99 0xc4200265d8 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:31:27.724 UTC [cauthdsl] func2 -> DEBU f9a 0xc4200265d8 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:31:27.724 UTC [msp/identity] newIdentity -> DEBU f9b Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +orderer.example.com | AXYxULZpXYDQXt1KaLI= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:31:27.725 UTC [cauthdsl] func2 -> DEBU f9c 0xc4200265d8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) +orderer.example.com | 2018-01-18 09:31:27.725 UTC [cauthdsl] func2 -> DEBU f9d 0xc4200265d8 principal evaluation fails +orderer.example.com | 2018-01-18 09:31:27.725 UTC [cauthdsl] func1 -> DEBU f9e 0xc4200265d8 gate 1516267887724063790 evaluation fails +orderer.example.com | 2018-01-18 09:31:27.725 UTC [cauthdsl] func1 -> DEBU f9f 0xc4200265e8 gate 1516267887725227008 evaluation starts +orderer.example.com | 2018-01-18 09:31:27.725 UTC [cauthdsl] func2 -> DEBU fa0 0xc4200265e8 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:31:27.725 UTC [cauthdsl] func2 -> DEBU fa1 0xc4200265e8 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:31:27.725 UTC [msp/identity] newIdentity -> DEBU fa2 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +orderer.example.com | AXYxULZpXYDQXt1KaLI= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:31:27.726 UTC [msp] SatisfiesPrincipal -> DEBU fa3 Checking if identity satisfies MEMBER role for Org2MSP +orderer.example.com | 2018-01-18 09:31:27.726 UTC [msp] Validate -> DEBU fa4 MSP Org2MSP validating identity +orderer.example.com | 2018-01-18 09:31:27.726 UTC [cauthdsl] func2 -> DEBU fa5 0xc4200265e8 principal matched by identity 0 +orderer.example.com | 2018-01-18 09:31:27.726 UTC [msp/identity] Verify -> DEBU fa6 Verify: digest = 00000000 ac 85 6a f3 bd 0d 56 49 d0 ae 7c 3e 69 9b 24 3d |..j...VI..|>i.$=| +orderer.example.com | 00000010 26 7d d9 2d bc 95 02 dc 9f 7d 74 a0 30 d4 16 50 |&}.-.....}t.0..P| +orderer.example.com | 2018-01-18 09:31:27.726 UTC [msp/identity] Verify -> DEBU fa7 Verify: sig = 00000000 30 45 02 21 00 a8 b6 9c d9 06 59 a9 b9 95 6e b6 |0E.!......Y...n.| +orderer.example.com | 00000010 ab 74 f5 c3 9b f3 a2 c1 da cc d7 1b 49 4d 9c 47 |.t..........IM.G| +orderer.example.com | 00000020 52 6d 39 9e e0 02 20 15 a5 0a 2d a3 7f fd 79 36 |Rm9... ...-...y6| +orderer.example.com | 00000030 d9 71 8b 20 4e f9 1f 49 5a 7a f4 02 ba 92 3e 4f |.q. N..IZz....>O| +orderer.example.com | 00000040 12 02 d5 62 85 db 47 |...b..G| +orderer.example.com | 2018-01-18 09:31:27.726 UTC [cauthdsl] func2 -> DEBU fa8 0xc4200265e8 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-18 09:31:27.728 UTC [cauthdsl] func1 -> DEBU fa9 0xc4200265e8 gate 1516267887725227008 evaluation succeeds +orderer.example.com | 2018-01-18 09:31:27.728 UTC [orderer/common/sigfilter] Apply -> DEBU faa Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4202d80c0 1 [0xc42014a778]}) %!s(*policies.implicitMetaPolicy=&{0xc420837160 1 [0xc42014a6b0 0xc42014a5d8]})]} +orderer.example.com | 2018-01-18 09:31:27.728 UTC [orderer/common/broadcast] Handle -> DEBU fab [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION +orderer.example.com | 2018-01-18 09:31:27.728 UTC [policies] GetPolicy -> DEBU fac Returning policy Writers for evaluation +orderer.example.com | 2018-01-18 09:31:27.728 UTC [cauthdsl] func1 -> DEBU fad 0xc42014a020 gate 1516267887728896872 evaluation starts +orderer.example.com | 2018-01-18 09:31:27.728 UTC [cauthdsl] func2 -> DEBU fae 0xc42014a020 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:31:27.729 UTC [cauthdsl] func2 -> DEBU faf 0xc42014a020 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:31:27.729 UTC [msp/identity] newIdentity -> DEBU fb0 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +orderer.example.com | AXYxULZpXYDQXt1KaLI= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:31:27.729 UTC [cauthdsl] func2 -> DEBU fb1 0xc42014a020 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) +orderer.example.com | 2018-01-18 09:31:27.729 UTC [cauthdsl] func2 -> DEBU fb2 0xc42014a020 principal evaluation fails +orderer.example.com | 2018-01-18 09:31:27.729 UTC [cauthdsl] func1 -> DEBU fb3 0xc42014a020 gate 1516267887728896872 evaluation fails +orderer.example.com | 2018-01-18 09:31:27.730 UTC [cauthdsl] func1 -> DEBU fb4 0xc42014a110 gate 1516267887730039500 evaluation starts +orderer.example.com | 2018-01-18 09:31:27.730 UTC [cauthdsl] func2 -> DEBU fb5 0xc42014a110 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:31:27.730 UTC [cauthdsl] func2 -> DEBU fb6 0xc42014a110 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:31:27.730 UTC [msp/identity] newIdentity -> DEBU fb7 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +orderer.example.com | AXYxULZpXYDQXt1KaLI= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:31:27.730 UTC [msp] SatisfiesPrincipal -> DEBU fb8 Checking if identity satisfies MEMBER role for Org2MSP +orderer.example.com | 2018-01-18 09:31:27.731 UTC [msp] Validate -> DEBU fb9 MSP Org2MSP validating identity +orderer.example.com | 2018-01-18 09:31:27.731 UTC [cauthdsl] func2 -> DEBU fba 0xc42014a110 principal matched by identity 0 +orderer.example.com | 2018-01-18 09:31:27.731 UTC [msp/identity] Verify -> DEBU fbb Verify: digest = 00000000 ac 85 6a f3 bd 0d 56 49 d0 ae 7c 3e 69 9b 24 3d |..j...VI..|>i.$=| +orderer.example.com | 00000010 26 7d d9 2d bc 95 02 dc 9f 7d 74 a0 30 d4 16 50 |&}.-.....}t.0..P| +orderer.example.com | 2018-01-18 09:31:27.731 UTC [msp/identity] Verify -> DEBU fbc Verify: sig = 00000000 30 45 02 21 00 a8 b6 9c d9 06 59 a9 b9 95 6e b6 |0E.!......Y...n.| +orderer.example.com | 00000010 ab 74 f5 c3 9b f3 a2 c1 da cc d7 1b 49 4d 9c 47 |.t..........IM.G| +orderer.example.com | 00000020 52 6d 39 9e e0 02 20 15 a5 0a 2d a3 7f fd 79 36 |Rm9... ...-...y6| +orderer.example.com | 00000030 d9 71 8b 20 4e f9 1f 49 5a 7a f4 02 ba 92 3e 4f |.q. N..IZz....>O| +orderer.example.com | 00000040 12 02 d5 62 85 db 47 |...b..G| +orderer.example.com | 2018-01-18 09:31:27.731 UTC [cauthdsl] func2 -> DEBU fbd 0xc42014a110 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-18 09:31:27.731 UTC [cauthdsl] func1 -> DEBU fbe 0xc42014a110 gate 1516267887730039500 evaluation succeeds +orderer.example.com | 2018-01-18 09:31:27.731 UTC [orderer/common/sigfilter] Apply -> DEBU fbf Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4202d80c0 1 [0xc42014a778]}) %!s(*policies.implicitMetaPolicy=&{0xc420837160 1 [0xc42014a6b0 0xc42014a5d8]})]} +orderer.example.com | 2018-01-18 09:31:27.731 UTC [orderer/common/blockcutter] Ordered -> DEBU fc0 Enqueuing message into batch +orderer.example.com | 2018-01-18 09:31:27.734 UTC [orderer/common/broadcast] Handle -> WARN fc1 Error reading from stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | 2018-01-18 09:31:27.735 UTC [orderer/main] func1 -> DEBU fc2 Closing Broadcast stream +orderer.example.com | 2018-01-18 09:31:29.732 UTC [orderer/solo] main -> DEBU fc3 Batch timer expired, creating block +orderer.example.com | 2018-01-18 09:31:29.732 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU fc4 retrieveBlockByNumber() - blockNum = [5] +orderer.example.com | 2018-01-18 09:31:29.733 UTC [fsblkstorage] newBlockfileStream -> DEBU fc5 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[49883] +orderer.example.com | 2018-01-18 09:31:29.733 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU fc6 Remaining bytes=[4675], Going to peek [8] bytes +orderer.example.com | 2018-01-18 09:31:29.733 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU fc7 Returning blockbytes - length=[4673], placementInfo={fileNum=[0], startOffset=[49883], bytesOffset=[49885]} +orderer.example.com | 2018-01-18 09:31:29.734 UTC [orderer/multichain] addBlockSignature -> DEBU fc8 &{ledgerResources:0xc4209b5140 chain:0xc4209b5a00 cutter:0xc420863b80 filters:0xc4209b5640 signer:0x1274e88 lastConfig:2 lastConfigSeq:3} +orderer.example.com | 2018-01-18 09:31:29.735 UTC [orderer/multichain] addBlockSignature -> DEBU fc9 &{} +orderer.example.com | 2018-01-18 09:31:29.735 UTC [msp] GetLocalMSP -> DEBU fca Returning existing local MSP +orderer.example.com | 2018-01-18 09:31:29.735 UTC [msp] GetDefaultSigningIdentity -> DEBU fcb Obtaining default signing identity +orderer.example.com | 2018-01-18 09:31:29.735 UTC [msp] GetLocalMSP -> DEBU fcc Returning existing local MSP +orderer.example.com | 2018-01-18 09:31:29.736 UTC [msp] GetDefaultSigningIdentity -> DEBU fcd Obtaining default signing identity +orderer.example.com | 2018-01-18 09:31:29.736 UTC [msp/identity] Sign -> DEBU fce Sign: plaintext: 0AFA050A0A4F7264657265724D535012...9E3D736BF0B3685C406CCE901438B821 +orderer.example.com | 2018-01-18 09:31:29.736 UTC [msp/identity] Sign -> DEBU fcf Sign: digest: C1A2C2F9614D897B3B9B6221260E40ABCC7225C83A19FEB4F29BCDC53AAA3000 +orderer.example.com | 2018-01-18 09:31:29.737 UTC [msp] GetLocalMSP -> DEBU fd0 Returning existing local MSP +orderer.example.com | 2018-01-18 09:31:29.737 UTC [msp] GetDefaultSigningIdentity -> DEBU fd1 Obtaining default signing identity +orderer.example.com | 2018-01-18 09:31:29.737 UTC [orderer/multichain] addLastConfigSignature -> DEBU fd2 [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 +orderer.example.com | 2018-01-18 09:31:29.739 UTC [msp] GetLocalMSP -> DEBU fd3 Returning existing local MSP +orderer.example.com | 2018-01-18 09:31:29.740 UTC [msp] GetDefaultSigningIdentity -> DEBU fd4 Obtaining default signing identity +orderer.example.com | 2018-01-18 09:31:29.740 UTC [msp/identity] Sign -> DEBU fd5 Sign: plaintext: 08020AFA050A0A4F7264657265724D53...9E3D736BF0B3685C406CCE901438B821 +orderer.example.com | 2018-01-18 09:31:29.743 UTC [msp/identity] Sign -> DEBU fd6 Sign: digest: 6B0888BDD6477FCCC4649FFD80450F230345B2E4C8DB05E4FD3EBFCF6754F0D3 +orderer.example.com | 2018-01-18 09:31:29.755 UTC [fsblkstorage] indexBlock -> DEBU fd7 Indexing block [blockNum=6, blockHash=[]byte{0x6d, 0x6b, 0x82, 0xbc, 0xa, 0x4, 0xe3, 0xad, 0xfa, 0xe, 0x85, 0xa6, 0xa0, 0xe8, 0x87, 0xbf, 0x19, 0xf1, 0xbf, 0xd3, 0x9d, 0x68, 0xf3, 0x0, 0xe5, 0x64, 0xa4, 0xd6, 0x4c, 0x4e, 0x9f, 0x3d} txOffsets= +orderer.example.com | txId=a4652cc8b4e64e8e390bc639b183d8569ae28fa2ce4307dc0a9b7eed3962aaab locPointer=offset=70, bytesLength=2855 +orderer.example.com | ] +orderer.example.com | 2018-01-18 09:31:29.755 UTC [fsblkstorage] updateCheckpoint -> DEBU fd8 Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[59232], isChainEmpty=[false], lastBlockNumber=[6] +orderer.example.com | 2018-01-18 09:31:29.756 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU fda retrieveBlockByNumber() - blockNum = [6] +orderer.example.com | 2018-01-18 09:31:29.756 UTC [fsblkstorage] newBlockfileStream -> DEBU fdc newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[54558] +orderer.example.com | 2018-01-18 09:31:29.756 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU fdb retrieveBlockByNumber() - blockNum = [6] +orderer.example.com | 2018-01-18 09:31:29.756 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU fdd Remaining bytes=[4674], Going to peek [8] bytes +orderer.example.com | 2018-01-18 09:31:29.756 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU fde Returning blockbytes - length=[4672], placementInfo={fileNum=[0], startOffset=[54558], bytesOffset=[54560]} +orderer.example.com | 2018-01-18 09:31:29.756 UTC [orderer/common/deliver] Handle -> DEBU fdf [channel: businesschannel] Delivering block for (0xc420363320) +orderer.example.com | 2018-01-18 09:31:29.755 UTC [orderer/multichain] WriteBlock -> DEBU fd9 [channel: businesschannel] Wrote block 6 +orderer.example.com | 2018-01-18 09:31:29.756 UTC [fsblkstorage] newBlockfileStream -> DEBU fe0 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[54558] +orderer.example.com | 2018-01-18 09:31:29.761 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU fe1 Remaining bytes=[4674], Going to peek [8] bytes +orderer.example.com | 2018-01-18 09:31:29.761 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU fe2 Returning blockbytes - length=[4672], placementInfo={fileNum=[0], startOffset=[54558], bytesOffset=[54560]} +orderer.example.com | 2018-01-18 09:31:29.761 UTC [orderer/common/deliver] Handle -> DEBU fe3 [channel: businesschannel] Delivering block for (0xc420b7cce0) +orderer.example.com | 2018-01-18 09:31:30.194 UTC [orderer/main] Deliver -> DEBU fe4 Starting new Deliver handler +orderer.example.com | 2018-01-18 09:31:30.194 UTC [orderer/common/deliver] Handle -> DEBU fe5 Starting new deliver loop +orderer.example.com | 2018-01-18 09:31:30.194 UTC [orderer/common/deliver] Handle -> DEBU fe6 Attempting to read seek info message +orderer.example.com | 2018-01-18 09:31:30.195 UTC [policies] GetPolicy -> DEBU fe7 Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:31:30.195 UTC [cauthdsl] func1 -> DEBU fe8 0xc42014a498 gate 1516267890195823791 evaluation starts +orderer.example.com | 2018-01-18 09:31:30.195 UTC [cauthdsl] func2 -> DEBU fe9 0xc42014a498 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:31:30.195 UTC [cauthdsl] func2 -> DEBU fea 0xc42014a498 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:31:30.196 UTC [msp/identity] newIdentity -> DEBU feb Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:31:30.196 UTC [cauthdsl] func2 -> DEBU fec 0xc42014a498 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +orderer.example.com | 2018-01-18 09:31:30.197 UTC [cauthdsl] func2 -> DEBU fed 0xc42014a498 principal evaluation fails +orderer.example.com | 2018-01-18 09:31:30.197 UTC [cauthdsl] func1 -> DEBU fee 0xc42014a498 gate 1516267890195823791 evaluation fails +orderer.example.com | 2018-01-18 09:31:30.197 UTC [cauthdsl] func1 -> DEBU fef 0xc42014a4a8 gate 1516267890197850877 evaluation starts +orderer.example.com | 2018-01-18 09:31:30.198 UTC [cauthdsl] func2 -> DEBU ff0 0xc42014a4a8 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:31:30.198 UTC [cauthdsl] func2 -> DEBU ff1 0xc42014a4a8 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:31:30.199 UTC [msp/identity] newIdentity -> DEBU ff2 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:31:30.203 UTC [cauthdsl] func2 -> DEBU ff3 0xc42014a4a8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +orderer.example.com | 2018-01-18 09:31:30.203 UTC [cauthdsl] func2 -> DEBU ff4 0xc42014a4a8 principal evaluation fails +orderer.example.com | 2018-01-18 09:31:30.204 UTC [cauthdsl] func1 -> DEBU ff5 0xc42014a4a8 gate 1516267890197850877 evaluation fails +orderer.example.com | 2018-01-18 09:31:30.204 UTC [cauthdsl] func1 -> DEBU ff6 0xc42014a4c8 gate 1516267890204952624 evaluation starts +orderer.example.com | 2018-01-18 09:31:30.205 UTC [cauthdsl] func2 -> DEBU ff7 0xc42014a4c8 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:31:30.207 UTC [cauthdsl] func2 -> DEBU ff8 0xc42014a4c8 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:31:30.207 UTC [msp/identity] newIdentity -> DEBU ff9 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:31:30.221 UTC [msp] SatisfiesPrincipal -> DEBU ffa Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | 2018-01-18 09:31:30.221 UTC [msp] Validate -> DEBU ffb MSP OrdererMSP validating identity +orderer.example.com | 2018-01-18 09:31:30.222 UTC [cauthdsl] func2 -> DEBU ffc 0xc42014a4c8 principal matched by identity 0 +orderer.example.com | 2018-01-18 09:31:30.222 UTC [msp/identity] Verify -> DEBU ffd Verify: digest = 00000000 c1 2c fe 9d 34 73 c9 1f 04 36 e3 a1 f6 5c 46 e3 |.,..4s...6...\F.| +orderer.example.com | 00000010 5a 39 ce fc f2 eb 74 4d e5 27 be 61 7a c3 77 ed |Z9....tM.'.az.w.| +orderer.example.com | 2018-01-18 09:31:30.222 UTC [msp/identity] Verify -> DEBU ffe Verify: sig = 00000000 30 45 02 21 00 94 ea 77 80 79 ca 96 3e fe 3c 7f |0E.!...w.y..>.<.| +orderer.example.com | 00000010 d0 b1 d6 b1 dd e6 e6 47 d1 87 94 d7 be 80 1f d0 |.......G........| +orderer.example.com | 00000020 6b 64 98 b9 db 02 20 05 e4 fb 24 c6 6a 34 a9 59 |kd.... ...$.j4.Y| +orderer.example.com | 00000030 84 db 1c 13 32 97 88 df 2c 03 a6 ae 59 3a 5b 21 |....2...,...Y:[!| +orderer.example.com | 00000040 25 4c 16 ce 34 44 e8 |%L..4D.| +orderer.example.com | 2018-01-18 09:31:30.222 UTC [cauthdsl] func2 -> DEBU fff 0xc42014a4c8 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-18 09:31:30.223 UTC [cauthdsl] func1 -> DEBU 1000 0xc42014a4c8 gate 1516267890204952624 evaluation succeeds +orderer.example.com | 2018-01-18 09:31:30.223 UTC [orderer/common/sigfilter] Apply -> DEBU 1001 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4208371e0 1 [0xc42014a638 0xc42014a688]}) %!s(*policies.implicitMetaPolicy=&{0xc4202d8040 1 [0xc42014a750]})]} +orderer.example.com | 2018-01-18 09:31:30.223 UTC [orderer/common/deliver] Handle -> DEBU 1002 [channel: businesschannel] Received seekInfo (0xc420206ac0) start: > stop: > +orderer.example.com | 2018-01-18 09:31:30.224 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 1003 retrieveBlockByNumber() - blockNum = [6] +orderer.example.com | 2018-01-18 09:31:30.225 UTC [fsblkstorage] newBlockfileStream -> DEBU 1004 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[54558] +orderer.example.com | 2018-01-18 09:31:30.225 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 1005 Remaining bytes=[4674], Going to peek [8] bytes +orderer.example.com | 2018-01-18 09:31:30.225 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 1006 Returning blockbytes - length=[4672], placementInfo={fileNum=[0], startOffset=[54558], bytesOffset=[54560]} +orderer.example.com | 2018-01-18 09:31:30.225 UTC [orderer/common/deliver] Handle -> DEBU 1007 [channel: businesschannel] Delivering block for (0xc420206ac0) +orderer.example.com | 2018-01-18 09:31:30.228 UTC [orderer/common/deliver] Handle -> DEBU 1008 [channel: businesschannel] Done delivering for (0xc420206ac0), waiting for new SeekInfo +orderer.example.com | 2018-01-18 09:31:30.228 UTC [orderer/common/deliver] Handle -> DEBU 1009 Attempting to read seek info message +orderer.example.com | 2018-01-18 09:31:30.247 UTC [orderer/common/deliver] Handle -> WARN 100a Error reading from stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | 2018-01-18 09:31:30.247 UTC [orderer/main] func1 -> DEBU 100b Closing Deliver stream +orderer.example.com | 2018-01-18 09:31:30.494 UTC [orderer/main] Deliver -> DEBU 100c Starting new Deliver handler +orderer.example.com | 2018-01-18 09:31:30.494 UTC [orderer/common/deliver] Handle -> DEBU 100d Starting new deliver loop +orderer.example.com | 2018-01-18 09:31:30.494 UTC [orderer/common/deliver] Handle -> DEBU 100e Attempting to read seek info message +orderer.example.com | 2018-01-18 09:31:30.496 UTC [policies] GetPolicy -> DEBU 100f Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:31:30.496 UTC [cauthdsl] func1 -> DEBU 1010 0xc42014a6e8 gate 1516267890496660497 evaluation starts +orderer.example.com | 2018-01-18 09:31:30.496 UTC [cauthdsl] func2 -> DEBU 1011 0xc42014a6e8 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:31:30.496 UTC [cauthdsl] func2 -> DEBU 1012 0xc42014a6e8 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:31:30.497 UTC [msp/identity] newIdentity -> DEBU 1013 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:31:30.497 UTC [cauthdsl] func2 -> DEBU 1014 0xc42014a6e8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +orderer.example.com | 2018-01-18 09:31:30.497 UTC [cauthdsl] func2 -> DEBU 1015 0xc42014a6e8 principal evaluation fails +orderer.example.com | 2018-01-18 09:31:30.497 UTC [cauthdsl] func1 -> DEBU 1016 0xc42014a6e8 gate 1516267890496660497 evaluation fails +orderer.example.com | 2018-01-18 09:31:30.497 UTC [cauthdsl] func1 -> DEBU 1017 0xc42014a718 gate 1516267890497597029 evaluation starts +orderer.example.com | 2018-01-18 09:31:30.497 UTC [cauthdsl] func2 -> DEBU 1018 0xc42014a718 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:31:30.497 UTC [cauthdsl] func2 -> DEBU 1019 0xc42014a718 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:31:30.497 UTC [msp/identity] newIdentity -> DEBU 101a Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:31:30.498 UTC [cauthdsl] func2 -> DEBU 101b 0xc42014a718 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +orderer.example.com | 2018-01-18 09:31:30.498 UTC [cauthdsl] func2 -> DEBU 101c 0xc42014a718 principal evaluation fails +orderer.example.com | 2018-01-18 09:31:30.498 UTC [cauthdsl] func1 -> DEBU 101d 0xc42014a718 gate 1516267890497597029 evaluation fails +orderer.example.com | 2018-01-18 09:31:30.498 UTC [cauthdsl] func1 -> DEBU 101e 0xc42014a768 gate 1516267890498468293 evaluation starts +orderer.example.com | 2018-01-18 09:31:30.498 UTC [cauthdsl] func2 -> DEBU 101f 0xc42014a768 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:31:30.498 UTC [cauthdsl] func2 -> DEBU 1020 0xc42014a768 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:31:30.498 UTC [msp/identity] newIdentity -> DEBU 1021 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:31:30.499 UTC [msp] SatisfiesPrincipal -> DEBU 1022 Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | 2018-01-18 09:31:30.499 UTC [msp] Validate -> DEBU 1023 MSP OrdererMSP validating identity +orderer.example.com | 2018-01-18 09:31:30.499 UTC [cauthdsl] func2 -> DEBU 1024 0xc42014a768 principal matched by identity 0 +orderer.example.com | 2018-01-18 09:31:30.499 UTC [msp/identity] Verify -> DEBU 1025 Verify: digest = 00000000 9e bd f0 d1 ca 35 02 2c 9c a2 c8 e9 97 cd 6c e4 |.....5.,......l.| +orderer.example.com | 00000010 97 43 ac b0 25 a2 0b 14 b4 6d ee a6 40 b0 c7 40 |.C..%....m..@..@| +orderer.example.com | 2018-01-18 09:31:30.499 UTC [msp/identity] Verify -> DEBU 1026 Verify: sig = 00000000 30 45 02 21 00 b0 73 0c 29 19 31 49 4c f5 55 8f |0E.!..s.).1IL.U.| +orderer.example.com | 00000010 7a b7 b8 67 2c 42 94 8e cb 8e 7c 1e a4 e4 bb ce |z..g,B....|.....| +orderer.example.com | 00000020 9c c4 75 2e 5c 02 20 7e 01 d8 c7 e7 34 c5 ff 00 |..u.\. ~....4...| +orderer.example.com | 00000030 f2 95 98 45 65 84 94 9e ce 41 36 53 8f 1b 0f 44 |...Ee....A6S...D| +orderer.example.com | 00000040 dd 5c d9 51 7c cf 11 |.\.Q|..| +orderer.example.com | 2018-01-18 09:31:30.499 UTC [cauthdsl] func2 -> DEBU 1027 0xc42014a768 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-18 09:31:30.499 UTC [cauthdsl] func1 -> DEBU 1028 0xc42014a768 gate 1516267890498468293 evaluation succeeds +orderer.example.com | 2018-01-18 09:31:30.499 UTC [orderer/common/sigfilter] Apply -> DEBU 1029 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4208371e0 1 [0xc42014a638 0xc42014a688]}) %!s(*policies.implicitMetaPolicy=&{0xc4202d8040 1 [0xc42014a750]})]} +orderer.example.com | 2018-01-18 09:31:30.500 UTC [orderer/common/deliver] Handle -> DEBU 102a [channel: businesschannel] Received seekInfo (0xc4208e54c0) start: > stop: > +orderer.example.com | 2018-01-18 09:31:30.500 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 102b retrieveBlockByNumber() - blockNum = [6] +orderer.example.com | 2018-01-18 09:31:30.500 UTC [fsblkstorage] newBlockfileStream -> DEBU 102c newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[54558] +orderer.example.com | 2018-01-18 09:31:30.500 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 102d Remaining bytes=[4674], Going to peek [8] bytes +orderer.example.com | 2018-01-18 09:31:30.500 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 102e Returning blockbytes - length=[4672], placementInfo={fileNum=[0], startOffset=[54558], bytesOffset=[54560]} +orderer.example.com | 2018-01-18 09:31:30.500 UTC [orderer/common/deliver] Handle -> DEBU 102f [channel: businesschannel] Delivering block for (0xc4208e54c0) +orderer.example.com | 2018-01-18 09:31:30.501 UTC [orderer/common/deliver] Handle -> DEBU 1030 [channel: businesschannel] Done delivering for (0xc4208e54c0), waiting for new SeekInfo +orderer.example.com | 2018-01-18 09:31:30.501 UTC [orderer/common/deliver] Handle -> DEBU 1031 Attempting to read seek info message +orderer.example.com | 2018-01-18 09:31:30.502 UTC [policies] GetPolicy -> DEBU 1032 Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:31:30.503 UTC [cauthdsl] func1 -> DEBU 1033 0xc42014a7e8 gate 1516267890502999326 evaluation starts +orderer.example.com | 2018-01-18 09:31:30.503 UTC [cauthdsl] func2 -> DEBU 1034 0xc42014a7e8 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:31:30.503 UTC [cauthdsl] func2 -> DEBU 1035 0xc42014a7e8 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:31:30.503 UTC [msp/identity] newIdentity -> DEBU 1036 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:31:30.504 UTC [cauthdsl] func2 -> DEBU 1037 0xc42014a7e8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +orderer.example.com | 2018-01-18 09:31:30.504 UTC [cauthdsl] func2 -> DEBU 1038 0xc42014a7e8 principal evaluation fails +orderer.example.com | 2018-01-18 09:31:30.504 UTC [cauthdsl] func1 -> DEBU 1039 0xc42014a7e8 gate 1516267890502999326 evaluation fails +orderer.example.com | 2018-01-18 09:31:30.504 UTC [cauthdsl] func1 -> DEBU 103a 0xc42014a7f8 gate 1516267890504277187 evaluation starts +orderer.example.com | 2018-01-18 09:31:30.504 UTC [cauthdsl] func2 -> DEBU 103b 0xc42014a7f8 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:31:30.504 UTC [cauthdsl] func2 -> DEBU 103c 0xc42014a7f8 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:31:30.505 UTC [msp/identity] newIdentity -> DEBU 103d Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:31:30.505 UTC [cauthdsl] func2 -> DEBU 103e 0xc42014a7f8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +orderer.example.com | 2018-01-18 09:31:30.505 UTC [cauthdsl] func2 -> DEBU 103f 0xc42014a7f8 principal evaluation fails +orderer.example.com | 2018-01-18 09:31:30.505 UTC [cauthdsl] func1 -> DEBU 1040 0xc42014a7f8 gate 1516267890504277187 evaluation fails +orderer.example.com | 2018-01-18 09:31:30.505 UTC [cauthdsl] func1 -> DEBU 1041 0xc42014a818 gate 1516267890505862894 evaluation starts +orderer.example.com | 2018-01-18 09:31:30.506 UTC [cauthdsl] func2 -> DEBU 1042 0xc42014a818 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:31:30.506 UTC [cauthdsl] func2 -> DEBU 1043 0xc42014a818 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:31:30.506 UTC [msp/identity] newIdentity -> DEBU 1044 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:31:30.507 UTC [msp] SatisfiesPrincipal -> DEBU 1045 Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | 2018-01-18 09:31:30.507 UTC [msp] Validate -> DEBU 1046 MSP OrdererMSP validating identity +orderer.example.com | 2018-01-18 09:31:30.507 UTC [cauthdsl] func2 -> DEBU 1047 0xc42014a818 principal matched by identity 0 +orderer.example.com | 2018-01-18 09:31:30.507 UTC [msp/identity] Verify -> DEBU 1048 Verify: digest = 00000000 f9 ff 72 ab d7 ee b6 21 90 84 a2 fc 39 46 2c 7e |..r....!....9F,~| +orderer.example.com | 00000010 a6 11 6e 18 17 5a fe ce 2f d7 3f 21 80 cc 9c 67 |..n..Z../.?!...g| +orderer.example.com | 2018-01-18 09:31:30.508 UTC [msp/identity] Verify -> DEBU 1049 Verify: sig = 00000000 30 45 02 21 00 e3 44 03 2b b5 57 85 b7 b0 4f b3 |0E.!..D.+.W...O.| +orderer.example.com | 00000010 13 5d e8 5a b4 e9 68 a4 13 9b 70 7b e7 45 67 b0 |.].Z..h...p{.Eg.| +orderer.example.com | 00000020 29 7b 4a 30 fd 02 20 2e d9 67 41 6e 79 3b d2 67 |){J0.. ..gAny;.g| +orderer.example.com | 00000030 aa 7d e1 3d 8e c0 b0 07 7f 2c c0 a2 71 a6 22 9d |.}.=.....,..q.".| +orderer.example.com | 00000040 6b dd 73 59 9d a1 96 |k.sY...| +orderer.example.com | 2018-01-18 09:31:30.508 UTC [cauthdsl] func2 -> DEBU 104a 0xc42014a818 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-18 09:31:30.508 UTC [cauthdsl] func1 -> DEBU 104b 0xc42014a818 gate 1516267890505862894 evaluation succeeds +orderer.example.com | 2018-01-18 09:31:30.508 UTC [orderer/common/sigfilter] Apply -> DEBU 104c Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4208371e0 1 [0xc42014a638 0xc42014a688]}) %!s(*policies.implicitMetaPolicy=&{0xc4202d8040 1 [0xc42014a750]})]} +orderer.example.com | 2018-01-18 09:31:30.509 UTC [orderer/common/deliver] Handle -> DEBU 104d [channel: businesschannel] Received seekInfo (0xc4208ed0e0) start: > stop: > +orderer.example.com | 2018-01-18 09:31:30.509 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 104e retrieveBlockByNumber() - blockNum = [2] +orderer.example.com | 2018-01-18 09:31:30.509 UTC [fsblkstorage] newBlockfileStream -> DEBU 104f newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[25667] +orderer.example.com | 2018-01-18 09:31:30.509 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 1050 Remaining bytes=[33565], Going to peek [8] bytes +orderer.example.com | 2018-01-18 09:31:30.509 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 1051 Returning blockbytes - length=[13789], placementInfo={fileNum=[0], startOffset=[25667], bytesOffset=[25669]} +orderer.example.com | 2018-01-18 09:31:30.510 UTC [orderer/common/deliver] Handle -> DEBU 1052 [channel: businesschannel] Delivering block for (0xc4208ed0e0) +orderer.example.com | 2018-01-18 09:31:30.511 UTC [orderer/common/deliver] Handle -> DEBU 1053 [channel: businesschannel] Done delivering for (0xc4208ed0e0), waiting for new SeekInfo +orderer.example.com | 2018-01-18 09:31:30.511 UTC [orderer/common/deliver] Handle -> DEBU 1054 Attempting to read seek info message +orderer.example.com | 2018-01-18 09:31:30.517 UTC [orderer/common/deliver] Handle -> WARN 1055 Error reading from stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | 2018-01-18 09:31:30.517 UTC [orderer/main] func1 -> DEBU 1056 Closing Deliver stream +orderer.example.com | 2018-01-18 09:31:30.615 UTC [orderer/main] Deliver -> DEBU 1057 Starting new Deliver handler +orderer.example.com | 2018-01-18 09:31:30.616 UTC [orderer/common/deliver] Handle -> DEBU 1058 Starting new deliver loop +orderer.example.com | 2018-01-18 09:31:30.616 UTC [orderer/common/deliver] Handle -> DEBU 1059 Attempting to read seek info message +orderer.example.com | 2018-01-18 09:31:30.617 UTC [policies] GetPolicy -> DEBU 105a Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:31:30.617 UTC [cauthdsl] func1 -> DEBU 105b 0xc42014a870 gate 1516267890617748923 evaluation starts +orderer.example.com | 2018-01-18 09:31:30.618 UTC [cauthdsl] func2 -> DEBU 105c 0xc42014a870 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:31:30.618 UTC [cauthdsl] func2 -> DEBU 105d 0xc42014a870 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:31:30.619 UTC [msp/identity] newIdentity -> DEBU 105e Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:31:30.619 UTC [cauthdsl] func2 -> DEBU 105f 0xc42014a870 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +orderer.example.com | 2018-01-18 09:31:30.619 UTC [cauthdsl] func2 -> DEBU 1060 0xc42014a870 principal evaluation fails +orderer.example.com | 2018-01-18 09:31:30.620 UTC [cauthdsl] func1 -> DEBU 1061 0xc42014a870 gate 1516267890617748923 evaluation fails +orderer.example.com | 2018-01-18 09:31:30.620 UTC [cauthdsl] func1 -> DEBU 1062 0xc42014a880 gate 1516267890620493950 evaluation starts +orderer.example.com | 2018-01-18 09:31:30.620 UTC [cauthdsl] func2 -> DEBU 1063 0xc42014a880 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:31:30.620 UTC [cauthdsl] func2 -> DEBU 1064 0xc42014a880 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:31:30.621 UTC [msp/identity] newIdentity -> DEBU 1065 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:31:30.622 UTC [cauthdsl] func2 -> DEBU 1066 0xc42014a880 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +orderer.example.com | 2018-01-18 09:31:30.622 UTC [cauthdsl] func2 -> DEBU 1067 0xc42014a880 principal evaluation fails +orderer.example.com | 2018-01-18 09:31:30.622 UTC [cauthdsl] func1 -> DEBU 1068 0xc42014a880 gate 1516267890620493950 evaluation fails +orderer.example.com | 2018-01-18 09:31:30.622 UTC [cauthdsl] func1 -> DEBU 1069 0xc42014a8a0 gate 1516267890622645273 evaluation starts +orderer.example.com | 2018-01-18 09:31:30.622 UTC [cauthdsl] func2 -> DEBU 106a 0xc42014a8a0 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:31:30.623 UTC [cauthdsl] func2 -> DEBU 106b 0xc42014a8a0 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:31:30.623 UTC [msp/identity] newIdentity -> DEBU 106c Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:31:30.624 UTC [msp] SatisfiesPrincipal -> DEBU 106d Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | 2018-01-18 09:31:30.624 UTC [msp] Validate -> DEBU 106e MSP OrdererMSP validating identity +orderer.example.com | 2018-01-18 09:31:30.625 UTC [cauthdsl] func2 -> DEBU 106f 0xc42014a8a0 principal matched by identity 0 +orderer.example.com | 2018-01-18 09:31:30.625 UTC [msp/identity] Verify -> DEBU 1070 Verify: digest = 00000000 db 4f 9e aa 05 18 f7 76 5b d1 2f c3 8d e4 ba 97 |.O.....v[./.....| +orderer.example.com | 00000010 a0 be 99 98 16 6f 58 74 83 33 3e 1d 96 de 1d 2b |.....oXt.3>....+| +orderer.example.com | 2018-01-18 09:31:30.625 UTC [msp/identity] Verify -> DEBU 1071 Verify: sig = 00000000 30 44 02 20 72 af a7 a2 c6 f1 6d b7 45 54 4a 20 |0D. r.....m.ETJ | +orderer.example.com | 00000010 00 81 7f 29 2c 4a 40 2a d2 c7 8e 2a ef 8b e3 79 |...),J@*...*...y| +orderer.example.com | 00000020 11 c4 45 da 02 20 11 71 d0 57 ba 98 c2 e7 ae 96 |..E.. .q.W......| +orderer.example.com | 00000030 c3 63 a9 56 0d 23 32 f8 e2 59 99 a8 d8 44 b7 5d |.c.V.#2..Y...D.]| +orderer.example.com | 00000040 fa 6d 9f bc 4c 1c |.m..L.| +orderer.example.com | 2018-01-18 09:31:30.626 UTC [cauthdsl] func2 -> DEBU 1072 0xc42014a8a0 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-18 09:31:30.626 UTC [cauthdsl] func1 -> DEBU 1073 0xc42014a8a0 gate 1516267890622645273 evaluation succeeds +orderer.example.com | 2018-01-18 09:31:30.626 UTC [orderer/common/sigfilter] Apply -> DEBU 1074 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4208371e0 1 [0xc42014a638 0xc42014a688]}) %!s(*policies.implicitMetaPolicy=&{0xc4202d8040 1 [0xc42014a750]})]} +orderer.example.com | 2018-01-18 09:31:30.626 UTC [orderer/common/deliver] Handle -> DEBU 1075 [channel: businesschannel] Received seekInfo (0xc42080d060) start: > stop: > +orderer.example.com | 2018-01-18 09:31:30.626 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 1076 retrieveBlockByNumber() - blockNum = [0] +orderer.example.com | 2018-01-18 09:31:30.626 UTC [fsblkstorage] newBlockfileStream -> DEBU 1077 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] +orderer.example.com | 2018-01-18 09:31:30.627 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 1078 Remaining bytes=[59232], Going to peek [8] bytes +orderer.example.com | 2018-01-18 09:31:30.627 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 1079 Returning blockbytes - length=[11932], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +orderer.example.com | 2018-01-18 09:31:30.627 UTC [orderer/common/deliver] Handle -> DEBU 107a [channel: businesschannel] Delivering block for (0xc42080d060) +orderer.example.com | 2018-01-18 09:31:30.628 UTC [orderer/common/deliver] Handle -> DEBU 107b [channel: businesschannel] Done delivering for (0xc42080d060), waiting for new SeekInfo +orderer.example.com | 2018-01-18 09:31:30.628 UTC [orderer/common/deliver] Handle -> DEBU 107c Attempting to read seek info message +orderer.example.com | 2018-01-18 09:31:30.633 UTC [orderer/common/deliver] Handle -> WARN 107d Error reading from stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | 2018-01-18 09:31:30.633 UTC [orderer/main] func1 -> DEBU 107e Closing Deliver stream +orderer.example.com | 2018-01-18 09:31:30.799 UTC [orderer/main] Deliver -> DEBU 107f Starting new Deliver handler +orderer.example.com | 2018-01-18 09:31:30.799 UTC [orderer/common/deliver] Handle -> DEBU 1080 Starting new deliver loop +orderer.example.com | 2018-01-18 09:31:30.800 UTC [orderer/common/deliver] Handle -> DEBU 1081 Attempting to read seek info message +orderer.example.com | 2018-01-18 09:31:30.800 UTC [policies] GetPolicy -> DEBU 1082 Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:31:30.800 UTC [cauthdsl] func1 -> DEBU 1083 0xc42014a8f8 gate 1516267890800467618 evaluation starts +orderer.example.com | 2018-01-18 09:31:30.800 UTC [cauthdsl] func2 -> DEBU 1084 0xc42014a8f8 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:31:30.800 UTC [cauthdsl] func2 -> DEBU 1085 0xc42014a8f8 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:31:30.801 UTC [msp/identity] newIdentity -> DEBU 1086 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:31:30.802 UTC [cauthdsl] func2 -> DEBU 1087 0xc42014a8f8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +orderer.example.com | 2018-01-18 09:31:30.802 UTC [cauthdsl] func2 -> DEBU 1088 0xc42014a8f8 principal evaluation fails +orderer.example.com | 2018-01-18 09:31:30.802 UTC [cauthdsl] func1 -> DEBU 1089 0xc42014a8f8 gate 1516267890800467618 evaluation fails +orderer.example.com | 2018-01-18 09:31:30.802 UTC [cauthdsl] func1 -> DEBU 108a 0xc42014a908 gate 1516267890802349776 evaluation starts +orderer.example.com | 2018-01-18 09:31:30.802 UTC [cauthdsl] func2 -> DEBU 108b 0xc42014a908 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:31:30.802 UTC [cauthdsl] func2 -> DEBU 108c 0xc42014a908 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:31:30.803 UTC [msp/identity] newIdentity -> DEBU 108d Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:31:30.803 UTC [cauthdsl] func2 -> DEBU 108e 0xc42014a908 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +orderer.example.com | 2018-01-18 09:31:30.803 UTC [cauthdsl] func2 -> DEBU 108f 0xc42014a908 principal evaluation fails +orderer.example.com | 2018-01-18 09:31:30.803 UTC [cauthdsl] func1 -> DEBU 1090 0xc42014a908 gate 1516267890802349776 evaluation fails +orderer.example.com | 2018-01-18 09:31:30.803 UTC [cauthdsl] func1 -> DEBU 1091 0xc42014a918 gate 1516267890803848826 evaluation starts +orderer.example.com | 2018-01-18 09:31:30.803 UTC [cauthdsl] func2 -> DEBU 1092 0xc42014a918 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:31:30.803 UTC [cauthdsl] func2 -> DEBU 1093 0xc42014a918 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:31:30.804 UTC [msp/identity] newIdentity -> DEBU 1094 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:31:30.804 UTC [msp] SatisfiesPrincipal -> DEBU 1095 Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | 2018-01-18 09:31:30.805 UTC [msp] Validate -> DEBU 1096 MSP OrdererMSP validating identity +orderer.example.com | 2018-01-18 09:31:30.805 UTC [cauthdsl] func2 -> DEBU 1097 0xc42014a918 principal matched by identity 0 +orderer.example.com | 2018-01-18 09:31:30.805 UTC [msp/identity] Verify -> DEBU 1098 Verify: digest = 00000000 b6 2d 7e ca a6 90 75 fe c3 03 50 89 19 e2 8f 0d |.-~...u...P.....| +orderer.example.com | 00000010 83 73 23 21 d6 3f 5a 09 b5 fb d4 3d 00 87 bf cb |.s#!.?Z....=....| +orderer.example.com | 2018-01-18 09:31:30.805 UTC [msp/identity] Verify -> DEBU 1099 Verify: sig = 00000000 30 45 02 21 00 fe cd f6 a5 74 c6 67 98 f3 98 19 |0E.!.....t.g....| +orderer.example.com | 00000010 59 18 0a 15 d2 e7 e7 d1 3e 46 f5 42 2d 17 2c 55 |Y.......>F.B-.,U| +orderer.example.com | 00000020 49 81 e5 56 6b 02 20 68 c2 68 b1 1e d2 dd 31 34 |I..Vk. h.h....14| +orderer.example.com | 00000030 16 b4 65 98 3b d3 40 d6 a5 39 a1 ff 00 69 f4 ff |..e.;.@..9...i..| +orderer.example.com | 00000040 7a dc bc f5 b0 ad 34 |z.....4| +orderer.example.com | 2018-01-18 09:31:30.806 UTC [cauthdsl] func2 -> DEBU 109a 0xc42014a918 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-18 09:31:30.806 UTC [cauthdsl] func1 -> DEBU 109b 0xc42014a918 gate 1516267890803848826 evaluation succeeds +orderer.example.com | 2018-01-18 09:31:30.806 UTC [orderer/common/sigfilter] Apply -> DEBU 109c Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4208371e0 1 [0xc42014a638 0xc42014a688]}) %!s(*policies.implicitMetaPolicy=&{0xc4202d8040 1 [0xc42014a750]})]} +orderer.example.com | 2018-01-18 09:31:30.806 UTC [orderer/common/deliver] Handle -> DEBU 109d [channel: businesschannel] Received seekInfo (0xc420832f40) start: > stop: > +orderer.example.com | 2018-01-18 09:31:30.806 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 109e retrieveBlockByNumber() - blockNum = [1] +orderer.example.com | 2018-01-18 09:31:30.806 UTC [fsblkstorage] newBlockfileStream -> DEBU 109f newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[11934] +orderer.example.com | 2018-01-18 09:31:30.806 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 10a0 Remaining bytes=[47298], Going to peek [8] bytes +orderer.example.com | 2018-01-18 09:31:30.806 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 10a1 Returning blockbytes - length=[13731], placementInfo={fileNum=[0], startOffset=[11934], bytesOffset=[11936]} +orderer.example.com | 2018-01-18 09:31:30.807 UTC [orderer/common/deliver] Handle -> DEBU 10a2 [channel: businesschannel] Delivering block for (0xc420832f40) +orderer.example.com | 2018-01-18 09:31:30.807 UTC [orderer/common/deliver] Handle -> DEBU 10a3 [channel: businesschannel] Done delivering for (0xc420832f40), waiting for new SeekInfo +orderer.example.com | 2018-01-18 09:31:30.807 UTC [orderer/common/deliver] Handle -> DEBU 10a4 Attempting to read seek info message +orderer.example.com | 2018-01-18 09:31:30.811 UTC [orderer/common/deliver] Handle -> WARN 10a5 Error reading from stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | 2018-01-18 09:31:30.811 UTC [orderer/main] func1 -> DEBU 10a6 Closing Deliver stream +orderer.example.com | 2018-01-18 09:31:30.947 UTC [orderer/main] Deliver -> DEBU 10a7 Starting new Deliver handler +orderer.example.com | 2018-01-18 09:31:30.948 UTC [orderer/common/deliver] Handle -> DEBU 10a8 Starting new deliver loop +orderer.example.com | 2018-01-18 09:31:30.948 UTC [orderer/common/deliver] Handle -> DEBU 10a9 Attempting to read seek info message +orderer.example.com | 2018-01-18 09:31:30.948 UTC [policies] GetPolicy -> DEBU 10aa Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:31:30.948 UTC [cauthdsl] func1 -> DEBU 10ab 0xc420026120 gate 1516267890948807611 evaluation starts +orderer.example.com | 2018-01-18 09:31:30.948 UTC [cauthdsl] func2 -> DEBU 10ac 0xc420026120 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:31:30.948 UTC [cauthdsl] func2 -> DEBU 10ad 0xc420026120 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:31:30.949 UTC [msp/identity] newIdentity -> DEBU 10ae Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:31:30.950 UTC [cauthdsl] func2 -> DEBU 10af 0xc420026120 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +orderer.example.com | 2018-01-18 09:31:30.950 UTC [cauthdsl] func2 -> DEBU 10b0 0xc420026120 principal evaluation fails +orderer.example.com | 2018-01-18 09:31:30.950 UTC [cauthdsl] func1 -> DEBU 10b1 0xc420026120 gate 1516267890948807611 evaluation fails +orderer.example.com | 2018-01-18 09:31:30.950 UTC [cauthdsl] func1 -> DEBU 10b2 0xc420026168 gate 1516267890950527750 evaluation starts +orderer.example.com | 2018-01-18 09:31:30.950 UTC [cauthdsl] func2 -> DEBU 10b3 0xc420026168 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:31:30.951 UTC [cauthdsl] func2 -> DEBU 10b4 0xc420026168 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:31:30.951 UTC [msp/identity] newIdentity -> DEBU 10b5 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:31:30.952 UTC [cauthdsl] func2 -> DEBU 10b6 0xc420026168 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +orderer.example.com | 2018-01-18 09:31:30.952 UTC [cauthdsl] func2 -> DEBU 10b7 0xc420026168 principal evaluation fails +orderer.example.com | 2018-01-18 09:31:30.952 UTC [cauthdsl] func1 -> DEBU 10b8 0xc420026168 gate 1516267890950527750 evaluation fails +orderer.example.com | 2018-01-18 09:31:30.952 UTC [cauthdsl] func1 -> DEBU 10b9 0xc420026190 gate 1516267890952525251 evaluation starts +orderer.example.com | 2018-01-18 09:31:30.952 UTC [cauthdsl] func2 -> DEBU 10ba 0xc420026190 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:31:30.952 UTC [cauthdsl] func2 -> DEBU 10bb 0xc420026190 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:31:30.953 UTC [msp/identity] newIdentity -> DEBU 10bc Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:31:30.953 UTC [msp] SatisfiesPrincipal -> DEBU 10bd Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | 2018-01-18 09:31:30.953 UTC [msp] Validate -> DEBU 10be MSP OrdererMSP validating identity +orderer.example.com | 2018-01-18 09:31:30.954 UTC [cauthdsl] func2 -> DEBU 10bf 0xc420026190 principal matched by identity 0 +orderer.example.com | 2018-01-18 09:31:30.954 UTC [msp/identity] Verify -> DEBU 10c0 Verify: digest = 00000000 42 33 32 04 a7 a4 04 4f cb 33 08 f2 82 e3 b3 bb |B32....O.3......| +orderer.example.com | 00000010 31 92 05 6f ee 04 ec 74 e9 6b af c2 c7 26 de 3e |1..o...t.k...&.>| +orderer.example.com | 2018-01-18 09:31:30.954 UTC [msp/identity] Verify -> DEBU 10c1 Verify: sig = 00000000 30 44 02 20 09 29 b5 9b 1c c2 57 b0 d4 1b 07 f5 |0D. .)....W.....| +orderer.example.com | 00000010 56 98 d3 76 67 6e bd dc 3c f0 68 9d 2a 3b 3e 3a |V..vgn..<.h.*;>:| +orderer.example.com | 00000020 e3 9b 55 fa 02 20 45 26 e2 87 19 8e 1b c2 f6 91 |..U.. E&........| +orderer.example.com | 00000030 b8 83 11 db 41 91 e6 4e 5c fc 84 8f 50 7f 05 9f |....A..N\...P...| +orderer.example.com | 00000040 77 b6 6b 0d 63 55 |w.k.cU| +orderer.example.com | 2018-01-18 09:31:30.954 UTC [cauthdsl] func2 -> DEBU 10c2 0xc420026190 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-18 09:31:30.954 UTC [cauthdsl] func1 -> DEBU 10c3 0xc420026190 gate 1516267890952525251 evaluation succeeds +orderer.example.com | 2018-01-18 09:31:30.954 UTC [orderer/common/sigfilter] Apply -> DEBU 10c4 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4208371e0 1 [0xc42014a638 0xc42014a688]}) %!s(*policies.implicitMetaPolicy=&{0xc4202d8040 1 [0xc42014a750]})]} +orderer.example.com | 2018-01-18 09:31:30.954 UTC [orderer/common/deliver] Handle -> DEBU 10c5 [channel: businesschannel] Received seekInfo (0xc42037a880) start: > stop: > +orderer.example.com | 2018-01-18 09:31:30.955 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 10c6 retrieveBlockByNumber() - blockNum = [2] +orderer.example.com | 2018-01-18 09:31:30.955 UTC [fsblkstorage] newBlockfileStream -> DEBU 10c7 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[25667] +orderer.example.com | 2018-01-18 09:31:30.955 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 10c8 Remaining bytes=[33565], Going to peek [8] bytes +orderer.example.com | 2018-01-18 09:31:30.955 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 10c9 Returning blockbytes - length=[13789], placementInfo={fileNum=[0], startOffset=[25667], bytesOffset=[25669]} +orderer.example.com | 2018-01-18 09:31:30.955 UTC [orderer/common/deliver] Handle -> DEBU 10ca [channel: businesschannel] Delivering block for (0xc42037a880) +orderer.example.com | 2018-01-18 09:31:30.956 UTC [orderer/common/deliver] Handle -> DEBU 10cb [channel: businesschannel] Done delivering for (0xc42037a880), waiting for new SeekInfo +orderer.example.com | 2018-01-18 09:31:30.956 UTC [orderer/common/deliver] Handle -> DEBU 10cc Attempting to read seek info message +orderer.example.com | 2018-01-18 09:31:30.960 UTC [orderer/common/deliver] Handle -> WARN 10cd Error reading from stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | 2018-01-18 09:31:30.961 UTC [orderer/main] func1 -> DEBU 10ce Closing Deliver stream +orderer.example.com | 2018-01-18 09:31:31.125 UTC [orderer/main] Deliver -> DEBU 10cf Starting new Deliver handler +orderer.example.com | 2018-01-18 09:31:31.125 UTC [orderer/common/deliver] Handle -> DEBU 10d0 Starting new deliver loop +orderer.example.com | 2018-01-18 09:31:31.125 UTC [orderer/common/deliver] Handle -> DEBU 10d1 Attempting to read seek info message +orderer.example.com | 2018-01-18 09:31:31.126 UTC [policies] GetPolicy -> DEBU 10d2 Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:31:31.126 UTC [cauthdsl] func1 -> DEBU 10d3 0xc420026200 gate 1516267891126912714 evaluation starts +orderer.example.com | 2018-01-18 09:31:31.127 UTC [cauthdsl] func2 -> DEBU 10d4 0xc420026200 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:31:31.127 UTC [cauthdsl] func2 -> DEBU 10d5 0xc420026200 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:31:31.127 UTC [msp/identity] newIdentity -> DEBU 10d6 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:31:31.128 UTC [cauthdsl] func2 -> DEBU 10d7 0xc420026200 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +orderer.example.com | 2018-01-18 09:31:31.128 UTC [cauthdsl] func2 -> DEBU 10d8 0xc420026200 principal evaluation fails +orderer.example.com | 2018-01-18 09:31:31.128 UTC [cauthdsl] func1 -> DEBU 10d9 0xc420026200 gate 1516267891126912714 evaluation fails +orderer.example.com | 2018-01-18 09:31:31.129 UTC [cauthdsl] func1 -> DEBU 10da 0xc420026218 gate 1516267891129031154 evaluation starts +orderer.example.com | 2018-01-18 09:31:31.129 UTC [cauthdsl] func2 -> DEBU 10db 0xc420026218 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:31:31.129 UTC [cauthdsl] func2 -> DEBU 10dc 0xc420026218 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:31:31.129 UTC [msp/identity] newIdentity -> DEBU 10dd Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:31:31.130 UTC [cauthdsl] func2 -> DEBU 10de 0xc420026218 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +orderer.example.com | 2018-01-18 09:31:31.130 UTC [cauthdsl] func2 -> DEBU 10df 0xc420026218 principal evaluation fails +orderer.example.com | 2018-01-18 09:31:31.130 UTC [cauthdsl] func1 -> DEBU 10e0 0xc420026218 gate 1516267891129031154 evaluation fails +orderer.example.com | 2018-01-18 09:31:31.130 UTC [cauthdsl] func1 -> DEBU 10e1 0xc420026228 gate 1516267891130511014 evaluation starts +orderer.example.com | 2018-01-18 09:31:31.130 UTC [cauthdsl] func2 -> DEBU 10e2 0xc420026228 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:31:31.130 UTC [cauthdsl] func2 -> DEBU 10e3 0xc420026228 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:31:31.131 UTC [msp/identity] newIdentity -> DEBU 10e4 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:31:31.131 UTC [msp] SatisfiesPrincipal -> DEBU 10e5 Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | 2018-01-18 09:31:31.131 UTC [msp] Validate -> DEBU 10e6 MSP OrdererMSP validating identity +orderer.example.com | 2018-01-18 09:31:31.132 UTC [cauthdsl] func2 -> DEBU 10e7 0xc420026228 principal matched by identity 0 +orderer.example.com | 2018-01-18 09:31:31.132 UTC [msp/identity] Verify -> DEBU 10e8 Verify: digest = 00000000 9f eb 16 dc f7 9f 6f 9c 05 a4 71 7b 39 8b fe bd |......o...q{9...| +orderer.example.com | 00000010 9a fa a8 d7 79 ce 72 54 03 14 3b 94 d2 57 e1 f1 |....y.rT..;..W..| +orderer.example.com | 2018-01-18 09:31:31.132 UTC [msp/identity] Verify -> DEBU 10e9 Verify: sig = 00000000 30 45 02 21 00 e3 28 d8 02 e7 02 3e 59 73 94 0d |0E.!..(....>Ys..| +orderer.example.com | 00000010 fc 65 ca 4e a5 be 30 11 3a 25 9d 1f 8f cb 12 9e |.e.N..0.:%......| +orderer.example.com | 00000020 ef 73 62 1c 15 02 20 0b 31 a1 02 e5 dd ed 01 97 |.sb... .1.......| +orderer.example.com | 00000030 94 21 71 ee 78 a3 51 d4 4a dd 57 38 86 09 92 8e |.!q.x.Q.J.W8....| +orderer.example.com | 00000040 fa 9c 99 e9 5d d4 de |....]..| +orderer.example.com | 2018-01-18 09:31:31.133 UTC [cauthdsl] func2 -> DEBU 10ea 0xc420026228 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-18 09:31:31.133 UTC [cauthdsl] func1 -> DEBU 10eb 0xc420026228 gate 1516267891130511014 evaluation succeeds +orderer.example.com | 2018-01-18 09:31:31.133 UTC [orderer/common/sigfilter] Apply -> DEBU 10ec Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4208371e0 1 [0xc42014a638 0xc42014a688]}) %!s(*policies.implicitMetaPolicy=&{0xc4202d8040 1 [0xc42014a750]})]} +orderer.example.com | 2018-01-18 09:31:31.133 UTC [orderer/common/deliver] Handle -> DEBU 10ed [channel: businesschannel] Received seekInfo (0xc420338620) start: > stop: > +orderer.example.com | 2018-01-18 09:31:31.133 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 10ee retrieveBlockByNumber() - blockNum = [3] +orderer.example.com | 2018-01-18 09:31:31.133 UTC [fsblkstorage] newBlockfileStream -> DEBU 10ef newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[39458] +orderer.example.com | 2018-01-18 09:31:31.134 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 10f0 Remaining bytes=[19774], Going to peek [8] bytes +orderer.example.com | 2018-01-18 09:31:31.134 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 10f1 Returning blockbytes - length=[5210], placementInfo={fileNum=[0], startOffset=[39458], bytesOffset=[39460]} +orderer.example.com | 2018-01-18 09:31:31.134 UTC [orderer/common/deliver] Handle -> DEBU 10f2 [channel: businesschannel] Delivering block for (0xc420338620) +orderer.example.com | 2018-01-18 09:31:31.134 UTC [orderer/common/deliver] Handle -> DEBU 10f3 [channel: businesschannel] Done delivering for (0xc420338620), waiting for new SeekInfo +orderer.example.com | 2018-01-18 09:31:31.135 UTC [orderer/common/deliver] Handle -> DEBU 10f4 Attempting to read seek info message +orderer.example.com | 2018-01-18 09:31:31.139 UTC [orderer/common/deliver] Handle -> WARN 10f5 Error reading from stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | 2018-01-18 09:31:31.139 UTC [orderer/main] func1 -> DEBU 10f6 Closing Deliver stream +orderer.example.com | 2018-01-18 09:31:31.299 UTC [orderer/main] Deliver -> DEBU 10f7 Starting new Deliver handler +orderer.example.com | 2018-01-18 09:31:31.299 UTC [orderer/common/deliver] Handle -> DEBU 10f8 Starting new deliver loop +orderer.example.com | 2018-01-18 09:31:31.299 UTC [orderer/common/deliver] Handle -> DEBU 10f9 Attempting to read seek info message +orderer.example.com | 2018-01-18 09:31:31.300 UTC [policies] GetPolicy -> DEBU 10fa Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:31:31.300 UTC [cauthdsl] func1 -> DEBU 10fb 0xc4200262b8 gate 1516267891300498277 evaluation starts +orderer.example.com | 2018-01-18 09:31:31.300 UTC [cauthdsl] func2 -> DEBU 10fc 0xc4200262b8 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:31:31.300 UTC [cauthdsl] func2 -> DEBU 10fd 0xc4200262b8 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:31:31.301 UTC [msp/identity] newIdentity -> DEBU 10fe Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:31:31.302 UTC [cauthdsl] func2 -> DEBU 10ff 0xc4200262b8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +orderer.example.com | 2018-01-18 09:31:31.302 UTC [cauthdsl] func2 -> DEBU 1100 0xc4200262b8 principal evaluation fails +orderer.example.com | 2018-01-18 09:31:31.302 UTC [cauthdsl] func1 -> DEBU 1101 0xc4200262b8 gate 1516267891300498277 evaluation fails +orderer.example.com | 2018-01-18 09:31:31.302 UTC [cauthdsl] func1 -> DEBU 1102 0xc4200262e8 gate 1516267891302349451 evaluation starts +orderer.example.com | 2018-01-18 09:31:31.302 UTC [cauthdsl] func2 -> DEBU 1103 0xc4200262e8 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:31:31.302 UTC [cauthdsl] func2 -> DEBU 1104 0xc4200262e8 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:31:31.302 UTC [msp/identity] newIdentity -> DEBU 1105 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:31:31.303 UTC [cauthdsl] func2 -> DEBU 1106 0xc4200262e8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +orderer.example.com | 2018-01-18 09:31:31.303 UTC [cauthdsl] func2 -> DEBU 1107 0xc4200262e8 principal evaluation fails +orderer.example.com | 2018-01-18 09:31:31.303 UTC [cauthdsl] func1 -> DEBU 1108 0xc4200262e8 gate 1516267891302349451 evaluation fails +orderer.example.com | 2018-01-18 09:31:31.303 UTC [cauthdsl] func1 -> DEBU 1109 0xc420026340 gate 1516267891303864793 evaluation starts +orderer.example.com | 2018-01-18 09:31:31.304 UTC [cauthdsl] func2 -> DEBU 110a 0xc420026340 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:31:31.304 UTC [cauthdsl] func2 -> DEBU 110b 0xc420026340 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:31:31.304 UTC [msp/identity] newIdentity -> DEBU 110c Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:31:31.305 UTC [msp] SatisfiesPrincipal -> DEBU 110d Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | 2018-01-18 09:31:31.305 UTC [msp] Validate -> DEBU 110e MSP OrdererMSP validating identity +orderer.example.com | 2018-01-18 09:31:31.305 UTC [cauthdsl] func2 -> DEBU 110f 0xc420026340 principal matched by identity 0 +orderer.example.com | 2018-01-18 09:31:31.305 UTC [msp/identity] Verify -> DEBU 1110 Verify: digest = 00000000 e8 55 46 ab f8 4a 7d ba 15 8c ea a1 69 87 84 b1 |.UF..J}.....i...| +orderer.example.com | 00000010 57 57 12 be b0 d3 40 27 e0 36 79 2e a2 63 aa fc |WW....@'.6y..c..| +orderer.example.com | 2018-01-18 09:31:31.305 UTC [msp/identity] Verify -> DEBU 1111 Verify: sig = 00000000 30 44 02 20 34 9a 5d 94 dd 8d 00 0f c4 c8 db 9c |0D. 4.].........| +orderer.example.com | 00000010 5f 56 c7 d8 99 75 fb c6 c3 c6 17 7f 97 c6 bb 66 |_V...u.........f| +orderer.example.com | 00000020 a4 fa 27 b2 02 20 59 82 43 5d 52 59 f7 9b 4a 97 |..'.. Y.C]RY..J.| +orderer.example.com | 00000030 75 fd 20 c2 74 b8 08 ce 55 5d 26 18 45 b7 25 20 |u. .t...U]&.E.% | +orderer.example.com | 00000040 9c 11 02 c1 39 98 |....9.| +orderer.example.com | 2018-01-18 09:31:31.306 UTC [cauthdsl] func2 -> DEBU 1112 0xc420026340 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-18 09:31:31.306 UTC [cauthdsl] func1 -> DEBU 1113 0xc420026340 gate 1516267891303864793 evaluation succeeds +orderer.example.com | 2018-01-18 09:31:31.306 UTC [orderer/common/sigfilter] Apply -> DEBU 1114 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4208371e0 1 [0xc42014a638 0xc42014a688]}) %!s(*policies.implicitMetaPolicy=&{0xc4202d8040 1 [0xc42014a750]})]} +orderer.example.com | 2018-01-18 09:31:31.306 UTC [orderer/common/deliver] Handle -> DEBU 1115 [channel: businesschannel] Received seekInfo (0xc4202d13a0) start: > stop: > +orderer.example.com | 2018-01-18 09:31:31.306 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 1116 retrieveBlockByNumber() - blockNum = [4] +orderer.example.com | 2018-01-18 09:31:31.307 UTC [fsblkstorage] newBlockfileStream -> DEBU 1117 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[44670] +orderer.example.com | 2018-01-18 09:31:31.307 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 1118 Remaining bytes=[14562], Going to peek [8] bytes +orderer.example.com | 2018-01-18 09:31:31.307 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 1119 Returning blockbytes - length=[5211], placementInfo={fileNum=[0], startOffset=[44670], bytesOffset=[44672]} +orderer.example.com | 2018-01-18 09:31:31.307 UTC [orderer/common/deliver] Handle -> DEBU 111a [channel: businesschannel] Delivering block for (0xc4202d13a0) +orderer.example.com | 2018-01-18 09:31:31.308 UTC [orderer/common/deliver] Handle -> DEBU 111b [channel: businesschannel] Done delivering for (0xc4202d13a0), waiting for new SeekInfo +orderer.example.com | 2018-01-18 09:31:31.308 UTC [orderer/common/deliver] Handle -> DEBU 111c Attempting to read seek info message +orderer.example.com | 2018-01-18 09:31:31.313 UTC [orderer/common/deliver] Handle -> WARN 111d Error reading from stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | 2018-01-18 09:31:31.313 UTC [orderer/main] func1 -> DEBU 111e Closing Deliver stream +orderer.example.com | 2018-01-18 09:31:31.458 UTC [orderer/main] Deliver -> DEBU 111f Starting new Deliver handler +orderer.example.com | 2018-01-18 09:31:31.458 UTC [orderer/common/deliver] Handle -> DEBU 1120 Starting new deliver loop +orderer.example.com | 2018-01-18 09:31:31.458 UTC [orderer/common/deliver] Handle -> DEBU 1121 Attempting to read seek info message +orderer.example.com | 2018-01-18 09:31:31.459 UTC [policies] GetPolicy -> DEBU 1122 Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:31:31.459 UTC [cauthdsl] func1 -> DEBU 1123 0xc42014a980 gate 1516267891459702535 evaluation starts +orderer.example.com | 2018-01-18 09:31:31.459 UTC [cauthdsl] func2 -> DEBU 1124 0xc42014a980 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:31:31.459 UTC [cauthdsl] func2 -> DEBU 1125 0xc42014a980 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:31:31.460 UTC [msp/identity] newIdentity -> DEBU 1126 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:31:31.460 UTC [cauthdsl] func2 -> DEBU 1127 0xc42014a980 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +orderer.example.com | 2018-01-18 09:31:31.460 UTC [cauthdsl] func2 -> DEBU 1128 0xc42014a980 principal evaluation fails +orderer.example.com | 2018-01-18 09:31:31.460 UTC [cauthdsl] func1 -> DEBU 1129 0xc42014a980 gate 1516267891459702535 evaluation fails +orderer.example.com | 2018-01-18 09:31:31.460 UTC [cauthdsl] func1 -> DEBU 112a 0xc42014a990 gate 1516267891460518627 evaluation starts +orderer.example.com | 2018-01-18 09:31:31.460 UTC [cauthdsl] func2 -> DEBU 112b 0xc42014a990 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:31:31.460 UTC [cauthdsl] func2 -> DEBU 112c 0xc42014a990 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:31:31.460 UTC [msp/identity] newIdentity -> DEBU 112d Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:31:31.461 UTC [cauthdsl] func2 -> DEBU 112e 0xc42014a990 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +orderer.example.com | 2018-01-18 09:31:31.461 UTC [cauthdsl] func2 -> DEBU 112f 0xc42014a990 principal evaluation fails +orderer.example.com | 2018-01-18 09:31:31.461 UTC [cauthdsl] func1 -> DEBU 1130 0xc42014a990 gate 1516267891460518627 evaluation fails +orderer.example.com | 2018-01-18 09:31:31.461 UTC [cauthdsl] func1 -> DEBU 1131 0xc42014a9a0 gate 1516267891461328322 evaluation starts +orderer.example.com | 2018-01-18 09:31:31.461 UTC [cauthdsl] func2 -> DEBU 1132 0xc42014a9a0 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:31:31.461 UTC [cauthdsl] func2 -> DEBU 1133 0xc42014a9a0 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:31:31.461 UTC [msp/identity] newIdentity -> DEBU 1134 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:31:31.462 UTC [msp] SatisfiesPrincipal -> DEBU 1135 Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | 2018-01-18 09:31:31.462 UTC [msp] Validate -> DEBU 1136 MSP OrdererMSP validating identity +orderer.example.com | 2018-01-18 09:31:31.462 UTC [cauthdsl] func2 -> DEBU 1137 0xc42014a9a0 principal matched by identity 0 +orderer.example.com | 2018-01-18 09:31:31.462 UTC [msp/identity] Verify -> DEBU 1138 Verify: digest = 00000000 ce 9e 47 1c f2 e2 c8 f5 d6 49 2c b7 98 70 d1 81 |..G......I,..p..| +orderer.example.com | 00000010 0c e0 2f b3 a1 35 7e fc c4 ff 18 60 c1 8a 36 c0 |../..5~....`..6.| +orderer.example.com | 2018-01-18 09:31:31.462 UTC [msp/identity] Verify -> DEBU 1139 Verify: sig = 00000000 30 45 02 21 00 e7 bb 82 ec 26 a2 f0 fe 67 1c 5f |0E.!.....&...g._| +orderer.example.com | 00000010 77 cc 10 14 63 74 34 f2 f2 a7 f0 76 36 ff 27 45 |w...ct4....v6.'E| +orderer.example.com | 00000020 36 9e f4 1c 6b 02 20 07 76 1e 9d 22 27 ca f3 0f |6...k. .v.."'...| +orderer.example.com | 00000030 b3 19 93 24 93 20 b2 38 c8 11 ba b5 43 ab a8 27 |...$. .8....C..'| +orderer.example.com | 00000040 c4 4c 3c f6 bb 41 4b |.L<..AK| +orderer.example.com | 2018-01-18 09:31:31.462 UTC [cauthdsl] func2 -> DEBU 113a 0xc42014a9a0 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-18 09:31:31.462 UTC [cauthdsl] func1 -> DEBU 113b 0xc42014a9a0 gate 1516267891461328322 evaluation succeeds +orderer.example.com | 2018-01-18 09:31:31.462 UTC [orderer/common/sigfilter] Apply -> DEBU 113c Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4208371e0 1 [0xc42014a638 0xc42014a688]}) %!s(*policies.implicitMetaPolicy=&{0xc4202d8040 1 [0xc42014a750]})]} +orderer.example.com | 2018-01-18 09:31:31.462 UTC [orderer/common/deliver] Handle -> DEBU 113d [channel: businesschannel] Received seekInfo (0xc420a944e0) start: > stop: > +orderer.example.com | 2018-01-18 09:31:31.462 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 113e retrieveBlockByNumber() - blockNum = [5] +orderer.example.com | 2018-01-18 09:31:31.462 UTC [fsblkstorage] newBlockfileStream -> DEBU 113f newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[49883] +orderer.example.com | 2018-01-18 09:31:31.463 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 1140 Remaining bytes=[9349], Going to peek [8] bytes +orderer.example.com | 2018-01-18 09:31:31.463 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 1141 Returning blockbytes - length=[4673], placementInfo={fileNum=[0], startOffset=[49883], bytesOffset=[49885]} +orderer.example.com | 2018-01-18 09:31:31.463 UTC [orderer/common/deliver] Handle -> DEBU 1142 [channel: businesschannel] Delivering block for (0xc420a944e0) +orderer.example.com | 2018-01-18 09:31:31.463 UTC [orderer/common/deliver] Handle -> DEBU 1143 [channel: businesschannel] Done delivering for (0xc420a944e0), waiting for new SeekInfo +orderer.example.com | 2018-01-18 09:31:31.463 UTC [orderer/common/deliver] Handle -> DEBU 1144 Attempting to read seek info message +orderer.example.com | 2018-01-18 09:31:31.471 UTC [orderer/common/deliver] Handle -> WARN 1145 Error reading from stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | 2018-01-18 09:31:31.471 UTC [orderer/main] func1 -> DEBU 1146 Closing Deliver stream +orderer.example.com | 2018-01-18 09:31:31.631 UTC [orderer/main] Deliver -> DEBU 1147 Starting new Deliver handler +orderer.example.com | 2018-01-18 09:31:31.631 UTC [orderer/common/deliver] Handle -> DEBU 1148 Starting new deliver loop +orderer.example.com | 2018-01-18 09:31:31.631 UTC [orderer/common/deliver] Handle -> DEBU 1149 Attempting to read seek info message +orderer.example.com | 2018-01-18 09:31:31.632 UTC [policies] GetPolicy -> DEBU 114a Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:31:31.632 UTC [cauthdsl] func1 -> DEBU 114b 0xc42014a9e8 gate 1516267891632561563 evaluation starts +orderer.example.com | 2018-01-18 09:31:31.632 UTC [cauthdsl] func2 -> DEBU 114c 0xc42014a9e8 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:31:31.632 UTC [cauthdsl] func2 -> DEBU 114d 0xc42014a9e8 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:31:31.632 UTC [msp/identity] newIdentity -> DEBU 114e Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:31:31.633 UTC [cauthdsl] func2 -> DEBU 114f 0xc42014a9e8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +orderer.example.com | 2018-01-18 09:31:31.633 UTC [cauthdsl] func2 -> DEBU 1150 0xc42014a9e8 principal evaluation fails +orderer.example.com | 2018-01-18 09:31:31.633 UTC [cauthdsl] func1 -> DEBU 1151 0xc42014a9e8 gate 1516267891632561563 evaluation fails +orderer.example.com | 2018-01-18 09:31:31.633 UTC [cauthdsl] func1 -> DEBU 1152 0xc42014a9f8 gate 1516267891633274906 evaluation starts +orderer.example.com | 2018-01-18 09:31:31.633 UTC [cauthdsl] func2 -> DEBU 1153 0xc42014a9f8 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:31:31.633 UTC [cauthdsl] func2 -> DEBU 1154 0xc42014a9f8 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:31:31.633 UTC [msp/identity] newIdentity -> DEBU 1155 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:31:31.633 UTC [cauthdsl] func2 -> DEBU 1156 0xc42014a9f8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +orderer.example.com | 2018-01-18 09:31:31.633 UTC [cauthdsl] func2 -> DEBU 1157 0xc42014a9f8 principal evaluation fails +orderer.example.com | 2018-01-18 09:31:31.633 UTC [cauthdsl] func1 -> DEBU 1158 0xc42014a9f8 gate 1516267891633274906 evaluation fails +orderer.example.com | 2018-01-18 09:31:31.633 UTC [cauthdsl] func1 -> DEBU 1159 0xc42014aa08 gate 1516267891633818734 evaluation starts +orderer.example.com | 2018-01-18 09:31:31.633 UTC [cauthdsl] func2 -> DEBU 115a 0xc42014aa08 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:31:31.633 UTC [cauthdsl] func2 -> DEBU 115b 0xc42014aa08 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:31:31.634 UTC [msp/identity] newIdentity -> DEBU 115c Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:31:31.634 UTC [msp] SatisfiesPrincipal -> DEBU 115d Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | 2018-01-18 09:31:31.634 UTC [msp] Validate -> DEBU 115e MSP OrdererMSP validating identity +orderer.example.com | 2018-01-18 09:31:31.634 UTC [cauthdsl] func2 -> DEBU 115f 0xc42014aa08 principal matched by identity 0 +orderer.example.com | 2018-01-18 09:31:31.634 UTC [msp/identity] Verify -> DEBU 1160 Verify: digest = 00000000 51 6b c1 48 2b c9 3a 03 f0 43 07 12 f7 e1 7d 1c |Qk.H+.:..C....}.| +orderer.example.com | 00000010 b7 f9 b8 af 7b 62 26 5a c0 c5 fb 03 74 09 00 fd |....{b&Z....t...| +orderer.example.com | 2018-01-18 09:31:31.634 UTC [msp/identity] Verify -> DEBU 1161 Verify: sig = 00000000 30 45 02 21 00 b3 8c 9f 78 9a 99 33 03 b5 c6 e0 |0E.!....x..3....| +orderer.example.com | 00000010 df 81 0f 90 b6 e6 4d 31 2b 31 26 5f c0 42 7b 7e |......M1+1&_.B{~| +orderer.example.com | 00000020 76 24 6f f9 d6 02 20 77 d0 0b ba bb 68 3d 75 1e |v$o... w....h=u.| +orderer.example.com | 00000030 4f be 69 f7 7e 87 de 15 ce 0b 14 6c d0 8b 5a 82 |O.i.~......l..Z.| +orderer.example.com | 00000040 2a 31 32 b6 6f 8e 75 |*12.o.u| +orderer.example.com | 2018-01-18 09:31:31.634 UTC [cauthdsl] func2 -> DEBU 1162 0xc42014aa08 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-18 09:31:31.635 UTC [cauthdsl] func1 -> DEBU 1163 0xc42014aa08 gate 1516267891633818734 evaluation succeeds +orderer.example.com | 2018-01-18 09:31:31.635 UTC [orderer/common/sigfilter] Apply -> DEBU 1164 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4208371e0 1 [0xc42014a638 0xc42014a688]}) %!s(*policies.implicitMetaPolicy=&{0xc4202d8040 1 [0xc42014a750]})]} +orderer.example.com | 2018-01-18 09:31:31.635 UTC [orderer/common/deliver] Handle -> DEBU 1165 [channel: businesschannel] Received seekInfo (0xc4201ee160) start: > stop: > +orderer.example.com | 2018-01-18 09:31:31.635 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 1166 retrieveBlockByNumber() - blockNum = [6] +orderer.example.com | 2018-01-18 09:31:31.635 UTC [fsblkstorage] newBlockfileStream -> DEBU 1167 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[54558] +orderer.example.com | 2018-01-18 09:31:31.635 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 1168 Remaining bytes=[4674], Going to peek [8] bytes +orderer.example.com | 2018-01-18 09:31:31.635 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 1169 Returning blockbytes - length=[4672], placementInfo={fileNum=[0], startOffset=[54558], bytesOffset=[54560]} +orderer.example.com | 2018-01-18 09:31:31.635 UTC [orderer/common/deliver] Handle -> DEBU 116a [channel: businesschannel] Delivering block for (0xc4201ee160) +orderer.example.com | 2018-01-18 09:31:31.635 UTC [orderer/common/deliver] Handle -> DEBU 116b [channel: businesschannel] Done delivering for (0xc4201ee160), waiting for new SeekInfo +orderer.example.com | 2018-01-18 09:31:31.635 UTC [orderer/common/deliver] Handle -> DEBU 116c Attempting to read seek info message +orderer.example.com | 2018-01-18 09:31:31.643 UTC [orderer/common/deliver] Handle -> WARN 116d Error reading from stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | 2018-01-18 09:31:31.643 UTC [orderer/main] func1 -> DEBU 116e Closing Deliver stream +orderer.example.com | 2018-01-18 09:31:31.796 UTC [orderer/main] Deliver -> DEBU 116f Starting new Deliver handler +orderer.example.com | 2018-01-18 09:31:31.796 UTC [orderer/common/deliver] Handle -> DEBU 1170 Starting new deliver loop +orderer.example.com | 2018-01-18 09:31:31.796 UTC [orderer/common/deliver] Handle -> DEBU 1171 Attempting to read seek info message +orderer.example.com | 2018-01-18 09:31:31.797 UTC [policies] GetPolicy -> DEBU 1172 Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:31:31.797 UTC [cauthdsl] func1 -> DEBU 1173 0xc42014aa50 gate 1516267891797686859 evaluation starts +orderer.example.com | 2018-01-18 09:31:31.797 UTC [cauthdsl] func2 -> DEBU 1174 0xc42014aa50 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:31:31.797 UTC [cauthdsl] func2 -> DEBU 1175 0xc42014aa50 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:31:31.798 UTC [msp/identity] newIdentity -> DEBU 1176 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:31:31.798 UTC [msp] SatisfiesPrincipal -> DEBU 1177 Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | 2018-01-18 09:31:31.798 UTC [msp] Validate -> DEBU 1178 MSP OrdererMSP validating identity +orderer.example.com | 2018-01-18 09:31:31.798 UTC [cauthdsl] func2 -> DEBU 1179 0xc42014aa50 principal matched by identity 0 +orderer.example.com | 2018-01-18 09:31:31.798 UTC [msp/identity] Verify -> DEBU 117a Verify: digest = 00000000 ce a7 9e 97 a2 5c b2 2f 4c 91 45 75 eb c1 62 6b |.....\./L.Eu..bk| +orderer.example.com | 00000010 59 c8 20 1c 9a a9 66 00 e9 32 18 aa bb da ec 62 |Y. ...f..2.....b| +orderer.example.com | 2018-01-18 09:31:31.798 UTC [msp/identity] Verify -> DEBU 117b Verify: sig = 00000000 30 45 02 21 00 c8 ab ac 42 87 3d 62 6b ab 9e f1 |0E.!....B.=bk...| +orderer.example.com | 00000010 e3 b1 4e be 3b 18 53 77 0f 0d 60 00 15 c2 11 6f |..N.;.Sw..`....o| +orderer.example.com | 00000020 7a 7e 82 c4 31 02 20 43 f9 48 45 44 4c bd dc c9 |z~..1. C.HEDL...| +orderer.example.com | 00000030 ff c2 13 99 0c 96 dc 80 c7 65 a5 0a f3 eb 90 5d |.........e.....]| +orderer.example.com | 00000040 2e 1d 09 55 9f fd 86 |...U...| +orderer.example.com | 2018-01-18 09:31:31.799 UTC [cauthdsl] func2 -> DEBU 117c 0xc42014aa50 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-18 09:31:31.799 UTC [cauthdsl] func1 -> DEBU 117d 0xc42014aa50 gate 1516267891797686859 evaluation succeeds +orderer.example.com | 2018-01-18 09:31:31.799 UTC [orderer/common/sigfilter] Apply -> DEBU 117e Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [Readers %!s(*policies.implicitMetaPolicy=&{0xc420371f80 1 [0xc4200264e0]})]} +orderer.example.com | 2018-01-18 09:31:31.799 UTC [orderer/common/deliver] Handle -> DEBU 117f [channel: testchainid] Received seekInfo (0xc4200b8c20) start: > stop: > +orderer.example.com | 2018-01-18 09:31:31.799 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 1180 retrieveBlockByNumber() - blockNum = [1] +orderer.example.com | 2018-01-18 09:31:31.799 UTC [fsblkstorage] newBlockfileStream -> DEBU 1181 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[9082] +orderer.example.com | 2018-01-18 09:31:31.799 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 1182 Remaining bytes=[14609], Going to peek [8] bytes +orderer.example.com | 2018-01-18 09:31:31.799 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 1183 Returning blockbytes - length=[14607], placementInfo={fileNum=[0], startOffset=[9082], bytesOffset=[9084]} +orderer.example.com | 2018-01-18 09:31:31.799 UTC [orderer/common/deliver] Handle -> DEBU 1184 [channel: testchainid] Delivering block for (0xc4200b8c20) +orderer.example.com | 2018-01-18 09:31:31.800 UTC [orderer/common/deliver] Handle -> DEBU 1185 [channel: testchainid] Done delivering for (0xc4200b8c20), waiting for new SeekInfo +orderer.example.com | 2018-01-18 09:31:31.800 UTC [orderer/common/deliver] Handle -> DEBU 1186 Attempting to read seek info message +orderer.example.com | 2018-01-18 09:31:31.802 UTC [orderer/common/deliver] Handle -> WARN 1187 Error reading from stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | 2018-01-18 09:31:31.802 UTC [orderer/main] func1 -> DEBU 1188 Closing Deliver stream +orderer.example.com | 2018-01-18 09:31:31.963 UTC [orderer/main] Deliver -> DEBU 1189 Starting new Deliver handler +orderer.example.com | 2018-01-18 09:31:31.963 UTC [orderer/common/deliver] Handle -> DEBU 118a Starting new deliver loop +orderer.example.com | 2018-01-18 09:31:31.963 UTC [orderer/common/deliver] Handle -> DEBU 118b Attempting to read seek info message +orderer.example.com | 2018-01-18 09:31:31.964 UTC [policies] GetPolicy -> DEBU 118c Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:31:31.964 UTC [cauthdsl] func1 -> DEBU 118d 0xc42014aa98 gate 1516267891964799361 evaluation starts +orderer.example.com | 2018-01-18 09:31:31.964 UTC [cauthdsl] func2 -> DEBU 118e 0xc42014aa98 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:31:31.965 UTC [cauthdsl] func2 -> DEBU 118f 0xc42014aa98 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:31:31.965 UTC [msp/identity] newIdentity -> DEBU 1190 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:31:31.965 UTC [msp] SatisfiesPrincipal -> DEBU 1191 Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | 2018-01-18 09:31:31.965 UTC [msp] Validate -> DEBU 1192 MSP OrdererMSP validating identity +orderer.example.com | 2018-01-18 09:31:31.965 UTC [cauthdsl] func2 -> DEBU 1193 0xc42014aa98 principal matched by identity 0 +orderer.example.com | 2018-01-18 09:31:31.966 UTC [msp/identity] Verify -> DEBU 1194 Verify: digest = 00000000 27 04 0e 5f ac f5 90 5d ab f6 d8 8c 9e 6e 98 2a |'.._...].....n.*| +orderer.example.com | 00000010 1c 2a eb 6e c4 d4 1f dd 16 71 b8 1a 8c 74 91 47 |.*.n.....q...t.G| +orderer.example.com | 2018-01-18 09:31:31.966 UTC [msp/identity] Verify -> DEBU 1195 Verify: sig = 00000000 30 44 02 20 3f f0 53 48 37 c0 13 04 51 fe a2 c6 |0D. ?.SH7...Q...| +orderer.example.com | 00000010 84 d7 95 b1 02 be b5 fe 12 3c 12 1a dd 0c ef 4b |.........<.....K| +orderer.example.com | 00000020 aa 55 a4 23 02 20 6c 65 da 0a c7 8b 80 1e da 39 |.U.#. le.......9| +orderer.example.com | 00000030 af ef ae df b1 51 58 ef 7c d1 05 ab 68 b9 79 6f |.....QX.|...h.yo| +orderer.example.com | 00000040 05 83 98 6b c3 cc |...k..| +orderer.example.com | 2018-01-18 09:31:31.966 UTC [cauthdsl] func2 -> DEBU 1196 0xc42014aa98 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-18 09:31:31.966 UTC [cauthdsl] func1 -> DEBU 1197 0xc42014aa98 gate 1516267891964799361 evaluation succeeds +orderer.example.com | 2018-01-18 09:31:31.966 UTC [orderer/common/sigfilter] Apply -> DEBU 1198 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [Readers %!s(*policies.implicitMetaPolicy=&{0xc420371f80 1 [0xc4200264e0]})]} +orderer.example.com | 2018-01-18 09:31:31.966 UTC [orderer/common/deliver] Handle -> DEBU 1199 [channel: testchainid] Received seekInfo (0xc420ac6800) start: > stop: > +orderer.example.com | 2018-01-18 09:31:31.966 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 119a retrieveBlockByNumber() - blockNum = [1] +orderer.example.com | 2018-01-18 09:31:31.967 UTC [fsblkstorage] newBlockfileStream -> DEBU 119b newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[9082] +orderer.example.com | 2018-01-18 09:31:31.967 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 119c Remaining bytes=[14609], Going to peek [8] bytes +orderer.example.com | 2018-01-18 09:31:31.967 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 119d Returning blockbytes - length=[14607], placementInfo={fileNum=[0], startOffset=[9082], bytesOffset=[9084]} +orderer.example.com | 2018-01-18 09:31:31.967 UTC [orderer/common/deliver] Handle -> DEBU 119e [channel: testchainid] Delivering block for (0xc420ac6800) +orderer.example.com | 2018-01-18 09:31:31.967 UTC [orderer/common/deliver] Handle -> DEBU 119f [channel: testchainid] Done delivering for (0xc420ac6800), waiting for new SeekInfo +orderer.example.com | 2018-01-18 09:31:31.967 UTC [orderer/common/deliver] Handle -> DEBU 11a0 Attempting to read seek info message +orderer.example.com | 2018-01-18 09:31:31.969 UTC [policies] GetPolicy -> DEBU 11a1 Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:31:31.969 UTC [cauthdsl] func1 -> DEBU 11a2 0xc42014aad8 gate 1516267891969291613 evaluation starts +orderer.example.com | 2018-01-18 09:31:31.969 UTC [cauthdsl] func2 -> DEBU 11a3 0xc42014aad8 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:31:31.969 UTC [cauthdsl] func2 -> DEBU 11a4 0xc42014aad8 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:31:31.969 UTC [msp/identity] newIdentity -> DEBU 11a5 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:31:31.970 UTC [msp] SatisfiesPrincipal -> DEBU 11a6 Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | 2018-01-18 09:31:31.970 UTC [msp] Validate -> DEBU 11a7 MSP OrdererMSP validating identity +orderer.example.com | 2018-01-18 09:31:31.970 UTC [cauthdsl] func2 -> DEBU 11a8 0xc42014aad8 principal matched by identity 0 +orderer.example.com | 2018-01-18 09:31:31.970 UTC [msp/identity] Verify -> DEBU 11a9 Verify: digest = 00000000 0a 22 1a f4 79 1b fd db d9 34 b2 18 8c 1d 52 f4 |."..y....4....R.| +orderer.example.com | 00000010 f3 bd 8b ba 38 a5 7a 9d 0c 1b d6 4a 89 73 86 0c |....8.z....J.s..| +orderer.example.com | 2018-01-18 09:31:31.970 UTC [msp/identity] Verify -> DEBU 11aa Verify: sig = 00000000 30 45 02 21 00 b1 86 67 d3 6c a0 c1 8b ff e8 ff |0E.!...g.l......| +orderer.example.com | 00000010 c1 11 cd b8 69 86 25 57 a0 f3 22 ff cb b2 95 7e |....i.%W.."....~| +orderer.example.com | 00000020 19 ce fb 0d 72 02 20 2c 51 8e 96 42 8a e1 80 4a |....r. ,Q..B...J| +orderer.example.com | 00000030 80 81 0b da 56 4a 6c 33 64 ed 90 ce 77 19 f9 09 |....VJl3d...w...| +orderer.example.com | 00000040 cd 23 44 b4 e3 df dc |.#D....| +orderer.example.com | 2018-01-18 09:31:31.971 UTC [cauthdsl] func2 -> DEBU 11ab 0xc42014aad8 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-18 09:31:31.971 UTC [cauthdsl] func1 -> DEBU 11ac 0xc42014aad8 gate 1516267891969291613 evaluation succeeds +orderer.example.com | 2018-01-18 09:31:31.971 UTC [orderer/common/sigfilter] Apply -> DEBU 11ad Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [Readers %!s(*policies.implicitMetaPolicy=&{0xc420371f80 1 [0xc4200264e0]})]} +orderer.example.com | 2018-01-18 09:31:31.971 UTC [orderer/common/deliver] Handle -> DEBU 11ae [channel: testchainid] Received seekInfo (0xc420afaf40) start: > stop: > +orderer.example.com | 2018-01-18 09:31:31.971 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 11af retrieveBlockByNumber() - blockNum = [0] +orderer.example.com | 2018-01-18 09:31:31.971 UTC [fsblkstorage] newBlockfileStream -> DEBU 11b0 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +orderer.example.com | 2018-01-18 09:31:31.971 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 11b1 Remaining bytes=[23691], Going to peek [8] bytes +orderer.example.com | 2018-01-18 09:31:31.971 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 11b2 Returning blockbytes - length=[9080], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +orderer.example.com | 2018-01-18 09:31:31.971 UTC [orderer/common/deliver] Handle -> DEBU 11b3 [channel: testchainid] Delivering block for (0xc420afaf40) +orderer.example.com | 2018-01-18 09:31:31.972 UTC [orderer/common/deliver] Handle -> DEBU 11b4 [channel: testchainid] Done delivering for (0xc420afaf40), waiting for new SeekInfo +orderer.example.com | 2018-01-18 09:31:31.972 UTC [orderer/common/deliver] Handle -> DEBU 11b5 Attempting to read seek info message +orderer.example.com | 2018-01-18 09:31:31.976 UTC [orderer/common/deliver] Handle -> WARN 11b6 Error reading from stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | 2018-01-18 09:31:31.976 UTC [orderer/main] func1 -> DEBU 11b7 Closing Deliver stream +orderer.example.com | 2018-01-18 09:31:32.089 UTC [orderer/main] Deliver -> DEBU 11b8 Starting new Deliver handler +orderer.example.com | 2018-01-18 09:31:32.090 UTC [orderer/common/deliver] Handle -> DEBU 11b9 Starting new deliver loop +orderer.example.com | 2018-01-18 09:31:32.090 UTC [orderer/common/deliver] Handle -> DEBU 11ba Attempting to read seek info message +orderer.example.com | 2018-01-18 09:31:32.091 UTC [policies] GetPolicy -> DEBU 11bb Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:31:32.091 UTC [cauthdsl] func1 -> DEBU 11bc 0xc42014ab20 gate 1516267892091465096 evaluation starts +orderer.example.com | 2018-01-18 09:31:32.091 UTC [cauthdsl] func2 -> DEBU 11bd 0xc42014ab20 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:31:32.091 UTC [cauthdsl] func2 -> DEBU 11be 0xc42014ab20 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:31:32.091 UTC [msp/identity] newIdentity -> DEBU 11bf Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:31:32.092 UTC [msp] SatisfiesPrincipal -> DEBU 11c0 Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | 2018-01-18 09:31:32.092 UTC [msp] Validate -> DEBU 11c1 MSP OrdererMSP validating identity +orderer.example.com | 2018-01-18 09:31:32.092 UTC [cauthdsl] func2 -> DEBU 11c2 0xc42014ab20 principal matched by identity 0 +orderer.example.com | 2018-01-18 09:31:32.092 UTC [msp/identity] Verify -> DEBU 11c3 Verify: digest = 00000000 12 d8 76 f4 df b6 d6 cc 51 40 94 7e 30 9f 4d fb |..v.....Q@.~0.M.| +orderer.example.com | 00000010 69 70 14 f5 4c 79 e2 a5 66 36 df 31 43 08 4c ba |ip..Ly..f6.1C.L.| +orderer.example.com | 2018-01-18 09:31:32.092 UTC [msp/identity] Verify -> DEBU 11c4 Verify: sig = 00000000 30 44 02 20 43 65 96 7e f2 d5 32 9c c6 4a 52 17 |0D. Ce.~..2..JR.| +orderer.example.com | 00000010 e2 31 b0 0e 88 9e b9 57 fd f4 d4 4a 52 d1 9a 3b |.1.....W...JR..;| +orderer.example.com | 00000020 fa b0 3a 0e 02 20 77 a3 48 20 44 a1 e1 7c ea 09 |..:.. w.H D..|..| +orderer.example.com | 00000030 78 ae 08 3c 98 3f 57 7f 54 2f 4b 7e 07 e9 85 92 |x..<.?W.T/K~....| +orderer.example.com | 00000040 56 c4 53 81 14 ee |V.S...| +orderer.example.com | 2018-01-18 09:31:32.092 UTC [cauthdsl] func2 -> DEBU 11c5 0xc42014ab20 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-18 09:31:32.092 UTC [cauthdsl] func1 -> DEBU 11c6 0xc42014ab20 gate 1516267892091465096 evaluation succeeds +orderer.example.com | 2018-01-18 09:31:32.092 UTC [orderer/common/sigfilter] Apply -> DEBU 11c7 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [Readers %!s(*policies.implicitMetaPolicy=&{0xc420371f80 1 [0xc4200264e0]})]} +orderer.example.com | 2018-01-18 09:31:32.093 UTC [orderer/common/deliver] Handle -> DEBU 11c8 [channel: testchainid] Received seekInfo (0xc420c08400) start: > stop: > +orderer.example.com | 2018-01-18 09:31:32.093 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 11c9 retrieveBlockByNumber() - blockNum = [0] +orderer.example.com | 2018-01-18 09:31:32.093 UTC [fsblkstorage] newBlockfileStream -> DEBU 11ca newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +orderer.example.com | 2018-01-18 09:31:32.094 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 11cb Remaining bytes=[23691], Going to peek [8] bytes +orderer.example.com | 2018-01-18 09:31:32.095 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 11cc Returning blockbytes - length=[9080], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +orderer.example.com | 2018-01-18 09:31:32.096 UTC [orderer/common/deliver] Handle -> DEBU 11cd [channel: testchainid] Delivering block for (0xc420c08400) +orderer.example.com | 2018-01-18 09:31:32.097 UTC [orderer/common/deliver] Handle -> DEBU 11ce [channel: testchainid] Done delivering for (0xc420c08400), waiting for new SeekInfo +orderer.example.com | 2018-01-18 09:31:32.097 UTC [orderer/common/deliver] Handle -> DEBU 11cf Attempting to read seek info message +orderer.example.com | 2018-01-18 09:31:32.102 UTC [orderer/common/deliver] Handle -> WARN 11d0 Error reading from stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | 2018-01-18 09:31:32.102 UTC [orderer/main] func1 -> DEBU 11d1 Closing Deliver stream +orderer.example.com | 2018-01-18 09:31:32.251 UTC [orderer/main] Deliver -> DEBU 11d2 Starting new Deliver handler +orderer.example.com | 2018-01-18 09:31:32.251 UTC [orderer/common/deliver] Handle -> DEBU 11d3 Starting new deliver loop +orderer.example.com | 2018-01-18 09:31:32.251 UTC [orderer/common/deliver] Handle -> DEBU 11d4 Attempting to read seek info message +orderer.example.com | 2018-01-18 09:31:32.253 UTC [policies] GetPolicy -> DEBU 11d5 Returning policy Readers for evaluation +orderer.example.com | 2018-01-18 09:31:32.254 UTC [cauthdsl] func1 -> DEBU 11d6 0xc420026080 gate 1516267892254084845 evaluation starts +orderer.example.com | 2018-01-18 09:31:32.254 UTC [cauthdsl] func2 -> DEBU 11d7 0xc420026080 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-18 09:31:32.254 UTC [cauthdsl] func2 -> DEBU 11d8 0xc420026080 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-18 09:31:32.254 UTC [msp/identity] newIdentity -> DEBU 11d9 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-18 09:31:32.255 UTC [msp] SatisfiesPrincipal -> DEBU 11da Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | 2018-01-18 09:31:32.255 UTC [msp] Validate -> DEBU 11db MSP OrdererMSP validating identity +orderer.example.com | 2018-01-18 09:31:32.255 UTC [cauthdsl] func2 -> DEBU 11dc 0xc420026080 principal matched by identity 0 +orderer.example.com | 2018-01-18 09:31:32.255 UTC [msp/identity] Verify -> DEBU 11dd Verify: digest = 00000000 93 7a cc d5 61 13 52 02 66 8d 03 4f ea 19 69 10 |.z..a.R.f..O..i.| +orderer.example.com | 00000010 cc d5 85 30 97 44 09 33 e3 90 24 85 98 5c 45 69 |...0.D.3..$..\Ei| +orderer.example.com | 2018-01-18 09:31:32.255 UTC [msp/identity] Verify -> DEBU 11de Verify: sig = 00000000 30 45 02 21 00 c8 4a 78 ee e1 91 22 51 18 0e d9 |0E.!..Jx..."Q...| +orderer.example.com | 00000010 72 65 f5 e9 89 f2 f6 81 8b 29 11 d2 51 3a 21 3f |re.......)..Q:!?| +orderer.example.com | 00000020 5e c7 ca 84 7e 02 20 3b cc 67 5a 8c 2a 61 f0 b6 |^...~. ;.gZ.*a..| +orderer.example.com | 00000030 32 7f f3 c8 9f a3 99 55 d6 bf 1f 8f 7b 1c 79 f0 |2......U....{.y.| +orderer.example.com | 00000040 e6 39 20 50 b7 fe be |.9 P...| +orderer.example.com | 2018-01-18 09:31:32.255 UTC [cauthdsl] func2 -> DEBU 11df 0xc420026080 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-18 09:31:32.255 UTC [cauthdsl] func1 -> DEBU 11e0 0xc420026080 gate 1516267892254084845 evaluation succeeds +orderer.example.com | 2018-01-18 09:31:32.256 UTC [orderer/common/sigfilter] Apply -> DEBU 11e1 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [Readers %!s(*policies.implicitMetaPolicy=&{0xc420371f80 1 [0xc4200264e0]})]} +orderer.example.com | 2018-01-18 09:31:32.256 UTC [orderer/common/deliver] Handle -> DEBU 11e2 [channel: testchainid] Received seekInfo (0xc420952f20) start: > stop: > +orderer.example.com | 2018-01-18 09:31:32.256 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 11e3 retrieveBlockByNumber() - blockNum = [1] +orderer.example.com | 2018-01-18 09:31:32.256 UTC [fsblkstorage] newBlockfileStream -> DEBU 11e4 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[9082] +orderer.example.com | 2018-01-18 09:31:32.256 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 11e5 Remaining bytes=[14609], Going to peek [8] bytes +orderer.example.com | 2018-01-18 09:31:32.256 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 11e6 Returning blockbytes - length=[14607], placementInfo={fileNum=[0], startOffset=[9082], bytesOffset=[9084]} +orderer.example.com | 2018-01-18 09:31:32.256 UTC [orderer/common/deliver] Handle -> DEBU 11e7 [channel: testchainid] Delivering block for (0xc420952f20) +orderer.example.com | 2018-01-18 09:31:32.257 UTC [orderer/common/deliver] Handle -> DEBU 11e8 [channel: testchainid] Done delivering for (0xc420952f20), waiting for new SeekInfo +orderer.example.com | 2018-01-18 09:31:32.257 UTC [orderer/common/deliver] Handle -> DEBU 11e9 Attempting to read seek info message +orderer.example.com | 2018-01-18 09:31:32.261 UTC [orderer/common/deliver] Handle -> WARN 11ea Error reading from stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | 2018-01-18 09:31:32.262 UTC [orderer/main] func1 -> DEBU 11eb Closing Deliver stream diff --git a/hyperledger_fabric/v1.0.2/solo/logs/dev_orderer.log b/hyperledger_fabric/v1.0.2/solo/logs/dev_orderer.log index 619abcc0..76a92703 100644 --- a/hyperledger_fabric/v1.0.2/solo/logs/dev_orderer.log +++ b/hyperledger_fabric/v1.0.2/solo/logs/dev_orderer.log @@ -1,29 +1,29 @@ -2018-01-18 01:58:46.431 UTC [orderer/main] main -> INFO 001 Starting orderer: +2018-01-18 09:29:37.938 UTC [orderer/main] main -> INFO 001 Starting orderer: Version: 1.0.2 Go version: go1.7.5 OS/Arch: linux/amd64 -2018-01-18 01:58:46.437 UTC [orderer/main] initializeSecureServerConfig -> INFO 002 Starting orderer with TLS enabled -2018-01-18 01:58:46.465 UTC [bccsp_sw] openKeyStore -> DEBU 003 KeyStore opened at [/var/hyperledger/orderer/msp/keystore]...done -2018-01-18 01:58:46.465 UTC [bccsp] initBCCSP -> DEBU 004 Initialize BCCSP [SW] -2018-01-18 01:58:46.465 UTC [msp] getPemMaterialFromDir -> DEBU 005 Reading directory /var/hyperledger/orderer/msp/signcerts -2018-01-18 01:58:46.467 UTC [msp] getPemMaterialFromDir -> DEBU 006 Inspecting file /var/hyperledger/orderer/msp/signcerts/orderer.example.com-cert.pem -2018-01-18 01:58:46.470 UTC [msp] getPemMaterialFromDir -> DEBU 007 Reading directory /var/hyperledger/orderer/msp/cacerts -2018-01-18 01:58:46.472 UTC [msp] getPemMaterialFromDir -> DEBU 008 Inspecting file /var/hyperledger/orderer/msp/cacerts/ca.example.com-cert.pem -2018-01-18 01:58:46.474 UTC [msp] getPemMaterialFromDir -> DEBU 009 Reading directory /var/hyperledger/orderer/msp/admincerts -2018-01-18 01:58:46.477 UTC [msp] getPemMaterialFromDir -> DEBU 00a Inspecting file /var/hyperledger/orderer/msp/admincerts/Admin@example.com-cert.pem -2018-01-18 01:58:46.479 UTC [msp] getPemMaterialFromDir -> DEBU 00b Reading directory /var/hyperledger/orderer/msp/intermediatecerts -2018-01-18 01:58:46.479 UTC [msp] getMspConfig -> DEBU 00c Intermediate certs folder not found at [/var/hyperledger/orderer/msp/intermediatecerts]. Skipping. [stat /var/hyperledger/orderer/msp/intermediatecerts: no such file or directory] -2018-01-18 01:58:46.479 UTC [msp] getPemMaterialFromDir -> DEBU 00d Reading directory /var/hyperledger/orderer/msp/tlscacerts -2018-01-18 01:58:46.482 UTC [msp] getPemMaterialFromDir -> DEBU 00e Inspecting file /var/hyperledger/orderer/msp/tlscacerts/tlsca.example.com-cert.pem -2018-01-18 01:58:46.484 UTC [msp] getPemMaterialFromDir -> DEBU 00f Reading directory /var/hyperledger/orderer/msp/tlsintermediatecerts -2018-01-18 01:58:46.485 UTC [msp] getMspConfig -> DEBU 010 TLS intermediate certs folder not found at [/var/hyperledger/orderer/msp/tlsintermediatecerts]. Skipping. [stat /var/hyperledger/orderer/msp/tlsintermediatecerts: no such file or directory] -2018-01-18 01:58:46.485 UTC [msp] getPemMaterialFromDir -> DEBU 011 Reading directory /var/hyperledger/orderer/msp/crls -2018-01-18 01:58:46.486 UTC [msp] getMspConfig -> DEBU 012 crls folder not found at [/var/hyperledger/orderer/msp/crls]. Skipping. [stat /var/hyperledger/orderer/msp/crls: no such file or directory] -2018-01-18 01:58:46.486 UTC [msp] getMspConfig -> DEBU 013 MSP configuration file not found at [/var/hyperledger/orderer/msp/config.yaml]: [stat /var/hyperledger/orderer/msp/config.yaml: no such file or directory] -2018-01-18 01:58:46.486 UTC [msp] NewBccspMsp -> DEBU 014 Creating BCCSP-based MSP instance -2018-01-18 01:58:46.486 UTC [msp] GetLocalMSP -> DEBU 015 Created new local MSP -2018-01-18 01:58:46.486 UTC [msp] Setup -> DEBU 016 Setting up MSP instance OrdererMSP -2018-01-18 01:58:46.487 UTC [msp/identity] newIdentity -> DEBU 017 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:37.956 UTC [orderer/main] initializeSecureServerConfig -> INFO 002 Starting orderer with TLS enabled +2018-01-18 09:29:38.097 UTC [bccsp_sw] openKeyStore -> DEBU 003 KeyStore opened at [/var/hyperledger/orderer/msp/keystore]...done +2018-01-18 09:29:38.097 UTC [bccsp] initBCCSP -> DEBU 004 Initialize BCCSP [SW] +2018-01-18 09:29:38.097 UTC [msp] getPemMaterialFromDir -> DEBU 005 Reading directory /var/hyperledger/orderer/msp/signcerts +2018-01-18 09:29:38.103 UTC [msp] getPemMaterialFromDir -> DEBU 006 Inspecting file /var/hyperledger/orderer/msp/signcerts/orderer.example.com-cert.pem +2018-01-18 09:29:38.111 UTC [msp] getPemMaterialFromDir -> DEBU 007 Reading directory /var/hyperledger/orderer/msp/cacerts +2018-01-18 09:29:38.127 UTC [msp] getPemMaterialFromDir -> DEBU 008 Inspecting file /var/hyperledger/orderer/msp/cacerts/ca.example.com-cert.pem +2018-01-18 09:29:38.183 UTC [msp] getPemMaterialFromDir -> DEBU 009 Reading directory /var/hyperledger/orderer/msp/admincerts +2018-01-18 09:29:38.192 UTC [msp] getPemMaterialFromDir -> DEBU 00a Inspecting file /var/hyperledger/orderer/msp/admincerts/Admin@example.com-cert.pem +2018-01-18 09:29:38.195 UTC [msp] getPemMaterialFromDir -> DEBU 00b Reading directory /var/hyperledger/orderer/msp/intermediatecerts +2018-01-18 09:29:38.196 UTC [msp] getMspConfig -> DEBU 00c Intermediate certs folder not found at [/var/hyperledger/orderer/msp/intermediatecerts]. Skipping. [stat /var/hyperledger/orderer/msp/intermediatecerts: no such file or directory] +2018-01-18 09:29:38.196 UTC [msp] getPemMaterialFromDir -> DEBU 00d Reading directory /var/hyperledger/orderer/msp/tlscacerts +2018-01-18 09:29:38.199 UTC [msp] getPemMaterialFromDir -> DEBU 00e Inspecting file /var/hyperledger/orderer/msp/tlscacerts/tlsca.example.com-cert.pem +2018-01-18 09:29:38.202 UTC [msp] getPemMaterialFromDir -> DEBU 00f Reading directory /var/hyperledger/orderer/msp/tlsintermediatecerts +2018-01-18 09:29:38.203 UTC [msp] getMspConfig -> DEBU 010 TLS intermediate certs folder not found at [/var/hyperledger/orderer/msp/tlsintermediatecerts]. Skipping. [stat /var/hyperledger/orderer/msp/tlsintermediatecerts: no such file or directory] +2018-01-18 09:29:38.203 UTC [msp] getPemMaterialFromDir -> DEBU 011 Reading directory /var/hyperledger/orderer/msp/crls +2018-01-18 09:29:38.204 UTC [msp] getMspConfig -> DEBU 012 crls folder not found at [/var/hyperledger/orderer/msp/crls]. Skipping. [stat /var/hyperledger/orderer/msp/crls: no such file or directory] +2018-01-18 09:29:38.204 UTC [msp] getMspConfig -> DEBU 013 MSP configuration file not found at [/var/hyperledger/orderer/msp/config.yaml]: [stat /var/hyperledger/orderer/msp/config.yaml: no such file or directory] +2018-01-18 09:29:38.205 UTC [msp] NewBccspMsp -> DEBU 014 Creating BCCSP-based MSP instance +2018-01-18 09:29:38.205 UTC [msp] GetLocalMSP -> DEBU 015 Created new local MSP +2018-01-18 09:29:38.205 UTC [msp] Setup -> DEBU 016 Setting up MSP instance OrdererMSP +2018-01-18 09:29:38.206 UTC [msp/identity] newIdentity -> DEBU 017 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -37,7 +37,7 @@ AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= -----END CERTIFICATE----- -2018-01-18 01:58:46.488 UTC [msp/identity] newIdentity -> DEBU 018 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:38.207 UTC [msp/identity] newIdentity -> DEBU 018 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -50,7 +50,7 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -----END CERTIFICATE----- -2018-01-18 01:58:46.488 UTC [msp/identity] newIdentity -> DEBU 019 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:38.209 UTC [msp/identity] newIdentity -> DEBU 019 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -63,7 +63,7 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -----END CERTIFICATE----- -2018-01-18 01:58:46.489 UTC [msp/identity] newIdentity -> DEBU 01a Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:38.210 UTC [msp/identity] newIdentity -> DEBU 01a Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -76,8 +76,8 @@ DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH /4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl -----END CERTIFICATE----- -2018-01-18 01:58:46.492 UTC [bccsp_sw] loadPrivateKey -> DEBU 01b Loading private key [0edbe541bf5502a74172e6e52540bc522e7cbcdf9ba374fad803a4c87fd2e14e] at [/var/hyperledger/orderer/msp/keystore/0edbe541bf5502a74172e6e52540bc522e7cbcdf9ba374fad803a4c87fd2e14e_sk]... -2018-01-18 01:58:46.495 UTC [msp/identity] newIdentity -> DEBU 01c Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:38.215 UTC [bccsp_sw] loadPrivateKey -> DEBU 01b Loading private key [0edbe541bf5502a74172e6e52540bc522e7cbcdf9ba374fad803a4c87fd2e14e] at [/var/hyperledger/orderer/msp/keystore/0edbe541bf5502a74172e6e52540bc522e7cbcdf9ba374fad803a4c87fd2e14e_sk]... +2018-01-18 09:29:38.222 UTC [msp/identity] newIdentity -> DEBU 01c Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -90,158 +90,114 @@ DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH /4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl -----END CERTIFICATE----- -2018-01-18 01:58:46.497 UTC [msp] Validate -> DEBU 01d MSP OrdererMSP validating identity -2018-01-18 01:58:46.498 UTC [orderer/main] createLedgerFactory -> DEBU 01e Ledger dir: /var/hyperledger/production/orderer -2018-01-18 01:58:46.498 UTC [kvledger.util] CreateDirIfMissing -> DEBU 01f CreateDirIfMissing [/var/hyperledger/production/orderer/index/] -2018-01-18 01:58:46.498 UTC [kvledger.util] logDirStatus -> DEBU 020 Before creating dir - [/var/hyperledger/production/orderer/index/] does not exist -2018-01-18 01:58:46.499 UTC [kvledger.util] logDirStatus -> DEBU 021 After creating dir - [/var/hyperledger/production/orderer/index/] exists -2018-01-18 01:58:46.511 UTC [fsblkstorage] newBlockfileMgr -> DEBU 022 newBlockfileMgr() initializing file-based block storage for ledger: testchainid -2018-01-18 01:58:46.511 UTC [kvledger.util] CreateDirIfMissing -> DEBU 023 CreateDirIfMissing [/var/hyperledger/production/orderer/chains/testchainid/] -2018-01-18 01:58:46.511 UTC [kvledger.util] logDirStatus -> DEBU 024 Before creating dir - [/var/hyperledger/production/orderer/chains/testchainid/] does not exist -2018-01-18 01:58:46.511 UTC [kvledger.util] logDirStatus -> DEBU 025 After creating dir - [/var/hyperledger/production/orderer/chains/testchainid/] exists -2018-01-18 01:58:46.512 UTC [fsblkstorage] syncCPInfoFromFS -> DEBU 026 Starting checkpoint=latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0] -2018-01-18 01:58:46.513 UTC [fsblkstorage] syncCPInfoFromFS -> DEBU 027 status of file [/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000]: exists=[false], size=[0] -2018-01-18 01:58:46.513 UTC [fsblkstorage] newBlockIndex -> DEBU 028 newBlockIndex() - indexItems:[[BlockNum]] -2018-01-18 01:58:46.513 UTC [fsblkstorage] newBlockfileStream -> DEBU 029 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] -2018-01-18 01:58:46.513 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 02a Finished reading file number [0] -2018-01-18 01:58:46.513 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 02b blockbytes [0] read from file [0] -2018-01-18 01:58:46.515 UTC [fsblkstorage] indexBlock -> DEBU 02c Indexing block [blockNum=0, blockHash=[]byte{0x89, 0xd5, 0xd2, 0x88, 0xd1, 0xb6, 0xc3, 0x25, 0x91, 0xfb, 0x5e, 0x94, 0x7f, 0x80, 0xeb, 0xd3, 0x7d, 0xdd, 0x80, 0xdf, 0x56, 0xc0, 0xb2, 0xfc, 0xe3, 0x98, 0x5f, 0x12, 0xd8, 0x6b, 0xb0, 0x21} txOffsets= +2018-01-18 09:29:38.223 UTC [msp] Validate -> DEBU 01d MSP OrdererMSP validating identity +2018-01-18 09:29:38.223 UTC [orderer/main] createLedgerFactory -> DEBU 01e Ledger dir: /var/hyperledger/production/orderer +2018-01-18 09:29:38.223 UTC [kvledger.util] CreateDirIfMissing -> DEBU 01f CreateDirIfMissing [/var/hyperledger/production/orderer/index/] +2018-01-18 09:29:38.223 UTC [kvledger.util] logDirStatus -> DEBU 020 Before creating dir - [/var/hyperledger/production/orderer/index/] does not exist +2018-01-18 09:29:38.223 UTC [kvledger.util] logDirStatus -> DEBU 021 After creating dir - [/var/hyperledger/production/orderer/index/] exists +2018-01-18 09:29:38.314 UTC [fsblkstorage] newBlockfileMgr -> DEBU 022 newBlockfileMgr() initializing file-based block storage for ledger: testchainid +2018-01-18 09:29:38.315 UTC [kvledger.util] CreateDirIfMissing -> DEBU 023 CreateDirIfMissing [/var/hyperledger/production/orderer/chains/testchainid/] +2018-01-18 09:29:38.315 UTC [kvledger.util] logDirStatus -> DEBU 024 Before creating dir - [/var/hyperledger/production/orderer/chains/testchainid/] does not exist +2018-01-18 09:29:38.315 UTC [kvledger.util] logDirStatus -> DEBU 025 After creating dir - [/var/hyperledger/production/orderer/chains/testchainid/] exists +2018-01-18 09:29:38.327 UTC [fsblkstorage] syncCPInfoFromFS -> DEBU 026 Starting checkpoint=latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0] +2018-01-18 09:29:38.327 UTC [fsblkstorage] syncCPInfoFromFS -> DEBU 027 status of file [/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000]: exists=[false], size=[0] +2018-01-18 09:29:38.328 UTC [fsblkstorage] newBlockIndex -> DEBU 028 newBlockIndex() - indexItems:[[BlockNum]] +2018-01-18 09:29:38.328 UTC [fsblkstorage] newBlockfileStream -> DEBU 029 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +2018-01-18 09:29:38.328 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 02a Finished reading file number [0] +2018-01-18 09:29:38.328 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 02b blockbytes [0] read from file [0] +2018-01-18 09:29:38.331 UTC [fsblkstorage] indexBlock -> DEBU 02c Indexing block [blockNum=0, blockHash=[]byte{0x89, 0xd5, 0xd2, 0x88, 0xd1, 0xb6, 0xc3, 0x25, 0x91, 0xfb, 0x5e, 0x94, 0x7f, 0x80, 0xeb, 0xd3, 0x7d, 0xdd, 0x80, 0xdf, 0x56, 0xc0, 0xb2, 0xfc, 0xe3, 0x98, 0x5f, 0x12, 0xd8, 0x6b, 0xb0, 0x21} txOffsets= txId=39266883a94d0b87be6c51e2f16ce943b4d54e117e366bcac9318c13c284ab01 locPointer=offset=38, bytesLength=9039 ] -2018-01-18 01:58:46.517 UTC [fsblkstorage] updateCheckpoint -> DEBU 02d Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[9082], isChainEmpty=[false], lastBlockNumber=[0] -2018-01-18 01:58:46.517 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 02e retrieveBlockByNumber() - blockNum = [0] -2018-01-18 01:58:46.517 UTC [fsblkstorage] newBlockfileStream -> DEBU 02f newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] -2018-01-18 01:58:46.517 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 030 Remaining bytes=[9082], Going to peek [8] bytes -2018-01-18 01:58:46.517 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 031 Returning blockbytes - length=[9080], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -2018-01-18 01:58:46.517 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 032 retrieveBlockByNumber() - blockNum = [0] -2018-01-18 01:58:46.517 UTC [fsblkstorage] newBlockfileStream -> DEBU 033 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] -2018-01-18 01:58:46.517 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 034 Remaining bytes=[9082], Going to peek [8] bytes -2018-01-18 01:58:46.517 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 035 Returning blockbytes - length=[9080], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -2018-01-18 01:58:46.517 UTC [common/config] NewStandardValues -> DEBU 036 Initializing protos for *config.ChannelProtos -2018-01-18 01:58:46.517 UTC [common/config] initializeProtosStruct -> DEBU 037 Processing field: HashingAlgorithm -2018-01-18 01:58:46.517 UTC [common/config] initializeProtosStruct -> DEBU 038 Processing field: BlockDataHashingStructure -2018-01-18 01:58:46.517 UTC [common/config] initializeProtosStruct -> DEBU 039 Processing field: OrdererAddresses -2018-01-18 01:58:46.517 UTC [common/config] initializeProtosStruct -> DEBU 03a Processing field: Consortium -2018-01-18 01:58:46.522 UTC [common/configtx] addToMap -> DEBU 03b Adding to config map: [Groups] /Channel -2018-01-18 01:58:46.522 UTC [common/configtx] addToMap -> DEBU 03c Adding to config map: [Groups] /Channel/Orderer -2018-01-18 01:58:46.522 UTC [common/configtx] addToMap -> DEBU 03d Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -2018-01-18 01:58:46.522 UTC [common/configtx] addToMap -> DEBU 03e Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -2018-01-18 01:58:46.522 UTC [common/configtx] addToMap -> DEBU 03f Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -2018-01-18 01:58:46.522 UTC [common/configtx] addToMap -> DEBU 040 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -2018-01-18 01:58:46.522 UTC [common/configtx] addToMap -> DEBU 041 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -2018-01-18 01:58:46.522 UTC [common/configtx] addToMap -> DEBU 042 Adding to config map: [Values] /Channel/Orderer/BatchSize -2018-01-18 01:58:46.522 UTC [common/configtx] addToMap -> DEBU 043 Adding to config map: [Values] /Channel/Orderer/BatchTimeout -2018-01-18 01:58:46.522 UTC [common/configtx] addToMap -> DEBU 044 Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -2018-01-18 01:58:46.522 UTC [common/configtx] addToMap -> DEBU 045 Adding to config map: [Values] /Channel/Orderer/ConsensusType -2018-01-18 01:58:46.535 UTC [common/configtx] addToMap -> DEBU 046 Adding to config map: [Policy] /Channel/Orderer/BlockValidation -2018-01-18 01:58:46.536 UTC [common/configtx] addToMap -> DEBU 047 Adding to config map: [Policy] /Channel/Orderer/Readers -2018-01-18 01:58:46.536 UTC [common/configtx] addToMap -> DEBU 048 Adding to config map: [Policy] /Channel/Orderer/Writers -2018-01-18 01:58:46.536 UTC [common/configtx] addToMap -> DEBU 049 Adding to config map: [Policy] /Channel/Orderer/Admins -2018-01-18 01:58:46.536 UTC [common/configtx] addToMap -> DEBU 04a Adding to config map: [Groups] /Channel/Consortiums -2018-01-18 01:58:46.538 UTC [common/configtx] addToMap -> DEBU 04b Adding to config map: [Groups] /Channel/Consortiums/SampleConsortium -2018-01-18 01:58:46.538 UTC [common/configtx] addToMap -> DEBU 04c Adding to config map: [Groups] /Channel/Consortiums/SampleConsortium/Org1MSP -2018-01-18 01:58:46.538 UTC [common/configtx] addToMap -> DEBU 04d Adding to config map: [Values] /Channel/Consortiums/SampleConsortium/Org1MSP/MSP -2018-01-18 01:58:46.538 UTC [common/configtx] addToMap -> DEBU 04e Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Readers -2018-01-18 01:58:46.538 UTC [common/configtx] addToMap -> DEBU 04f Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Writers -2018-01-18 01:58:46.538 UTC [common/configtx] addToMap -> DEBU 050 Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Admins -2018-01-18 01:58:46.539 UTC [common/configtx] addToMap -> DEBU 051 Adding to config map: [Groups] /Channel/Consortiums/SampleConsortium/Org2MSP -2018-01-18 01:58:46.539 UTC [common/configtx] addToMap -> DEBU 052 Adding to config map: [Values] /Channel/Consortiums/SampleConsortium/Org2MSP/MSP -2018-01-18 01:58:46.539 UTC [common/configtx] addToMap -> DEBU 053 Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Readers -2018-01-18 01:58:46.539 UTC [common/configtx] addToMap -> DEBU 054 Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Writers -2018-01-18 01:58:46.539 UTC [common/configtx] addToMap -> DEBU 055 Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Admins -2018-01-18 01:58:46.539 UTC [common/configtx] addToMap -> DEBU 056 Adding to config map: [Values] /Channel/Consortiums/SampleConsortium/ChannelCreationPolicy -2018-01-18 01:58:46.539 UTC [common/configtx] addToMap -> DEBU 057 Adding to config map: [Policy] /Channel/Consortiums/Admins -2018-01-18 01:58:46.539 UTC [common/configtx] addToMap -> DEBU 058 Adding to config map: [Values] /Channel/OrdererAddresses -2018-01-18 01:58:46.539 UTC [common/configtx] addToMap -> DEBU 059 Adding to config map: [Values] /Channel/HashingAlgorithm -2018-01-18 01:58:46.539 UTC [common/configtx] addToMap -> DEBU 05a Adding to config map: [Values] /Channel/BlockDataHashingStructure -2018-01-18 01:58:46.540 UTC [common/configtx] addToMap -> DEBU 05b Adding to config map: [Policy] /Channel/Readers -2018-01-18 01:58:46.540 UTC [common/configtx] addToMap -> DEBU 05c Adding to config map: [Policy] /Channel/Writers -2018-01-18 01:58:46.540 UTC [common/configtx] addToMap -> DEBU 05d Adding to config map: [Policy] /Channel/Admins -2018-01-18 01:58:46.540 UTC [common/configtx] processConfig -> DEBU 05e Beginning new config for channel testchainid -2018-01-18 01:58:46.540 UTC [common/config] NewStandardValues -> DEBU 05f Initializing protos for *config.ChannelProtos -2018-01-18 01:58:46.540 UTC [common/config] initializeProtosStruct -> DEBU 060 Processing field: HashingAlgorithm -2018-01-18 01:58:46.541 UTC [common/config] initializeProtosStruct -> DEBU 061 Processing field: BlockDataHashingStructure -2018-01-18 01:58:46.541 UTC [common/config] initializeProtosStruct -> DEBU 062 Processing field: OrdererAddresses -2018-01-18 01:58:46.541 UTC [common/config] initializeProtosStruct -> DEBU 063 Processing field: Consortium -2018-01-18 01:58:46.541 UTC [policies] ProposePolicy -> DEBU 064 Proposed new policy Writers for Channel -2018-01-18 01:58:46.541 UTC [policies] ProposePolicy -> DEBU 065 Proposed new policy Admins for Channel -2018-01-18 01:58:46.541 UTC [policies] ProposePolicy -> DEBU 066 Proposed new policy Readers for Channel -2018-01-18 01:58:46.541 UTC [common/config] NewStandardValues -> DEBU 067 Initializing protos for *config.OrdererProtos -2018-01-18 01:58:46.542 UTC [common/config] initializeProtosStruct -> DEBU 068 Processing field: ConsensusType -2018-01-18 01:58:46.542 UTC [common/config] initializeProtosStruct -> DEBU 069 Processing field: BatchSize -2018-01-18 01:58:46.542 UTC [common/config] initializeProtosStruct -> DEBU 06a Processing field: BatchTimeout -2018-01-18 01:58:46.542 UTC [common/config] initializeProtosStruct -> DEBU 06b Processing field: KafkaBrokers -2018-01-18 01:58:46.542 UTC [common/config] initializeProtosStruct -> DEBU 06c Processing field: ChannelRestrictions -2018-01-18 01:58:46.542 UTC [policies] ProposePolicy -> DEBU 06d Proposed new policy Writers for Orderer -2018-01-18 01:58:46.542 UTC [policies] ProposePolicy -> DEBU 06e Proposed new policy Admins for Orderer -2018-01-18 01:58:46.542 UTC [policies] ProposePolicy -> DEBU 06f Proposed new policy BlockValidation for Orderer -2018-01-18 01:58:46.542 UTC [policies] ProposePolicy -> DEBU 070 Proposed new policy Readers for Orderer -2018-01-18 01:58:46.543 UTC [common/config] NewStandardValues -> DEBU 071 Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:46.543 UTC [common/config] initializeProtosStruct -> DEBU 072 Processing field: MSP -2018-01-18 01:58:46.543 UTC [policies] ProposePolicy -> DEBU 073 Proposed new policy Writers for OrdererOrg -2018-01-18 01:58:46.543 UTC [policies] ProposePolicy -> DEBU 074 Proposed new policy Admins for OrdererOrg -2018-01-18 01:58:46.543 UTC [policies] ProposePolicy -> DEBU 075 Proposed new policy Readers for OrdererOrg -2018-01-18 01:58:46.544 UTC [policies] ProposePolicy -> DEBU 076 Proposed new policy Admins for Consortiums -2018-01-18 01:58:46.544 UTC [common/config] NewStandardValues -> DEBU 077 Initializing protos for *config.ConsortiumProtos -2018-01-18 01:58:46.544 UTC [common/config] initializeProtosStruct -> DEBU 078 Processing field: ChannelCreationPolicy -2018-01-18 01:58:46.544 UTC [common/config] NewStandardValues -> DEBU 079 Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:46.544 UTC [common/config] initializeProtosStruct -> DEBU 07a Processing field: MSP -2018-01-18 01:58:46.544 UTC [policies] ProposePolicy -> DEBU 07b Proposed new policy Readers for Org1MSP -2018-01-18 01:58:46.544 UTC [policies] ProposePolicy -> DEBU 07c Proposed new policy Writers for Org1MSP -2018-01-18 01:58:46.544 UTC [policies] ProposePolicy -> DEBU 07d Proposed new policy Admins for Org1MSP -2018-01-18 01:58:46.544 UTC [common/config] NewStandardValues -> DEBU 07e Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:46.544 UTC [common/config] initializeProtosStruct -> DEBU 07f Processing field: MSP -2018-01-18 01:58:46.545 UTC [policies] ProposePolicy -> DEBU 080 Proposed new policy Writers for Org2MSP -2018-01-18 01:58:46.545 UTC [policies] ProposePolicy -> DEBU 081 Proposed new policy Admins for Org2MSP -2018-01-18 01:58:46.545 UTC [policies] ProposePolicy -> DEBU 082 Proposed new policy Readers for Org2MSP -2018-01-18 01:58:46.545 UTC [common/config] validateMSP -> DEBU 083 Setting up MSP for org OrdererOrg -2018-01-18 01:58:46.545 UTC [msp] NewBccspMsp -> DEBU 084 Creating BCCSP-based MSP instance -2018-01-18 01:58:46.545 UTC [msp] Setup -> DEBU 085 Setting up MSP instance OrdererMSP -2018-01-18 01:58:46.549 UTC [msp/identity] newIdentity -> DEBU 086 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW -gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w -XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK -BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs -KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= ------END CERTIFICATE----- -2018-01-18 01:58:46.549 UTC [msp/identity] newIdentity -> DEBU 087 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 ------END CERTIFICATE----- -2018-01-18 01:58:46.550 UTC [msp/identity] newIdentity -> DEBU 088 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 ------END CERTIFICATE----- -2018-01-18 01:58:46.554 UTC [msp] Validate -> DEBU 089 MSP OrdererMSP validating identity -2018-01-18 01:58:46.555 UTC [common/config] validateMSP -> DEBU 08a Setting up MSP for org Org1MSP -2018-01-18 01:58:46.555 UTC [msp] NewBccspMsp -> DEBU 08b Creating BCCSP-based MSP instance -2018-01-18 01:58:46.555 UTC [msp] Setup -> DEBU 08c Setting up MSP instance Org1MSP -2018-01-18 01:58:46.560 UTC [msp/identity] newIdentity -> DEBU 08d Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:38.331 UTC [fsblkstorage] updateCheckpoint -> DEBU 02d Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[9082], isChainEmpty=[false], lastBlockNumber=[0] +2018-01-18 09:29:38.332 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 02e retrieveBlockByNumber() - blockNum = [0] +2018-01-18 09:29:38.332 UTC [fsblkstorage] newBlockfileStream -> DEBU 02f newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +2018-01-18 09:29:38.332 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 030 Remaining bytes=[9082], Going to peek [8] bytes +2018-01-18 09:29:38.332 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 031 Returning blockbytes - length=[9080], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +2018-01-18 09:29:38.332 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 032 retrieveBlockByNumber() - blockNum = [0] +2018-01-18 09:29:38.332 UTC [fsblkstorage] newBlockfileStream -> DEBU 033 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +2018-01-18 09:29:38.332 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 034 Remaining bytes=[9082], Going to peek [8] bytes +2018-01-18 09:29:38.332 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 035 Returning blockbytes - length=[9080], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +2018-01-18 09:29:38.332 UTC [common/config] NewStandardValues -> DEBU 036 Initializing protos for *config.ChannelProtos +2018-01-18 09:29:38.333 UTC [common/config] initializeProtosStruct -> DEBU 037 Processing field: HashingAlgorithm +2018-01-18 09:29:38.333 UTC [common/config] initializeProtosStruct -> DEBU 038 Processing field: BlockDataHashingStructure +2018-01-18 09:29:38.333 UTC [common/config] initializeProtosStruct -> DEBU 039 Processing field: OrdererAddresses +2018-01-18 09:29:38.333 UTC [common/config] initializeProtosStruct -> DEBU 03a Processing field: Consortium +2018-01-18 09:29:38.333 UTC [common/configtx] addToMap -> DEBU 03b Adding to config map: [Groups] /Channel +2018-01-18 09:29:38.333 UTC [common/configtx] addToMap -> DEBU 03c Adding to config map: [Groups] /Channel/Orderer +2018-01-18 09:29:38.333 UTC [common/configtx] addToMap -> DEBU 03d Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +2018-01-18 09:29:38.334 UTC [common/configtx] addToMap -> DEBU 03e Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +2018-01-18 09:29:38.334 UTC [common/configtx] addToMap -> DEBU 03f Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +2018-01-18 09:29:38.334 UTC [common/configtx] addToMap -> DEBU 040 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +2018-01-18 09:29:38.334 UTC [common/configtx] addToMap -> DEBU 041 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +2018-01-18 09:29:38.334 UTC [common/configtx] addToMap -> DEBU 042 Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +2018-01-18 09:29:38.334 UTC [common/configtx] addToMap -> DEBU 043 Adding to config map: [Values] /Channel/Orderer/ConsensusType +2018-01-18 09:29:38.336 UTC [common/configtx] addToMap -> DEBU 044 Adding to config map: [Values] /Channel/Orderer/BatchSize +2018-01-18 09:29:38.337 UTC [common/configtx] addToMap -> DEBU 045 Adding to config map: [Values] /Channel/Orderer/BatchTimeout +2018-01-18 09:29:38.347 UTC [common/configtx] addToMap -> DEBU 046 Adding to config map: [Policy] /Channel/Orderer/Admins +2018-01-18 09:29:38.347 UTC [common/configtx] addToMap -> DEBU 047 Adding to config map: [Policy] /Channel/Orderer/BlockValidation +2018-01-18 09:29:38.348 UTC [common/configtx] addToMap -> DEBU 048 Adding to config map: [Policy] /Channel/Orderer/Readers +2018-01-18 09:29:38.348 UTC [common/configtx] addToMap -> DEBU 049 Adding to config map: [Policy] /Channel/Orderer/Writers +2018-01-18 09:29:38.348 UTC [common/configtx] addToMap -> DEBU 04a Adding to config map: [Groups] /Channel/Consortiums +2018-01-18 09:29:38.348 UTC [common/configtx] addToMap -> DEBU 04b Adding to config map: [Groups] /Channel/Consortiums/SampleConsortium +2018-01-18 09:29:38.348 UTC [common/configtx] addToMap -> DEBU 04c Adding to config map: [Groups] /Channel/Consortiums/SampleConsortium/Org2MSP +2018-01-18 09:29:38.348 UTC [common/configtx] addToMap -> DEBU 04d Adding to config map: [Values] /Channel/Consortiums/SampleConsortium/Org2MSP/MSP +2018-01-18 09:29:38.348 UTC [common/configtx] addToMap -> DEBU 04e Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Writers +2018-01-18 09:29:38.348 UTC [common/configtx] addToMap -> DEBU 04f Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Admins +2018-01-18 09:29:38.348 UTC [common/configtx] addToMap -> DEBU 050 Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Readers +2018-01-18 09:29:38.348 UTC [common/configtx] addToMap -> DEBU 051 Adding to config map: [Groups] /Channel/Consortiums/SampleConsortium/Org1MSP +2018-01-18 09:29:38.348 UTC [common/configtx] addToMap -> DEBU 052 Adding to config map: [Values] /Channel/Consortiums/SampleConsortium/Org1MSP/MSP +2018-01-18 09:29:38.348 UTC [common/configtx] addToMap -> DEBU 053 Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Readers +2018-01-18 09:29:38.348 UTC [common/configtx] addToMap -> DEBU 054 Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Writers +2018-01-18 09:29:38.348 UTC [common/configtx] addToMap -> DEBU 055 Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Admins +2018-01-18 09:29:38.348 UTC [common/configtx] addToMap -> DEBU 056 Adding to config map: [Values] /Channel/Consortiums/SampleConsortium/ChannelCreationPolicy +2018-01-18 09:29:38.349 UTC [common/configtx] addToMap -> DEBU 057 Adding to config map: [Policy] /Channel/Consortiums/Admins +2018-01-18 09:29:38.349 UTC [common/configtx] addToMap -> DEBU 058 Adding to config map: [Values] /Channel/OrdererAddresses +2018-01-18 09:29:38.349 UTC [common/configtx] addToMap -> DEBU 059 Adding to config map: [Values] /Channel/HashingAlgorithm +2018-01-18 09:29:38.349 UTC [common/configtx] addToMap -> DEBU 05a Adding to config map: [Values] /Channel/BlockDataHashingStructure +2018-01-18 09:29:38.349 UTC [common/configtx] addToMap -> DEBU 05b Adding to config map: [Policy] /Channel/Readers +2018-01-18 09:29:38.349 UTC [common/configtx] addToMap -> DEBU 05c Adding to config map: [Policy] /Channel/Writers +2018-01-18 09:29:38.349 UTC [common/configtx] addToMap -> DEBU 05d Adding to config map: [Policy] /Channel/Admins +2018-01-18 09:29:38.349 UTC [common/configtx] processConfig -> DEBU 05e Beginning new config for channel testchainid +2018-01-18 09:29:38.349 UTC [common/config] NewStandardValues -> DEBU 05f Initializing protos for *config.ChannelProtos +2018-01-18 09:29:38.349 UTC [common/config] initializeProtosStruct -> DEBU 060 Processing field: HashingAlgorithm +2018-01-18 09:29:38.349 UTC [common/config] initializeProtosStruct -> DEBU 061 Processing field: BlockDataHashingStructure +2018-01-18 09:29:38.349 UTC [common/config] initializeProtosStruct -> DEBU 062 Processing field: OrdererAddresses +2018-01-18 09:29:38.349 UTC [common/config] initializeProtosStruct -> DEBU 063 Processing field: Consortium +2018-01-18 09:29:38.350 UTC [policies] ProposePolicy -> DEBU 064 Proposed new policy Readers for Channel +2018-01-18 09:29:38.350 UTC [policies] ProposePolicy -> DEBU 065 Proposed new policy Writers for Channel +2018-01-18 09:29:38.350 UTC [policies] ProposePolicy -> DEBU 066 Proposed new policy Admins for Channel +2018-01-18 09:29:38.350 UTC [policies] ProposePolicy -> DEBU 067 Proposed new policy Admins for Consortiums +2018-01-18 09:29:38.350 UTC [common/config] NewStandardValues -> DEBU 068 Initializing protos for *config.ConsortiumProtos +2018-01-18 09:29:38.350 UTC [common/config] initializeProtosStruct -> DEBU 069 Processing field: ChannelCreationPolicy +2018-01-18 09:29:38.350 UTC [common/config] NewStandardValues -> DEBU 06a Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:38.350 UTC [common/config] initializeProtosStruct -> DEBU 06b Processing field: MSP +2018-01-18 09:29:38.351 UTC [policies] ProposePolicy -> DEBU 06c Proposed new policy Readers for Org1MSP +2018-01-18 09:29:38.351 UTC [policies] ProposePolicy -> DEBU 06d Proposed new policy Writers for Org1MSP +2018-01-18 09:29:38.351 UTC [policies] ProposePolicy -> DEBU 06e Proposed new policy Admins for Org1MSP +2018-01-18 09:29:38.351 UTC [common/config] NewStandardValues -> DEBU 06f Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:38.351 UTC [common/config] initializeProtosStruct -> DEBU 070 Processing field: MSP +2018-01-18 09:29:38.351 UTC [policies] ProposePolicy -> DEBU 071 Proposed new policy Admins for Org2MSP +2018-01-18 09:29:38.351 UTC [policies] ProposePolicy -> DEBU 072 Proposed new policy Readers for Org2MSP +2018-01-18 09:29:38.351 UTC [policies] ProposePolicy -> DEBU 073 Proposed new policy Writers for Org2MSP +2018-01-18 09:29:38.351 UTC [common/config] NewStandardValues -> DEBU 074 Initializing protos for *config.OrdererProtos +2018-01-18 09:29:38.351 UTC [common/config] initializeProtosStruct -> DEBU 075 Processing field: ConsensusType +2018-01-18 09:29:38.351 UTC [common/config] initializeProtosStruct -> DEBU 076 Processing field: BatchSize +2018-01-18 09:29:38.351 UTC [common/config] initializeProtosStruct -> DEBU 077 Processing field: BatchTimeout +2018-01-18 09:29:38.351 UTC [common/config] initializeProtosStruct -> DEBU 078 Processing field: KafkaBrokers +2018-01-18 09:29:38.351 UTC [common/config] initializeProtosStruct -> DEBU 079 Processing field: ChannelRestrictions +2018-01-18 09:29:38.351 UTC [policies] ProposePolicy -> DEBU 07a Proposed new policy Writers for Orderer +2018-01-18 09:29:38.351 UTC [policies] ProposePolicy -> DEBU 07b Proposed new policy Admins for Orderer +2018-01-18 09:29:38.351 UTC [policies] ProposePolicy -> DEBU 07c Proposed new policy BlockValidation for Orderer +2018-01-18 09:29:38.351 UTC [policies] ProposePolicy -> DEBU 07d Proposed new policy Readers for Orderer +2018-01-18 09:29:38.351 UTC [common/config] NewStandardValues -> DEBU 07e Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:38.351 UTC [common/config] initializeProtosStruct -> DEBU 07f Processing field: MSP +2018-01-18 09:29:38.351 UTC [policies] ProposePolicy -> DEBU 080 Proposed new policy Writers for OrdererOrg +2018-01-18 09:29:38.351 UTC [policies] ProposePolicy -> DEBU 081 Proposed new policy Admins for OrdererOrg +2018-01-18 09:29:38.351 UTC [policies] ProposePolicy -> DEBU 082 Proposed new policy Readers for OrdererOrg +2018-01-18 09:29:38.351 UTC [common/config] validateMSP -> DEBU 083 Setting up MSP for org Org1MSP +2018-01-18 09:29:38.351 UTC [msp] NewBccspMsp -> DEBU 084 Creating BCCSP-based MSP instance +2018-01-18 09:29:38.351 UTC [msp] Setup -> DEBU 085 Setting up MSP instance Org1MSP +2018-01-18 09:29:38.352 UTC [msp/identity] newIdentity -> DEBU 086 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -256,7 +212,7 @@ JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ H7n8z1pj5w== -----END CERTIFICATE----- -2018-01-18 01:58:46.560 UTC [msp/identity] newIdentity -> DEBU 08e Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:38.353 UTC [msp/identity] newIdentity -> DEBU 087 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -270,7 +226,7 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-18 01:58:46.570 UTC [msp/identity] newIdentity -> DEBU 08f Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:38.353 UTC [msp/identity] newIdentity -> DEBU 088 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -284,11 +240,11 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-18 01:58:46.571 UTC [msp] Validate -> DEBU 090 MSP Org1MSP validating identity -2018-01-18 01:58:46.572 UTC [common/config] validateMSP -> DEBU 091 Setting up MSP for org Org2MSP -2018-01-18 01:58:46.572 UTC [msp] NewBccspMsp -> DEBU 092 Creating BCCSP-based MSP instance -2018-01-18 01:58:46.572 UTC [msp] Setup -> DEBU 093 Setting up MSP instance Org2MSP -2018-01-18 01:58:46.574 UTC [msp/identity] newIdentity -> DEBU 094 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:38.354 UTC [msp] Validate -> DEBU 089 MSP Org1MSP validating identity +2018-01-18 09:29:38.355 UTC [common/config] validateMSP -> DEBU 08a Setting up MSP for org Org2MSP +2018-01-18 09:29:38.355 UTC [msp] NewBccspMsp -> DEBU 08b Creating BCCSP-based MSP instance +2018-01-18 09:29:38.355 UTC [msp] Setup -> DEBU 08c Setting up MSP instance Org2MSP +2018-01-18 09:29:38.356 UTC [msp/identity] newIdentity -> DEBU 08d Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -303,7 +259,7 @@ xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk SCjyRdD3aQ== -----END CERTIFICATE----- -2018-01-18 01:58:46.574 UTC [msp/identity] newIdentity -> DEBU 095 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:38.357 UTC [msp/identity] newIdentity -> DEBU 08e Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -317,7 +273,7 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS AXYxULZpXYDQXt1KaLI= -----END CERTIFICATE----- -2018-01-18 01:58:46.574 UTC [msp/identity] newIdentity -> DEBU 096 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:38.358 UTC [msp/identity] newIdentity -> DEBU 08f Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -331,191 +287,235 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS AXYxULZpXYDQXt1KaLI= -----END CERTIFICATE----- -2018-01-18 01:58:46.575 UTC [msp] Validate -> DEBU 097 MSP Org2MSP validating identity -2018-01-18 01:58:46.576 UTC [msp] Setup -> DEBU 098 Setting up the MSP manager (3 msps) -2018-01-18 01:58:46.576 UTC [msp] Setup -> DEBU 099 MSP manager setup complete, setup 3 msps -2018-01-18 01:58:46.576 UTC [policies] GetPolicy -> DEBU 09a Returning policy Readers for evaluation -2018-01-18 01:58:46.576 UTC [policies] CommitProposals -> DEBU 09b In commit adding relative sub-policy OrdererOrg/Readers to Orderer -2018-01-18 01:58:46.576 UTC [policies] GetPolicy -> DEBU 09c Returning policy Writers for evaluation -2018-01-18 01:58:46.576 UTC [policies] CommitProposals -> DEBU 09d In commit adding relative sub-policy OrdererOrg/Writers to Orderer -2018-01-18 01:58:46.576 UTC [policies] GetPolicy -> DEBU 09e Returning policy Admins for evaluation -2018-01-18 01:58:46.576 UTC [policies] CommitProposals -> DEBU 09f In commit adding relative sub-policy OrdererOrg/Admins to Orderer -2018-01-18 01:58:46.576 UTC [policies] GetPolicy -> DEBU 0a0 Returning policy Writers for evaluation -2018-01-18 01:58:46.576 UTC [policies] GetPolicy -> DEBU 0a1 Returning policy Admins for evaluation -2018-01-18 01:58:46.576 UTC [policies] GetPolicy -> DEBU 0a2 Returning policy Writers for evaluation -2018-01-18 01:58:46.576 UTC [policies] GetPolicy -> DEBU 0a3 Returning policy Readers for evaluation -2018-01-18 01:58:46.576 UTC [policies] GetPolicy -> DEBU 0a4 Returning policy Readers for evaluation -2018-01-18 01:58:46.576 UTC [policies] CommitProposals -> DEBU 0a5 In commit adding relative sub-policy Org1MSP/Readers to SampleConsortium -2018-01-18 01:58:46.576 UTC [policies] GetPolicy -> DEBU 0a6 Returning policy Writers for evaluation -2018-01-18 01:58:46.576 UTC [policies] CommitProposals -> DEBU 0a7 In commit adding relative sub-policy Org1MSP/Writers to SampleConsortium -2018-01-18 01:58:46.576 UTC [policies] GetPolicy -> DEBU 0a8 Returning policy Admins for evaluation -2018-01-18 01:58:46.576 UTC [policies] CommitProposals -> DEBU 0a9 In commit adding relative sub-policy Org1MSP/Admins to SampleConsortium -2018-01-18 01:58:46.576 UTC [policies] GetPolicy -> DEBU 0aa Returning policy Writers for evaluation -2018-01-18 01:58:46.576 UTC [policies] CommitProposals -> DEBU 0ab In commit adding relative sub-policy Org2MSP/Writers to SampleConsortium -2018-01-18 01:58:46.576 UTC [policies] GetPolicy -> DEBU 0ac Returning policy Admins for evaluation -2018-01-18 01:58:46.576 UTC [policies] CommitProposals -> DEBU 0ad In commit adding relative sub-policy Org2MSP/Admins to SampleConsortium -2018-01-18 01:58:46.576 UTC [policies] GetPolicy -> DEBU 0ae Returning policy Readers for evaluation -2018-01-18 01:58:46.576 UTC [policies] CommitProposals -> DEBU 0af In commit adding relative sub-policy Org2MSP/Readers to SampleConsortium -2018-01-18 01:58:46.576 UTC [policies] GetPolicy -> DEBU 0b0 Returning policy Org1MSP/Admins for evaluation -2018-01-18 01:58:46.576 UTC [policies] CommitProposals -> DEBU 0b1 In commit adding relative sub-policy SampleConsortium/Org1MSP/Admins to Consortiums -2018-01-18 01:58:46.576 UTC [policies] GetPolicy -> DEBU 0b2 Returning policy Org2MSP/Writers for evaluation -2018-01-18 01:58:46.576 UTC [policies] CommitProposals -> DEBU 0b3 In commit adding relative sub-policy SampleConsortium/Org2MSP/Writers to Consortiums -2018-01-18 01:58:46.576 UTC [policies] GetPolicy -> DEBU 0b4 Returning policy Org2MSP/Admins for evaluation -2018-01-18 01:58:46.576 UTC [policies] CommitProposals -> DEBU 0b5 In commit adding relative sub-policy SampleConsortium/Org2MSP/Admins to Consortiums -2018-01-18 01:58:46.577 UTC [policies] GetPolicy -> DEBU 0b6 Returning policy Org2MSP/Readers for evaluation -2018-01-18 01:58:46.577 UTC [policies] CommitProposals -> DEBU 0b7 In commit adding relative sub-policy SampleConsortium/Org2MSP/Readers to Consortiums -2018-01-18 01:58:46.577 UTC [policies] GetPolicy -> DEBU 0b8 Returning policy Org1MSP/Readers for evaluation -2018-01-18 01:58:46.577 UTC [policies] CommitProposals -> DEBU 0b9 In commit adding relative sub-policy SampleConsortium/Org1MSP/Readers to Consortiums -2018-01-18 01:58:46.577 UTC [policies] GetPolicy -> DEBU 0ba Returning policy Org1MSP/Writers for evaluation -2018-01-18 01:58:46.577 UTC [policies] CommitProposals -> DEBU 0bb In commit adding relative sub-policy SampleConsortium/Org1MSP/Writers to Consortiums -2018-01-18 01:58:46.577 UTC [policies] GetPolicy -> DEBU 0bc Returning policy OrdererOrg/Readers for evaluation -2018-01-18 01:58:46.577 UTC [policies] CommitProposals -> DEBU 0bd In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -2018-01-18 01:58:46.577 UTC [policies] GetPolicy -> DEBU 0be Returning policy OrdererOrg/Writers for evaluation -2018-01-18 01:58:46.577 UTC [policies] CommitProposals -> DEBU 0bf In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -2018-01-18 01:58:46.577 UTC [policies] GetPolicy -> DEBU 0c0 Returning policy OrdererOrg/Admins for evaluation -2018-01-18 01:58:46.577 UTC [policies] CommitProposals -> DEBU 0c1 In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -2018-01-18 01:58:46.577 UTC [policies] GetPolicy -> DEBU 0c2 Returning policy Writers for evaluation -2018-01-18 01:58:46.577 UTC [policies] CommitProposals -> DEBU 0c3 In commit adding relative sub-policy Orderer/Writers to Channel -2018-01-18 01:58:46.577 UTC [policies] GetPolicy -> DEBU 0c4 Returning policy Admins for evaluation -2018-01-18 01:58:46.577 UTC [policies] CommitProposals -> DEBU 0c5 In commit adding relative sub-policy Orderer/Admins to Channel -2018-01-18 01:58:46.577 UTC [policies] GetPolicy -> DEBU 0c6 Returning policy BlockValidation for evaluation -2018-01-18 01:58:46.577 UTC [policies] CommitProposals -> DEBU 0c7 In commit adding relative sub-policy Orderer/BlockValidation to Channel -2018-01-18 01:58:46.577 UTC [policies] GetPolicy -> DEBU 0c8 Returning policy Readers for evaluation -2018-01-18 01:58:46.577 UTC [policies] CommitProposals -> DEBU 0c9 In commit adding relative sub-policy Orderer/Readers to Channel -2018-01-18 01:58:46.577 UTC [policies] GetPolicy -> DEBU 0ca Returning policy SampleConsortium/Org1MSP/Writers for evaluation -2018-01-18 01:58:46.577 UTC [policies] CommitProposals -> DEBU 0cb In commit adding relative sub-policy Consortiums/SampleConsortium/Org1MSP/Writers to Channel -2018-01-18 01:58:46.577 UTC [policies] GetPolicy -> DEBU 0cc Returning policy Admins for evaluation -2018-01-18 01:58:46.577 UTC [policies] CommitProposals -> DEBU 0cd In commit adding relative sub-policy Consortiums/Admins to Channel -2018-01-18 01:58:46.577 UTC [policies] GetPolicy -> DEBU 0ce Returning policy SampleConsortium/Org1MSP/Admins for evaluation -2018-01-18 01:58:46.577 UTC [policies] CommitProposals -> DEBU 0cf In commit adding relative sub-policy Consortiums/SampleConsortium/Org1MSP/Admins to Channel -2018-01-18 01:58:46.577 UTC [policies] GetPolicy -> DEBU 0d0 Returning policy SampleConsortium/Org2MSP/Writers for evaluation -2018-01-18 01:58:46.577 UTC [policies] CommitProposals -> DEBU 0d1 In commit adding relative sub-policy Consortiums/SampleConsortium/Org2MSP/Writers to Channel -2018-01-18 01:58:46.577 UTC [policies] GetPolicy -> DEBU 0d2 Returning policy SampleConsortium/Org2MSP/Admins for evaluation -2018-01-18 01:58:46.577 UTC [policies] CommitProposals -> DEBU 0d3 In commit adding relative sub-policy Consortiums/SampleConsortium/Org2MSP/Admins to Channel -2018-01-18 01:58:46.577 UTC [policies] GetPolicy -> DEBU 0d4 Returning policy SampleConsortium/Org2MSP/Readers for evaluation -2018-01-18 01:58:46.577 UTC [policies] CommitProposals -> DEBU 0d5 In commit adding relative sub-policy Consortiums/SampleConsortium/Org2MSP/Readers to Channel -2018-01-18 01:58:46.577 UTC [policies] GetPolicy -> DEBU 0d6 Returning policy SampleConsortium/Org1MSP/Readers for evaluation -2018-01-18 01:58:46.577 UTC [policies] CommitProposals -> DEBU 0d7 In commit adding relative sub-policy Consortiums/SampleConsortium/Org1MSP/Readers to Channel -2018-01-18 01:58:46.578 UTC [policies] GetPolicy -> DEBU 0d8 Returning policy Writers for evaluation -2018-01-18 01:58:46.578 UTC [policies] GetPolicy -> DEBU 0d9 Returning dummy reject all policy because Writers could not be found in /Consortiums/Writers -2018-01-18 01:58:46.578 UTC [policies] GetPolicy -> DEBU 0da Returning policy Admins for evaluation -2018-01-18 01:58:46.578 UTC [policies] GetPolicy -> DEBU 0db Returning policy Admins for evaluation -2018-01-18 01:58:46.578 UTC [policies] GetPolicy -> DEBU 0dc Returning policy Readers for evaluation -2018-01-18 01:58:46.578 UTC [policies] GetPolicy -> DEBU 0dd Returning dummy reject all policy because Readers could not be found in /Consortiums/Readers -2018-01-18 01:58:46.578 UTC [policies] GetPolicy -> DEBU 0de Returning policy Readers for evaluation -2018-01-18 01:58:46.578 UTC [policies] CommitProposals -> DEBU 0df As expected, current configuration has policy '/Channel/Readers' -2018-01-18 01:58:46.578 UTC [policies] GetPolicy -> DEBU 0e0 Returning policy Writers for evaluation -2018-01-18 01:58:46.578 UTC [policies] CommitProposals -> DEBU 0e1 As expected, current configuration has policy '/Channel/Writers' -2018-01-18 01:58:46.578 UTC [policies] GetPolicy -> DEBU 0e2 Returning policy Orderer/BlockValidation for evaluation -2018-01-18 01:58:46.579 UTC [policies] CommitProposals -> DEBU 0e3 As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -2018-01-18 01:58:46.579 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 0e4 retrieveBlockByNumber() - blockNum = [0] -2018-01-18 01:58:46.579 UTC [fsblkstorage] newBlockfileStream -> DEBU 0e5 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] -2018-01-18 01:58:46.579 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 0e6 Remaining bytes=[9082], Going to peek [8] bytes -2018-01-18 01:58:46.579 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 0e7 Returning blockbytes - length=[9080], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -2018-01-18 01:58:46.579 UTC [orderer/multichain] newChainSupport -> DEBU 0e8 [channel: testchainid] Retrieved metadata for tip of chain (blockNumber=0, lastConfig=0, lastConfigSeq=0): -2018-01-18 01:58:46.580 UTC [orderer/multichain] NewManagerImpl -> INFO 0e9 Starting with system channel testchainid and orderer type solo -2018-01-18 01:58:46.580 UTC [orderer/main] main -> INFO 0ea Beginning to serve requests -2018-01-18 01:58:51.865 UTC [orderer/main] Deliver -> DEBU 0eb Starting new Deliver handler -2018-01-18 01:58:51.865 UTC [orderer/common/deliver] Handle -> DEBU 0ec Starting new deliver loop -2018-01-18 01:58:51.866 UTC [orderer/common/deliver] Handle -> DEBU 0ed Attempting to read seek info message -2018-01-18 01:58:51.873 UTC [orderer/main] Broadcast -> DEBU 0ee Starting new Broadcast handler -2018-01-18 01:58:51.873 UTC [orderer/common/broadcast] Handle -> DEBU 0ef Starting new broadcast loop -2018-01-18 01:58:51.873 UTC [orderer/common/broadcast] Handle -> DEBU 0f0 Preprocessing CONFIG_UPDATE -2018-01-18 01:58:51.873 UTC [orderer/configupdate] Process -> DEBU 0f1 Processing channel creation request for channel businesschannel -2018-01-18 01:58:51.874 UTC [msp] GetLocalMSP -> DEBU 0f2 Returning existing local MSP -2018-01-18 01:58:51.874 UTC [msp] GetDefaultSigningIdentity -> DEBU 0f3 Obtaining default signing identity -2018-01-18 01:58:51.874 UTC [msp] GetLocalMSP -> DEBU 0f4 Returning existing local MSP -2018-01-18 01:58:51.875 UTC [msp] GetDefaultSigningIdentity -> DEBU 0f5 Obtaining default signing identity -2018-01-18 01:58:51.875 UTC [msp/identity] Sign -> DEBU 0f6 Sign: plaintext: 0AB7060A1B08011A0608DBFEFFD20522...41646D696E7310021A0641646D696E73 -2018-01-18 01:58:51.875 UTC [msp/identity] Sign -> DEBU 0f7 Sign: digest: 11FDF80CC4B0FFC37D789DF58839E00571F231FCB702D276F1DBF7EC339BED09 -2018-01-18 01:58:51.875 UTC [common/config] NewStandardValues -> DEBU 0f8 Initializing protos for *config.ChannelProtos -2018-01-18 01:58:51.876 UTC [common/config] initializeProtosStruct -> DEBU 0f9 Processing field: HashingAlgorithm -2018-01-18 01:58:51.876 UTC [common/config] initializeProtosStruct -> DEBU 0fa Processing field: BlockDataHashingStructure -2018-01-18 01:58:51.876 UTC [common/config] initializeProtosStruct -> DEBU 0fb Processing field: OrdererAddresses -2018-01-18 01:58:51.876 UTC [common/config] initializeProtosStruct -> DEBU 0fc Processing field: Consortium -2018-01-18 01:58:51.877 UTC [common/configtx] addToMap -> DEBU 0fd Adding to config map: [Groups] /Channel -2018-01-18 01:58:51.877 UTC [common/configtx] addToMap -> DEBU 0fe Adding to config map: [Groups] /Channel/Application -2018-01-18 01:58:51.877 UTC [common/configtx] addToMap -> DEBU 0ff Adding to config map: [Groups] /Channel/Application/Org2MSP -2018-01-18 01:58:51.877 UTC [common/configtx] addToMap -> DEBU 100 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -2018-01-18 01:58:51.878 UTC [common/configtx] addToMap -> DEBU 101 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -2018-01-18 01:58:51.878 UTC [common/configtx] addToMap -> DEBU 102 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -2018-01-18 01:58:51.878 UTC [common/configtx] addToMap -> DEBU 103 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -2018-01-18 01:58:51.878 UTC [common/configtx] addToMap -> DEBU 104 Adding to config map: [Groups] /Channel/Application/Org1MSP -2018-01-18 01:58:51.879 UTC [common/configtx] addToMap -> DEBU 105 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -2018-01-18 01:58:51.879 UTC [common/configtx] addToMap -> DEBU 106 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -2018-01-18 01:58:51.880 UTC [common/configtx] addToMap -> DEBU 107 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -2018-01-18 01:58:51.880 UTC [common/configtx] addToMap -> DEBU 108 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -2018-01-18 01:58:51.880 UTC [common/configtx] addToMap -> DEBU 109 Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy -2018-01-18 01:58:51.880 UTC [common/configtx] addToMap -> DEBU 10a Adding to config map: [Groups] /Channel/Orderer -2018-01-18 01:58:51.880 UTC [common/configtx] addToMap -> DEBU 10b Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -2018-01-18 01:58:51.880 UTC [common/configtx] addToMap -> DEBU 10c Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -2018-01-18 01:58:51.880 UTC [common/configtx] addToMap -> DEBU 10d Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -2018-01-18 01:58:51.880 UTC [common/configtx] addToMap -> DEBU 10e Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -2018-01-18 01:58:51.880 UTC [common/configtx] addToMap -> DEBU 10f Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -2018-01-18 01:58:51.880 UTC [common/configtx] addToMap -> DEBU 110 Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -2018-01-18 01:58:51.880 UTC [common/configtx] addToMap -> DEBU 111 Adding to config map: [Values] /Channel/Orderer/ConsensusType -2018-01-18 01:58:51.880 UTC [common/configtx] addToMap -> DEBU 112 Adding to config map: [Values] /Channel/Orderer/BatchSize -2018-01-18 01:58:51.880 UTC [common/configtx] addToMap -> DEBU 113 Adding to config map: [Values] /Channel/Orderer/BatchTimeout -2018-01-18 01:58:51.880 UTC [common/configtx] addToMap -> DEBU 114 Adding to config map: [Policy] /Channel/Orderer/Readers -2018-01-18 01:58:51.880 UTC [common/configtx] addToMap -> DEBU 115 Adding to config map: [Policy] /Channel/Orderer/Writers -2018-01-18 01:58:51.880 UTC [common/configtx] addToMap -> DEBU 116 Adding to config map: [Policy] /Channel/Orderer/Admins -2018-01-18 01:58:51.880 UTC [common/configtx] addToMap -> DEBU 117 Adding to config map: [Policy] /Channel/Orderer/BlockValidation -2018-01-18 01:58:51.881 UTC [common/configtx] addToMap -> DEBU 118 Adding to config map: [Values] /Channel/BlockDataHashingStructure -2018-01-18 01:58:51.881 UTC [common/configtx] addToMap -> DEBU 119 Adding to config map: [Values] /Channel/Consortium -2018-01-18 01:58:51.881 UTC [common/configtx] addToMap -> DEBU 11a Adding to config map: [Values] /Channel/OrdererAddresses -2018-01-18 01:58:51.881 UTC [common/configtx] addToMap -> DEBU 11b Adding to config map: [Values] /Channel/HashingAlgorithm -2018-01-18 01:58:51.881 UTC [common/configtx] addToMap -> DEBU 11c Adding to config map: [Policy] /Channel/Readers -2018-01-18 01:58:51.881 UTC [common/configtx] addToMap -> DEBU 11d Adding to config map: [Policy] /Channel/Writers -2018-01-18 01:58:51.881 UTC [common/configtx] addToMap -> DEBU 11e Adding to config map: [Policy] /Channel/Admins -2018-01-18 01:58:51.881 UTC [common/configtx] processConfig -> DEBU 11f Beginning new config for channel businesschannel -2018-01-18 01:58:51.881 UTC [common/config] NewStandardValues -> DEBU 120 Initializing protos for *config.ChannelProtos -2018-01-18 01:58:51.881 UTC [common/config] initializeProtosStruct -> DEBU 121 Processing field: HashingAlgorithm -2018-01-18 01:58:51.881 UTC [common/config] initializeProtosStruct -> DEBU 122 Processing field: BlockDataHashingStructure -2018-01-18 01:58:51.881 UTC [common/config] initializeProtosStruct -> DEBU 123 Processing field: OrdererAddresses -2018-01-18 01:58:51.881 UTC [common/config] initializeProtosStruct -> DEBU 124 Processing field: Consortium -2018-01-18 01:58:51.881 UTC [policies] ProposePolicy -> DEBU 125 Proposed new policy Readers for Channel -2018-01-18 01:58:51.881 UTC [policies] ProposePolicy -> DEBU 126 Proposed new policy Writers for Channel -2018-01-18 01:58:51.881 UTC [policies] ProposePolicy -> DEBU 127 Proposed new policy Admins for Channel -2018-01-18 01:58:51.881 UTC [common/config] NewStandardValues -> DEBU 128 Initializing protos for *struct {} -2018-01-18 01:58:51.881 UTC [policies] ProposePolicy -> DEBU 129 Proposed new policy ChannelCreationPolicy for Application -2018-01-18 01:58:51.881 UTC [common/config] NewStandardValues -> DEBU 12a Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:51.881 UTC [common/config] initializeProtosStruct -> DEBU 12b Processing field: MSP -2018-01-18 01:58:51.881 UTC [common/config] NewStandardValues -> DEBU 12c Initializing protos for *config.ApplicationOrgProtos -2018-01-18 01:58:51.881 UTC [common/config] initializeProtosStruct -> DEBU 12d Processing field: AnchorPeers -2018-01-18 01:58:51.881 UTC [common/config] NewStandardValues -> DEBU 12e Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:51.881 UTC [common/config] initializeProtosStruct -> DEBU 12f Processing field: MSP -2018-01-18 01:58:51.881 UTC [policies] ProposePolicy -> DEBU 130 Proposed new policy Admins for Org2MSP -2018-01-18 01:58:51.881 UTC [policies] ProposePolicy -> DEBU 131 Proposed new policy Readers for Org2MSP -2018-01-18 01:58:51.881 UTC [policies] ProposePolicy -> DEBU 132 Proposed new policy Writers for Org2MSP -2018-01-18 01:58:51.881 UTC [common/config] NewStandardValues -> DEBU 133 Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:51.881 UTC [common/config] initializeProtosStruct -> DEBU 134 Processing field: MSP -2018-01-18 01:58:51.881 UTC [common/config] NewStandardValues -> DEBU 135 Initializing protos for *config.ApplicationOrgProtos -2018-01-18 01:58:51.881 UTC [common/config] initializeProtosStruct -> DEBU 136 Processing field: AnchorPeers -2018-01-18 01:58:51.881 UTC [common/config] NewStandardValues -> DEBU 137 Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:51.882 UTC [common/config] initializeProtosStruct -> DEBU 138 Processing field: MSP -2018-01-18 01:58:51.882 UTC [policies] ProposePolicy -> DEBU 139 Proposed new policy Readers for Org1MSP -2018-01-18 01:58:51.882 UTC [policies] ProposePolicy -> DEBU 13a Proposed new policy Writers for Org1MSP -2018-01-18 01:58:51.882 UTC [policies] ProposePolicy -> DEBU 13b Proposed new policy Admins for Org1MSP -2018-01-18 01:58:51.882 UTC [common/config] NewStandardValues -> DEBU 13c Initializing protos for *config.OrdererProtos -2018-01-18 01:58:51.882 UTC [common/config] initializeProtosStruct -> DEBU 13d Processing field: ConsensusType -2018-01-18 01:58:51.882 UTC [common/config] initializeProtosStruct -> DEBU 13e Processing field: BatchSize -2018-01-18 01:58:51.882 UTC [common/config] initializeProtosStruct -> DEBU 13f Processing field: BatchTimeout -2018-01-18 01:58:51.882 UTC [common/config] initializeProtosStruct -> DEBU 140 Processing field: KafkaBrokers -2018-01-18 01:58:51.882 UTC [common/config] initializeProtosStruct -> DEBU 141 Processing field: ChannelRestrictions -2018-01-18 01:58:51.882 UTC [policies] ProposePolicy -> DEBU 142 Proposed new policy Readers for Orderer -2018-01-18 01:58:51.882 UTC [policies] ProposePolicy -> DEBU 143 Proposed new policy Writers for Orderer -2018-01-18 01:58:51.882 UTC [policies] ProposePolicy -> DEBU 144 Proposed new policy Admins for Orderer -2018-01-18 01:58:51.882 UTC [policies] ProposePolicy -> DEBU 145 Proposed new policy BlockValidation for Orderer -2018-01-18 01:58:51.882 UTC [common/config] NewStandardValues -> DEBU 146 Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:51.882 UTC [common/config] initializeProtosStruct -> DEBU 147 Processing field: MSP -2018-01-18 01:58:51.882 UTC [policies] ProposePolicy -> DEBU 148 Proposed new policy Writers for OrdererOrg -2018-01-18 01:58:51.882 UTC [policies] ProposePolicy -> DEBU 149 Proposed new policy Admins for OrdererOrg -2018-01-18 01:58:51.882 UTC [policies] ProposePolicy -> DEBU 14a Proposed new policy Readers for OrdererOrg -2018-01-18 01:58:51.882 UTC [common/config] Validate -> DEBU 14b Anchor peers for org Org2MSP are -2018-01-18 01:58:51.882 UTC [common/config] validateMSP -> DEBU 14c Setting up MSP for org Org2MSP -2018-01-18 01:58:51.882 UTC [msp] NewBccspMsp -> DEBU 14d Creating BCCSP-based MSP instance -2018-01-18 01:58:51.882 UTC [msp] Setup -> DEBU 14e Setting up MSP instance Org2MSP -2018-01-18 01:58:51.883 UTC [msp/identity] newIdentity -> DEBU 14f Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:38.359 UTC [msp] Validate -> DEBU 090 MSP Org2MSP validating identity +2018-01-18 09:29:38.359 UTC [common/config] validateMSP -> DEBU 091 Setting up MSP for org OrdererOrg +2018-01-18 09:29:38.359 UTC [msp] NewBccspMsp -> DEBU 092 Creating BCCSP-based MSP instance +2018-01-18 09:29:38.359 UTC [msp] Setup -> DEBU 093 Setting up MSP instance OrdererMSP +2018-01-18 09:29:38.360 UTC [msp/identity] newIdentity -> DEBU 094 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW +gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w +XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK +BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs +KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= +-----END CERTIFICATE----- +2018-01-18 09:29:38.360 UTC [msp/identity] newIdentity -> DEBU 095 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-18 09:29:38.361 UTC [msp/identity] newIdentity -> DEBU 096 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-18 09:29:38.362 UTC [msp] Validate -> DEBU 097 MSP OrdererMSP validating identity +2018-01-18 09:29:38.363 UTC [msp] Setup -> DEBU 098 Setting up the MSP manager (3 msps) +2018-01-18 09:29:38.363 UTC [msp] Setup -> DEBU 099 MSP manager setup complete, setup 3 msps +2018-01-18 09:29:38.363 UTC [policies] GetPolicy -> DEBU 09a Returning policy Readers for evaluation +2018-01-18 09:29:38.363 UTC [policies] CommitProposals -> DEBU 09b In commit adding relative sub-policy Org1MSP/Readers to SampleConsortium +2018-01-18 09:29:38.363 UTC [policies] GetPolicy -> DEBU 09c Returning policy Writers for evaluation +2018-01-18 09:29:38.363 UTC [policies] CommitProposals -> DEBU 09d In commit adding relative sub-policy Org1MSP/Writers to SampleConsortium +2018-01-18 09:29:38.363 UTC [policies] GetPolicy -> DEBU 09e Returning policy Admins for evaluation +2018-01-18 09:29:38.363 UTC [policies] CommitProposals -> DEBU 09f In commit adding relative sub-policy Org1MSP/Admins to SampleConsortium +2018-01-18 09:29:38.363 UTC [policies] GetPolicy -> DEBU 0a0 Returning policy Admins for evaluation +2018-01-18 09:29:38.363 UTC [policies] CommitProposals -> DEBU 0a1 In commit adding relative sub-policy Org2MSP/Admins to SampleConsortium +2018-01-18 09:29:38.363 UTC [policies] GetPolicy -> DEBU 0a2 Returning policy Readers for evaluation +2018-01-18 09:29:38.363 UTC [policies] CommitProposals -> DEBU 0a3 In commit adding relative sub-policy Org2MSP/Readers to SampleConsortium +2018-01-18 09:29:38.363 UTC [policies] GetPolicy -> DEBU 0a4 Returning policy Writers for evaluation +2018-01-18 09:29:38.363 UTC [policies] CommitProposals -> DEBU 0a5 In commit adding relative sub-policy Org2MSP/Writers to SampleConsortium +2018-01-18 09:29:38.363 UTC [policies] GetPolicy -> DEBU 0a6 Returning policy Org1MSP/Admins for evaluation +2018-01-18 09:29:38.363 UTC [policies] CommitProposals -> DEBU 0a7 In commit adding relative sub-policy SampleConsortium/Org1MSP/Admins to Consortiums +2018-01-18 09:29:38.363 UTC [policies] GetPolicy -> DEBU 0a8 Returning policy Org2MSP/Admins for evaluation +2018-01-18 09:29:38.364 UTC [policies] CommitProposals -> DEBU 0a9 In commit adding relative sub-policy SampleConsortium/Org2MSP/Admins to Consortiums +2018-01-18 09:29:38.364 UTC [policies] GetPolicy -> DEBU 0aa Returning policy Org2MSP/Readers for evaluation +2018-01-18 09:29:38.364 UTC [policies] CommitProposals -> DEBU 0ab In commit adding relative sub-policy SampleConsortium/Org2MSP/Readers to Consortiums +2018-01-18 09:29:38.364 UTC [policies] GetPolicy -> DEBU 0ac Returning policy Org2MSP/Writers for evaluation +2018-01-18 09:29:38.364 UTC [policies] CommitProposals -> DEBU 0ad In commit adding relative sub-policy SampleConsortium/Org2MSP/Writers to Consortiums +2018-01-18 09:29:38.364 UTC [policies] GetPolicy -> DEBU 0ae Returning policy Org1MSP/Readers for evaluation +2018-01-18 09:29:38.364 UTC [policies] CommitProposals -> DEBU 0af In commit adding relative sub-policy SampleConsortium/Org1MSP/Readers to Consortiums +2018-01-18 09:29:38.364 UTC [policies] GetPolicy -> DEBU 0b0 Returning policy Org1MSP/Writers for evaluation +2018-01-18 09:29:38.364 UTC [policies] CommitProposals -> DEBU 0b1 In commit adding relative sub-policy SampleConsortium/Org1MSP/Writers to Consortiums +2018-01-18 09:29:38.364 UTC [policies] GetPolicy -> DEBU 0b2 Returning policy Readers for evaluation +2018-01-18 09:29:38.364 UTC [policies] CommitProposals -> DEBU 0b3 In commit adding relative sub-policy OrdererOrg/Readers to Orderer +2018-01-18 09:29:38.364 UTC [policies] GetPolicy -> DEBU 0b4 Returning policy Writers for evaluation +2018-01-18 09:29:38.364 UTC [policies] CommitProposals -> DEBU 0b5 In commit adding relative sub-policy OrdererOrg/Writers to Orderer +2018-01-18 09:29:38.364 UTC [policies] GetPolicy -> DEBU 0b6 Returning policy Admins for evaluation +2018-01-18 09:29:38.364 UTC [policies] CommitProposals -> DEBU 0b7 In commit adding relative sub-policy OrdererOrg/Admins to Orderer +2018-01-18 09:29:38.364 UTC [policies] GetPolicy -> DEBU 0b8 Returning policy Writers for evaluation +2018-01-18 09:29:38.364 UTC [policies] GetPolicy -> DEBU 0b9 Returning policy Admins for evaluation +2018-01-18 09:29:38.364 UTC [policies] GetPolicy -> DEBU 0ba Returning policy Writers for evaluation +2018-01-18 09:29:38.364 UTC [policies] GetPolicy -> DEBU 0bb Returning policy Readers for evaluation +2018-01-18 09:29:38.364 UTC [policies] GetPolicy -> DEBU 0bc Returning policy Admins for evaluation +2018-01-18 09:29:38.364 UTC [policies] CommitProposals -> DEBU 0bd In commit adding relative sub-policy Consortiums/Admins to Channel +2018-01-18 09:29:38.389 UTC [policies] GetPolicy -> DEBU 0be Returning policy SampleConsortium/Org1MSP/Admins for evaluation +2018-01-18 09:29:38.389 UTC [policies] CommitProposals -> DEBU 0bf In commit adding relative sub-policy Consortiums/SampleConsortium/Org1MSP/Admins to Channel +2018-01-18 09:29:38.389 UTC [policies] GetPolicy -> DEBU 0c0 Returning policy SampleConsortium/Org2MSP/Admins for evaluation +2018-01-18 09:29:38.389 UTC [policies] CommitProposals -> DEBU 0c1 In commit adding relative sub-policy Consortiums/SampleConsortium/Org2MSP/Admins to Channel +2018-01-18 09:29:38.389 UTC [policies] GetPolicy -> DEBU 0c2 Returning policy SampleConsortium/Org2MSP/Readers for evaluation +2018-01-18 09:29:38.389 UTC [policies] CommitProposals -> DEBU 0c3 In commit adding relative sub-policy Consortiums/SampleConsortium/Org2MSP/Readers to Channel +2018-01-18 09:29:38.389 UTC [policies] GetPolicy -> DEBU 0c4 Returning policy SampleConsortium/Org2MSP/Writers for evaluation +2018-01-18 09:29:38.389 UTC [policies] CommitProposals -> DEBU 0c5 In commit adding relative sub-policy Consortiums/SampleConsortium/Org2MSP/Writers to Channel +2018-01-18 09:29:38.389 UTC [policies] GetPolicy -> DEBU 0c6 Returning policy SampleConsortium/Org1MSP/Readers for evaluation +2018-01-18 09:29:38.389 UTC [policies] CommitProposals -> DEBU 0c7 In commit adding relative sub-policy Consortiums/SampleConsortium/Org1MSP/Readers to Channel +2018-01-18 09:29:38.389 UTC [policies] GetPolicy -> DEBU 0c8 Returning policy SampleConsortium/Org1MSP/Writers for evaluation +2018-01-18 09:29:38.389 UTC [policies] CommitProposals -> DEBU 0c9 In commit adding relative sub-policy Consortiums/SampleConsortium/Org1MSP/Writers to Channel +2018-01-18 09:29:38.391 UTC [policies] GetPolicy -> DEBU 0ca Returning policy Readers for evaluation +2018-01-18 09:29:38.391 UTC [policies] CommitProposals -> DEBU 0cb In commit adding relative sub-policy Orderer/Readers to Channel +2018-01-18 09:29:38.391 UTC [policies] GetPolicy -> DEBU 0cc Returning policy OrdererOrg/Readers for evaluation +2018-01-18 09:29:38.391 UTC [policies] CommitProposals -> DEBU 0cd In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +2018-01-18 09:29:38.391 UTC [policies] GetPolicy -> DEBU 0ce Returning policy OrdererOrg/Writers for evaluation +2018-01-18 09:29:38.391 UTC [policies] CommitProposals -> DEBU 0cf In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +2018-01-18 09:29:38.391 UTC [policies] GetPolicy -> DEBU 0d0 Returning policy OrdererOrg/Admins for evaluation +2018-01-18 09:29:38.391 UTC [policies] CommitProposals -> DEBU 0d1 In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +2018-01-18 09:29:38.391 UTC [policies] GetPolicy -> DEBU 0d2 Returning policy Writers for evaluation +2018-01-18 09:29:38.391 UTC [policies] CommitProposals -> DEBU 0d3 In commit adding relative sub-policy Orderer/Writers to Channel +2018-01-18 09:29:38.392 UTC [policies] GetPolicy -> DEBU 0d4 Returning policy Admins for evaluation +2018-01-18 09:29:38.392 UTC [policies] CommitProposals -> DEBU 0d5 In commit adding relative sub-policy Orderer/Admins to Channel +2018-01-18 09:29:38.392 UTC [policies] GetPolicy -> DEBU 0d6 Returning policy BlockValidation for evaluation +2018-01-18 09:29:38.392 UTC [policies] CommitProposals -> DEBU 0d7 In commit adding relative sub-policy Orderer/BlockValidation to Channel +2018-01-18 09:29:38.392 UTC [policies] GetPolicy -> DEBU 0d8 Returning dummy reject all policy because Readers could not be found in /Consortiums/Readers +2018-01-18 09:29:38.392 UTC [policies] GetPolicy -> DEBU 0d9 Returning policy Readers for evaluation +2018-01-18 09:29:38.392 UTC [policies] GetPolicy -> DEBU 0da Returning dummy reject all policy because Writers could not be found in /Consortiums/Writers +2018-01-18 09:29:38.392 UTC [policies] GetPolicy -> DEBU 0db Returning policy Writers for evaluation +2018-01-18 09:29:38.392 UTC [policies] GetPolicy -> DEBU 0dc Returning policy Admins for evaluation +2018-01-18 09:29:38.392 UTC [policies] GetPolicy -> DEBU 0dd Returning policy Admins for evaluation +2018-01-18 09:29:38.392 UTC [policies] GetPolicy -> DEBU 0de Returning policy Readers for evaluation +2018-01-18 09:29:38.392 UTC [policies] CommitProposals -> DEBU 0df As expected, current configuration has policy '/Channel/Readers' +2018-01-18 09:29:38.392 UTC [policies] GetPolicy -> DEBU 0e0 Returning policy Writers for evaluation +2018-01-18 09:29:38.392 UTC [policies] CommitProposals -> DEBU 0e1 As expected, current configuration has policy '/Channel/Writers' +2018-01-18 09:29:38.392 UTC [policies] GetPolicy -> DEBU 0e2 Returning policy Orderer/BlockValidation for evaluation +2018-01-18 09:29:38.392 UTC [policies] CommitProposals -> DEBU 0e3 As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +2018-01-18 09:29:38.392 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 0e4 retrieveBlockByNumber() - blockNum = [0] +2018-01-18 09:29:38.392 UTC [fsblkstorage] newBlockfileStream -> DEBU 0e5 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +2018-01-18 09:29:38.392 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 0e6 Remaining bytes=[9082], Going to peek [8] bytes +2018-01-18 09:29:38.392 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 0e7 Returning blockbytes - length=[9080], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +2018-01-18 09:29:38.393 UTC [orderer/multichain] newChainSupport -> DEBU 0e8 [channel: testchainid] Retrieved metadata for tip of chain (blockNumber=0, lastConfig=0, lastConfigSeq=0): +2018-01-18 09:29:38.393 UTC [orderer/multichain] NewManagerImpl -> INFO 0e9 Starting with system channel testchainid and orderer type solo +2018-01-18 09:29:38.393 UTC [orderer/main] main -> INFO 0ea Beginning to serve requests +2018-01-18 09:29:43.785 UTC [orderer/main] Deliver -> DEBU 0eb Starting new Deliver handler +2018-01-18 09:29:43.785 UTC [orderer/common/deliver] Handle -> DEBU 0ec Starting new deliver loop +2018-01-18 09:29:43.785 UTC [orderer/common/deliver] Handle -> DEBU 0ed Attempting to read seek info message +2018-01-18 09:29:43.803 UTC [orderer/main] Broadcast -> DEBU 0ee Starting new Broadcast handler +2018-01-18 09:29:43.803 UTC [orderer/common/broadcast] Handle -> DEBU 0ef Starting new broadcast loop +2018-01-18 09:29:43.805 UTC [orderer/common/broadcast] Handle -> DEBU 0f0 Preprocessing CONFIG_UPDATE +2018-01-18 09:29:43.805 UTC [orderer/configupdate] Process -> DEBU 0f1 Processing channel creation request for channel businesschannel +2018-01-18 09:29:43.806 UTC [msp] GetLocalMSP -> DEBU 0f2 Returning existing local MSP +2018-01-18 09:29:43.806 UTC [msp] GetDefaultSigningIdentity -> DEBU 0f3 Obtaining default signing identity +2018-01-18 09:29:43.807 UTC [msp] GetLocalMSP -> DEBU 0f4 Returning existing local MSP +2018-01-18 09:29:43.807 UTC [msp] GetDefaultSigningIdentity -> DEBU 0f5 Obtaining default signing identity +2018-01-18 09:29:43.807 UTC [msp/identity] Sign -> DEBU 0f6 Sign: plaintext: 0AB7060A1B08011A060887D281D30522...07526561646572731A0641646D696E73 +2018-01-18 09:29:43.807 UTC [msp/identity] Sign -> DEBU 0f7 Sign: digest: F05366CE0FF11DE50F2752F9C3964BF73DCB7B2060E6B3A88A777C128D815602 +2018-01-18 09:29:43.807 UTC [common/config] NewStandardValues -> DEBU 0f8 Initializing protos for *config.ChannelProtos +2018-01-18 09:29:43.807 UTC [common/config] initializeProtosStruct -> DEBU 0f9 Processing field: HashingAlgorithm +2018-01-18 09:29:43.807 UTC [common/config] initializeProtosStruct -> DEBU 0fa Processing field: BlockDataHashingStructure +2018-01-18 09:29:43.808 UTC [common/config] initializeProtosStruct -> DEBU 0fb Processing field: OrdererAddresses +2018-01-18 09:29:43.808 UTC [common/config] initializeProtosStruct -> DEBU 0fc Processing field: Consortium +2018-01-18 09:29:43.809 UTC [common/configtx] addToMap -> DEBU 0fd Adding to config map: [Groups] /Channel +2018-01-18 09:29:43.809 UTC [common/configtx] addToMap -> DEBU 0fe Adding to config map: [Groups] /Channel/Orderer +2018-01-18 09:29:43.809 UTC [common/configtx] addToMap -> DEBU 0ff Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +2018-01-18 09:29:43.809 UTC [common/configtx] addToMap -> DEBU 100 Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +2018-01-18 09:29:43.810 UTC [common/configtx] addToMap -> DEBU 101 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +2018-01-18 09:29:43.810 UTC [common/configtx] addToMap -> DEBU 102 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +2018-01-18 09:29:43.810 UTC [common/configtx] addToMap -> DEBU 103 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +2018-01-18 09:29:43.810 UTC [common/configtx] addToMap -> DEBU 104 Adding to config map: [Values] /Channel/Orderer/ConsensusType +2018-01-18 09:29:43.811 UTC [common/configtx] addToMap -> DEBU 105 Adding to config map: [Values] /Channel/Orderer/BatchSize +2018-01-18 09:29:43.812 UTC [common/configtx] addToMap -> DEBU 106 Adding to config map: [Values] /Channel/Orderer/BatchTimeout +2018-01-18 09:29:43.812 UTC [common/configtx] addToMap -> DEBU 107 Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +2018-01-18 09:29:43.812 UTC [common/configtx] addToMap -> DEBU 108 Adding to config map: [Policy] /Channel/Orderer/Admins +2018-01-18 09:29:43.812 UTC [common/configtx] addToMap -> DEBU 109 Adding to config map: [Policy] /Channel/Orderer/BlockValidation +2018-01-18 09:29:43.817 UTC [common/configtx] addToMap -> DEBU 10a Adding to config map: [Policy] /Channel/Orderer/Readers +2018-01-18 09:29:43.817 UTC [common/configtx] addToMap -> DEBU 10b Adding to config map: [Policy] /Channel/Orderer/Writers +2018-01-18 09:29:43.818 UTC [common/configtx] addToMap -> DEBU 10c Adding to config map: [Groups] /Channel/Application +2018-01-18 09:29:43.818 UTC [common/configtx] addToMap -> DEBU 10d Adding to config map: [Groups] /Channel/Application/Org2MSP +2018-01-18 09:29:43.818 UTC [common/configtx] addToMap -> DEBU 10e Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +2018-01-18 09:29:43.818 UTC [common/configtx] addToMap -> DEBU 10f Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +2018-01-18 09:29:43.818 UTC [common/configtx] addToMap -> DEBU 110 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +2018-01-18 09:29:43.819 UTC [common/configtx] addToMap -> DEBU 111 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +2018-01-18 09:29:43.819 UTC [common/configtx] addToMap -> DEBU 112 Adding to config map: [Groups] /Channel/Application/Org1MSP +2018-01-18 09:29:43.819 UTC [common/configtx] addToMap -> DEBU 113 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +2018-01-18 09:29:43.819 UTC [common/configtx] addToMap -> DEBU 114 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +2018-01-18 09:29:43.819 UTC [common/configtx] addToMap -> DEBU 115 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +2018-01-18 09:29:43.819 UTC [common/configtx] addToMap -> DEBU 116 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +2018-01-18 09:29:43.819 UTC [common/configtx] addToMap -> DEBU 117 Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy +2018-01-18 09:29:43.819 UTC [common/configtx] addToMap -> DEBU 118 Adding to config map: [Values] /Channel/HashingAlgorithm +2018-01-18 09:29:43.820 UTC [common/configtx] addToMap -> DEBU 119 Adding to config map: [Values] /Channel/Consortium +2018-01-18 09:29:43.820 UTC [common/configtx] addToMap -> DEBU 11a Adding to config map: [Values] /Channel/BlockDataHashingStructure +2018-01-18 09:29:43.820 UTC [common/configtx] addToMap -> DEBU 11b Adding to config map: [Values] /Channel/OrdererAddresses +2018-01-18 09:29:43.820 UTC [common/configtx] addToMap -> DEBU 11c Adding to config map: [Policy] /Channel/Readers +2018-01-18 09:29:43.821 UTC [common/configtx] addToMap -> DEBU 11d Adding to config map: [Policy] /Channel/Writers +2018-01-18 09:29:43.821 UTC [common/configtx] addToMap -> DEBU 11e Adding to config map: [Policy] /Channel/Admins +2018-01-18 09:29:43.821 UTC [common/configtx] processConfig -> DEBU 11f Beginning new config for channel businesschannel +2018-01-18 09:29:43.822 UTC [common/config] NewStandardValues -> DEBU 120 Initializing protos for *config.ChannelProtos +2018-01-18 09:29:43.822 UTC [common/config] initializeProtosStruct -> DEBU 121 Processing field: HashingAlgorithm +2018-01-18 09:29:43.822 UTC [common/config] initializeProtosStruct -> DEBU 122 Processing field: BlockDataHashingStructure +2018-01-18 09:29:43.822 UTC [common/config] initializeProtosStruct -> DEBU 123 Processing field: OrdererAddresses +2018-01-18 09:29:43.822 UTC [common/config] initializeProtosStruct -> DEBU 124 Processing field: Consortium +2018-01-18 09:29:43.823 UTC [policies] ProposePolicy -> DEBU 125 Proposed new policy Writers for Channel +2018-01-18 09:29:43.823 UTC [policies] ProposePolicy -> DEBU 126 Proposed new policy Admins for Channel +2018-01-18 09:29:43.823 UTC [policies] ProposePolicy -> DEBU 127 Proposed new policy Readers for Channel +2018-01-18 09:29:43.823 UTC [common/config] NewStandardValues -> DEBU 128 Initializing protos for *struct {} +2018-01-18 09:29:43.823 UTC [policies] ProposePolicy -> DEBU 129 Proposed new policy ChannelCreationPolicy for Application +2018-01-18 09:29:43.823 UTC [common/config] NewStandardValues -> DEBU 12a Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:43.823 UTC [common/config] initializeProtosStruct -> DEBU 12b Processing field: MSP +2018-01-18 09:29:43.823 UTC [common/config] NewStandardValues -> DEBU 12c Initializing protos for *config.ApplicationOrgProtos +2018-01-18 09:29:43.824 UTC [common/config] initializeProtosStruct -> DEBU 12d Processing field: AnchorPeers +2018-01-18 09:29:43.824 UTC [common/config] NewStandardValues -> DEBU 12e Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:43.824 UTC [common/config] initializeProtosStruct -> DEBU 12f Processing field: MSP +2018-01-18 09:29:43.824 UTC [policies] ProposePolicy -> DEBU 130 Proposed new policy Admins for Org2MSP +2018-01-18 09:29:43.824 UTC [policies] ProposePolicy -> DEBU 131 Proposed new policy Readers for Org2MSP +2018-01-18 09:29:43.824 UTC [policies] ProposePolicy -> DEBU 132 Proposed new policy Writers for Org2MSP +2018-01-18 09:29:43.824 UTC [common/config] NewStandardValues -> DEBU 133 Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:43.824 UTC [common/config] initializeProtosStruct -> DEBU 134 Processing field: MSP +2018-01-18 09:29:43.824 UTC [common/config] NewStandardValues -> DEBU 135 Initializing protos for *config.ApplicationOrgProtos +2018-01-18 09:29:43.825 UTC [common/config] initializeProtosStruct -> DEBU 136 Processing field: AnchorPeers +2018-01-18 09:29:43.825 UTC [common/config] NewStandardValues -> DEBU 137 Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:43.825 UTC [common/config] initializeProtosStruct -> DEBU 138 Processing field: MSP +2018-01-18 09:29:43.825 UTC [policies] ProposePolicy -> DEBU 139 Proposed new policy Admins for Org1MSP +2018-01-18 09:29:43.825 UTC [policies] ProposePolicy -> DEBU 13a Proposed new policy Readers for Org1MSP +2018-01-18 09:29:43.825 UTC [policies] ProposePolicy -> DEBU 13b Proposed new policy Writers for Org1MSP +2018-01-18 09:29:43.825 UTC [common/config] NewStandardValues -> DEBU 13c Initializing protos for *config.OrdererProtos +2018-01-18 09:29:43.825 UTC [common/config] initializeProtosStruct -> DEBU 13d Processing field: ConsensusType +2018-01-18 09:29:43.826 UTC [common/config] initializeProtosStruct -> DEBU 13e Processing field: BatchSize +2018-01-18 09:29:43.826 UTC [common/config] initializeProtosStruct -> DEBU 13f Processing field: BatchTimeout +2018-01-18 09:29:43.826 UTC [common/config] initializeProtosStruct -> DEBU 140 Processing field: KafkaBrokers +2018-01-18 09:29:43.826 UTC [common/config] initializeProtosStruct -> DEBU 141 Processing field: ChannelRestrictions +2018-01-18 09:29:43.826 UTC [policies] ProposePolicy -> DEBU 142 Proposed new policy Readers for Orderer +2018-01-18 09:29:43.826 UTC [policies] ProposePolicy -> DEBU 143 Proposed new policy Writers for Orderer +2018-01-18 09:29:43.826 UTC [policies] ProposePolicy -> DEBU 144 Proposed new policy Admins for Orderer +2018-01-18 09:29:43.826 UTC [policies] ProposePolicy -> DEBU 145 Proposed new policy BlockValidation for Orderer +2018-01-18 09:29:43.826 UTC [common/config] NewStandardValues -> DEBU 146 Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:43.826 UTC [common/config] initializeProtosStruct -> DEBU 147 Processing field: MSP +2018-01-18 09:29:43.826 UTC [policies] ProposePolicy -> DEBU 148 Proposed new policy Writers for OrdererOrg +2018-01-18 09:29:43.826 UTC [policies] ProposePolicy -> DEBU 149 Proposed new policy Admins for OrdererOrg +2018-01-18 09:29:43.827 UTC [policies] ProposePolicy -> DEBU 14a Proposed new policy Readers for OrdererOrg +2018-01-18 09:29:43.827 UTC [common/config] Validate -> DEBU 14b Anchor peers for org Org2MSP are +2018-01-18 09:29:43.827 UTC [common/config] validateMSP -> DEBU 14c Setting up MSP for org Org2MSP +2018-01-18 09:29:43.827 UTC [msp] NewBccspMsp -> DEBU 14d Creating BCCSP-based MSP instance +2018-01-18 09:29:43.827 UTC [msp] Setup -> DEBU 14e Setting up MSP instance Org2MSP +2018-01-18 09:29:43.827 UTC [msp/identity] newIdentity -> DEBU 14f Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -530,7 +530,7 @@ xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk SCjyRdD3aQ== -----END CERTIFICATE----- -2018-01-18 01:58:51.884 UTC [msp/identity] newIdentity -> DEBU 150 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:43.828 UTC [msp/identity] newIdentity -> DEBU 150 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -544,7 +544,7 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS AXYxULZpXYDQXt1KaLI= -----END CERTIFICATE----- -2018-01-18 01:58:51.885 UTC [msp/identity] newIdentity -> DEBU 151 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:43.829 UTC [msp/identity] newIdentity -> DEBU 151 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -558,12 +558,12 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS AXYxULZpXYDQXt1KaLI= -----END CERTIFICATE----- -2018-01-18 01:58:51.886 UTC [msp] Validate -> DEBU 152 MSP Org2MSP validating identity -2018-01-18 01:58:51.887 UTC [common/config] Validate -> DEBU 153 Anchor peers for org Org1MSP are -2018-01-18 01:58:51.887 UTC [common/config] validateMSP -> DEBU 154 Setting up MSP for org Org1MSP -2018-01-18 01:58:51.887 UTC [msp] NewBccspMsp -> DEBU 155 Creating BCCSP-based MSP instance -2018-01-18 01:58:51.887 UTC [msp] Setup -> DEBU 156 Setting up MSP instance Org1MSP -2018-01-18 01:58:51.888 UTC [msp/identity] newIdentity -> DEBU 157 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:43.830 UTC [msp] Validate -> DEBU 152 MSP Org2MSP validating identity +2018-01-18 09:29:43.830 UTC [common/config] Validate -> DEBU 153 Anchor peers for org Org1MSP are +2018-01-18 09:29:43.830 UTC [common/config] validateMSP -> DEBU 154 Setting up MSP for org Org1MSP +2018-01-18 09:29:43.831 UTC [msp] NewBccspMsp -> DEBU 155 Creating BCCSP-based MSP instance +2018-01-18 09:29:43.831 UTC [msp] Setup -> DEBU 156 Setting up MSP instance Org1MSP +2018-01-18 09:29:43.831 UTC [msp/identity] newIdentity -> DEBU 157 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -578,7 +578,7 @@ JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ H7n8z1pj5w== -----END CERTIFICATE----- -2018-01-18 01:58:51.890 UTC [msp/identity] newIdentity -> DEBU 158 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:43.832 UTC [msp/identity] newIdentity -> DEBU 158 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -592,7 +592,7 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-18 01:58:51.891 UTC [msp/identity] newIdentity -> DEBU 159 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:43.833 UTC [msp/identity] newIdentity -> DEBU 159 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -606,11 +606,11 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-18 01:58:51.892 UTC [msp] Validate -> DEBU 15a MSP Org1MSP validating identity -2018-01-18 01:58:51.893 UTC [common/config] validateMSP -> DEBU 15b Setting up MSP for org OrdererOrg -2018-01-18 01:58:51.893 UTC [msp] NewBccspMsp -> DEBU 15c Creating BCCSP-based MSP instance -2018-01-18 01:58:51.893 UTC [msp] Setup -> DEBU 15d Setting up MSP instance OrdererMSP -2018-01-18 01:58:51.894 UTC [msp/identity] newIdentity -> DEBU 15e Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:43.834 UTC [msp] Validate -> DEBU 15a MSP Org1MSP validating identity +2018-01-18 09:29:43.834 UTC [common/config] validateMSP -> DEBU 15b Setting up MSP for org OrdererOrg +2018-01-18 09:29:43.834 UTC [msp] NewBccspMsp -> DEBU 15c Creating BCCSP-based MSP instance +2018-01-18 09:29:43.834 UTC [msp] Setup -> DEBU 15d Setting up MSP instance OrdererMSP +2018-01-18 09:29:43.835 UTC [msp/identity] newIdentity -> DEBU 15e Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -624,7 +624,7 @@ AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= -----END CERTIFICATE----- -2018-01-18 01:58:51.894 UTC [msp/identity] newIdentity -> DEBU 15f Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:43.835 UTC [msp/identity] newIdentity -> DEBU 15f Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -637,7 +637,7 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -----END CERTIFICATE----- -2018-01-18 01:58:51.895 UTC [msp/identity] newIdentity -> DEBU 160 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:43.836 UTC [msp/identity] newIdentity -> DEBU 160 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -650,85 +650,85 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -----END CERTIFICATE----- -2018-01-18 01:58:51.896 UTC [msp] Validate -> DEBU 161 MSP OrdererMSP validating identity -2018-01-18 01:58:51.896 UTC [msp] Setup -> DEBU 162 Setting up the MSP manager (3 msps) -2018-01-18 01:58:51.896 UTC [msp] Setup -> DEBU 163 MSP manager setup complete, setup 3 msps -2018-01-18 01:58:51.896 UTC [policies] GetPolicy -> DEBU 164 Returning policy Writers for evaluation -2018-01-18 01:58:51.896 UTC [policies] CommitProposals -> DEBU 165 In commit adding relative sub-policy Org2MSP/Writers to Application -2018-01-18 01:58:51.897 UTC [policies] GetPolicy -> DEBU 166 Returning policy Admins for evaluation -2018-01-18 01:58:51.897 UTC [policies] CommitProposals -> DEBU 167 In commit adding relative sub-policy Org2MSP/Admins to Application -2018-01-18 01:58:51.897 UTC [policies] GetPolicy -> DEBU 168 Returning policy Readers for evaluation -2018-01-18 01:58:51.897 UTC [policies] CommitProposals -> DEBU 169 In commit adding relative sub-policy Org2MSP/Readers to Application -2018-01-18 01:58:51.897 UTC [policies] GetPolicy -> DEBU 16a Returning policy Writers for evaluation -2018-01-18 01:58:51.897 UTC [policies] CommitProposals -> DEBU 16b In commit adding relative sub-policy Org1MSP/Writers to Application -2018-01-18 01:58:51.897 UTC [policies] GetPolicy -> DEBU 16c Returning policy Admins for evaluation -2018-01-18 01:58:51.897 UTC [policies] CommitProposals -> DEBU 16d In commit adding relative sub-policy Org1MSP/Admins to Application -2018-01-18 01:58:51.898 UTC [policies] GetPolicy -> DEBU 16e Returning policy Readers for evaluation -2018-01-18 01:58:51.898 UTC [policies] CommitProposals -> DEBU 16f In commit adding relative sub-policy Org1MSP/Readers to Application -2018-01-18 01:58:51.898 UTC [policies] GetPolicy -> DEBU 170 Returning policy Admins for evaluation -2018-01-18 01:58:51.898 UTC [policies] GetPolicy -> DEBU 171 Returning policy Admins for evaluation -2018-01-18 01:58:51.898 UTC [policies] GetPolicy -> DEBU 172 Returning policy Writers for evaluation -2018-01-18 01:58:51.898 UTC [policies] CommitProposals -> DEBU 173 In commit adding relative sub-policy OrdererOrg/Writers to Orderer -2018-01-18 01:58:51.898 UTC [policies] GetPolicy -> DEBU 174 Returning policy Admins for evaluation -2018-01-18 01:58:51.898 UTC [policies] CommitProposals -> DEBU 175 In commit adding relative sub-policy OrdererOrg/Admins to Orderer -2018-01-18 01:58:51.899 UTC [policies] GetPolicy -> DEBU 176 Returning policy Readers for evaluation -2018-01-18 01:58:51.899 UTC [policies] CommitProposals -> DEBU 177 In commit adding relative sub-policy OrdererOrg/Readers to Orderer -2018-01-18 01:58:51.900 UTC [policies] GetPolicy -> DEBU 178 Returning policy Readers for evaluation -2018-01-18 01:58:51.901 UTC [policies] GetPolicy -> DEBU 179 Returning policy Writers for evaluation -2018-01-18 01:58:51.901 UTC [policies] GetPolicy -> DEBU 17a Returning policy Admins for evaluation -2018-01-18 01:58:51.901 UTC [policies] GetPolicy -> DEBU 17b Returning policy Writers for evaluation -2018-01-18 01:58:51.901 UTC [policies] GetPolicy -> DEBU 17c Returning policy Org1MSP/Readers for evaluation -2018-01-18 01:58:51.901 UTC [policies] CommitProposals -> DEBU 17d In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -2018-01-18 01:58:51.902 UTC [policies] GetPolicy -> DEBU 17e Returning policy ChannelCreationPolicy for evaluation -2018-01-18 01:58:51.902 UTC [policies] CommitProposals -> DEBU 17f In commit adding relative sub-policy Application/ChannelCreationPolicy to Channel -2018-01-18 01:58:51.902 UTC [policies] GetPolicy -> DEBU 180 Returning policy Org2MSP/Writers for evaluation -2018-01-18 01:58:51.902 UTC [policies] CommitProposals -> DEBU 181 In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -2018-01-18 01:58:51.902 UTC [policies] GetPolicy -> DEBU 182 Returning policy Org2MSP/Admins for evaluation -2018-01-18 01:58:51.902 UTC [policies] CommitProposals -> DEBU 183 In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -2018-01-18 01:58:51.902 UTC [policies] GetPolicy -> DEBU 184 Returning policy Org2MSP/Readers for evaluation -2018-01-18 01:58:51.903 UTC [policies] CommitProposals -> DEBU 185 In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -2018-01-18 01:58:51.903 UTC [policies] GetPolicy -> DEBU 186 Returning policy Org1MSP/Writers for evaluation -2018-01-18 01:58:51.903 UTC [policies] CommitProposals -> DEBU 187 In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -2018-01-18 01:58:51.903 UTC [policies] GetPolicy -> DEBU 188 Returning policy Org1MSP/Admins for evaluation -2018-01-18 01:58:51.903 UTC [policies] CommitProposals -> DEBU 189 In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -2018-01-18 01:58:51.904 UTC [policies] GetPolicy -> DEBU 18a Returning policy Readers for evaluation -2018-01-18 01:58:51.904 UTC [policies] CommitProposals -> DEBU 18b In commit adding relative sub-policy Orderer/Readers to Channel -2018-01-18 01:58:51.904 UTC [policies] GetPolicy -> DEBU 18c Returning policy Writers for evaluation -2018-01-18 01:58:51.904 UTC [policies] CommitProposals -> DEBU 18d In commit adding relative sub-policy Orderer/Writers to Channel -2018-01-18 01:58:51.904 UTC [policies] GetPolicy -> DEBU 18e Returning policy Admins for evaluation -2018-01-18 01:58:51.904 UTC [policies] CommitProposals -> DEBU 18f In commit adding relative sub-policy Orderer/Admins to Channel -2018-01-18 01:58:51.904 UTC [policies] GetPolicy -> DEBU 190 Returning policy BlockValidation for evaluation -2018-01-18 01:58:51.904 UTC [policies] CommitProposals -> DEBU 191 In commit adding relative sub-policy Orderer/BlockValidation to Channel -2018-01-18 01:58:51.904 UTC [policies] GetPolicy -> DEBU 192 Returning policy OrdererOrg/Writers for evaluation -2018-01-18 01:58:51.905 UTC [policies] CommitProposals -> DEBU 193 In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -2018-01-18 01:58:51.905 UTC [policies] GetPolicy -> DEBU 194 Returning policy OrdererOrg/Admins for evaluation -2018-01-18 01:58:51.905 UTC [policies] CommitProposals -> DEBU 195 In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -2018-01-18 01:58:51.905 UTC [policies] GetPolicy -> DEBU 196 Returning policy OrdererOrg/Readers for evaluation -2018-01-18 01:58:51.905 UTC [policies] CommitProposals -> DEBU 197 In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -2018-01-18 01:58:51.905 UTC [policies] GetPolicy -> DEBU 198 Returning dummy reject all policy because Readers could not be found in /Application/Readers -2018-01-18 01:58:51.905 UTC [policies] GetPolicy -> DEBU 199 Returning policy Readers for evaluation -2018-01-18 01:58:51.906 UTC [policies] GetPolicy -> DEBU 19a Returning dummy reject all policy because Writers could not be found in /Application/Writers -2018-01-18 01:58:51.906 UTC [policies] GetPolicy -> DEBU 19b Returning policy Writers for evaluation -2018-01-18 01:58:51.906 UTC [policies] GetPolicy -> DEBU 19c Returning policy Admins for evaluation -2018-01-18 01:58:51.906 UTC [policies] GetPolicy -> DEBU 19d Returning dummy reject all policy because Admins could not be found in /Application/Admins -2018-01-18 01:58:51.906 UTC [common/configtx] addToMap -> DEBU 19e Adding to config map: [Groups] /Channel -2018-01-18 01:58:51.906 UTC [common/configtx] addToMap -> DEBU 19f Adding to config map: [Groups] /Channel/Application -2018-01-18 01:58:51.906 UTC [common/configtx] addToMap -> DEBU 1a0 Adding to config map: [Groups] /Channel/Application/Org2MSP -2018-01-18 01:58:51.907 UTC [common/configtx] addToMap -> DEBU 1a1 Adding to config map: [Groups] /Channel/Application/Org1MSP -2018-01-18 01:58:51.907 UTC [common/configtx] addToMap -> DEBU 1a2 Adding to config map: [Values] /Channel/Consortium -2018-01-18 01:58:51.907 UTC [common/configtx] addToMap -> DEBU 1a3 Adding to config map: [Groups] /Channel -2018-01-18 01:58:51.907 UTC [common/configtx] addToMap -> DEBU 1a4 Adding to config map: [Groups] /Channel/Application -2018-01-18 01:58:51.907 UTC [common/configtx] addToMap -> DEBU 1a5 Adding to config map: [Groups] /Channel/Application/Org1MSP -2018-01-18 01:58:51.908 UTC [common/configtx] addToMap -> DEBU 1a6 Adding to config map: [Groups] /Channel/Application/Org2MSP -2018-01-18 01:58:51.908 UTC [common/configtx] addToMap -> DEBU 1a7 Adding to config map: [Policy] /Channel/Application/Admins -2018-01-18 01:58:51.908 UTC [common/configtx] addToMap -> DEBU 1a8 Adding to config map: [Policy] /Channel/Application/Writers -2018-01-18 01:58:51.908 UTC [common/configtx] addToMap -> DEBU 1a9 Adding to config map: [Policy] /Channel/Application/Readers -2018-01-18 01:58:51.908 UTC [common/configtx] addToMap -> DEBU 1aa Adding to config map: [Values] /Channel/Consortium -2018-01-18 01:58:51.908 UTC [policies] GetPolicy -> DEBU 1ab Returning policy ChannelCreationPolicy for evaluation -2018-01-18 01:58:51.908 UTC [cauthdsl] func1 -> DEBU 1ac 0xc42014a9a8 gate 1516240731908840727 evaluation starts -2018-01-18 01:58:51.908 UTC [cauthdsl] func2 -> DEBU 1ad 0xc42014a9a8 signed by 0 principal evaluation starts (used [false]) -2018-01-18 01:58:51.909 UTC [cauthdsl] func2 -> DEBU 1ae 0xc42014a9a8 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-18 01:58:51.909 UTC [msp/identity] newIdentity -> DEBU 1af Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:43.837 UTC [msp] Validate -> DEBU 161 MSP OrdererMSP validating identity +2018-01-18 09:29:43.838 UTC [msp] Setup -> DEBU 162 Setting up the MSP manager (3 msps) +2018-01-18 09:29:43.838 UTC [msp] Setup -> DEBU 163 MSP manager setup complete, setup 3 msps +2018-01-18 09:29:43.838 UTC [policies] GetPolicy -> DEBU 164 Returning policy Admins for evaluation +2018-01-18 09:29:43.838 UTC [policies] CommitProposals -> DEBU 165 In commit adding relative sub-policy Org1MSP/Admins to Application +2018-01-18 09:29:43.838 UTC [policies] GetPolicy -> DEBU 166 Returning policy Readers for evaluation +2018-01-18 09:29:43.838 UTC [policies] CommitProposals -> DEBU 167 In commit adding relative sub-policy Org1MSP/Readers to Application +2018-01-18 09:29:43.838 UTC [policies] GetPolicy -> DEBU 168 Returning policy Writers for evaluation +2018-01-18 09:29:43.838 UTC [policies] CommitProposals -> DEBU 169 In commit adding relative sub-policy Org1MSP/Writers to Application +2018-01-18 09:29:43.838 UTC [policies] GetPolicy -> DEBU 16a Returning policy Admins for evaluation +2018-01-18 09:29:43.839 UTC [policies] CommitProposals -> DEBU 16b In commit adding relative sub-policy Org2MSP/Admins to Application +2018-01-18 09:29:43.839 UTC [policies] GetPolicy -> DEBU 16c Returning policy Readers for evaluation +2018-01-18 09:29:43.839 UTC [policies] CommitProposals -> DEBU 16d In commit adding relative sub-policy Org2MSP/Readers to Application +2018-01-18 09:29:43.839 UTC [policies] GetPolicy -> DEBU 16e Returning policy Writers for evaluation +2018-01-18 09:29:43.839 UTC [policies] CommitProposals -> DEBU 16f In commit adding relative sub-policy Org2MSP/Writers to Application +2018-01-18 09:29:43.839 UTC [policies] GetPolicy -> DEBU 170 Returning policy Admins for evaluation +2018-01-18 09:29:43.839 UTC [policies] GetPolicy -> DEBU 171 Returning policy Admins for evaluation +2018-01-18 09:29:43.839 UTC [policies] GetPolicy -> DEBU 172 Returning policy Writers for evaluation +2018-01-18 09:29:43.839 UTC [policies] CommitProposals -> DEBU 173 In commit adding relative sub-policy OrdererOrg/Writers to Orderer +2018-01-18 09:29:43.840 UTC [policies] GetPolicy -> DEBU 174 Returning policy Admins for evaluation +2018-01-18 09:29:43.840 UTC [policies] CommitProposals -> DEBU 175 In commit adding relative sub-policy OrdererOrg/Admins to Orderer +2018-01-18 09:29:43.840 UTC [policies] GetPolicy -> DEBU 176 Returning policy Readers for evaluation +2018-01-18 09:29:43.840 UTC [policies] CommitProposals -> DEBU 177 In commit adding relative sub-policy OrdererOrg/Readers to Orderer +2018-01-18 09:29:43.840 UTC [policies] GetPolicy -> DEBU 178 Returning policy Readers for evaluation +2018-01-18 09:29:43.840 UTC [policies] GetPolicy -> DEBU 179 Returning policy Writers for evaluation +2018-01-18 09:29:43.840 UTC [policies] GetPolicy -> DEBU 17a Returning policy Admins for evaluation +2018-01-18 09:29:43.840 UTC [policies] GetPolicy -> DEBU 17b Returning policy Writers for evaluation +2018-01-18 09:29:43.840 UTC [policies] GetPolicy -> DEBU 17c Returning policy Org1MSP/Admins for evaluation +2018-01-18 09:29:43.840 UTC [policies] CommitProposals -> DEBU 17d In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +2018-01-18 09:29:43.840 UTC [policies] GetPolicy -> DEBU 17e Returning policy Org1MSP/Readers for evaluation +2018-01-18 09:29:43.840 UTC [policies] CommitProposals -> DEBU 17f In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +2018-01-18 09:29:43.841 UTC [policies] GetPolicy -> DEBU 180 Returning policy Org1MSP/Writers for evaluation +2018-01-18 09:29:43.841 UTC [policies] CommitProposals -> DEBU 181 In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +2018-01-18 09:29:43.841 UTC [policies] GetPolicy -> DEBU 182 Returning policy Org2MSP/Admins for evaluation +2018-01-18 09:29:43.841 UTC [policies] CommitProposals -> DEBU 183 In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +2018-01-18 09:29:43.841 UTC [policies] GetPolicy -> DEBU 184 Returning policy Org2MSP/Readers for evaluation +2018-01-18 09:29:43.841 UTC [policies] CommitProposals -> DEBU 185 In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +2018-01-18 09:29:43.842 UTC [policies] GetPolicy -> DEBU 186 Returning policy Org2MSP/Writers for evaluation +2018-01-18 09:29:43.842 UTC [policies] CommitProposals -> DEBU 187 In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +2018-01-18 09:29:43.842 UTC [policies] GetPolicy -> DEBU 188 Returning policy ChannelCreationPolicy for evaluation +2018-01-18 09:29:43.842 UTC [policies] CommitProposals -> DEBU 189 In commit adding relative sub-policy Application/ChannelCreationPolicy to Channel +2018-01-18 09:29:43.842 UTC [policies] GetPolicy -> DEBU 18a Returning policy OrdererOrg/Admins for evaluation +2018-01-18 09:29:43.842 UTC [policies] CommitProposals -> DEBU 18b In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +2018-01-18 09:29:43.842 UTC [policies] GetPolicy -> DEBU 18c Returning policy OrdererOrg/Readers for evaluation +2018-01-18 09:29:43.842 UTC [policies] CommitProposals -> DEBU 18d In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +2018-01-18 09:29:43.842 UTC [policies] GetPolicy -> DEBU 18e Returning policy Readers for evaluation +2018-01-18 09:29:43.842 UTC [policies] CommitProposals -> DEBU 18f In commit adding relative sub-policy Orderer/Readers to Channel +2018-01-18 09:29:43.842 UTC [policies] GetPolicy -> DEBU 190 Returning policy Writers for evaluation +2018-01-18 09:29:43.842 UTC [policies] CommitProposals -> DEBU 191 In commit adding relative sub-policy Orderer/Writers to Channel +2018-01-18 09:29:43.842 UTC [policies] GetPolicy -> DEBU 192 Returning policy Admins for evaluation +2018-01-18 09:29:43.842 UTC [policies] CommitProposals -> DEBU 193 In commit adding relative sub-policy Orderer/Admins to Channel +2018-01-18 09:29:43.843 UTC [policies] GetPolicy -> DEBU 194 Returning policy BlockValidation for evaluation +2018-01-18 09:29:43.843 UTC [policies] CommitProposals -> DEBU 195 In commit adding relative sub-policy Orderer/BlockValidation to Channel +2018-01-18 09:29:43.843 UTC [policies] GetPolicy -> DEBU 196 Returning policy OrdererOrg/Writers for evaluation +2018-01-18 09:29:43.843 UTC [policies] CommitProposals -> DEBU 197 In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +2018-01-18 09:29:43.843 UTC [policies] GetPolicy -> DEBU 198 Returning dummy reject all policy because Writers could not be found in /Application/Writers +2018-01-18 09:29:43.843 UTC [policies] GetPolicy -> DEBU 199 Returning policy Writers for evaluation +2018-01-18 09:29:43.843 UTC [policies] GetPolicy -> DEBU 19a Returning dummy reject all policy because Admins could not be found in /Application/Admins +2018-01-18 09:29:43.843 UTC [policies] GetPolicy -> DEBU 19b Returning policy Admins for evaluation +2018-01-18 09:29:43.843 UTC [policies] GetPolicy -> DEBU 19c Returning dummy reject all policy because Readers could not be found in /Application/Readers +2018-01-18 09:29:43.843 UTC [policies] GetPolicy -> DEBU 19d Returning policy Readers for evaluation +2018-01-18 09:29:43.844 UTC [common/configtx] addToMap -> DEBU 19e Adding to config map: [Groups] /Channel +2018-01-18 09:29:43.844 UTC [common/configtx] addToMap -> DEBU 19f Adding to config map: [Groups] /Channel/Application +2018-01-18 09:29:43.844 UTC [common/configtx] addToMap -> DEBU 1a0 Adding to config map: [Groups] /Channel/Application/Org1MSP +2018-01-18 09:29:43.844 UTC [common/configtx] addToMap -> DEBU 1a1 Adding to config map: [Groups] /Channel/Application/Org2MSP +2018-01-18 09:29:43.844 UTC [common/configtx] addToMap -> DEBU 1a2 Adding to config map: [Values] /Channel/Consortium +2018-01-18 09:29:43.844 UTC [common/configtx] addToMap -> DEBU 1a3 Adding to config map: [Groups] /Channel +2018-01-18 09:29:43.845 UTC [common/configtx] addToMap -> DEBU 1a4 Adding to config map: [Groups] /Channel/Application +2018-01-18 09:29:43.845 UTC [common/configtx] addToMap -> DEBU 1a5 Adding to config map: [Groups] /Channel/Application/Org1MSP +2018-01-18 09:29:43.845 UTC [common/configtx] addToMap -> DEBU 1a6 Adding to config map: [Groups] /Channel/Application/Org2MSP +2018-01-18 09:29:43.845 UTC [common/configtx] addToMap -> DEBU 1a7 Adding to config map: [Policy] /Channel/Application/Writers +2018-01-18 09:29:43.845 UTC [common/configtx] addToMap -> DEBU 1a8 Adding to config map: [Policy] /Channel/Application/Readers +2018-01-18 09:29:43.845 UTC [common/configtx] addToMap -> DEBU 1a9 Adding to config map: [Policy] /Channel/Application/Admins +2018-01-18 09:29:43.845 UTC [common/configtx] addToMap -> DEBU 1aa Adding to config map: [Values] /Channel/Consortium +2018-01-18 09:29:43.846 UTC [policies] GetPolicy -> DEBU 1ab Returning policy ChannelCreationPolicy for evaluation +2018-01-18 09:29:43.846 UTC [cauthdsl] func1 -> DEBU 1ac 0xc420026968 gate 1516267783846317358 evaluation starts +2018-01-18 09:29:43.846 UTC [cauthdsl] func2 -> DEBU 1ad 0xc420026968 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:29:43.846 UTC [cauthdsl] func2 -> DEBU 1ae 0xc420026968 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:29:43.847 UTC [msp/identity] newIdentity -> DEBU 1af Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -742,107 +742,131 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-18 01:58:51.910 UTC [cauthdsl] func2 -> DEBU 1b0 0xc42014a9a8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -2018-01-18 01:58:51.910 UTC [cauthdsl] func2 -> DEBU 1b1 0xc42014a9a8 principal evaluation fails -2018-01-18 01:58:51.910 UTC [cauthdsl] func1 -> DEBU 1b2 0xc42014a9a8 gate 1516240731908840727 evaluation fails -2018-01-18 01:58:51.910 UTC [cauthdsl] func1 -> DEBU 1b3 0xc42014a9b8 gate 1516240731910963265 evaluation starts -2018-01-18 01:58:51.911 UTC [cauthdsl] func2 -> DEBU 1b4 0xc42014a9b8 signed by 0 principal evaluation starts (used [false]) -2018-01-18 01:58:51.911 UTC [cauthdsl] func2 -> DEBU 1b5 0xc42014a9b8 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-18 01:58:51.911 UTC [msp/identity] newIdentity -> DEBU 1b6 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +2018-01-18 09:29:43.848 UTC [msp] SatisfiesPrincipal -> DEBU 1b0 Checking if identity satisfies ADMIN role for Org1MSP +2018-01-18 09:29:43.848 UTC [cauthdsl] func2 -> DEBU 1b1 0xc420026968 principal matched by identity 0 +2018-01-18 09:29:43.848 UTC [msp/identity] Verify -> DEBU 1b2 Verify: digest = 00000000 c2 fe 17 b4 c8 3b c1 d6 17 b0 19 ac b7 be a1 8c |.....;..........| +00000010 b9 9f 4f e4 be 55 e9 d4 15 9e 05 c0 ee c6 5c 37 |..O..U........\7| +2018-01-18 09:29:43.848 UTC [msp/identity] Verify -> DEBU 1b3 Verify: sig = 00000000 30 45 02 21 00 91 a7 72 c6 06 52 e5 fc dc 81 54 |0E.!...r..R....T| +00000010 76 54 81 da 3e 58 9e 11 df f1 67 fb 92 ed 61 ef |vT..>X....g...a.| +00000020 bc ae 13 4e 1c 02 20 3d 4a 89 e2 1b 4e e0 cd 08 |...N.. =J...N...| +00000030 aa 9f b4 66 db 3a 4a 2f 16 cc ff a7 a1 0c 8b ca |...f.:J/........| +00000040 0f 7a a5 e9 a8 21 9c |.z...!.| +2018-01-18 09:29:43.849 UTC [cauthdsl] func2 -> DEBU 1b4 0xc420026968 principal evaluation succeeds for identity 0 +2018-01-18 09:29:43.849 UTC [cauthdsl] func1 -> DEBU 1b5 0xc420026968 gate 1516267783846317358 evaluation succeeds +2018-01-18 09:29:43.849 UTC [common/configtx] recurseConfigMap -> DEBU 1b6 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-18 09:29:43.850 UTC [common/configtx] recurseConfigMap -> DEBU 1b7 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-18 09:29:43.850 UTC [common/configtx] recurseConfigMap -> DEBU 1b8 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-18 09:29:43.850 UTC [common/configtx] recurseConfigMap -> DEBU 1b9 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-18 09:29:43.850 UTC [common/configtx] recurseConfigMap -> DEBU 1ba Setting policy for key BlockValidation to policy: mod_policy:"Admins" +2018-01-18 09:29:43.850 UTC [common/configtx] recurseConfigMap -> DEBU 1bb Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-18 09:29:43.850 UTC [common/configtx] recurseConfigMap -> DEBU 1bc Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-18 09:29:43.851 UTC [common/configtx] recurseConfigMap -> DEBU 1bd Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-18 09:29:43.851 UTC [common/configtx] recurseConfigMap -> DEBU 1be Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-18 09:29:43.851 UTC [common/configtx] recurseConfigMap -> DEBU 1bf Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-18 09:29:43.852 UTC [common/configtx] recurseConfigMap -> DEBU 1c0 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-18 09:29:43.852 UTC [common/configtx] recurseConfigMap -> DEBU 1c1 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-18 09:29:43.852 UTC [common/configtx] recurseConfigMap -> DEBU 1c2 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-18 09:29:43.852 UTC [common/configtx] recurseConfigMap -> DEBU 1c3 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-18 09:29:43.852 UTC [common/configtx] recurseConfigMap -> DEBU 1c4 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-18 09:29:43.852 UTC [common/configtx] recurseConfigMap -> DEBU 1c5 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-18 09:29:43.853 UTC [common/configtx] recurseConfigMap -> DEBU 1c6 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-18 09:29:43.853 UTC [common/configtx] recurseConfigMap -> DEBU 1c7 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-18 09:29:43.855 UTC [common/configtx] recurseConfigMap -> DEBU 1c8 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-18 09:29:43.855 UTC [common/configtx] processConfig -> DEBU 1c9 Beginning new config for channel businesschannel +2018-01-18 09:29:43.855 UTC [common/config] NewStandardValues -> DEBU 1ca Initializing protos for *config.ChannelProtos +2018-01-18 09:29:43.855 UTC [common/config] initializeProtosStruct -> DEBU 1cb Processing field: HashingAlgorithm +2018-01-18 09:29:43.855 UTC [common/config] initializeProtosStruct -> DEBU 1cc Processing field: BlockDataHashingStructure +2018-01-18 09:29:43.855 UTC [common/config] initializeProtosStruct -> DEBU 1cd Processing field: OrdererAddresses +2018-01-18 09:29:43.856 UTC [common/config] initializeProtosStruct -> DEBU 1ce Processing field: Consortium +2018-01-18 09:29:43.856 UTC [policies] ProposePolicy -> DEBU 1cf Proposed new policy Writers for Channel +2018-01-18 09:29:43.856 UTC [policies] ProposePolicy -> DEBU 1d0 Proposed new policy Admins for Channel +2018-01-18 09:29:43.856 UTC [policies] ProposePolicy -> DEBU 1d1 Proposed new policy Readers for Channel +2018-01-18 09:29:43.856 UTC [common/config] NewStandardValues -> DEBU 1d2 Initializing protos for *config.OrdererProtos +2018-01-18 09:29:43.856 UTC [common/config] initializeProtosStruct -> DEBU 1d3 Processing field: ConsensusType +2018-01-18 09:29:43.856 UTC [common/config] initializeProtosStruct -> DEBU 1d4 Processing field: BatchSize +2018-01-18 09:29:43.856 UTC [common/config] initializeProtosStruct -> DEBU 1d5 Processing field: BatchTimeout +2018-01-18 09:29:43.856 UTC [common/config] initializeProtosStruct -> DEBU 1d6 Processing field: KafkaBrokers +2018-01-18 09:29:43.856 UTC [common/config] initializeProtosStruct -> DEBU 1d7 Processing field: ChannelRestrictions +2018-01-18 09:29:43.857 UTC [policies] ProposePolicy -> DEBU 1d8 Proposed new policy Writers for Orderer +2018-01-18 09:29:43.857 UTC [policies] ProposePolicy -> DEBU 1d9 Proposed new policy Admins for Orderer +2018-01-18 09:29:43.857 UTC [policies] ProposePolicy -> DEBU 1da Proposed new policy BlockValidation for Orderer +2018-01-18 09:29:43.857 UTC [policies] ProposePolicy -> DEBU 1db Proposed new policy Readers for Orderer +2018-01-18 09:29:43.857 UTC [common/config] NewStandardValues -> DEBU 1dc Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:43.857 UTC [common/config] initializeProtosStruct -> DEBU 1dd Processing field: MSP +2018-01-18 09:29:43.857 UTC [policies] ProposePolicy -> DEBU 1de Proposed new policy Writers for OrdererOrg +2018-01-18 09:29:43.857 UTC [policies] ProposePolicy -> DEBU 1df Proposed new policy Admins for OrdererOrg +2018-01-18 09:29:43.858 UTC [policies] ProposePolicy -> DEBU 1e0 Proposed new policy Readers for OrdererOrg +2018-01-18 09:29:43.858 UTC [common/config] NewStandardValues -> DEBU 1e1 Initializing protos for *struct {} +2018-01-18 09:29:43.858 UTC [policies] ProposePolicy -> DEBU 1e2 Proposed new policy Readers for Application +2018-01-18 09:29:43.858 UTC [policies] ProposePolicy -> DEBU 1e3 Proposed new policy Admins for Application +2018-01-18 09:29:43.858 UTC [policies] ProposePolicy -> DEBU 1e4 Proposed new policy Writers for Application +2018-01-18 09:29:43.858 UTC [common/config] NewStandardValues -> DEBU 1e5 Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:43.858 UTC [common/config] initializeProtosStruct -> DEBU 1e6 Processing field: MSP +2018-01-18 09:29:43.858 UTC [common/config] NewStandardValues -> DEBU 1e7 Initializing protos for *config.ApplicationOrgProtos +2018-01-18 09:29:43.858 UTC [common/config] initializeProtosStruct -> DEBU 1e8 Processing field: AnchorPeers +2018-01-18 09:29:43.858 UTC [common/config] NewStandardValues -> DEBU 1e9 Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:43.858 UTC [common/config] initializeProtosStruct -> DEBU 1ea Processing field: MSP +2018-01-18 09:29:43.859 UTC [policies] ProposePolicy -> DEBU 1eb Proposed new policy Admins for Org1MSP +2018-01-18 09:29:43.859 UTC [policies] ProposePolicy -> DEBU 1ec Proposed new policy Readers for Org1MSP +2018-01-18 09:29:43.859 UTC [policies] ProposePolicy -> DEBU 1ed Proposed new policy Writers for Org1MSP +2018-01-18 09:29:43.859 UTC [common/config] NewStandardValues -> DEBU 1ee Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:43.859 UTC [common/config] initializeProtosStruct -> DEBU 1ef Processing field: MSP +2018-01-18 09:29:43.859 UTC [common/config] NewStandardValues -> DEBU 1f0 Initializing protos for *config.ApplicationOrgProtos +2018-01-18 09:29:43.859 UTC [common/config] initializeProtosStruct -> DEBU 1f1 Processing field: AnchorPeers +2018-01-18 09:29:43.859 UTC [common/config] NewStandardValues -> DEBU 1f2 Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:43.859 UTC [common/config] initializeProtosStruct -> DEBU 1f3 Processing field: MSP +2018-01-18 09:29:43.860 UTC [policies] ProposePolicy -> DEBU 1f4 Proposed new policy Writers for Org2MSP +2018-01-18 09:29:43.860 UTC [policies] ProposePolicy -> DEBU 1f5 Proposed new policy Admins for Org2MSP +2018-01-18 09:29:43.860 UTC [policies] ProposePolicy -> DEBU 1f6 Proposed new policy Readers for Org2MSP +2018-01-18 09:29:43.860 UTC [common/config] validateMSP -> DEBU 1f7 Setting up MSP for org OrdererOrg +2018-01-18 09:29:43.860 UTC [msp] NewBccspMsp -> DEBU 1f8 Creating BCCSP-based MSP instance +2018-01-18 09:29:43.861 UTC [msp] Setup -> DEBU 1f9 Setting up MSP instance OrdererMSP +2018-01-18 09:29:43.861 UTC [msp/identity] newIdentity -> DEBU 1fa Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -xHTBvxfK6mAzmUitFmY= +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW +gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w +XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK +BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs +KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= -----END CERTIFICATE----- -2018-01-18 01:58:51.912 UTC [msp] SatisfiesPrincipal -> DEBU 1b7 Checking if identity satisfies ADMIN role for Org1MSP -2018-01-18 01:58:51.912 UTC [cauthdsl] func2 -> DEBU 1b8 0xc42014a9b8 principal matched by identity 0 -2018-01-18 01:58:51.912 UTC [msp/identity] Verify -> DEBU 1b9 Verify: digest = 00000000 0a a0 5d 09 26 8b 7a 10 a3 b6 c2 9d af ba c9 56 |..].&.z........V| -00000010 5f cb 22 5a 66 84 57 14 0b e8 1a 28 36 06 e9 3e |_."Zf.W....(6..>| -2018-01-18 01:58:51.912 UTC [msp/identity] Verify -> DEBU 1ba Verify: sig = 00000000 30 44 02 20 29 07 f5 3b 75 87 a0 a4 66 fd f4 8c |0D. )..;u...f...| -00000010 9d 33 36 f4 39 b7 2e 82 fb 27 b6 27 f8 27 57 50 |.36.9....'.'.'WP| -00000020 a2 9f 0c a4 02 20 3e 03 90 56 ce da 45 23 b2 2d |..... >..V..E#.-| -00000030 85 0f 22 ec 4c 0d 0e f8 31 f9 4d ed fb a4 0e 7e |..".L...1.M....~| -00000040 2e 30 01 0f 91 31 |.0...1| -2018-01-18 01:58:51.912 UTC [cauthdsl] func2 -> DEBU 1bb 0xc42014a9b8 principal evaluation succeeds for identity 0 -2018-01-18 01:58:51.912 UTC [cauthdsl] func1 -> DEBU 1bc 0xc42014a9b8 gate 1516240731910963265 evaluation succeeds -2018-01-18 01:58:51.913 UTC [common/configtx] recurseConfigMap -> DEBU 1bd Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-18 01:58:51.913 UTC [common/configtx] recurseConfigMap -> DEBU 1be Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-18 01:58:51.913 UTC [common/configtx] recurseConfigMap -> DEBU 1bf Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-18 01:58:51.913 UTC [common/configtx] recurseConfigMap -> DEBU 1c0 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-18 01:58:51.913 UTC [common/configtx] recurseConfigMap -> DEBU 1c1 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-18 01:58:51.913 UTC [common/configtx] recurseConfigMap -> DEBU 1c2 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-18 01:58:51.914 UTC [common/configtx] recurseConfigMap -> DEBU 1c3 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-18 01:58:51.914 UTC [common/configtx] recurseConfigMap -> DEBU 1c4 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-18 01:58:51.914 UTC [common/configtx] recurseConfigMap -> DEBU 1c5 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-18 01:58:51.914 UTC [common/configtx] recurseConfigMap -> DEBU 1c6 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-18 01:58:51.914 UTC [common/configtx] recurseConfigMap -> DEBU 1c7 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-18 01:58:51.914 UTC [common/configtx] recurseConfigMap -> DEBU 1c8 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-18 01:58:51.915 UTC [common/configtx] recurseConfigMap -> DEBU 1c9 Setting policy for key BlockValidation to policy: mod_policy:"Admins" -2018-01-18 01:58:51.915 UTC [common/configtx] recurseConfigMap -> DEBU 1ca Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-18 01:58:51.915 UTC [common/configtx] recurseConfigMap -> DEBU 1cb Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-18 01:58:51.915 UTC [common/configtx] recurseConfigMap -> DEBU 1cc Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-18 01:58:51.915 UTC [common/configtx] recurseConfigMap -> DEBU 1cd Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-18 01:58:51.915 UTC [common/configtx] recurseConfigMap -> DEBU 1ce Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-18 01:58:51.915 UTC [common/configtx] recurseConfigMap -> DEBU 1cf Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-18 01:58:51.916 UTC [common/configtx] processConfig -> DEBU 1d0 Beginning new config for channel businesschannel -2018-01-18 01:58:51.916 UTC [common/config] NewStandardValues -> DEBU 1d1 Initializing protos for *config.ChannelProtos -2018-01-18 01:58:51.916 UTC [common/config] initializeProtosStruct -> DEBU 1d2 Processing field: HashingAlgorithm -2018-01-18 01:58:51.916 UTC [common/config] initializeProtosStruct -> DEBU 1d3 Processing field: BlockDataHashingStructure -2018-01-18 01:58:51.916 UTC [common/config] initializeProtosStruct -> DEBU 1d4 Processing field: OrdererAddresses -2018-01-18 01:58:51.916 UTC [common/config] initializeProtosStruct -> DEBU 1d5 Processing field: Consortium -2018-01-18 01:58:51.916 UTC [policies] ProposePolicy -> DEBU 1d6 Proposed new policy Readers for Channel -2018-01-18 01:58:51.916 UTC [policies] ProposePolicy -> DEBU 1d7 Proposed new policy Writers for Channel -2018-01-18 01:58:51.917 UTC [policies] ProposePolicy -> DEBU 1d8 Proposed new policy Admins for Channel -2018-01-18 01:58:51.917 UTC [common/config] NewStandardValues -> DEBU 1d9 Initializing protos for *struct {} -2018-01-18 01:58:51.917 UTC [policies] ProposePolicy -> DEBU 1da Proposed new policy Readers for Application -2018-01-18 01:58:51.917 UTC [policies] ProposePolicy -> DEBU 1db Proposed new policy Admins for Application -2018-01-18 01:58:51.917 UTC [policies] ProposePolicy -> DEBU 1dc Proposed new policy Writers for Application -2018-01-18 01:58:51.917 UTC [common/config] NewStandardValues -> DEBU 1dd Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:51.917 UTC [common/config] initializeProtosStruct -> DEBU 1de Processing field: MSP -2018-01-18 01:58:51.918 UTC [common/config] NewStandardValues -> DEBU 1df Initializing protos for *config.ApplicationOrgProtos -2018-01-18 01:58:51.918 UTC [common/config] initializeProtosStruct -> DEBU 1e0 Processing field: AnchorPeers -2018-01-18 01:58:51.918 UTC [common/config] NewStandardValues -> DEBU 1e1 Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:51.918 UTC [common/config] initializeProtosStruct -> DEBU 1e2 Processing field: MSP -2018-01-18 01:58:51.918 UTC [policies] ProposePolicy -> DEBU 1e3 Proposed new policy Admins for Org1MSP -2018-01-18 01:58:51.918 UTC [policies] ProposePolicy -> DEBU 1e4 Proposed new policy Readers for Org1MSP -2018-01-18 01:58:51.918 UTC [policies] ProposePolicy -> DEBU 1e5 Proposed new policy Writers for Org1MSP -2018-01-18 01:58:51.918 UTC [common/config] NewStandardValues -> DEBU 1e6 Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:51.919 UTC [common/config] initializeProtosStruct -> DEBU 1e7 Processing field: MSP -2018-01-18 01:58:51.919 UTC [common/config] NewStandardValues -> DEBU 1e8 Initializing protos for *config.ApplicationOrgProtos -2018-01-18 01:58:51.919 UTC [common/config] initializeProtosStruct -> DEBU 1e9 Processing field: AnchorPeers -2018-01-18 01:58:51.919 UTC [common/config] NewStandardValues -> DEBU 1ea Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:51.919 UTC [common/config] initializeProtosStruct -> DEBU 1eb Processing field: MSP -2018-01-18 01:58:51.919 UTC [policies] ProposePolicy -> DEBU 1ec Proposed new policy Writers for Org2MSP -2018-01-18 01:58:51.919 UTC [policies] ProposePolicy -> DEBU 1ed Proposed new policy Admins for Org2MSP -2018-01-18 01:58:51.919 UTC [policies] ProposePolicy -> DEBU 1ee Proposed new policy Readers for Org2MSP -2018-01-18 01:58:51.920 UTC [common/config] NewStandardValues -> DEBU 1ef Initializing protos for *config.OrdererProtos -2018-01-18 01:58:51.920 UTC [common/config] initializeProtosStruct -> DEBU 1f0 Processing field: ConsensusType -2018-01-18 01:58:51.920 UTC [common/config] initializeProtosStruct -> DEBU 1f1 Processing field: BatchSize -2018-01-18 01:58:51.920 UTC [common/config] initializeProtosStruct -> DEBU 1f2 Processing field: BatchTimeout -2018-01-18 01:58:51.920 UTC [common/config] initializeProtosStruct -> DEBU 1f3 Processing field: KafkaBrokers -2018-01-18 01:58:51.921 UTC [common/config] initializeProtosStruct -> DEBU 1f4 Processing field: ChannelRestrictions -2018-01-18 01:58:51.921 UTC [policies] ProposePolicy -> DEBU 1f5 Proposed new policy BlockValidation for Orderer -2018-01-18 01:58:51.921 UTC [policies] ProposePolicy -> DEBU 1f6 Proposed new policy Readers for Orderer -2018-01-18 01:58:51.921 UTC [policies] ProposePolicy -> DEBU 1f7 Proposed new policy Writers for Orderer -2018-01-18 01:58:51.921 UTC [policies] ProposePolicy -> DEBU 1f8 Proposed new policy Admins for Orderer -2018-01-18 01:58:51.921 UTC [common/config] NewStandardValues -> DEBU 1f9 Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:51.921 UTC [common/config] initializeProtosStruct -> DEBU 1fa Processing field: MSP -2018-01-18 01:58:51.922 UTC [policies] ProposePolicy -> DEBU 1fb Proposed new policy Admins for OrdererOrg -2018-01-18 01:58:51.922 UTC [policies] ProposePolicy -> DEBU 1fc Proposed new policy Readers for OrdererOrg -2018-01-18 01:58:51.922 UTC [policies] ProposePolicy -> DEBU 1fd Proposed new policy Writers for OrdererOrg -2018-01-18 01:58:51.922 UTC [common/config] Validate -> DEBU 1fe Anchor peers for org Org1MSP are -2018-01-18 01:58:51.922 UTC [common/config] validateMSP -> DEBU 1ff Setting up MSP for org Org1MSP -2018-01-18 01:58:51.922 UTC [msp] NewBccspMsp -> DEBU 200 Creating BCCSP-based MSP instance -2018-01-18 01:58:51.922 UTC [msp] Setup -> DEBU 201 Setting up MSP instance Org1MSP -2018-01-18 01:58:51.923 UTC [msp/identity] newIdentity -> DEBU 202 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:43.862 UTC [msp/identity] newIdentity -> DEBU 1fb Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-18 09:29:43.863 UTC [msp/identity] newIdentity -> DEBU 1fc Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-18 09:29:43.864 UTC [msp] Validate -> DEBU 1fd MSP OrdererMSP validating identity +2018-01-18 09:29:43.865 UTC [common/config] Validate -> DEBU 1fe Anchor peers for org Org1MSP are +2018-01-18 09:29:43.865 UTC [common/config] validateMSP -> DEBU 1ff Setting up MSP for org Org1MSP +2018-01-18 09:29:43.865 UTC [msp] NewBccspMsp -> DEBU 200 Creating BCCSP-based MSP instance +2018-01-18 09:29:43.865 UTC [msp] Setup -> DEBU 201 Setting up MSP instance Org1MSP +2018-01-18 09:29:43.866 UTC [msp/identity] newIdentity -> DEBU 202 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -857,7 +881,7 @@ JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ H7n8z1pj5w== -----END CERTIFICATE----- -2018-01-18 01:58:51.923 UTC [msp/identity] newIdentity -> DEBU 203 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:43.866 UTC [msp/identity] newIdentity -> DEBU 203 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -871,7 +895,7 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-18 01:58:51.924 UTC [msp/identity] newIdentity -> DEBU 204 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:43.867 UTC [msp/identity] newIdentity -> DEBU 204 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -885,12 +909,12 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-18 01:58:51.925 UTC [msp] Validate -> DEBU 205 MSP Org1MSP validating identity -2018-01-18 01:58:51.925 UTC [common/config] Validate -> DEBU 206 Anchor peers for org Org2MSP are -2018-01-18 01:58:51.925 UTC [common/config] validateMSP -> DEBU 207 Setting up MSP for org Org2MSP -2018-01-18 01:58:51.925 UTC [msp] NewBccspMsp -> DEBU 208 Creating BCCSP-based MSP instance -2018-01-18 01:58:51.925 UTC [msp] Setup -> DEBU 209 Setting up MSP instance Org2MSP -2018-01-18 01:58:51.926 UTC [msp/identity] newIdentity -> DEBU 20a Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:43.868 UTC [msp] Validate -> DEBU 205 MSP Org1MSP validating identity +2018-01-18 09:29:43.872 UTC [common/config] Validate -> DEBU 206 Anchor peers for org Org2MSP are +2018-01-18 09:29:43.872 UTC [common/config] validateMSP -> DEBU 207 Setting up MSP for org Org2MSP +2018-01-18 09:29:43.872 UTC [msp] NewBccspMsp -> DEBU 208 Creating BCCSP-based MSP instance +2018-01-18 09:29:43.872 UTC [msp] Setup -> DEBU 209 Setting up MSP instance Org2MSP +2018-01-18 09:29:43.873 UTC [msp/identity] newIdentity -> DEBU 20a Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -905,7 +929,7 @@ xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk SCjyRdD3aQ== -----END CERTIFICATE----- -2018-01-18 01:58:51.926 UTC [msp/identity] newIdentity -> DEBU 20b Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:43.874 UTC [msp/identity] newIdentity -> DEBU 20b Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -919,7 +943,7 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS AXYxULZpXYDQXt1KaLI= -----END CERTIFICATE----- -2018-01-18 01:58:51.927 UTC [msp/identity] newIdentity -> DEBU 20c Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:43.874 UTC [msp/identity] newIdentity -> DEBU 20c Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -933,71 +957,27 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS AXYxULZpXYDQXt1KaLI= -----END CERTIFICATE----- -2018-01-18 01:58:51.928 UTC [msp] Validate -> DEBU 20d MSP Org2MSP validating identity -2018-01-18 01:58:51.928 UTC [common/config] validateMSP -> DEBU 20e Setting up MSP for org OrdererOrg -2018-01-18 01:58:51.928 UTC [msp] NewBccspMsp -> DEBU 20f Creating BCCSP-based MSP instance -2018-01-18 01:58:51.928 UTC [msp] Setup -> DEBU 210 Setting up MSP instance OrdererMSP -2018-01-18 01:58:51.929 UTC [msp/identity] newIdentity -> DEBU 211 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW -gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w -XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK -BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs -KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= ------END CERTIFICATE----- -2018-01-18 01:58:51.929 UTC [msp/identity] newIdentity -> DEBU 212 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 ------END CERTIFICATE----- -2018-01-18 01:58:51.930 UTC [msp/identity] newIdentity -> DEBU 213 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 ------END CERTIFICATE----- -2018-01-18 01:58:51.930 UTC [msp] Validate -> DEBU 214 MSP OrdererMSP validating identity -2018-01-18 01:58:51.930 UTC [msp] Setup -> DEBU 215 Setting up the MSP manager (3 msps) -2018-01-18 01:58:51.931 UTC [msp] Setup -> DEBU 216 MSP manager setup complete, setup 3 msps -2018-01-18 01:58:51.931 UTC [msp] GetLocalMSP -> DEBU 217 Returning existing local MSP -2018-01-18 01:58:51.931 UTC [msp] GetDefaultSigningIdentity -> DEBU 218 Obtaining default signing identity -2018-01-18 01:58:51.931 UTC [msp] GetLocalMSP -> DEBU 219 Returning existing local MSP -2018-01-18 01:58:51.931 UTC [msp] GetDefaultSigningIdentity -> DEBU 21a Obtaining default signing identity -2018-01-18 01:58:51.932 UTC [msp/identity] Sign -> DEBU 21b Sign: plaintext: 0AB7060A1B08011A0608DBFEFFD20522...6B6A44916787A9985648B6DDEBF495DE -2018-01-18 01:58:51.932 UTC [msp/identity] Sign -> DEBU 21c Sign: digest: AB59F312C5A19AA567004BA931C26E20AB7CC3F53C2A2BD6762B6DA633B1726A -2018-01-18 01:58:51.932 UTC [msp] GetLocalMSP -> DEBU 21d Returning existing local MSP -2018-01-18 01:58:51.932 UTC [msp] GetDefaultSigningIdentity -> DEBU 21e Obtaining default signing identity -2018-01-18 01:58:51.932 UTC [msp] GetLocalMSP -> DEBU 21f Returning existing local MSP -2018-01-18 01:58:51.932 UTC [msp] GetDefaultSigningIdentity -> DEBU 220 Obtaining default signing identity -2018-01-18 01:58:51.933 UTC [msp/identity] Sign -> DEBU 221 Sign: plaintext: 0AB3060A1708041A0608DBFEFFD20522...00026BF88BC13D7AC6785A6107570B18 -2018-01-18 01:58:51.933 UTC [msp/identity] Sign -> DEBU 222 Sign: digest: 0EF11389AB5912BF66D91D41E64742E3DBCEC872E0B8D119A3499E68DE11DE32 -2018-01-18 01:58:51.933 UTC [orderer/common/broadcast] Handle -> DEBU 223 [channel: testchainid] Broadcast is filtering message of type ORDERER_TRANSACTION -2018-01-18 01:58:51.933 UTC [policies] GetPolicy -> DEBU 224 Returning policy Writers for evaluation -2018-01-18 01:58:51.933 UTC [cauthdsl] func1 -> DEBU 225 0xc42014ad78 gate 1516240731933587747 evaluation starts -2018-01-18 01:58:51.933 UTC [cauthdsl] func2 -> DEBU 226 0xc42014ad78 signed by 0 principal evaluation starts (used [false]) -2018-01-18 01:58:51.933 UTC [cauthdsl] func2 -> DEBU 227 0xc42014ad78 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-18 01:58:51.934 UTC [msp/identity] newIdentity -> DEBU 228 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:43.875 UTC [msp] Validate -> DEBU 20d MSP Org2MSP validating identity +2018-01-18 09:29:43.875 UTC [msp] Setup -> DEBU 20e Setting up the MSP manager (3 msps) +2018-01-18 09:29:43.875 UTC [msp] Setup -> DEBU 20f MSP manager setup complete, setup 3 msps +2018-01-18 09:29:43.875 UTC [msp] GetLocalMSP -> DEBU 210 Returning existing local MSP +2018-01-18 09:29:43.875 UTC [msp] GetDefaultSigningIdentity -> DEBU 211 Obtaining default signing identity +2018-01-18 09:29:43.876 UTC [msp] GetLocalMSP -> DEBU 212 Returning existing local MSP +2018-01-18 09:29:43.876 UTC [msp] GetDefaultSigningIdentity -> DEBU 213 Obtaining default signing identity +2018-01-18 09:29:43.876 UTC [msp/identity] Sign -> DEBU 214 Sign: plaintext: 0AB7060A1B08011A060887D281D30522...0116551F711215A0A2EFC5888CE5FD05 +2018-01-18 09:29:43.876 UTC [msp/identity] Sign -> DEBU 215 Sign: digest: C1171847013CB89899CA8BAEF1218DA1FF229E283947DE7DBEEBFBE18137ADF0 +2018-01-18 09:29:43.876 UTC [msp] GetLocalMSP -> DEBU 216 Returning existing local MSP +2018-01-18 09:29:43.877 UTC [msp] GetDefaultSigningIdentity -> DEBU 217 Obtaining default signing identity +2018-01-18 09:29:43.877 UTC [msp] GetLocalMSP -> DEBU 218 Returning existing local MSP +2018-01-18 09:29:43.877 UTC [msp] GetDefaultSigningIdentity -> DEBU 219 Obtaining default signing identity +2018-01-18 09:29:43.877 UTC [msp/identity] Sign -> DEBU 21a Sign: plaintext: 0AB3060A1708041A060887D281D30522...93617C2154C63487E6BDF84CB589381F +2018-01-18 09:29:43.877 UTC [msp/identity] Sign -> DEBU 21b Sign: digest: B50EA34ABCD8AEFCCEF92618AE87B256A86301BCE0C14CB8837056E3E8D586BC +2018-01-18 09:29:43.878 UTC [orderer/common/broadcast] Handle -> DEBU 21c [channel: testchainid] Broadcast is filtering message of type ORDERER_TRANSACTION +2018-01-18 09:29:43.878 UTC [policies] GetPolicy -> DEBU 21d Returning policy Writers for evaluation +2018-01-18 09:29:43.878 UTC [cauthdsl] func1 -> DEBU 21e 0xc420026d28 gate 1516267783878178619 evaluation starts +2018-01-18 09:29:43.878 UTC [cauthdsl] func2 -> DEBU 21f 0xc420026d28 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:29:43.878 UTC [cauthdsl] func2 -> DEBU 220 0xc420026d28 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:29:43.878 UTC [msp/identity] newIdentity -> DEBU 221 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -1010,112 +990,112 @@ DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH /4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl -----END CERTIFICATE----- -2018-01-18 01:58:51.934 UTC [msp] SatisfiesPrincipal -> DEBU 229 Checking if identity satisfies MEMBER role for OrdererMSP -2018-01-18 01:58:51.934 UTC [msp] Validate -> DEBU 22a MSP OrdererMSP validating identity -2018-01-18 01:58:51.935 UTC [cauthdsl] func2 -> DEBU 22b 0xc42014ad78 principal matched by identity 0 -2018-01-18 01:58:51.935 UTC [msp/identity] Verify -> DEBU 22c Verify: digest = 00000000 0e f1 13 89 ab 59 12 bf 66 d9 1d 41 e6 47 42 e3 |.....Y..f..A.GB.| -00000010 db ce c8 72 e0 b8 d1 19 a3 49 9e 68 de 11 de 32 |...r.....I.h...2| -2018-01-18 01:58:51.935 UTC [msp/identity] Verify -> DEBU 22d Verify: sig = 00000000 30 45 02 21 00 87 2f 92 95 54 fb 85 e0 ff ce 19 |0E.!../..T......| -00000010 8d dc 61 d1 ea fa 81 9b fa 83 0b 66 ee c6 8f 3e |..a........f...>| -00000020 64 0d 71 9b 09 02 20 4d 7e d7 b1 be eb 57 8f 9a |d.q... M~....W..| -00000030 17 5f 57 5b d4 ad f3 f1 20 b2 bc a5 05 58 b3 2c |._W[.... ....X.,| -00000040 9f 3b e7 3c 89 72 68 |.;.<.rh| -2018-01-18 01:58:51.935 UTC [cauthdsl] func2 -> DEBU 22e 0xc42014ad78 principal evaluation succeeds for identity 0 -2018-01-18 01:58:51.936 UTC [cauthdsl] func1 -> DEBU 22f 0xc42014ad78 gate 1516240731933587747 evaluation succeeds -2018-01-18 01:58:51.936 UTC [orderer/common/sigfilter] Apply -> DEBU 230 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420381280 1 [0xc42014a5d8]}) Writers]} -2018-01-18 01:58:51.936 UTC [msp] GetLocalMSP -> DEBU 231 Returning existing local MSP -2018-01-18 01:58:51.936 UTC [msp] GetDefaultSigningIdentity -> DEBU 232 Obtaining default signing identity -2018-01-18 01:58:51.936 UTC [msp] GetLocalMSP -> DEBU 233 Returning existing local MSP -2018-01-18 01:58:51.937 UTC [msp] GetDefaultSigningIdentity -> DEBU 234 Obtaining default signing identity -2018-01-18 01:58:51.937 UTC [msp/identity] Sign -> DEBU 235 Sign: plaintext: 0AB7060A1B08011A0608DBFEFFD20522...07526561646572731A0641646D696E73 -2018-01-18 01:58:51.937 UTC [msp/identity] Sign -> DEBU 236 Sign: digest: 2CBC9EA5AF8A9600920C3DD02CA31855ED16D22F9475FBE7DBFEA35495A83037 -2018-01-18 01:58:51.937 UTC [common/config] NewStandardValues -> DEBU 237 Initializing protos for *config.ChannelProtos -2018-01-18 01:58:51.937 UTC [common/config] initializeProtosStruct -> DEBU 238 Processing field: HashingAlgorithm -2018-01-18 01:58:51.937 UTC [common/config] initializeProtosStruct -> DEBU 239 Processing field: BlockDataHashingStructure -2018-01-18 01:58:51.938 UTC [common/config] initializeProtosStruct -> DEBU 23a Processing field: OrdererAddresses -2018-01-18 01:58:51.938 UTC [common/config] initializeProtosStruct -> DEBU 23b Processing field: Consortium -2018-01-18 01:58:51.938 UTC [common/configtx] addToMap -> DEBU 23c Adding to config map: [Groups] /Channel -2018-01-18 01:58:51.938 UTC [common/configtx] addToMap -> DEBU 23d Adding to config map: [Groups] /Channel/Orderer -2018-01-18 01:58:51.938 UTC [common/configtx] addToMap -> DEBU 23e Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -2018-01-18 01:58:51.939 UTC [common/configtx] addToMap -> DEBU 23f Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -2018-01-18 01:58:51.939 UTC [common/configtx] addToMap -> DEBU 240 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -2018-01-18 01:58:51.939 UTC [common/configtx] addToMap -> DEBU 241 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -2018-01-18 01:58:51.939 UTC [common/configtx] addToMap -> DEBU 242 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -2018-01-18 01:58:51.939 UTC [common/configtx] addToMap -> DEBU 243 Adding to config map: [Values] /Channel/Orderer/BatchTimeout -2018-01-18 01:58:51.939 UTC [common/configtx] addToMap -> DEBU 244 Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -2018-01-18 01:58:51.939 UTC [common/configtx] addToMap -> DEBU 245 Adding to config map: [Values] /Channel/Orderer/ConsensusType -2018-01-18 01:58:51.940 UTC [common/configtx] addToMap -> DEBU 246 Adding to config map: [Values] /Channel/Orderer/BatchSize -2018-01-18 01:58:51.940 UTC [common/configtx] addToMap -> DEBU 247 Adding to config map: [Policy] /Channel/Orderer/Writers -2018-01-18 01:58:51.940 UTC [common/configtx] addToMap -> DEBU 248 Adding to config map: [Policy] /Channel/Orderer/Admins -2018-01-18 01:58:51.940 UTC [common/configtx] addToMap -> DEBU 249 Adding to config map: [Policy] /Channel/Orderer/BlockValidation -2018-01-18 01:58:51.940 UTC [common/configtx] addToMap -> DEBU 24a Adding to config map: [Policy] /Channel/Orderer/Readers -2018-01-18 01:58:51.940 UTC [common/configtx] addToMap -> DEBU 24b Adding to config map: [Groups] /Channel/Application -2018-01-18 01:58:51.941 UTC [common/configtx] addToMap -> DEBU 24c Adding to config map: [Groups] /Channel/Application/Org1MSP -2018-01-18 01:58:51.941 UTC [common/configtx] addToMap -> DEBU 24d Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -2018-01-18 01:58:51.941 UTC [common/configtx] addToMap -> DEBU 24e Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -2018-01-18 01:58:51.941 UTC [common/configtx] addToMap -> DEBU 24f Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -2018-01-18 01:58:51.941 UTC [common/configtx] addToMap -> DEBU 250 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -2018-01-18 01:58:51.941 UTC [common/configtx] addToMap -> DEBU 251 Adding to config map: [Groups] /Channel/Application/Org2MSP -2018-01-18 01:58:51.942 UTC [common/configtx] addToMap -> DEBU 252 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -2018-01-18 01:58:51.942 UTC [common/configtx] addToMap -> DEBU 253 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -2018-01-18 01:58:51.942 UTC [common/configtx] addToMap -> DEBU 254 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -2018-01-18 01:58:51.942 UTC [common/configtx] addToMap -> DEBU 255 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -2018-01-18 01:58:51.942 UTC [common/configtx] addToMap -> DEBU 256 Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy -2018-01-18 01:58:51.942 UTC [common/configtx] addToMap -> DEBU 257 Adding to config map: [Values] /Channel/BlockDataHashingStructure -2018-01-18 01:58:51.942 UTC [common/configtx] addToMap -> DEBU 258 Adding to config map: [Values] /Channel/Consortium -2018-01-18 01:58:51.943 UTC [common/configtx] addToMap -> DEBU 259 Adding to config map: [Values] /Channel/OrdererAddresses -2018-01-18 01:58:51.943 UTC [common/configtx] addToMap -> DEBU 25a Adding to config map: [Values] /Channel/HashingAlgorithm -2018-01-18 01:58:51.943 UTC [common/configtx] addToMap -> DEBU 25b Adding to config map: [Policy] /Channel/Readers -2018-01-18 01:58:51.943 UTC [common/configtx] addToMap -> DEBU 25c Adding to config map: [Policy] /Channel/Writers -2018-01-18 01:58:51.944 UTC [common/configtx] addToMap -> DEBU 25d Adding to config map: [Policy] /Channel/Admins -2018-01-18 01:58:51.944 UTC [common/configtx] processConfig -> DEBU 25e Beginning new config for channel businesschannel -2018-01-18 01:58:51.944 UTC [common/config] NewStandardValues -> DEBU 25f Initializing protos for *config.ChannelProtos -2018-01-18 01:58:51.944 UTC [common/config] initializeProtosStruct -> DEBU 260 Processing field: HashingAlgorithm -2018-01-18 01:58:51.944 UTC [common/config] initializeProtosStruct -> DEBU 261 Processing field: BlockDataHashingStructure -2018-01-18 01:58:51.944 UTC [common/config] initializeProtosStruct -> DEBU 262 Processing field: OrdererAddresses -2018-01-18 01:58:51.945 UTC [common/config] initializeProtosStruct -> DEBU 263 Processing field: Consortium -2018-01-18 01:58:51.945 UTC [policies] ProposePolicy -> DEBU 264 Proposed new policy Readers for Channel -2018-01-18 01:58:51.945 UTC [policies] ProposePolicy -> DEBU 265 Proposed new policy Writers for Channel -2018-01-18 01:58:51.945 UTC [policies] ProposePolicy -> DEBU 266 Proposed new policy Admins for Channel -2018-01-18 01:58:51.945 UTC [common/config] NewStandardValues -> DEBU 267 Initializing protos for *config.OrdererProtos -2018-01-18 01:58:51.945 UTC [common/config] initializeProtosStruct -> DEBU 268 Processing field: ConsensusType -2018-01-18 01:58:51.945 UTC [common/config] initializeProtosStruct -> DEBU 269 Processing field: BatchSize -2018-01-18 01:58:51.946 UTC [common/config] initializeProtosStruct -> DEBU 26a Processing field: BatchTimeout -2018-01-18 01:58:51.946 UTC [common/config] initializeProtosStruct -> DEBU 26b Processing field: KafkaBrokers -2018-01-18 01:58:51.946 UTC [common/config] initializeProtosStruct -> DEBU 26c Processing field: ChannelRestrictions -2018-01-18 01:58:51.946 UTC [policies] ProposePolicy -> DEBU 26d Proposed new policy Readers for Orderer -2018-01-18 01:58:51.947 UTC [policies] ProposePolicy -> DEBU 26e Proposed new policy Writers for Orderer -2018-01-18 01:58:51.947 UTC [policies] ProposePolicy -> DEBU 26f Proposed new policy Admins for Orderer -2018-01-18 01:58:51.947 UTC [policies] ProposePolicy -> DEBU 270 Proposed new policy BlockValidation for Orderer -2018-01-18 01:58:51.948 UTC [common/config] NewStandardValues -> DEBU 271 Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:51.948 UTC [common/config] initializeProtosStruct -> DEBU 272 Processing field: MSP -2018-01-18 01:58:51.948 UTC [policies] ProposePolicy -> DEBU 273 Proposed new policy Writers for OrdererOrg -2018-01-18 01:58:51.948 UTC [policies] ProposePolicy -> DEBU 274 Proposed new policy Admins for OrdererOrg -2018-01-18 01:58:51.949 UTC [policies] ProposePolicy -> DEBU 275 Proposed new policy Readers for OrdererOrg -2018-01-18 01:58:51.949 UTC [common/config] NewStandardValues -> DEBU 276 Initializing protos for *struct {} -2018-01-18 01:58:51.949 UTC [policies] ProposePolicy -> DEBU 277 Proposed new policy ChannelCreationPolicy for Application -2018-01-18 01:58:51.949 UTC [common/config] NewStandardValues -> DEBU 278 Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:51.949 UTC [common/config] initializeProtosStruct -> DEBU 279 Processing field: MSP -2018-01-18 01:58:51.949 UTC [common/config] NewStandardValues -> DEBU 27a Initializing protos for *config.ApplicationOrgProtos -2018-01-18 01:58:51.949 UTC [common/config] initializeProtosStruct -> DEBU 27b Processing field: AnchorPeers -2018-01-18 01:58:51.950 UTC [common/config] NewStandardValues -> DEBU 27c Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:51.950 UTC [common/config] initializeProtosStruct -> DEBU 27d Processing field: MSP -2018-01-18 01:58:51.950 UTC [policies] ProposePolicy -> DEBU 27e Proposed new policy Writers for Org1MSP -2018-01-18 01:58:51.950 UTC [policies] ProposePolicy -> DEBU 27f Proposed new policy Admins for Org1MSP -2018-01-18 01:58:51.950 UTC [policies] ProposePolicy -> DEBU 280 Proposed new policy Readers for Org1MSP -2018-01-18 01:58:51.950 UTC [common/config] NewStandardValues -> DEBU 281 Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:51.950 UTC [common/config] initializeProtosStruct -> DEBU 282 Processing field: MSP -2018-01-18 01:58:51.950 UTC [common/config] NewStandardValues -> DEBU 283 Initializing protos for *config.ApplicationOrgProtos -2018-01-18 01:58:51.951 UTC [common/config] initializeProtosStruct -> DEBU 284 Processing field: AnchorPeers -2018-01-18 01:58:51.951 UTC [common/config] NewStandardValues -> DEBU 285 Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:51.951 UTC [common/config] initializeProtosStruct -> DEBU 286 Processing field: MSP -2018-01-18 01:58:51.951 UTC [policies] ProposePolicy -> DEBU 287 Proposed new policy Admins for Org2MSP -2018-01-18 01:58:51.951 UTC [policies] ProposePolicy -> DEBU 288 Proposed new policy Readers for Org2MSP -2018-01-18 01:58:51.951 UTC [policies] ProposePolicy -> DEBU 289 Proposed new policy Writers for Org2MSP -2018-01-18 01:58:51.952 UTC [common/config] validateMSP -> DEBU 28a Setting up MSP for org OrdererOrg -2018-01-18 01:58:51.952 UTC [msp] NewBccspMsp -> DEBU 28b Creating BCCSP-based MSP instance -2018-01-18 01:58:51.952 UTC [msp] Setup -> DEBU 28c Setting up MSP instance OrdererMSP -2018-01-18 01:58:51.952 UTC [msp/identity] newIdentity -> DEBU 28d Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:43.879 UTC [msp] SatisfiesPrincipal -> DEBU 222 Checking if identity satisfies MEMBER role for OrdererMSP +2018-01-18 09:29:43.879 UTC [msp] Validate -> DEBU 223 MSP OrdererMSP validating identity +2018-01-18 09:29:43.880 UTC [cauthdsl] func2 -> DEBU 224 0xc420026d28 principal matched by identity 0 +2018-01-18 09:29:43.880 UTC [msp/identity] Verify -> DEBU 225 Verify: digest = 00000000 b5 0e a3 4a bc d8 ae fc ce f9 26 18 ae 87 b2 56 |...J......&....V| +00000010 a8 63 01 bc e0 c1 4c b8 83 70 56 e3 e8 d5 86 bc |.c....L..pV.....| +2018-01-18 09:29:43.880 UTC [msp/identity] Verify -> DEBU 226 Verify: sig = 00000000 30 45 02 21 00 b7 4d ae e7 de c0 7a 42 8c aa fb |0E.!..M....zB...| +00000010 1c c8 34 20 f4 dc 17 30 c8 8f d8 cf 3b 20 ea d5 |..4 ...0....; ..| +00000020 cb 94 ce 1b 1e 02 20 4d a8 cf db 60 ce fd 3d ca |...... M...`..=.| +00000030 87 0a 42 4c 3e 9a 71 10 b0 ee 3f 1a 3f 40 b5 81 |..BL>.q...?.?@..| +00000040 9a 87 ba 88 52 27 46 |....R'F| +2018-01-18 09:29:43.880 UTC [cauthdsl] func2 -> DEBU 227 0xc420026d28 principal evaluation succeeds for identity 0 +2018-01-18 09:29:43.880 UTC [cauthdsl] func1 -> DEBU 228 0xc420026d28 gate 1516267783878178619 evaluation succeeds +2018-01-18 09:29:43.880 UTC [orderer/common/sigfilter] Apply -> DEBU 229 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [Writers %!s(*policies.implicitMetaPolicy=&{0xc420371d80 1 [0xc420026490]})]} +2018-01-18 09:29:43.881 UTC [msp] GetLocalMSP -> DEBU 22a Returning existing local MSP +2018-01-18 09:29:43.881 UTC [msp] GetDefaultSigningIdentity -> DEBU 22b Obtaining default signing identity +2018-01-18 09:29:43.881 UTC [msp] GetLocalMSP -> DEBU 22c Returning existing local MSP +2018-01-18 09:29:43.881 UTC [msp] GetDefaultSigningIdentity -> DEBU 22d Obtaining default signing identity +2018-01-18 09:29:43.882 UTC [msp/identity] Sign -> DEBU 22e Sign: plaintext: 0AB7060A1B08011A060887D281D30522...41646D696E7310021A0641646D696E73 +2018-01-18 09:29:43.882 UTC [msp/identity] Sign -> DEBU 22f Sign: digest: BA4F5A0F436FBAD5C9272CC5413A6356B56057DF8EF33F85D0E0A73BFA465BDC +2018-01-18 09:29:43.882 UTC [common/config] NewStandardValues -> DEBU 230 Initializing protos for *config.ChannelProtos +2018-01-18 09:29:43.882 UTC [common/config] initializeProtosStruct -> DEBU 231 Processing field: HashingAlgorithm +2018-01-18 09:29:43.882 UTC [common/config] initializeProtosStruct -> DEBU 232 Processing field: BlockDataHashingStructure +2018-01-18 09:29:43.883 UTC [common/config] initializeProtosStruct -> DEBU 233 Processing field: OrdererAddresses +2018-01-18 09:29:43.883 UTC [common/config] initializeProtosStruct -> DEBU 234 Processing field: Consortium +2018-01-18 09:29:43.883 UTC [common/configtx] addToMap -> DEBU 235 Adding to config map: [Groups] /Channel +2018-01-18 09:29:43.883 UTC [common/configtx] addToMap -> DEBU 236 Adding to config map: [Groups] /Channel/Application +2018-01-18 09:29:43.883 UTC [common/configtx] addToMap -> DEBU 237 Adding to config map: [Groups] /Channel/Application/Org2MSP +2018-01-18 09:29:43.883 UTC [common/configtx] addToMap -> DEBU 238 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +2018-01-18 09:29:43.884 UTC [common/configtx] addToMap -> DEBU 239 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +2018-01-18 09:29:43.884 UTC [common/configtx] addToMap -> DEBU 23a Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +2018-01-18 09:29:43.884 UTC [common/configtx] addToMap -> DEBU 23b Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +2018-01-18 09:29:43.884 UTC [common/configtx] addToMap -> DEBU 23c Adding to config map: [Groups] /Channel/Application/Org1MSP +2018-01-18 09:29:43.884 UTC [common/configtx] addToMap -> DEBU 23d Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +2018-01-18 09:29:43.884 UTC [common/configtx] addToMap -> DEBU 23e Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +2018-01-18 09:29:43.885 UTC [common/configtx] addToMap -> DEBU 23f Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +2018-01-18 09:29:43.885 UTC [common/configtx] addToMap -> DEBU 240 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +2018-01-18 09:29:43.885 UTC [common/configtx] addToMap -> DEBU 241 Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy +2018-01-18 09:29:43.885 UTC [common/configtx] addToMap -> DEBU 242 Adding to config map: [Groups] /Channel/Orderer +2018-01-18 09:29:43.885 UTC [common/configtx] addToMap -> DEBU 243 Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +2018-01-18 09:29:43.886 UTC [common/configtx] addToMap -> DEBU 244 Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +2018-01-18 09:29:43.886 UTC [common/configtx] addToMap -> DEBU 245 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +2018-01-18 09:29:43.887 UTC [common/configtx] addToMap -> DEBU 246 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +2018-01-18 09:29:43.888 UTC [common/configtx] addToMap -> DEBU 247 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +2018-01-18 09:29:43.888 UTC [common/configtx] addToMap -> DEBU 248 Adding to config map: [Values] /Channel/Orderer/BatchTimeout +2018-01-18 09:29:43.888 UTC [common/configtx] addToMap -> DEBU 249 Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +2018-01-18 09:29:43.889 UTC [common/configtx] addToMap -> DEBU 24a Adding to config map: [Values] /Channel/Orderer/ConsensusType +2018-01-18 09:29:43.890 UTC [common/configtx] addToMap -> DEBU 24b Adding to config map: [Values] /Channel/Orderer/BatchSize +2018-01-18 09:29:43.890 UTC [common/configtx] addToMap -> DEBU 24c Adding to config map: [Policy] /Channel/Orderer/Writers +2018-01-18 09:29:43.890 UTC [common/configtx] addToMap -> DEBU 24d Adding to config map: [Policy] /Channel/Orderer/Admins +2018-01-18 09:29:43.891 UTC [common/configtx] addToMap -> DEBU 24e Adding to config map: [Policy] /Channel/Orderer/BlockValidation +2018-01-18 09:29:43.891 UTC [common/configtx] addToMap -> DEBU 24f Adding to config map: [Policy] /Channel/Orderer/Readers +2018-01-18 09:29:43.892 UTC [common/configtx] addToMap -> DEBU 250 Adding to config map: [Values] /Channel/Consortium +2018-01-18 09:29:43.892 UTC [common/configtx] addToMap -> DEBU 251 Adding to config map: [Values] /Channel/BlockDataHashingStructure +2018-01-18 09:29:43.892 UTC [common/configtx] addToMap -> DEBU 252 Adding to config map: [Values] /Channel/OrdererAddresses +2018-01-18 09:29:43.892 UTC [common/configtx] addToMap -> DEBU 253 Adding to config map: [Values] /Channel/HashingAlgorithm +2018-01-18 09:29:43.892 UTC [common/configtx] addToMap -> DEBU 254 Adding to config map: [Policy] /Channel/Readers +2018-01-18 09:29:43.892 UTC [common/configtx] addToMap -> DEBU 255 Adding to config map: [Policy] /Channel/Writers +2018-01-18 09:29:43.892 UTC [common/configtx] addToMap -> DEBU 256 Adding to config map: [Policy] /Channel/Admins +2018-01-18 09:29:43.892 UTC [common/configtx] processConfig -> DEBU 257 Beginning new config for channel businesschannel +2018-01-18 09:29:43.893 UTC [common/config] NewStandardValues -> DEBU 258 Initializing protos for *config.ChannelProtos +2018-01-18 09:29:43.893 UTC [common/config] initializeProtosStruct -> DEBU 259 Processing field: HashingAlgorithm +2018-01-18 09:29:43.893 UTC [common/config] initializeProtosStruct -> DEBU 25a Processing field: BlockDataHashingStructure +2018-01-18 09:29:43.894 UTC [common/config] initializeProtosStruct -> DEBU 25b Processing field: OrdererAddresses +2018-01-18 09:29:43.894 UTC [common/config] initializeProtosStruct -> DEBU 25c Processing field: Consortium +2018-01-18 09:29:43.894 UTC [policies] ProposePolicy -> DEBU 25d Proposed new policy Readers for Channel +2018-01-18 09:29:43.894 UTC [policies] ProposePolicy -> DEBU 25e Proposed new policy Writers for Channel +2018-01-18 09:29:43.894 UTC [policies] ProposePolicy -> DEBU 25f Proposed new policy Admins for Channel +2018-01-18 09:29:43.894 UTC [common/config] NewStandardValues -> DEBU 260 Initializing protos for *config.OrdererProtos +2018-01-18 09:29:43.894 UTC [common/config] initializeProtosStruct -> DEBU 261 Processing field: ConsensusType +2018-01-18 09:29:43.894 UTC [common/config] initializeProtosStruct -> DEBU 262 Processing field: BatchSize +2018-01-18 09:29:43.895 UTC [common/config] initializeProtosStruct -> DEBU 263 Processing field: BatchTimeout +2018-01-18 09:29:43.895 UTC [common/config] initializeProtosStruct -> DEBU 264 Processing field: KafkaBrokers +2018-01-18 09:29:43.895 UTC [common/config] initializeProtosStruct -> DEBU 265 Processing field: ChannelRestrictions +2018-01-18 09:29:43.895 UTC [policies] ProposePolicy -> DEBU 266 Proposed new policy Writers for Orderer +2018-01-18 09:29:43.895 UTC [policies] ProposePolicy -> DEBU 267 Proposed new policy Admins for Orderer +2018-01-18 09:29:43.895 UTC [policies] ProposePolicy -> DEBU 268 Proposed new policy BlockValidation for Orderer +2018-01-18 09:29:43.895 UTC [policies] ProposePolicy -> DEBU 269 Proposed new policy Readers for Orderer +2018-01-18 09:29:43.895 UTC [common/config] NewStandardValues -> DEBU 26a Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:43.895 UTC [common/config] initializeProtosStruct -> DEBU 26b Processing field: MSP +2018-01-18 09:29:43.895 UTC [policies] ProposePolicy -> DEBU 26c Proposed new policy Admins for OrdererOrg +2018-01-18 09:29:43.895 UTC [policies] ProposePolicy -> DEBU 26d Proposed new policy Readers for OrdererOrg +2018-01-18 09:29:43.895 UTC [policies] ProposePolicy -> DEBU 26e Proposed new policy Writers for OrdererOrg +2018-01-18 09:29:43.895 UTC [common/config] NewStandardValues -> DEBU 26f Initializing protos for *struct {} +2018-01-18 09:29:43.895 UTC [policies] ProposePolicy -> DEBU 270 Proposed new policy ChannelCreationPolicy for Application +2018-01-18 09:29:43.895 UTC [common/config] NewStandardValues -> DEBU 271 Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:43.895 UTC [common/config] initializeProtosStruct -> DEBU 272 Processing field: MSP +2018-01-18 09:29:43.895 UTC [common/config] NewStandardValues -> DEBU 273 Initializing protos for *config.ApplicationOrgProtos +2018-01-18 09:29:43.896 UTC [common/config] initializeProtosStruct -> DEBU 274 Processing field: AnchorPeers +2018-01-18 09:29:43.896 UTC [common/config] NewStandardValues -> DEBU 275 Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:43.896 UTC [common/config] initializeProtosStruct -> DEBU 276 Processing field: MSP +2018-01-18 09:29:43.896 UTC [policies] ProposePolicy -> DEBU 277 Proposed new policy Admins for Org1MSP +2018-01-18 09:29:43.896 UTC [policies] ProposePolicy -> DEBU 278 Proposed new policy Readers for Org1MSP +2018-01-18 09:29:43.896 UTC [policies] ProposePolicy -> DEBU 279 Proposed new policy Writers for Org1MSP +2018-01-18 09:29:43.896 UTC [common/config] NewStandardValues -> DEBU 27a Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:43.897 UTC [common/config] initializeProtosStruct -> DEBU 27b Processing field: MSP +2018-01-18 09:29:43.897 UTC [common/config] NewStandardValues -> DEBU 27c Initializing protos for *config.ApplicationOrgProtos +2018-01-18 09:29:43.897 UTC [common/config] initializeProtosStruct -> DEBU 27d Processing field: AnchorPeers +2018-01-18 09:29:43.897 UTC [common/config] NewStandardValues -> DEBU 27e Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:43.897 UTC [common/config] initializeProtosStruct -> DEBU 27f Processing field: MSP +2018-01-18 09:29:43.897 UTC [policies] ProposePolicy -> DEBU 280 Proposed new policy Admins for Org2MSP +2018-01-18 09:29:43.897 UTC [policies] ProposePolicy -> DEBU 281 Proposed new policy Readers for Org2MSP +2018-01-18 09:29:43.897 UTC [policies] ProposePolicy -> DEBU 282 Proposed new policy Writers for Org2MSP +2018-01-18 09:29:43.897 UTC [common/config] validateMSP -> DEBU 283 Setting up MSP for org OrdererOrg +2018-01-18 09:29:43.897 UTC [msp] NewBccspMsp -> DEBU 284 Creating BCCSP-based MSP instance +2018-01-18 09:29:43.897 UTC [msp] Setup -> DEBU 285 Setting up MSP instance OrdererMSP +2018-01-18 09:29:43.898 UTC [msp/identity] newIdentity -> DEBU 286 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -1129,7 +1109,7 @@ AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= -----END CERTIFICATE----- -2018-01-18 01:58:51.954 UTC [msp/identity] newIdentity -> DEBU 28e Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:43.898 UTC [msp/identity] newIdentity -> DEBU 287 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -1142,7 +1122,7 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -----END CERTIFICATE----- -2018-01-18 01:58:51.955 UTC [msp/identity] newIdentity -> DEBU 28f Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:43.899 UTC [msp/identity] newIdentity -> DEBU 288 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -1155,12 +1135,12 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -----END CERTIFICATE----- -2018-01-18 01:58:51.955 UTC [msp] Validate -> DEBU 290 MSP OrdererMSP validating identity -2018-01-18 01:58:51.955 UTC [common/config] Validate -> DEBU 291 Anchor peers for org Org1MSP are -2018-01-18 01:58:51.955 UTC [common/config] validateMSP -> DEBU 292 Setting up MSP for org Org1MSP -2018-01-18 01:58:51.955 UTC [msp] NewBccspMsp -> DEBU 293 Creating BCCSP-based MSP instance -2018-01-18 01:58:51.955 UTC [msp] Setup -> DEBU 294 Setting up MSP instance Org1MSP -2018-01-18 01:58:51.956 UTC [msp/identity] newIdentity -> DEBU 295 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:43.901 UTC [msp] Validate -> DEBU 289 MSP OrdererMSP validating identity +2018-01-18 09:29:43.905 UTC [common/config] Validate -> DEBU 28a Anchor peers for org Org1MSP are +2018-01-18 09:29:43.905 UTC [common/config] validateMSP -> DEBU 28b Setting up MSP for org Org1MSP +2018-01-18 09:29:43.905 UTC [msp] NewBccspMsp -> DEBU 28c Creating BCCSP-based MSP instance +2018-01-18 09:29:43.906 UTC [msp] Setup -> DEBU 28d Setting up MSP instance Org1MSP +2018-01-18 09:29:43.906 UTC [msp/identity] newIdentity -> DEBU 28e Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -1175,7 +1155,7 @@ JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ H7n8z1pj5w== -----END CERTIFICATE----- -2018-01-18 01:58:51.956 UTC [msp/identity] newIdentity -> DEBU 296 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:43.907 UTC [msp/identity] newIdentity -> DEBU 28f Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -1189,7 +1169,7 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-18 01:58:51.957 UTC [msp/identity] newIdentity -> DEBU 297 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:43.908 UTC [msp/identity] newIdentity -> DEBU 290 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -1203,12 +1183,12 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-18 01:58:51.958 UTC [msp] Validate -> DEBU 298 MSP Org1MSP validating identity -2018-01-18 01:58:51.958 UTC [common/config] Validate -> DEBU 299 Anchor peers for org Org2MSP are -2018-01-18 01:58:51.958 UTC [common/config] validateMSP -> DEBU 29a Setting up MSP for org Org2MSP -2018-01-18 01:58:51.959 UTC [msp] NewBccspMsp -> DEBU 29b Creating BCCSP-based MSP instance -2018-01-18 01:58:51.959 UTC [msp] Setup -> DEBU 29c Setting up MSP instance Org2MSP -2018-01-18 01:58:51.959 UTC [msp/identity] newIdentity -> DEBU 29d Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:43.909 UTC [msp] Validate -> DEBU 291 MSP Org1MSP validating identity +2018-01-18 09:29:43.909 UTC [common/config] Validate -> DEBU 292 Anchor peers for org Org2MSP are +2018-01-18 09:29:43.909 UTC [common/config] validateMSP -> DEBU 293 Setting up MSP for org Org2MSP +2018-01-18 09:29:43.910 UTC [msp] NewBccspMsp -> DEBU 294 Creating BCCSP-based MSP instance +2018-01-18 09:29:43.910 UTC [msp] Setup -> DEBU 295 Setting up MSP instance Org2MSP +2018-01-18 09:29:43.910 UTC [msp/identity] newIdentity -> DEBU 296 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -1223,7 +1203,7 @@ xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk SCjyRdD3aQ== -----END CERTIFICATE----- -2018-01-18 01:58:51.960 UTC [msp/identity] newIdentity -> DEBU 29e Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:43.912 UTC [msp/identity] newIdentity -> DEBU 297 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -1237,7 +1217,7 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS AXYxULZpXYDQXt1KaLI= -----END CERTIFICATE----- -2018-01-18 01:58:51.960 UTC [msp/identity] newIdentity -> DEBU 29f Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:43.913 UTC [msp/identity] newIdentity -> DEBU 298 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -1251,85 +1231,85 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS AXYxULZpXYDQXt1KaLI= -----END CERTIFICATE----- -2018-01-18 01:58:51.961 UTC [msp] Validate -> DEBU 2a0 MSP Org2MSP validating identity -2018-01-18 01:58:51.961 UTC [msp] Setup -> DEBU 2a1 Setting up the MSP manager (3 msps) -2018-01-18 01:58:51.961 UTC [msp] Setup -> DEBU 2a2 MSP manager setup complete, setup 3 msps -2018-01-18 01:58:51.961 UTC [policies] GetPolicy -> DEBU 2a3 Returning policy Readers for evaluation -2018-01-18 01:58:51.961 UTC [policies] CommitProposals -> DEBU 2a4 In commit adding relative sub-policy OrdererOrg/Readers to Orderer -2018-01-18 01:58:51.961 UTC [policies] GetPolicy -> DEBU 2a5 Returning policy Writers for evaluation -2018-01-18 01:58:51.961 UTC [policies] CommitProposals -> DEBU 2a6 In commit adding relative sub-policy OrdererOrg/Writers to Orderer -2018-01-18 01:58:51.961 UTC [policies] GetPolicy -> DEBU 2a7 Returning policy Admins for evaluation -2018-01-18 01:58:51.961 UTC [policies] CommitProposals -> DEBU 2a8 In commit adding relative sub-policy OrdererOrg/Admins to Orderer -2018-01-18 01:58:51.961 UTC [policies] GetPolicy -> DEBU 2a9 Returning policy Readers for evaluation -2018-01-18 01:58:51.961 UTC [policies] GetPolicy -> DEBU 2aa Returning policy Writers for evaluation -2018-01-18 01:58:51.961 UTC [policies] GetPolicy -> DEBU 2ab Returning policy Admins for evaluation -2018-01-18 01:58:51.961 UTC [policies] GetPolicy -> DEBU 2ac Returning policy Writers for evaluation -2018-01-18 01:58:51.961 UTC [policies] GetPolicy -> DEBU 2ad Returning policy Admins for evaluation -2018-01-18 01:58:51.961 UTC [policies] CommitProposals -> DEBU 2ae In commit adding relative sub-policy Org2MSP/Admins to Application -2018-01-18 01:58:51.961 UTC [policies] GetPolicy -> DEBU 2af Returning policy Readers for evaluation -2018-01-18 01:58:51.961 UTC [policies] CommitProposals -> DEBU 2b0 In commit adding relative sub-policy Org2MSP/Readers to Application -2018-01-18 01:58:51.962 UTC [policies] GetPolicy -> DEBU 2b1 Returning policy Writers for evaluation -2018-01-18 01:58:51.962 UTC [policies] CommitProposals -> DEBU 2b2 In commit adding relative sub-policy Org2MSP/Writers to Application -2018-01-18 01:58:51.962 UTC [policies] GetPolicy -> DEBU 2b3 Returning policy Writers for evaluation -2018-01-18 01:58:51.962 UTC [policies] CommitProposals -> DEBU 2b4 In commit adding relative sub-policy Org1MSP/Writers to Application -2018-01-18 01:58:51.962 UTC [policies] GetPolicy -> DEBU 2b5 Returning policy Admins for evaluation -2018-01-18 01:58:51.962 UTC [policies] CommitProposals -> DEBU 2b6 In commit adding relative sub-policy Org1MSP/Admins to Application -2018-01-18 01:58:51.962 UTC [policies] GetPolicy -> DEBU 2b7 Returning policy Readers for evaluation -2018-01-18 01:58:51.962 UTC [policies] CommitProposals -> DEBU 2b8 In commit adding relative sub-policy Org1MSP/Readers to Application -2018-01-18 01:58:51.962 UTC [policies] GetPolicy -> DEBU 2b9 Returning policy Admins for evaluation -2018-01-18 01:58:51.962 UTC [policies] GetPolicy -> DEBU 2ba Returning policy Admins for evaluation -2018-01-18 01:58:51.962 UTC [policies] GetPolicy -> DEBU 2bb Returning policy BlockValidation for evaluation -2018-01-18 01:58:51.962 UTC [policies] CommitProposals -> DEBU 2bc In commit adding relative sub-policy Orderer/BlockValidation to Channel -2018-01-18 01:58:51.962 UTC [policies] GetPolicy -> DEBU 2bd Returning policy OrdererOrg/Readers for evaluation -2018-01-18 01:58:51.962 UTC [policies] CommitProposals -> DEBU 2be In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -2018-01-18 01:58:51.962 UTC [policies] GetPolicy -> DEBU 2bf Returning policy OrdererOrg/Writers for evaluation -2018-01-18 01:58:51.962 UTC [policies] CommitProposals -> DEBU 2c0 In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -2018-01-18 01:58:51.962 UTC [policies] GetPolicy -> DEBU 2c1 Returning policy OrdererOrg/Admins for evaluation -2018-01-18 01:58:51.962 UTC [policies] CommitProposals -> DEBU 2c2 In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -2018-01-18 01:58:51.962 UTC [policies] GetPolicy -> DEBU 2c3 Returning policy Readers for evaluation -2018-01-18 01:58:51.962 UTC [policies] CommitProposals -> DEBU 2c4 In commit adding relative sub-policy Orderer/Readers to Channel -2018-01-18 01:58:51.962 UTC [policies] GetPolicy -> DEBU 2c5 Returning policy Writers for evaluation -2018-01-18 01:58:51.962 UTC [policies] CommitProposals -> DEBU 2c6 In commit adding relative sub-policy Orderer/Writers to Channel -2018-01-18 01:58:51.962 UTC [policies] GetPolicy -> DEBU 2c7 Returning policy Admins for evaluation -2018-01-18 01:58:51.962 UTC [policies] CommitProposals -> DEBU 2c8 In commit adding relative sub-policy Orderer/Admins to Channel -2018-01-18 01:58:51.962 UTC [policies] GetPolicy -> DEBU 2c9 Returning policy Org1MSP/Admins for evaluation -2018-01-18 01:58:51.962 UTC [policies] CommitProposals -> DEBU 2ca In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -2018-01-18 01:58:51.962 UTC [policies] GetPolicy -> DEBU 2cb Returning policy Org1MSP/Readers for evaluation -2018-01-18 01:58:51.962 UTC [policies] CommitProposals -> DEBU 2cc In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -2018-01-18 01:58:51.962 UTC [policies] GetPolicy -> DEBU 2cd Returning policy ChannelCreationPolicy for evaluation -2018-01-18 01:58:51.962 UTC [policies] CommitProposals -> DEBU 2ce In commit adding relative sub-policy Application/ChannelCreationPolicy to Channel -2018-01-18 01:58:51.962 UTC [policies] GetPolicy -> DEBU 2cf Returning policy Org2MSP/Admins for evaluation -2018-01-18 01:58:51.962 UTC [policies] CommitProposals -> DEBU 2d0 In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -2018-01-18 01:58:51.962 UTC [policies] GetPolicy -> DEBU 2d1 Returning policy Org2MSP/Readers for evaluation -2018-01-18 01:58:51.962 UTC [policies] CommitProposals -> DEBU 2d2 In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -2018-01-18 01:58:51.962 UTC [policies] GetPolicy -> DEBU 2d3 Returning policy Org2MSP/Writers for evaluation -2018-01-18 01:58:51.962 UTC [policies] CommitProposals -> DEBU 2d4 In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -2018-01-18 01:58:51.962 UTC [policies] GetPolicy -> DEBU 2d5 Returning policy Org1MSP/Writers for evaluation -2018-01-18 01:58:51.962 UTC [policies] CommitProposals -> DEBU 2d6 In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -2018-01-18 01:58:51.962 UTC [policies] GetPolicy -> DEBU 2d7 Returning policy Readers for evaluation -2018-01-18 01:58:51.962 UTC [policies] GetPolicy -> DEBU 2d8 Returning dummy reject all policy because Readers could not be found in /Application/Readers -2018-01-18 01:58:51.962 UTC [policies] GetPolicy -> DEBU 2d9 Returning dummy reject all policy because Writers could not be found in /Application/Writers -2018-01-18 01:58:51.962 UTC [policies] GetPolicy -> DEBU 2da Returning policy Writers for evaluation -2018-01-18 01:58:51.962 UTC [policies] GetPolicy -> DEBU 2db Returning policy Admins for evaluation -2018-01-18 01:58:51.962 UTC [policies] GetPolicy -> DEBU 2dc Returning dummy reject all policy because Admins could not be found in /Application/Admins -2018-01-18 01:58:51.963 UTC [common/configtx] addToMap -> DEBU 2dd Adding to config map: [Groups] /Channel -2018-01-18 01:58:51.963 UTC [common/configtx] addToMap -> DEBU 2de Adding to config map: [Groups] /Channel/Application -2018-01-18 01:58:51.963 UTC [common/configtx] addToMap -> DEBU 2df Adding to config map: [Groups] /Channel/Application/Org1MSP -2018-01-18 01:58:51.963 UTC [common/configtx] addToMap -> DEBU 2e0 Adding to config map: [Groups] /Channel/Application/Org2MSP -2018-01-18 01:58:51.963 UTC [common/configtx] addToMap -> DEBU 2e1 Adding to config map: [Values] /Channel/Consortium -2018-01-18 01:58:51.963 UTC [common/configtx] addToMap -> DEBU 2e2 Adding to config map: [Groups] /Channel -2018-01-18 01:58:51.963 UTC [common/configtx] addToMap -> DEBU 2e3 Adding to config map: [Groups] /Channel/Application -2018-01-18 01:58:51.963 UTC [common/configtx] addToMap -> DEBU 2e4 Adding to config map: [Groups] /Channel/Application/Org1MSP -2018-01-18 01:58:51.963 UTC [common/configtx] addToMap -> DEBU 2e5 Adding to config map: [Groups] /Channel/Application/Org2MSP -2018-01-18 01:58:51.963 UTC [common/configtx] addToMap -> DEBU 2e6 Adding to config map: [Policy] /Channel/Application/Admins -2018-01-18 01:58:51.963 UTC [common/configtx] addToMap -> DEBU 2e7 Adding to config map: [Policy] /Channel/Application/Writers -2018-01-18 01:58:51.963 UTC [common/configtx] addToMap -> DEBU 2e8 Adding to config map: [Policy] /Channel/Application/Readers -2018-01-18 01:58:51.963 UTC [common/configtx] addToMap -> DEBU 2e9 Adding to config map: [Values] /Channel/Consortium -2018-01-18 01:58:51.963 UTC [policies] GetPolicy -> DEBU 2ea Returning policy ChannelCreationPolicy for evaluation -2018-01-18 01:58:51.963 UTC [cauthdsl] func1 -> DEBU 2eb 0xc42014a990 gate 1516240731963650109 evaluation starts -2018-01-18 01:58:51.963 UTC [cauthdsl] func2 -> DEBU 2ec 0xc42014a990 signed by 0 principal evaluation starts (used [false]) -2018-01-18 01:58:51.963 UTC [cauthdsl] func2 -> DEBU 2ed 0xc42014a990 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-18 01:58:51.963 UTC [msp/identity] newIdentity -> DEBU 2ee Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:43.915 UTC [msp] Validate -> DEBU 299 MSP Org2MSP validating identity +2018-01-18 09:29:43.915 UTC [msp] Setup -> DEBU 29a Setting up the MSP manager (3 msps) +2018-01-18 09:29:43.916 UTC [msp] Setup -> DEBU 29b MSP manager setup complete, setup 3 msps +2018-01-18 09:29:43.916 UTC [policies] GetPolicy -> DEBU 29c Returning policy Admins for evaluation +2018-01-18 09:29:43.916 UTC [policies] CommitProposals -> DEBU 29d In commit adding relative sub-policy OrdererOrg/Admins to Orderer +2018-01-18 09:29:43.916 UTC [policies] GetPolicy -> DEBU 29e Returning policy Readers for evaluation +2018-01-18 09:29:43.916 UTC [policies] CommitProposals -> DEBU 29f In commit adding relative sub-policy OrdererOrg/Readers to Orderer +2018-01-18 09:29:43.916 UTC [policies] GetPolicy -> DEBU 2a0 Returning policy Writers for evaluation +2018-01-18 09:29:43.916 UTC [policies] CommitProposals -> DEBU 2a1 In commit adding relative sub-policy OrdererOrg/Writers to Orderer +2018-01-18 09:29:43.917 UTC [policies] GetPolicy -> DEBU 2a2 Returning policy Writers for evaluation +2018-01-18 09:29:43.917 UTC [policies] GetPolicy -> DEBU 2a3 Returning policy Admins for evaluation +2018-01-18 09:29:43.917 UTC [policies] GetPolicy -> DEBU 2a4 Returning policy Writers for evaluation +2018-01-18 09:29:43.917 UTC [policies] GetPolicy -> DEBU 2a5 Returning policy Readers for evaluation +2018-01-18 09:29:43.917 UTC [policies] GetPolicy -> DEBU 2a6 Returning policy Admins for evaluation +2018-01-18 09:29:43.917 UTC [policies] CommitProposals -> DEBU 2a7 In commit adding relative sub-policy Org1MSP/Admins to Application +2018-01-18 09:29:43.917 UTC [policies] GetPolicy -> DEBU 2a8 Returning policy Readers for evaluation +2018-01-18 09:29:43.917 UTC [policies] CommitProposals -> DEBU 2a9 In commit adding relative sub-policy Org1MSP/Readers to Application +2018-01-18 09:29:43.917 UTC [policies] GetPolicy -> DEBU 2aa Returning policy Writers for evaluation +2018-01-18 09:29:43.917 UTC [policies] CommitProposals -> DEBU 2ab In commit adding relative sub-policy Org1MSP/Writers to Application +2018-01-18 09:29:43.918 UTC [policies] GetPolicy -> DEBU 2ac Returning policy Admins for evaluation +2018-01-18 09:29:43.918 UTC [policies] CommitProposals -> DEBU 2ad In commit adding relative sub-policy Org2MSP/Admins to Application +2018-01-18 09:29:43.918 UTC [policies] GetPolicy -> DEBU 2ae Returning policy Readers for evaluation +2018-01-18 09:29:43.918 UTC [policies] CommitProposals -> DEBU 2af In commit adding relative sub-policy Org2MSP/Readers to Application +2018-01-18 09:29:43.918 UTC [policies] GetPolicy -> DEBU 2b0 Returning policy Writers for evaluation +2018-01-18 09:29:43.919 UTC [policies] CommitProposals -> DEBU 2b1 In commit adding relative sub-policy Org2MSP/Writers to Application +2018-01-18 09:29:43.919 UTC [policies] GetPolicy -> DEBU 2b2 Returning policy Admins for evaluation +2018-01-18 09:29:43.919 UTC [policies] GetPolicy -> DEBU 2b3 Returning policy Admins for evaluation +2018-01-18 09:29:43.919 UTC [policies] GetPolicy -> DEBU 2b4 Returning policy Writers for evaluation +2018-01-18 09:29:43.919 UTC [policies] CommitProposals -> DEBU 2b5 In commit adding relative sub-policy Orderer/Writers to Channel +2018-01-18 09:29:43.919 UTC [policies] GetPolicy -> DEBU 2b6 Returning policy Admins for evaluation +2018-01-18 09:29:43.919 UTC [policies] CommitProposals -> DEBU 2b7 In commit adding relative sub-policy Orderer/Admins to Channel +2018-01-18 09:29:43.920 UTC [policies] GetPolicy -> DEBU 2b8 Returning policy BlockValidation for evaluation +2018-01-18 09:29:43.921 UTC [policies] CommitProposals -> DEBU 2b9 In commit adding relative sub-policy Orderer/BlockValidation to Channel +2018-01-18 09:29:43.922 UTC [policies] GetPolicy -> DEBU 2ba Returning policy Readers for evaluation +2018-01-18 09:29:43.922 UTC [policies] CommitProposals -> DEBU 2bb In commit adding relative sub-policy Orderer/Readers to Channel +2018-01-18 09:29:43.922 UTC [policies] GetPolicy -> DEBU 2bc Returning policy OrdererOrg/Admins for evaluation +2018-01-18 09:29:43.922 UTC [policies] CommitProposals -> DEBU 2bd In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +2018-01-18 09:29:43.923 UTC [policies] GetPolicy -> DEBU 2be Returning policy OrdererOrg/Readers for evaluation +2018-01-18 09:29:43.923 UTC [policies] CommitProposals -> DEBU 2bf In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +2018-01-18 09:29:43.923 UTC [policies] GetPolicy -> DEBU 2c0 Returning policy OrdererOrg/Writers for evaluation +2018-01-18 09:29:43.923 UTC [policies] CommitProposals -> DEBU 2c1 In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +2018-01-18 09:29:43.923 UTC [policies] GetPolicy -> DEBU 2c2 Returning policy Org2MSP/Admins for evaluation +2018-01-18 09:29:43.923 UTC [policies] CommitProposals -> DEBU 2c3 In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +2018-01-18 09:29:43.923 UTC [policies] GetPolicy -> DEBU 2c4 Returning policy Org2MSP/Readers for evaluation +2018-01-18 09:29:43.924 UTC [policies] CommitProposals -> DEBU 2c5 In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +2018-01-18 09:29:43.924 UTC [policies] GetPolicy -> DEBU 2c6 Returning policy Org2MSP/Writers for evaluation +2018-01-18 09:29:43.924 UTC [policies] CommitProposals -> DEBU 2c7 In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +2018-01-18 09:29:43.924 UTC [policies] GetPolicy -> DEBU 2c8 Returning policy ChannelCreationPolicy for evaluation +2018-01-18 09:29:43.924 UTC [policies] CommitProposals -> DEBU 2c9 In commit adding relative sub-policy Application/ChannelCreationPolicy to Channel +2018-01-18 09:29:43.924 UTC [policies] GetPolicy -> DEBU 2ca Returning policy Org1MSP/Admins for evaluation +2018-01-18 09:29:43.924 UTC [policies] CommitProposals -> DEBU 2cb In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +2018-01-18 09:29:43.925 UTC [policies] GetPolicy -> DEBU 2cc Returning policy Org1MSP/Readers for evaluation +2018-01-18 09:29:43.925 UTC [policies] CommitProposals -> DEBU 2cd In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +2018-01-18 09:29:43.925 UTC [policies] GetPolicy -> DEBU 2ce Returning policy Org1MSP/Writers for evaluation +2018-01-18 09:29:43.925 UTC [policies] CommitProposals -> DEBU 2cf In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +2018-01-18 09:29:43.925 UTC [policies] GetPolicy -> DEBU 2d0 Returning policy Readers for evaluation +2018-01-18 09:29:43.925 UTC [policies] GetPolicy -> DEBU 2d1 Returning dummy reject all policy because Readers could not be found in /Application/Readers +2018-01-18 09:29:43.925 UTC [policies] GetPolicy -> DEBU 2d2 Returning policy Writers for evaluation +2018-01-18 09:29:43.926 UTC [policies] GetPolicy -> DEBU 2d3 Returning dummy reject all policy because Writers could not be found in /Application/Writers +2018-01-18 09:29:43.926 UTC [policies] GetPolicy -> DEBU 2d4 Returning policy Admins for evaluation +2018-01-18 09:29:43.926 UTC [policies] GetPolicy -> DEBU 2d5 Returning dummy reject all policy because Admins could not be found in /Application/Admins +2018-01-18 09:29:43.926 UTC [common/configtx] addToMap -> DEBU 2d6 Adding to config map: [Groups] /Channel +2018-01-18 09:29:43.926 UTC [common/configtx] addToMap -> DEBU 2d7 Adding to config map: [Groups] /Channel/Application +2018-01-18 09:29:43.926 UTC [common/configtx] addToMap -> DEBU 2d8 Adding to config map: [Groups] /Channel/Application/Org1MSP +2018-01-18 09:29:43.927 UTC [common/configtx] addToMap -> DEBU 2d9 Adding to config map: [Groups] /Channel/Application/Org2MSP +2018-01-18 09:29:43.927 UTC [common/configtx] addToMap -> DEBU 2da Adding to config map: [Values] /Channel/Consortium +2018-01-18 09:29:43.927 UTC [common/configtx] addToMap -> DEBU 2db Adding to config map: [Groups] /Channel +2018-01-18 09:29:43.927 UTC [common/configtx] addToMap -> DEBU 2dc Adding to config map: [Groups] /Channel/Application +2018-01-18 09:29:43.927 UTC [common/configtx] addToMap -> DEBU 2dd Adding to config map: [Groups] /Channel/Application/Org1MSP +2018-01-18 09:29:43.927 UTC [common/configtx] addToMap -> DEBU 2de Adding to config map: [Groups] /Channel/Application/Org2MSP +2018-01-18 09:29:43.928 UTC [common/configtx] addToMap -> DEBU 2df Adding to config map: [Policy] /Channel/Application/Admins +2018-01-18 09:29:43.928 UTC [common/configtx] addToMap -> DEBU 2e0 Adding to config map: [Policy] /Channel/Application/Writers +2018-01-18 09:29:43.928 UTC [common/configtx] addToMap -> DEBU 2e1 Adding to config map: [Policy] /Channel/Application/Readers +2018-01-18 09:29:43.928 UTC [common/configtx] addToMap -> DEBU 2e2 Adding to config map: [Values] /Channel/Consortium +2018-01-18 09:29:43.928 UTC [policies] GetPolicy -> DEBU 2e3 Returning policy ChannelCreationPolicy for evaluation +2018-01-18 09:29:43.928 UTC [cauthdsl] func1 -> DEBU 2e4 0xc420026910 gate 1516267783928984703 evaluation starts +2018-01-18 09:29:43.929 UTC [cauthdsl] func2 -> DEBU 2e5 0xc420026910 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:29:43.929 UTC [cauthdsl] func2 -> DEBU 2e6 0xc420026910 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:29:43.929 UTC [msp/identity] newIdentity -> DEBU 2e7 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -1343,131 +1323,107 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-18 01:58:51.964 UTC [msp] SatisfiesPrincipal -> DEBU 2ef Checking if identity satisfies ADMIN role for Org1MSP -2018-01-18 01:58:51.964 UTC [cauthdsl] func2 -> DEBU 2f0 0xc42014a990 principal matched by identity 0 -2018-01-18 01:58:51.964 UTC [msp/identity] Verify -> DEBU 2f1 Verify: digest = 00000000 0a a0 5d 09 26 8b 7a 10 a3 b6 c2 9d af ba c9 56 |..].&.z........V| -00000010 5f cb 22 5a 66 84 57 14 0b e8 1a 28 36 06 e9 3e |_."Zf.W....(6..>| -2018-01-18 01:58:51.964 UTC [msp/identity] Verify -> DEBU 2f2 Verify: sig = 00000000 30 44 02 20 29 07 f5 3b 75 87 a0 a4 66 fd f4 8c |0D. )..;u...f...| -00000010 9d 33 36 f4 39 b7 2e 82 fb 27 b6 27 f8 27 57 50 |.36.9....'.'.'WP| -00000020 a2 9f 0c a4 02 20 3e 03 90 56 ce da 45 23 b2 2d |..... >..V..E#.-| -00000030 85 0f 22 ec 4c 0d 0e f8 31 f9 4d ed fb a4 0e 7e |..".L...1.M....~| -00000040 2e 30 01 0f 91 31 |.0...1| -2018-01-18 01:58:51.964 UTC [cauthdsl] func2 -> DEBU 2f3 0xc42014a990 principal evaluation succeeds for identity 0 -2018-01-18 01:58:51.964 UTC [cauthdsl] func1 -> DEBU 2f4 0xc42014a990 gate 1516240731963650109 evaluation succeeds -2018-01-18 01:58:51.964 UTC [common/configtx] recurseConfigMap -> DEBU 2f5 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-18 01:58:51.964 UTC [common/configtx] recurseConfigMap -> DEBU 2f6 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-18 01:58:51.964 UTC [common/configtx] recurseConfigMap -> DEBU 2f7 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-18 01:58:51.964 UTC [common/configtx] recurseConfigMap -> DEBU 2f8 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-18 01:58:51.964 UTC [common/configtx] recurseConfigMap -> DEBU 2f9 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-18 01:58:51.964 UTC [common/configtx] recurseConfigMap -> DEBU 2fa Setting policy for key BlockValidation to policy: mod_policy:"Admins" -2018-01-18 01:58:51.964 UTC [common/configtx] recurseConfigMap -> DEBU 2fb Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-18 01:58:51.964 UTC [common/configtx] recurseConfigMap -> DEBU 2fc Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-18 01:58:51.965 UTC [common/configtx] recurseConfigMap -> DEBU 2fd Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-18 01:58:51.965 UTC [common/configtx] recurseConfigMap -> DEBU 2fe Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-18 01:58:51.965 UTC [common/configtx] recurseConfigMap -> DEBU 2ff Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-18 01:58:51.965 UTC [common/configtx] recurseConfigMap -> DEBU 300 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-18 01:58:51.965 UTC [common/configtx] recurseConfigMap -> DEBU 301 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-18 01:58:51.965 UTC [common/configtx] recurseConfigMap -> DEBU 302 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-18 01:58:51.965 UTC [common/configtx] recurseConfigMap -> DEBU 303 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-18 01:58:51.965 UTC [common/configtx] recurseConfigMap -> DEBU 304 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-18 01:58:51.965 UTC [common/configtx] recurseConfigMap -> DEBU 305 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-18 01:58:51.965 UTC [common/configtx] recurseConfigMap -> DEBU 306 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-18 01:58:51.965 UTC [common/configtx] recurseConfigMap -> DEBU 307 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-18 01:58:51.965 UTC [common/configtx] processConfig -> DEBU 308 Beginning new config for channel businesschannel -2018-01-18 01:58:51.965 UTC [common/config] NewStandardValues -> DEBU 309 Initializing protos for *config.ChannelProtos -2018-01-18 01:58:51.965 UTC [common/config] initializeProtosStruct -> DEBU 30a Processing field: HashingAlgorithm -2018-01-18 01:58:51.965 UTC [common/config] initializeProtosStruct -> DEBU 30b Processing field: BlockDataHashingStructure -2018-01-18 01:58:51.965 UTC [common/config] initializeProtosStruct -> DEBU 30c Processing field: OrdererAddresses -2018-01-18 01:58:51.965 UTC [common/config] initializeProtosStruct -> DEBU 30d Processing field: Consortium -2018-01-18 01:58:51.965 UTC [policies] ProposePolicy -> DEBU 30e Proposed new policy Writers for Channel -2018-01-18 01:58:51.965 UTC [policies] ProposePolicy -> DEBU 30f Proposed new policy Admins for Channel -2018-01-18 01:58:51.966 UTC [policies] ProposePolicy -> DEBU 310 Proposed new policy Readers for Channel -2018-01-18 01:58:51.966 UTC [common/config] NewStandardValues -> DEBU 311 Initializing protos for *config.OrdererProtos -2018-01-18 01:58:51.966 UTC [common/config] initializeProtosStruct -> DEBU 312 Processing field: ConsensusType -2018-01-18 01:58:51.966 UTC [common/config] initializeProtosStruct -> DEBU 313 Processing field: BatchSize -2018-01-18 01:58:51.966 UTC [common/config] initializeProtosStruct -> DEBU 314 Processing field: BatchTimeout -2018-01-18 01:58:51.966 UTC [common/config] initializeProtosStruct -> DEBU 315 Processing field: KafkaBrokers -2018-01-18 01:58:51.966 UTC [common/config] initializeProtosStruct -> DEBU 316 Processing field: ChannelRestrictions -2018-01-18 01:58:51.966 UTC [policies] ProposePolicy -> DEBU 317 Proposed new policy Writers for Orderer -2018-01-18 01:58:51.966 UTC [policies] ProposePolicy -> DEBU 318 Proposed new policy Admins for Orderer -2018-01-18 01:58:51.966 UTC [policies] ProposePolicy -> DEBU 319 Proposed new policy BlockValidation for Orderer -2018-01-18 01:58:51.966 UTC [policies] ProposePolicy -> DEBU 31a Proposed new policy Readers for Orderer -2018-01-18 01:58:51.966 UTC [common/config] NewStandardValues -> DEBU 31b Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:51.966 UTC [common/config] initializeProtosStruct -> DEBU 31c Processing field: MSP -2018-01-18 01:58:51.966 UTC [policies] ProposePolicy -> DEBU 31d Proposed new policy Admins for OrdererOrg -2018-01-18 01:58:51.966 UTC [policies] ProposePolicy -> DEBU 31e Proposed new policy Readers for OrdererOrg -2018-01-18 01:58:51.966 UTC [policies] ProposePolicy -> DEBU 31f Proposed new policy Writers for OrdererOrg -2018-01-18 01:58:51.966 UTC [common/config] NewStandardValues -> DEBU 320 Initializing protos for *struct {} -2018-01-18 01:58:51.966 UTC [policies] ProposePolicy -> DEBU 321 Proposed new policy Admins for Application -2018-01-18 01:58:51.966 UTC [policies] ProposePolicy -> DEBU 322 Proposed new policy Writers for Application -2018-01-18 01:58:51.966 UTC [policies] ProposePolicy -> DEBU 323 Proposed new policy Readers for Application -2018-01-18 01:58:51.966 UTC [common/config] NewStandardValues -> DEBU 324 Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:51.966 UTC [common/config] initializeProtosStruct -> DEBU 325 Processing field: MSP -2018-01-18 01:58:51.966 UTC [common/config] NewStandardValues -> DEBU 326 Initializing protos for *config.ApplicationOrgProtos -2018-01-18 01:58:51.966 UTC [common/config] initializeProtosStruct -> DEBU 327 Processing field: AnchorPeers -2018-01-18 01:58:51.966 UTC [common/config] NewStandardValues -> DEBU 328 Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:51.967 UTC [common/config] initializeProtosStruct -> DEBU 329 Processing field: MSP -2018-01-18 01:58:51.967 UTC [policies] ProposePolicy -> DEBU 32a Proposed new policy Readers for Org1MSP -2018-01-18 01:58:51.967 UTC [policies] ProposePolicy -> DEBU 32b Proposed new policy Writers for Org1MSP -2018-01-18 01:58:51.967 UTC [policies] ProposePolicy -> DEBU 32c Proposed new policy Admins for Org1MSP -2018-01-18 01:58:51.967 UTC [common/config] NewStandardValues -> DEBU 32d Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:51.967 UTC [common/config] initializeProtosStruct -> DEBU 32e Processing field: MSP -2018-01-18 01:58:51.967 UTC [common/config] NewStandardValues -> DEBU 32f Initializing protos for *config.ApplicationOrgProtos -2018-01-18 01:58:51.967 UTC [common/config] initializeProtosStruct -> DEBU 330 Processing field: AnchorPeers -2018-01-18 01:58:51.967 UTC [common/config] NewStandardValues -> DEBU 331 Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:51.967 UTC [common/config] initializeProtosStruct -> DEBU 332 Processing field: MSP -2018-01-18 01:58:51.967 UTC [policies] ProposePolicy -> DEBU 333 Proposed new policy Writers for Org2MSP -2018-01-18 01:58:51.967 UTC [policies] ProposePolicy -> DEBU 334 Proposed new policy Admins for Org2MSP -2018-01-18 01:58:51.967 UTC [policies] ProposePolicy -> DEBU 335 Proposed new policy Readers for Org2MSP -2018-01-18 01:58:51.967 UTC [common/config] validateMSP -> DEBU 336 Setting up MSP for org OrdererOrg -2018-01-18 01:58:51.967 UTC [msp] NewBccspMsp -> DEBU 337 Creating BCCSP-based MSP instance -2018-01-18 01:58:51.967 UTC [msp] Setup -> DEBU 338 Setting up MSP instance OrdererMSP -2018-01-18 01:58:51.967 UTC [msp/identity] newIdentity -> DEBU 339 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL +2018-01-18 09:29:43.930 UTC [cauthdsl] func2 -> DEBU 2e8 0xc420026910 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got Org1MSP) +2018-01-18 09:29:43.930 UTC [cauthdsl] func2 -> DEBU 2e9 0xc420026910 principal evaluation fails +2018-01-18 09:29:43.930 UTC [cauthdsl] func1 -> DEBU 2ea 0xc420026910 gate 1516267783928984703 evaluation fails +2018-01-18 09:29:43.930 UTC [cauthdsl] func1 -> DEBU 2eb 0xc420026920 gate 1516267783930860965 evaluation starts +2018-01-18 09:29:43.930 UTC [cauthdsl] func2 -> DEBU 2ec 0xc420026920 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:29:43.931 UTC [cauthdsl] func2 -> DEBU 2ed 0xc420026920 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:29:43.931 UTC [msp/identity] newIdentity -> DEBU 2ee Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW -gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w -XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK -BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs -KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-18 01:58:51.968 UTC [msp/identity] newIdentity -> DEBU 33a Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 ------END CERTIFICATE----- -2018-01-18 01:58:51.968 UTC [msp/identity] newIdentity -> DEBU 33b Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 ------END CERTIFICATE----- -2018-01-18 01:58:51.969 UTC [msp] Validate -> DEBU 33c MSP OrdererMSP validating identity -2018-01-18 01:58:51.969 UTC [common/config] Validate -> DEBU 33d Anchor peers for org Org1MSP are -2018-01-18 01:58:51.969 UTC [common/config] validateMSP -> DEBU 33e Setting up MSP for org Org1MSP -2018-01-18 01:58:51.969 UTC [msp] NewBccspMsp -> DEBU 33f Creating BCCSP-based MSP instance -2018-01-18 01:58:51.969 UTC [msp] Setup -> DEBU 340 Setting up MSP instance Org1MSP -2018-01-18 01:58:51.970 UTC [msp/identity] newIdentity -> DEBU 341 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:43.932 UTC [msp] SatisfiesPrincipal -> DEBU 2ef Checking if identity satisfies ADMIN role for Org1MSP +2018-01-18 09:29:43.932 UTC [cauthdsl] func2 -> DEBU 2f0 0xc420026920 principal matched by identity 0 +2018-01-18 09:29:43.933 UTC [msp/identity] Verify -> DEBU 2f1 Verify: digest = 00000000 c2 fe 17 b4 c8 3b c1 d6 17 b0 19 ac b7 be a1 8c |.....;..........| +00000010 b9 9f 4f e4 be 55 e9 d4 15 9e 05 c0 ee c6 5c 37 |..O..U........\7| +2018-01-18 09:29:43.933 UTC [msp/identity] Verify -> DEBU 2f2 Verify: sig = 00000000 30 45 02 21 00 91 a7 72 c6 06 52 e5 fc dc 81 54 |0E.!...r..R....T| +00000010 76 54 81 da 3e 58 9e 11 df f1 67 fb 92 ed 61 ef |vT..>X....g...a.| +00000020 bc ae 13 4e 1c 02 20 3d 4a 89 e2 1b 4e e0 cd 08 |...N.. =J...N...| +00000030 aa 9f b4 66 db 3a 4a 2f 16 cc ff a7 a1 0c 8b ca |...f.:J/........| +00000040 0f 7a a5 e9 a8 21 9c |.z...!.| +2018-01-18 09:29:43.933 UTC [cauthdsl] func2 -> DEBU 2f3 0xc420026920 principal evaluation succeeds for identity 0 +2018-01-18 09:29:43.933 UTC [cauthdsl] func1 -> DEBU 2f4 0xc420026920 gate 1516267783930860965 evaluation succeeds +2018-01-18 09:29:43.934 UTC [common/configtx] recurseConfigMap -> DEBU 2f5 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-18 09:29:43.934 UTC [common/configtx] recurseConfigMap -> DEBU 2f6 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-18 09:29:43.934 UTC [common/configtx] recurseConfigMap -> DEBU 2f7 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-18 09:29:43.934 UTC [common/configtx] recurseConfigMap -> DEBU 2f8 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-18 09:29:43.935 UTC [common/configtx] recurseConfigMap -> DEBU 2f9 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-18 09:29:43.935 UTC [common/configtx] recurseConfigMap -> DEBU 2fa Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-18 09:29:43.935 UTC [common/configtx] recurseConfigMap -> DEBU 2fb Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-18 09:29:43.935 UTC [common/configtx] recurseConfigMap -> DEBU 2fc Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-18 09:29:43.935 UTC [common/configtx] recurseConfigMap -> DEBU 2fd Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-18 09:29:43.936 UTC [common/configtx] recurseConfigMap -> DEBU 2fe Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-18 09:29:43.936 UTC [common/configtx] recurseConfigMap -> DEBU 2ff Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-18 09:29:43.936 UTC [common/configtx] recurseConfigMap -> DEBU 300 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-18 09:29:43.936 UTC [common/configtx] recurseConfigMap -> DEBU 301 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-18 09:29:43.936 UTC [common/configtx] recurseConfigMap -> DEBU 302 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-18 09:29:43.936 UTC [common/configtx] recurseConfigMap -> DEBU 303 Setting policy for key BlockValidation to policy: mod_policy:"Admins" +2018-01-18 09:29:43.937 UTC [common/configtx] recurseConfigMap -> DEBU 304 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-18 09:29:43.937 UTC [common/configtx] recurseConfigMap -> DEBU 305 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-18 09:29:43.938 UTC [common/configtx] recurseConfigMap -> DEBU 306 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-18 09:29:43.938 UTC [common/configtx] recurseConfigMap -> DEBU 307 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-18 09:29:43.938 UTC [common/configtx] processConfig -> DEBU 308 Beginning new config for channel businesschannel +2018-01-18 09:29:43.938 UTC [common/config] NewStandardValues -> DEBU 309 Initializing protos for *config.ChannelProtos +2018-01-18 09:29:43.939 UTC [common/config] initializeProtosStruct -> DEBU 30a Processing field: HashingAlgorithm +2018-01-18 09:29:43.939 UTC [common/config] initializeProtosStruct -> DEBU 30b Processing field: BlockDataHashingStructure +2018-01-18 09:29:43.939 UTC [common/config] initializeProtosStruct -> DEBU 30c Processing field: OrdererAddresses +2018-01-18 09:29:43.939 UTC [common/config] initializeProtosStruct -> DEBU 30d Processing field: Consortium +2018-01-18 09:29:43.939 UTC [policies] ProposePolicy -> DEBU 30e Proposed new policy Admins for Channel +2018-01-18 09:29:43.939 UTC [policies] ProposePolicy -> DEBU 30f Proposed new policy Readers for Channel +2018-01-18 09:29:43.940 UTC [policies] ProposePolicy -> DEBU 310 Proposed new policy Writers for Channel +2018-01-18 09:29:43.940 UTC [common/config] NewStandardValues -> DEBU 311 Initializing protos for *struct {} +2018-01-18 09:29:43.940 UTC [policies] ProposePolicy -> DEBU 312 Proposed new policy Writers for Application +2018-01-18 09:29:43.940 UTC [policies] ProposePolicy -> DEBU 313 Proposed new policy Readers for Application +2018-01-18 09:29:43.940 UTC [policies] ProposePolicy -> DEBU 314 Proposed new policy Admins for Application +2018-01-18 09:29:43.940 UTC [common/config] NewStandardValues -> DEBU 315 Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:43.940 UTC [common/config] initializeProtosStruct -> DEBU 316 Processing field: MSP +2018-01-18 09:29:43.941 UTC [common/config] NewStandardValues -> DEBU 317 Initializing protos for *config.ApplicationOrgProtos +2018-01-18 09:29:43.941 UTC [common/config] initializeProtosStruct -> DEBU 318 Processing field: AnchorPeers +2018-01-18 09:29:43.941 UTC [common/config] NewStandardValues -> DEBU 319 Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:43.941 UTC [common/config] initializeProtosStruct -> DEBU 31a Processing field: MSP +2018-01-18 09:29:43.941 UTC [policies] ProposePolicy -> DEBU 31b Proposed new policy Writers for Org1MSP +2018-01-18 09:29:43.942 UTC [policies] ProposePolicy -> DEBU 31c Proposed new policy Admins for Org1MSP +2018-01-18 09:29:43.942 UTC [policies] ProposePolicy -> DEBU 31d Proposed new policy Readers for Org1MSP +2018-01-18 09:29:43.942 UTC [common/config] NewStandardValues -> DEBU 31e Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:43.942 UTC [common/config] initializeProtosStruct -> DEBU 31f Processing field: MSP +2018-01-18 09:29:43.943 UTC [common/config] NewStandardValues -> DEBU 320 Initializing protos for *config.ApplicationOrgProtos +2018-01-18 09:29:43.943 UTC [common/config] initializeProtosStruct -> DEBU 321 Processing field: AnchorPeers +2018-01-18 09:29:43.943 UTC [common/config] NewStandardValues -> DEBU 322 Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:43.943 UTC [common/config] initializeProtosStruct -> DEBU 323 Processing field: MSP +2018-01-18 09:29:43.944 UTC [policies] ProposePolicy -> DEBU 324 Proposed new policy Writers for Org2MSP +2018-01-18 09:29:43.944 UTC [policies] ProposePolicy -> DEBU 325 Proposed new policy Admins for Org2MSP +2018-01-18 09:29:43.944 UTC [policies] ProposePolicy -> DEBU 326 Proposed new policy Readers for Org2MSP +2018-01-18 09:29:43.944 UTC [common/config] NewStandardValues -> DEBU 327 Initializing protos for *config.OrdererProtos +2018-01-18 09:29:43.944 UTC [common/config] initializeProtosStruct -> DEBU 328 Processing field: ConsensusType +2018-01-18 09:29:43.945 UTC [common/config] initializeProtosStruct -> DEBU 329 Processing field: BatchSize +2018-01-18 09:29:43.945 UTC [common/config] initializeProtosStruct -> DEBU 32a Processing field: BatchTimeout +2018-01-18 09:29:43.945 UTC [common/config] initializeProtosStruct -> DEBU 32b Processing field: KafkaBrokers +2018-01-18 09:29:43.945 UTC [common/config] initializeProtosStruct -> DEBU 32c Processing field: ChannelRestrictions +2018-01-18 09:29:43.945 UTC [policies] ProposePolicy -> DEBU 32d Proposed new policy Writers for Orderer +2018-01-18 09:29:43.945 UTC [policies] ProposePolicy -> DEBU 32e Proposed new policy Admins for Orderer +2018-01-18 09:29:43.945 UTC [policies] ProposePolicy -> DEBU 32f Proposed new policy BlockValidation for Orderer +2018-01-18 09:29:43.945 UTC [policies] ProposePolicy -> DEBU 330 Proposed new policy Readers for Orderer +2018-01-18 09:29:43.945 UTC [common/config] NewStandardValues -> DEBU 331 Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:43.946 UTC [common/config] initializeProtosStruct -> DEBU 332 Processing field: MSP +2018-01-18 09:29:43.946 UTC [policies] ProposePolicy -> DEBU 333 Proposed new policy Admins for OrdererOrg +2018-01-18 09:29:43.946 UTC [policies] ProposePolicy -> DEBU 334 Proposed new policy Readers for OrdererOrg +2018-01-18 09:29:43.946 UTC [policies] ProposePolicy -> DEBU 335 Proposed new policy Writers for OrdererOrg +2018-01-18 09:29:43.947 UTC [common/config] Validate -> DEBU 336 Anchor peers for org Org1MSP are +2018-01-18 09:29:43.947 UTC [common/config] validateMSP -> DEBU 337 Setting up MSP for org Org1MSP +2018-01-18 09:29:43.947 UTC [msp] NewBccspMsp -> DEBU 338 Creating BCCSP-based MSP instance +2018-01-18 09:29:43.947 UTC [msp] Setup -> DEBU 339 Setting up MSP instance Org1MSP +2018-01-18 09:29:43.948 UTC [msp/identity] newIdentity -> DEBU 33a Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -1482,7 +1438,7 @@ JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ H7n8z1pj5w== -----END CERTIFICATE----- -2018-01-18 01:58:51.970 UTC [msp/identity] newIdentity -> DEBU 342 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:43.949 UTC [msp/identity] newIdentity -> DEBU 33b Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -1496,7 +1452,7 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-18 01:58:51.971 UTC [msp/identity] newIdentity -> DEBU 343 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:43.950 UTC [msp/identity] newIdentity -> DEBU 33c Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -1510,12 +1466,12 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-18 01:58:51.971 UTC [msp] Validate -> DEBU 344 MSP Org1MSP validating identity -2018-01-18 01:58:51.971 UTC [common/config] Validate -> DEBU 345 Anchor peers for org Org2MSP are -2018-01-18 01:58:51.971 UTC [common/config] validateMSP -> DEBU 346 Setting up MSP for org Org2MSP -2018-01-18 01:58:51.971 UTC [msp] NewBccspMsp -> DEBU 347 Creating BCCSP-based MSP instance -2018-01-18 01:58:51.971 UTC [msp] Setup -> DEBU 348 Setting up MSP instance Org2MSP -2018-01-18 01:58:51.971 UTC [msp/identity] newIdentity -> DEBU 349 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:43.951 UTC [msp] Validate -> DEBU 33d MSP Org1MSP validating identity +2018-01-18 09:29:43.952 UTC [common/config] Validate -> DEBU 33e Anchor peers for org Org2MSP are +2018-01-18 09:29:43.952 UTC [common/config] validateMSP -> DEBU 33f Setting up MSP for org Org2MSP +2018-01-18 09:29:43.952 UTC [msp] NewBccspMsp -> DEBU 340 Creating BCCSP-based MSP instance +2018-01-18 09:29:43.952 UTC [msp] Setup -> DEBU 341 Setting up MSP instance Org2MSP +2018-01-18 09:29:43.954 UTC [msp/identity] newIdentity -> DEBU 342 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -1530,7 +1486,7 @@ xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk SCjyRdD3aQ== -----END CERTIFICATE----- -2018-01-18 01:58:51.972 UTC [msp/identity] newIdentity -> DEBU 34a Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:43.955 UTC [msp/identity] newIdentity -> DEBU 343 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -1544,7 +1500,7 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS AXYxULZpXYDQXt1KaLI= -----END CERTIFICATE----- -2018-01-18 01:58:51.972 UTC [msp/identity] newIdentity -> DEBU 34b Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:43.956 UTC [msp/identity] newIdentity -> DEBU 344 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -1558,63 +1514,107 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS AXYxULZpXYDQXt1KaLI= -----END CERTIFICATE----- -2018-01-18 01:58:51.972 UTC [msp] Validate -> DEBU 34c MSP Org2MSP validating identity -2018-01-18 01:58:51.972 UTC [msp] Setup -> DEBU 34d Setting up the MSP manager (3 msps) -2018-01-18 01:58:51.972 UTC [msp] Setup -> DEBU 34e MSP manager setup complete, setup 3 msps -2018-01-18 01:58:51.973 UTC [common/configtx] addToMap -> DEBU 34f Adding to config map: [Groups] /Channel -2018-01-18 01:58:51.973 UTC [common/configtx] addToMap -> DEBU 350 Adding to config map: [Groups] /Channel/Orderer -2018-01-18 01:58:51.973 UTC [common/configtx] addToMap -> DEBU 351 Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -2018-01-18 01:58:51.973 UTC [common/configtx] addToMap -> DEBU 352 Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -2018-01-18 01:58:51.973 UTC [common/configtx] addToMap -> DEBU 353 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -2018-01-18 01:58:51.973 UTC [common/configtx] addToMap -> DEBU 354 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -2018-01-18 01:58:51.973 UTC [common/configtx] addToMap -> DEBU 355 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -2018-01-18 01:58:51.974 UTC [common/configtx] addToMap -> DEBU 356 Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -2018-01-18 01:58:51.974 UTC [common/configtx] addToMap -> DEBU 357 Adding to config map: [Values] /Channel/Orderer/ConsensusType -2018-01-18 01:58:51.974 UTC [common/configtx] addToMap -> DEBU 358 Adding to config map: [Values] /Channel/Orderer/BatchSize -2018-01-18 01:58:51.974 UTC [common/configtx] addToMap -> DEBU 359 Adding to config map: [Values] /Channel/Orderer/BatchTimeout -2018-01-18 01:58:51.974 UTC [common/configtx] addToMap -> DEBU 35a Adding to config map: [Policy] /Channel/Orderer/Writers -2018-01-18 01:58:51.974 UTC [common/configtx] addToMap -> DEBU 35b Adding to config map: [Policy] /Channel/Orderer/Admins -2018-01-18 01:58:51.974 UTC [common/configtx] addToMap -> DEBU 35c Adding to config map: [Policy] /Channel/Orderer/BlockValidation -2018-01-18 01:58:51.974 UTC [common/configtx] addToMap -> DEBU 35d Adding to config map: [Policy] /Channel/Orderer/Readers -2018-01-18 01:58:51.974 UTC [common/configtx] addToMap -> DEBU 35e Adding to config map: [Groups] /Channel/Application -2018-01-18 01:58:51.974 UTC [common/configtx] addToMap -> DEBU 35f Adding to config map: [Groups] /Channel/Application/Org1MSP -2018-01-18 01:58:51.974 UTC [common/configtx] addToMap -> DEBU 360 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -2018-01-18 01:58:51.974 UTC [common/configtx] addToMap -> DEBU 361 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -2018-01-18 01:58:51.975 UTC [common/configtx] addToMap -> DEBU 362 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -2018-01-18 01:58:51.975 UTC [common/configtx] addToMap -> DEBU 363 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -2018-01-18 01:58:51.975 UTC [common/configtx] addToMap -> DEBU 364 Adding to config map: [Groups] /Channel/Application/Org2MSP -2018-01-18 01:58:51.975 UTC [common/configtx] addToMap -> DEBU 365 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -2018-01-18 01:58:51.975 UTC [common/configtx] addToMap -> DEBU 366 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -2018-01-18 01:58:51.975 UTC [common/configtx] addToMap -> DEBU 367 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -2018-01-18 01:58:51.975 UTC [common/configtx] addToMap -> DEBU 368 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -2018-01-18 01:58:51.975 UTC [common/configtx] addToMap -> DEBU 369 Adding to config map: [Policy] /Channel/Application/Admins -2018-01-18 01:58:51.975 UTC [common/configtx] addToMap -> DEBU 36a Adding to config map: [Policy] /Channel/Application/Writers -2018-01-18 01:58:51.975 UTC [common/configtx] addToMap -> DEBU 36b Adding to config map: [Policy] /Channel/Application/Readers -2018-01-18 01:58:51.975 UTC [common/configtx] addToMap -> DEBU 36c Adding to config map: [Values] /Channel/HashingAlgorithm -2018-01-18 01:58:51.975 UTC [common/configtx] addToMap -> DEBU 36d Adding to config map: [Values] /Channel/BlockDataHashingStructure -2018-01-18 01:58:51.975 UTC [common/configtx] addToMap -> DEBU 36e Adding to config map: [Values] /Channel/Consortium -2018-01-18 01:58:51.975 UTC [common/configtx] addToMap -> DEBU 36f Adding to config map: [Values] /Channel/OrdererAddresses -2018-01-18 01:58:51.976 UTC [common/configtx] addToMap -> DEBU 370 Adding to config map: [Policy] /Channel/Writers -2018-01-18 01:58:51.976 UTC [common/configtx] addToMap -> DEBU 371 Adding to config map: [Policy] /Channel/Admins -2018-01-18 01:58:51.976 UTC [common/configtx] addToMap -> DEBU 372 Adding to config map: [Policy] /Channel/Readers -2018-01-18 01:58:51.976 UTC [common/configtx] addToMap -> DEBU 373 Adding to config map: [Groups] /Channel -2018-01-18 01:58:51.976 UTC [common/configtx] addToMap -> DEBU 374 Adding to config map: [Groups] /Channel/Application -2018-01-18 01:58:51.976 UTC [common/configtx] addToMap -> DEBU 375 Adding to config map: [Groups] /Channel/Application/Org1MSP -2018-01-18 01:58:51.976 UTC [common/configtx] addToMap -> DEBU 376 Adding to config map: [Groups] /Channel/Application/Org2MSP -2018-01-18 01:58:51.976 UTC [common/configtx] addToMap -> DEBU 377 Adding to config map: [Values] /Channel/Consortium -2018-01-18 01:58:51.976 UTC [common/configtx] addToMap -> DEBU 378 Adding to config map: [Groups] /Channel -2018-01-18 01:58:51.976 UTC [common/configtx] addToMap -> DEBU 379 Adding to config map: [Groups] /Channel/Application -2018-01-18 01:58:51.976 UTC [common/configtx] addToMap -> DEBU 37a Adding to config map: [Groups] /Channel/Application/Org1MSP -2018-01-18 01:58:51.977 UTC [common/configtx] addToMap -> DEBU 37b Adding to config map: [Groups] /Channel/Application/Org2MSP -2018-01-18 01:58:51.977 UTC [common/configtx] addToMap -> DEBU 37c Adding to config map: [Policy] /Channel/Application/Admins -2018-01-18 01:58:51.977 UTC [common/configtx] addToMap -> DEBU 37d Adding to config map: [Policy] /Channel/Application/Writers -2018-01-18 01:58:51.977 UTC [common/configtx] addToMap -> DEBU 37e Adding to config map: [Policy] /Channel/Application/Readers -2018-01-18 01:58:51.977 UTC [common/configtx] addToMap -> DEBU 37f Adding to config map: [Values] /Channel/Consortium -2018-01-18 01:58:51.977 UTC [policies] GetPolicy -> DEBU 380 Returning policy ChannelCreationPolicy for evaluation -2018-01-18 01:58:51.977 UTC [cauthdsl] func1 -> DEBU 381 0xc42014b098 gate 1516240731977614523 evaluation starts -2018-01-18 01:58:51.977 UTC [cauthdsl] func2 -> DEBU 382 0xc42014b098 signed by 0 principal evaluation starts (used [false]) -2018-01-18 01:58:51.977 UTC [cauthdsl] func2 -> DEBU 383 0xc42014b098 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-18 01:58:51.978 UTC [msp/identity] newIdentity -> DEBU 384 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:43.958 UTC [msp] Validate -> DEBU 345 MSP Org2MSP validating identity +2018-01-18 09:29:43.958 UTC [common/config] validateMSP -> DEBU 346 Setting up MSP for org OrdererOrg +2018-01-18 09:29:43.958 UTC [msp] NewBccspMsp -> DEBU 347 Creating BCCSP-based MSP instance +2018-01-18 09:29:43.958 UTC [msp] Setup -> DEBU 348 Setting up MSP instance OrdererMSP +2018-01-18 09:29:43.959 UTC [msp/identity] newIdentity -> DEBU 349 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW +gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w +XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK +BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs +KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= +-----END CERTIFICATE----- +2018-01-18 09:29:43.960 UTC [msp/identity] newIdentity -> DEBU 34a Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-18 09:29:43.961 UTC [msp/identity] newIdentity -> DEBU 34b Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-18 09:29:43.963 UTC [msp] Validate -> DEBU 34c MSP OrdererMSP validating identity +2018-01-18 09:29:43.964 UTC [msp] Setup -> DEBU 34d Setting up the MSP manager (3 msps) +2018-01-18 09:29:43.964 UTC [msp] Setup -> DEBU 34e MSP manager setup complete, setup 3 msps +2018-01-18 09:29:43.964 UTC [common/configtx] addToMap -> DEBU 34f Adding to config map: [Groups] /Channel +2018-01-18 09:29:43.965 UTC [common/configtx] addToMap -> DEBU 350 Adding to config map: [Groups] /Channel/Orderer +2018-01-18 09:29:43.965 UTC [common/configtx] addToMap -> DEBU 351 Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +2018-01-18 09:29:43.965 UTC [common/configtx] addToMap -> DEBU 352 Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +2018-01-18 09:29:43.966 UTC [common/configtx] addToMap -> DEBU 353 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +2018-01-18 09:29:43.966 UTC [common/configtx] addToMap -> DEBU 354 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +2018-01-18 09:29:43.966 UTC [common/configtx] addToMap -> DEBU 355 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +2018-01-18 09:29:43.966 UTC [common/configtx] addToMap -> DEBU 356 Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +2018-01-18 09:29:43.966 UTC [common/configtx] addToMap -> DEBU 357 Adding to config map: [Values] /Channel/Orderer/ConsensusType +2018-01-18 09:29:43.967 UTC [common/configtx] addToMap -> DEBU 358 Adding to config map: [Values] /Channel/Orderer/BatchSize +2018-01-18 09:29:43.967 UTC [common/configtx] addToMap -> DEBU 359 Adding to config map: [Values] /Channel/Orderer/BatchTimeout +2018-01-18 09:29:43.967 UTC [common/configtx] addToMap -> DEBU 35a Adding to config map: [Policy] /Channel/Orderer/Writers +2018-01-18 09:29:43.967 UTC [common/configtx] addToMap -> DEBU 35b Adding to config map: [Policy] /Channel/Orderer/Admins +2018-01-18 09:29:43.967 UTC [common/configtx] addToMap -> DEBU 35c Adding to config map: [Policy] /Channel/Orderer/BlockValidation +2018-01-18 09:29:43.968 UTC [common/configtx] addToMap -> DEBU 35d Adding to config map: [Policy] /Channel/Orderer/Readers +2018-01-18 09:29:43.968 UTC [common/configtx] addToMap -> DEBU 35e Adding to config map: [Groups] /Channel/Application +2018-01-18 09:29:43.968 UTC [common/configtx] addToMap -> DEBU 35f Adding to config map: [Groups] /Channel/Application/Org1MSP +2018-01-18 09:29:43.968 UTC [common/configtx] addToMap -> DEBU 360 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +2018-01-18 09:29:43.968 UTC [common/configtx] addToMap -> DEBU 361 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +2018-01-18 09:29:43.969 UTC [common/configtx] addToMap -> DEBU 362 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +2018-01-18 09:29:43.969 UTC [common/configtx] addToMap -> DEBU 363 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +2018-01-18 09:29:43.969 UTC [common/configtx] addToMap -> DEBU 364 Adding to config map: [Groups] /Channel/Application/Org2MSP +2018-01-18 09:29:43.969 UTC [common/configtx] addToMap -> DEBU 365 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +2018-01-18 09:29:43.969 UTC [common/configtx] addToMap -> DEBU 366 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +2018-01-18 09:29:43.969 UTC [common/configtx] addToMap -> DEBU 367 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +2018-01-18 09:29:43.969 UTC [common/configtx] addToMap -> DEBU 368 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +2018-01-18 09:29:43.970 UTC [common/configtx] addToMap -> DEBU 369 Adding to config map: [Policy] /Channel/Application/Writers +2018-01-18 09:29:43.970 UTC [common/configtx] addToMap -> DEBU 36a Adding to config map: [Policy] /Channel/Application/Readers +2018-01-18 09:29:43.970 UTC [common/configtx] addToMap -> DEBU 36b Adding to config map: [Policy] /Channel/Application/Admins +2018-01-18 09:29:43.970 UTC [common/configtx] addToMap -> DEBU 36c Adding to config map: [Values] /Channel/BlockDataHashingStructure +2018-01-18 09:29:43.970 UTC [common/configtx] addToMap -> DEBU 36d Adding to config map: [Values] /Channel/OrdererAddresses +2018-01-18 09:29:43.971 UTC [common/configtx] addToMap -> DEBU 36e Adding to config map: [Values] /Channel/HashingAlgorithm +2018-01-18 09:29:43.971 UTC [common/configtx] addToMap -> DEBU 36f Adding to config map: [Values] /Channel/Consortium +2018-01-18 09:29:43.971 UTC [common/configtx] addToMap -> DEBU 370 Adding to config map: [Policy] /Channel/Admins +2018-01-18 09:29:43.971 UTC [common/configtx] addToMap -> DEBU 371 Adding to config map: [Policy] /Channel/Readers +2018-01-18 09:29:43.972 UTC [common/configtx] addToMap -> DEBU 372 Adding to config map: [Policy] /Channel/Writers +2018-01-18 09:29:43.973 UTC [common/configtx] addToMap -> DEBU 373 Adding to config map: [Groups] /Channel +2018-01-18 09:29:43.973 UTC [common/configtx] addToMap -> DEBU 374 Adding to config map: [Groups] /Channel/Application +2018-01-18 09:29:43.973 UTC [common/configtx] addToMap -> DEBU 375 Adding to config map: [Groups] /Channel/Application/Org1MSP +2018-01-18 09:29:43.973 UTC [common/configtx] addToMap -> DEBU 376 Adding to config map: [Groups] /Channel/Application/Org2MSP +2018-01-18 09:29:43.973 UTC [common/configtx] addToMap -> DEBU 377 Adding to config map: [Values] /Channel/Consortium +2018-01-18 09:29:43.973 UTC [common/configtx] addToMap -> DEBU 378 Adding to config map: [Groups] /Channel +2018-01-18 09:29:43.974 UTC [common/configtx] addToMap -> DEBU 379 Adding to config map: [Groups] /Channel/Application +2018-01-18 09:29:43.974 UTC [common/configtx] addToMap -> DEBU 37a Adding to config map: [Groups] /Channel/Application/Org1MSP +2018-01-18 09:29:43.974 UTC [common/configtx] addToMap -> DEBU 37b Adding to config map: [Groups] /Channel/Application/Org2MSP +2018-01-18 09:29:43.974 UTC [common/configtx] addToMap -> DEBU 37c Adding to config map: [Policy] /Channel/Application/Admins +2018-01-18 09:29:43.975 UTC [common/configtx] addToMap -> DEBU 37d Adding to config map: [Policy] /Channel/Application/Writers +2018-01-18 09:29:43.976 UTC [common/configtx] addToMap -> DEBU 37e Adding to config map: [Policy] /Channel/Application/Readers +2018-01-18 09:29:43.976 UTC [common/configtx] addToMap -> DEBU 37f Adding to config map: [Values] /Channel/Consortium +2018-01-18 09:29:43.976 UTC [policies] GetPolicy -> DEBU 380 Returning policy ChannelCreationPolicy for evaluation +2018-01-18 09:29:43.977 UTC [cauthdsl] func1 -> DEBU 381 0xc420026000 gate 1516267783977224371 evaluation starts +2018-01-18 09:29:43.977 UTC [cauthdsl] func2 -> DEBU 382 0xc420026000 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:29:43.977 UTC [cauthdsl] func2 -> DEBU 383 0xc420026000 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:29:43.977 UTC [msp/identity] newIdentity -> DEBU 384 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -1628,135 +1628,107 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-18 01:58:51.978 UTC [msp] SatisfiesPrincipal -> DEBU 385 Checking if identity satisfies ADMIN role for Org1MSP -2018-01-18 01:58:51.978 UTC [cauthdsl] func2 -> DEBU 386 0xc42014b098 principal matched by identity 0 -2018-01-18 01:58:51.978 UTC [msp/identity] Verify -> DEBU 387 Verify: digest = 00000000 0a a0 5d 09 26 8b 7a 10 a3 b6 c2 9d af ba c9 56 |..].&.z........V| -00000010 5f cb 22 5a 66 84 57 14 0b e8 1a 28 36 06 e9 3e |_."Zf.W....(6..>| -2018-01-18 01:58:51.978 UTC [msp/identity] Verify -> DEBU 388 Verify: sig = 00000000 30 44 02 20 29 07 f5 3b 75 87 a0 a4 66 fd f4 8c |0D. )..;u...f...| -00000010 9d 33 36 f4 39 b7 2e 82 fb 27 b6 27 f8 27 57 50 |.36.9....'.'.'WP| -00000020 a2 9f 0c a4 02 20 3e 03 90 56 ce da 45 23 b2 2d |..... >..V..E#.-| -00000030 85 0f 22 ec 4c 0d 0e f8 31 f9 4d ed fb a4 0e 7e |..".L...1.M....~| -00000040 2e 30 01 0f 91 31 |.0...1| -2018-01-18 01:58:51.978 UTC [cauthdsl] func2 -> DEBU 389 0xc42014b098 principal evaluation succeeds for identity 0 -2018-01-18 01:58:51.978 UTC [cauthdsl] func1 -> DEBU 38a 0xc42014b098 gate 1516240731977614523 evaluation succeeds -2018-01-18 01:58:51.978 UTC [common/configtx] recurseConfigMap -> DEBU 38b Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-18 01:58:51.979 UTC [common/configtx] recurseConfigMap -> DEBU 38c Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-18 01:58:51.979 UTC [common/configtx] recurseConfigMap -> DEBU 38d Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-18 01:58:51.979 UTC [common/configtx] recurseConfigMap -> DEBU 38e Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-18 01:58:51.979 UTC [common/configtx] recurseConfigMap -> DEBU 38f Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-18 01:58:51.979 UTC [common/configtx] recurseConfigMap -> DEBU 390 Setting policy for key BlockValidation to policy: mod_policy:"Admins" -2018-01-18 01:58:51.979 UTC [common/configtx] recurseConfigMap -> DEBU 391 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-18 01:58:51.979 UTC [common/configtx] recurseConfigMap -> DEBU 392 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-18 01:58:51.979 UTC [common/configtx] recurseConfigMap -> DEBU 393 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-18 01:58:51.979 UTC [common/configtx] recurseConfigMap -> DEBU 394 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-18 01:58:51.979 UTC [common/configtx] recurseConfigMap -> DEBU 395 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-18 01:58:51.979 UTC [common/configtx] recurseConfigMap -> DEBU 396 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-18 01:58:51.979 UTC [common/configtx] recurseConfigMap -> DEBU 397 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-18 01:58:51.979 UTC [common/configtx] recurseConfigMap -> DEBU 398 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-18 01:58:51.979 UTC [common/configtx] recurseConfigMap -> DEBU 399 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-18 01:58:51.979 UTC [common/configtx] recurseConfigMap -> DEBU 39a Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-18 01:58:51.979 UTC [common/configtx] recurseConfigMap -> DEBU 39b Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-18 01:58:51.979 UTC [common/configtx] recurseConfigMap -> DEBU 39c Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-18 01:58:51.979 UTC [common/configtx] recurseConfigMap -> DEBU 39d Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-18 01:58:51.979 UTC [common/configtx] processConfig -> DEBU 39e Beginning new config for channel businesschannel -2018-01-18 01:58:51.979 UTC [common/config] NewStandardValues -> DEBU 39f Initializing protos for *config.ChannelProtos -2018-01-18 01:58:51.979 UTC [common/config] initializeProtosStruct -> DEBU 3a0 Processing field: HashingAlgorithm -2018-01-18 01:58:51.979 UTC [common/config] initializeProtosStruct -> DEBU 3a1 Processing field: BlockDataHashingStructure -2018-01-18 01:58:51.979 UTC [common/config] initializeProtosStruct -> DEBU 3a2 Processing field: OrdererAddresses -2018-01-18 01:58:51.980 UTC [common/config] initializeProtosStruct -> DEBU 3a3 Processing field: Consortium -2018-01-18 01:58:51.980 UTC [policies] ProposePolicy -> DEBU 3a4 Proposed new policy Admins for Channel -2018-01-18 01:58:51.980 UTC [policies] ProposePolicy -> DEBU 3a5 Proposed new policy Readers for Channel -2018-01-18 01:58:51.980 UTC [policies] ProposePolicy -> DEBU 3a6 Proposed new policy Writers for Channel -2018-01-18 01:58:51.980 UTC [common/config] NewStandardValues -> DEBU 3a7 Initializing protos for *struct {} -2018-01-18 01:58:51.980 UTC [policies] ProposePolicy -> DEBU 3a8 Proposed new policy Admins for Application -2018-01-18 01:58:51.980 UTC [policies] ProposePolicy -> DEBU 3a9 Proposed new policy Writers for Application -2018-01-18 01:58:51.980 UTC [policies] ProposePolicy -> DEBU 3aa Proposed new policy Readers for Application -2018-01-18 01:58:51.980 UTC [common/config] NewStandardValues -> DEBU 3ab Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:51.980 UTC [common/config] initializeProtosStruct -> DEBU 3ac Processing field: MSP -2018-01-18 01:58:51.980 UTC [common/config] NewStandardValues -> DEBU 3ad Initializing protos for *config.ApplicationOrgProtos -2018-01-18 01:58:51.980 UTC [common/config] initializeProtosStruct -> DEBU 3ae Processing field: AnchorPeers -2018-01-18 01:58:51.980 UTC [common/config] NewStandardValues -> DEBU 3af Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:51.980 UTC [common/config] initializeProtosStruct -> DEBU 3b0 Processing field: MSP -2018-01-18 01:58:51.980 UTC [policies] ProposePolicy -> DEBU 3b1 Proposed new policy Writers for Org2MSP -2018-01-18 01:58:51.980 UTC [policies] ProposePolicy -> DEBU 3b2 Proposed new policy Admins for Org2MSP -2018-01-18 01:58:51.980 UTC [policies] ProposePolicy -> DEBU 3b3 Proposed new policy Readers for Org2MSP -2018-01-18 01:58:51.980 UTC [common/config] NewStandardValues -> DEBU 3b4 Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:51.980 UTC [common/config] initializeProtosStruct -> DEBU 3b5 Processing field: MSP -2018-01-18 01:58:51.980 UTC [common/config] NewStandardValues -> DEBU 3b6 Initializing protos for *config.ApplicationOrgProtos -2018-01-18 01:58:51.980 UTC [common/config] initializeProtosStruct -> DEBU 3b7 Processing field: AnchorPeers -2018-01-18 01:58:51.980 UTC [common/config] NewStandardValues -> DEBU 3b8 Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:51.980 UTC [common/config] initializeProtosStruct -> DEBU 3b9 Processing field: MSP -2018-01-18 01:58:51.981 UTC [policies] ProposePolicy -> DEBU 3ba Proposed new policy Writers for Org1MSP -2018-01-18 01:58:51.981 UTC [policies] ProposePolicy -> DEBU 3bb Proposed new policy Admins for Org1MSP -2018-01-18 01:58:51.981 UTC [policies] ProposePolicy -> DEBU 3bc Proposed new policy Readers for Org1MSP -2018-01-18 01:58:51.981 UTC [common/config] NewStandardValues -> DEBU 3bd Initializing protos for *config.OrdererProtos -2018-01-18 01:58:51.981 UTC [common/config] initializeProtosStruct -> DEBU 3be Processing field: ConsensusType -2018-01-18 01:58:51.981 UTC [common/config] initializeProtosStruct -> DEBU 3bf Processing field: BatchSize -2018-01-18 01:58:51.981 UTC [common/config] initializeProtosStruct -> DEBU 3c0 Processing field: BatchTimeout -2018-01-18 01:58:51.981 UTC [common/config] initializeProtosStruct -> DEBU 3c1 Processing field: KafkaBrokers -2018-01-18 01:58:51.981 UTC [common/config] initializeProtosStruct -> DEBU 3c2 Processing field: ChannelRestrictions -2018-01-18 01:58:51.981 UTC [policies] ProposePolicy -> DEBU 3c3 Proposed new policy Writers for Orderer -2018-01-18 01:58:51.981 UTC [policies] ProposePolicy -> DEBU 3c4 Proposed new policy Admins for Orderer -2018-01-18 01:58:51.981 UTC [policies] ProposePolicy -> DEBU 3c5 Proposed new policy BlockValidation for Orderer -2018-01-18 01:58:51.981 UTC [policies] ProposePolicy -> DEBU 3c6 Proposed new policy Readers for Orderer -2018-01-18 01:58:51.981 UTC [common/config] NewStandardValues -> DEBU 3c7 Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:51.981 UTC [common/config] initializeProtosStruct -> DEBU 3c8 Processing field: MSP -2018-01-18 01:58:51.981 UTC [policies] ProposePolicy -> DEBU 3c9 Proposed new policy Writers for OrdererOrg -2018-01-18 01:58:51.981 UTC [policies] ProposePolicy -> DEBU 3ca Proposed new policy Admins for OrdererOrg -2018-01-18 01:58:51.981 UTC [policies] ProposePolicy -> DEBU 3cb Proposed new policy Readers for OrdererOrg -2018-01-18 01:58:51.981 UTC [common/config] Validate -> DEBU 3cc Anchor peers for org Org2MSP are -2018-01-18 01:58:51.981 UTC [common/config] validateMSP -> DEBU 3cd Setting up MSP for org Org2MSP -2018-01-18 01:58:51.981 UTC [msp] NewBccspMsp -> DEBU 3ce Creating BCCSP-based MSP instance -2018-01-18 01:58:51.981 UTC [msp] Setup -> DEBU 3cf Setting up MSP instance Org2MSP -2018-01-18 01:58:51.982 UTC [msp/identity] newIdentity -> DEBU 3d0 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa -MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 -sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ -xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv -WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk -SCjyRdD3aQ== ------END CERTIFICATE----- -2018-01-18 01:58:51.982 UTC [msp/identity] newIdentity -> DEBU 3d1 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +2018-01-18 09:29:43.977 UTC [cauthdsl] func2 -> DEBU 385 0xc420026000 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got Org1MSP) +2018-01-18 09:29:43.977 UTC [cauthdsl] func2 -> DEBU 386 0xc420026000 principal evaluation fails +2018-01-18 09:29:43.977 UTC [cauthdsl] func1 -> DEBU 387 0xc420026000 gate 1516267783977224371 evaluation fails +2018-01-18 09:29:43.978 UTC [cauthdsl] func1 -> DEBU 388 0xc420026070 gate 1516267783977999684 evaluation starts +2018-01-18 09:29:43.978 UTC [cauthdsl] func2 -> DEBU 389 0xc420026070 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:29:43.978 UTC [cauthdsl] func2 -> DEBU 38a 0xc420026070 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:29:43.978 UTC [msp/identity] newIdentity -> DEBU 38b Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -AXYxULZpXYDQXt1KaLI= +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-18 01:58:51.982 UTC [msp/identity] newIdentity -> DEBU 3d2 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -AXYxULZpXYDQXt1KaLI= ------END CERTIFICATE----- -2018-01-18 01:58:51.988 UTC [msp] Validate -> DEBU 3d3 MSP Org2MSP validating identity -2018-01-18 01:58:51.989 UTC [common/config] Validate -> DEBU 3d4 Anchor peers for org Org1MSP are -2018-01-18 01:58:51.989 UTC [common/config] validateMSP -> DEBU 3d5 Setting up MSP for org Org1MSP -2018-01-18 01:58:51.989 UTC [msp] NewBccspMsp -> DEBU 3d6 Creating BCCSP-based MSP instance -2018-01-18 01:58:51.989 UTC [msp] Setup -> DEBU 3d7 Setting up MSP instance Org1MSP -2018-01-18 01:58:51.990 UTC [msp/identity] newIdentity -> DEBU 3d8 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:43.978 UTC [msp] SatisfiesPrincipal -> DEBU 38c Checking if identity satisfies ADMIN role for Org1MSP +2018-01-18 09:29:43.978 UTC [cauthdsl] func2 -> DEBU 38d 0xc420026070 principal matched by identity 0 +2018-01-18 09:29:43.978 UTC [msp/identity] Verify -> DEBU 38e Verify: digest = 00000000 c2 fe 17 b4 c8 3b c1 d6 17 b0 19 ac b7 be a1 8c |.....;..........| +00000010 b9 9f 4f e4 be 55 e9 d4 15 9e 05 c0 ee c6 5c 37 |..O..U........\7| +2018-01-18 09:29:43.978 UTC [msp/identity] Verify -> DEBU 38f Verify: sig = 00000000 30 45 02 21 00 91 a7 72 c6 06 52 e5 fc dc 81 54 |0E.!...r..R....T| +00000010 76 54 81 da 3e 58 9e 11 df f1 67 fb 92 ed 61 ef |vT..>X....g...a.| +00000020 bc ae 13 4e 1c 02 20 3d 4a 89 e2 1b 4e e0 cd 08 |...N.. =J...N...| +00000030 aa 9f b4 66 db 3a 4a 2f 16 cc ff a7 a1 0c 8b ca |...f.:J/........| +00000040 0f 7a a5 e9 a8 21 9c |.z...!.| +2018-01-18 09:29:43.978 UTC [cauthdsl] func2 -> DEBU 390 0xc420026070 principal evaluation succeeds for identity 0 +2018-01-18 09:29:43.978 UTC [cauthdsl] func1 -> DEBU 391 0xc420026070 gate 1516267783977999684 evaluation succeeds +2018-01-18 09:29:43.979 UTC [common/configtx] recurseConfigMap -> DEBU 392 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-18 09:29:43.979 UTC [common/configtx] recurseConfigMap -> DEBU 393 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-18 09:29:43.979 UTC [common/configtx] recurseConfigMap -> DEBU 394 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-18 09:29:43.979 UTC [common/configtx] recurseConfigMap -> DEBU 395 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-18 09:29:43.979 UTC [common/configtx] recurseConfigMap -> DEBU 396 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-18 09:29:43.979 UTC [common/configtx] recurseConfigMap -> DEBU 397 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-18 09:29:43.979 UTC [common/configtx] recurseConfigMap -> DEBU 398 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-18 09:29:43.979 UTC [common/configtx] recurseConfigMap -> DEBU 399 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-18 09:29:43.979 UTC [common/configtx] recurseConfigMap -> DEBU 39a Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-18 09:29:43.979 UTC [common/configtx] recurseConfigMap -> DEBU 39b Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-18 09:29:43.979 UTC [common/configtx] recurseConfigMap -> DEBU 39c Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-18 09:29:43.979 UTC [common/configtx] recurseConfigMap -> DEBU 39d Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-18 09:29:43.979 UTC [common/configtx] recurseConfigMap -> DEBU 39e Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-18 09:29:43.979 UTC [common/configtx] recurseConfigMap -> DEBU 39f Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-18 09:29:43.979 UTC [common/configtx] recurseConfigMap -> DEBU 3a0 Setting policy for key BlockValidation to policy: mod_policy:"Admins" +2018-01-18 09:29:43.979 UTC [common/configtx] recurseConfigMap -> DEBU 3a1 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-18 09:29:43.979 UTC [common/configtx] recurseConfigMap -> DEBU 3a2 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-18 09:29:43.979 UTC [common/configtx] recurseConfigMap -> DEBU 3a3 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-18 09:29:43.979 UTC [common/configtx] recurseConfigMap -> DEBU 3a4 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-18 09:29:43.979 UTC [common/configtx] processConfig -> DEBU 3a5 Beginning new config for channel businesschannel +2018-01-18 09:29:43.979 UTC [common/config] NewStandardValues -> DEBU 3a6 Initializing protos for *config.ChannelProtos +2018-01-18 09:29:43.979 UTC [common/config] initializeProtosStruct -> DEBU 3a7 Processing field: HashingAlgorithm +2018-01-18 09:29:43.979 UTC [common/config] initializeProtosStruct -> DEBU 3a8 Processing field: BlockDataHashingStructure +2018-01-18 09:29:43.980 UTC [common/config] initializeProtosStruct -> DEBU 3a9 Processing field: OrdererAddresses +2018-01-18 09:29:43.980 UTC [common/config] initializeProtosStruct -> DEBU 3aa Processing field: Consortium +2018-01-18 09:29:43.980 UTC [policies] ProposePolicy -> DEBU 3ab Proposed new policy Writers for Channel +2018-01-18 09:29:43.980 UTC [policies] ProposePolicy -> DEBU 3ac Proposed new policy Admins for Channel +2018-01-18 09:29:43.980 UTC [policies] ProposePolicy -> DEBU 3ad Proposed new policy Readers for Channel +2018-01-18 09:29:43.980 UTC [common/config] NewStandardValues -> DEBU 3ae Initializing protos for *struct {} +2018-01-18 09:29:43.980 UTC [policies] ProposePolicy -> DEBU 3af Proposed new policy Admins for Application +2018-01-18 09:29:43.980 UTC [policies] ProposePolicy -> DEBU 3b0 Proposed new policy Writers for Application +2018-01-18 09:29:43.980 UTC [policies] ProposePolicy -> DEBU 3b1 Proposed new policy Readers for Application +2018-01-18 09:29:43.980 UTC [common/config] NewStandardValues -> DEBU 3b2 Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:43.980 UTC [common/config] initializeProtosStruct -> DEBU 3b3 Processing field: MSP +2018-01-18 09:29:43.980 UTC [common/config] NewStandardValues -> DEBU 3b4 Initializing protos for *config.ApplicationOrgProtos +2018-01-18 09:29:43.980 UTC [common/config] initializeProtosStruct -> DEBU 3b5 Processing field: AnchorPeers +2018-01-18 09:29:43.980 UTC [common/config] NewStandardValues -> DEBU 3b6 Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:43.980 UTC [common/config] initializeProtosStruct -> DEBU 3b7 Processing field: MSP +2018-01-18 09:29:43.980 UTC [policies] ProposePolicy -> DEBU 3b8 Proposed new policy Writers for Org1MSP +2018-01-18 09:29:43.980 UTC [policies] ProposePolicy -> DEBU 3b9 Proposed new policy Admins for Org1MSP +2018-01-18 09:29:43.980 UTC [policies] ProposePolicy -> DEBU 3ba Proposed new policy Readers for Org1MSP +2018-01-18 09:29:43.980 UTC [common/config] NewStandardValues -> DEBU 3bb Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:43.980 UTC [common/config] initializeProtosStruct -> DEBU 3bc Processing field: MSP +2018-01-18 09:29:43.980 UTC [common/config] NewStandardValues -> DEBU 3bd Initializing protos for *config.ApplicationOrgProtos +2018-01-18 09:29:43.980 UTC [common/config] initializeProtosStruct -> DEBU 3be Processing field: AnchorPeers +2018-01-18 09:29:43.980 UTC [common/config] NewStandardValues -> DEBU 3bf Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:43.980 UTC [common/config] initializeProtosStruct -> DEBU 3c0 Processing field: MSP +2018-01-18 09:29:43.980 UTC [policies] ProposePolicy -> DEBU 3c1 Proposed new policy Admins for Org2MSP +2018-01-18 09:29:43.980 UTC [policies] ProposePolicy -> DEBU 3c2 Proposed new policy Readers for Org2MSP +2018-01-18 09:29:43.980 UTC [policies] ProposePolicy -> DEBU 3c3 Proposed new policy Writers for Org2MSP +2018-01-18 09:29:43.980 UTC [common/config] NewStandardValues -> DEBU 3c4 Initializing protos for *config.OrdererProtos +2018-01-18 09:29:43.980 UTC [common/config] initializeProtosStruct -> DEBU 3c5 Processing field: ConsensusType +2018-01-18 09:29:43.980 UTC [common/config] initializeProtosStruct -> DEBU 3c6 Processing field: BatchSize +2018-01-18 09:29:43.980 UTC [common/config] initializeProtosStruct -> DEBU 3c7 Processing field: BatchTimeout +2018-01-18 09:29:43.980 UTC [common/config] initializeProtosStruct -> DEBU 3c8 Processing field: KafkaBrokers +2018-01-18 09:29:43.980 UTC [common/config] initializeProtosStruct -> DEBU 3c9 Processing field: ChannelRestrictions +2018-01-18 09:29:43.980 UTC [policies] ProposePolicy -> DEBU 3ca Proposed new policy Readers for Orderer +2018-01-18 09:29:43.981 UTC [policies] ProposePolicy -> DEBU 3cb Proposed new policy Writers for Orderer +2018-01-18 09:29:43.981 UTC [policies] ProposePolicy -> DEBU 3cc Proposed new policy Admins for Orderer +2018-01-18 09:29:43.981 UTC [policies] ProposePolicy -> DEBU 3cd Proposed new policy BlockValidation for Orderer +2018-01-18 09:29:43.981 UTC [common/config] NewStandardValues -> DEBU 3ce Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:43.981 UTC [common/config] initializeProtosStruct -> DEBU 3cf Processing field: MSP +2018-01-18 09:29:43.981 UTC [policies] ProposePolicy -> DEBU 3d0 Proposed new policy Readers for OrdererOrg +2018-01-18 09:29:43.981 UTC [policies] ProposePolicy -> DEBU 3d1 Proposed new policy Writers for OrdererOrg +2018-01-18 09:29:43.981 UTC [policies] ProposePolicy -> DEBU 3d2 Proposed new policy Admins for OrdererOrg +2018-01-18 09:29:43.981 UTC [common/config] Validate -> DEBU 3d3 Anchor peers for org Org1MSP are +2018-01-18 09:29:43.981 UTC [common/config] validateMSP -> DEBU 3d4 Setting up MSP for org Org1MSP +2018-01-18 09:29:43.981 UTC [msp] NewBccspMsp -> DEBU 3d5 Creating BCCSP-based MSP instance +2018-01-18 09:29:43.982 UTC [msp] Setup -> DEBU 3d6 Setting up MSP instance Org1MSP +2018-01-18 09:29:43.982 UTC [msp/identity] newIdentity -> DEBU 3d7 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -1771,7 +1743,7 @@ JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ H7n8z1pj5w== -----END CERTIFICATE----- -2018-01-18 01:58:51.990 UTC [msp/identity] newIdentity -> DEBU 3d9 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:43.983 UTC [msp/identity] newIdentity -> DEBU 3d8 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -1785,7 +1757,7 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-18 01:58:51.991 UTC [msp/identity] newIdentity -> DEBU 3da Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:43.984 UTC [msp/identity] newIdentity -> DEBU 3d9 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -1799,271 +1771,12 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-18 01:58:51.991 UTC [msp] Validate -> DEBU 3db MSP Org1MSP validating identity -2018-01-18 01:58:51.991 UTC [common/config] validateMSP -> DEBU 3dc Setting up MSP for org OrdererOrg -2018-01-18 01:58:51.991 UTC [msp] NewBccspMsp -> DEBU 3dd Creating BCCSP-based MSP instance -2018-01-18 01:58:51.991 UTC [msp] Setup -> DEBU 3de Setting up MSP instance OrdererMSP -2018-01-18 01:58:51.992 UTC [msp/identity] newIdentity -> DEBU 3df Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW -gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w -XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK -BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs -KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= ------END CERTIFICATE----- -2018-01-18 01:58:51.993 UTC [msp/identity] newIdentity -> DEBU 3e0 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 ------END CERTIFICATE----- -2018-01-18 01:58:51.993 UTC [msp/identity] newIdentity -> DEBU 3e1 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 ------END CERTIFICATE----- -2018-01-18 01:58:51.994 UTC [msp] Validate -> DEBU 3e2 MSP OrdererMSP validating identity -2018-01-18 01:58:51.994 UTC [msp] Setup -> DEBU 3e3 Setting up the MSP manager (3 msps) -2018-01-18 01:58:51.994 UTC [msp] Setup -> DEBU 3e4 MSP manager setup complete, setup 3 msps -2018-01-18 01:58:51.994 UTC [policies] GetPolicy -> DEBU 3e5 Returning policy Writers for evaluation -2018-01-18 01:58:51.994 UTC [policies] CommitProposals -> DEBU 3e6 In commit adding relative sub-policy Org2MSP/Writers to Application -2018-01-18 01:58:51.994 UTC [policies] GetPolicy -> DEBU 3e7 Returning policy Admins for evaluation -2018-01-18 01:58:51.994 UTC [policies] CommitProposals -> DEBU 3e8 In commit adding relative sub-policy Org2MSP/Admins to Application -2018-01-18 01:58:51.994 UTC [policies] GetPolicy -> DEBU 3e9 Returning policy Readers for evaluation -2018-01-18 01:58:51.994 UTC [policies] CommitProposals -> DEBU 3ea In commit adding relative sub-policy Org2MSP/Readers to Application -2018-01-18 01:58:51.994 UTC [policies] GetPolicy -> DEBU 3eb Returning policy Admins for evaluation -2018-01-18 01:58:51.994 UTC [policies] CommitProposals -> DEBU 3ec In commit adding relative sub-policy Org1MSP/Admins to Application -2018-01-18 01:58:51.995 UTC [policies] GetPolicy -> DEBU 3ed Returning policy Readers for evaluation -2018-01-18 01:58:51.995 UTC [policies] CommitProposals -> DEBU 3ee In commit adding relative sub-policy Org1MSP/Readers to Application -2018-01-18 01:58:51.995 UTC [policies] GetPolicy -> DEBU 3ef Returning policy Writers for evaluation -2018-01-18 01:58:51.995 UTC [policies] CommitProposals -> DEBU 3f0 In commit adding relative sub-policy Org1MSP/Writers to Application -2018-01-18 01:58:51.995 UTC [policies] GetPolicy -> DEBU 3f1 Returning policy Admins for evaluation -2018-01-18 01:58:51.995 UTC [policies] GetPolicy -> DEBU 3f2 Returning policy Admins for evaluation -2018-01-18 01:58:51.995 UTC [policies] GetPolicy -> DEBU 3f3 Returning policy Writers for evaluation -2018-01-18 01:58:51.995 UTC [policies] GetPolicy -> DEBU 3f4 Returning policy Writers for evaluation -2018-01-18 01:58:51.995 UTC [policies] GetPolicy -> DEBU 3f5 Returning policy Readers for evaluation -2018-01-18 01:58:51.995 UTC [policies] GetPolicy -> DEBU 3f6 Returning policy Readers for evaluation -2018-01-18 01:58:51.995 UTC [policies] GetPolicy -> DEBU 3f7 Returning policy Writers for evaluation -2018-01-18 01:58:51.995 UTC [policies] CommitProposals -> DEBU 3f8 In commit adding relative sub-policy OrdererOrg/Writers to Orderer -2018-01-18 01:58:51.995 UTC [policies] GetPolicy -> DEBU 3f9 Returning policy Admins for evaluation -2018-01-18 01:58:51.995 UTC [policies] CommitProposals -> DEBU 3fa In commit adding relative sub-policy OrdererOrg/Admins to Orderer -2018-01-18 01:58:51.995 UTC [policies] GetPolicy -> DEBU 3fb Returning policy Readers for evaluation -2018-01-18 01:58:51.995 UTC [policies] CommitProposals -> DEBU 3fc In commit adding relative sub-policy OrdererOrg/Readers to Orderer -2018-01-18 01:58:51.995 UTC [policies] GetPolicy -> DEBU 3fd Returning policy Writers for evaluation -2018-01-18 01:58:51.995 UTC [policies] GetPolicy -> DEBU 3fe Returning policy Admins for evaluation -2018-01-18 01:58:51.995 UTC [policies] GetPolicy -> DEBU 3ff Returning policy Writers for evaluation -2018-01-18 01:58:51.995 UTC [policies] GetPolicy -> DEBU 400 Returning policy Readers for evaluation -2018-01-18 01:58:51.995 UTC [policies] GetPolicy -> DEBU 401 Returning policy Readers for evaluation -2018-01-18 01:58:51.995 UTC [policies] CommitProposals -> DEBU 402 In commit adding relative sub-policy Application/Readers to Channel -2018-01-18 01:58:51.996 UTC [policies] GetPolicy -> DEBU 403 Returning policy Org2MSP/Admins for evaluation -2018-01-18 01:58:51.996 UTC [policies] CommitProposals -> DEBU 404 In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -2018-01-18 01:58:51.996 UTC [policies] GetPolicy -> DEBU 405 Returning policy Org1MSP/Readers for evaluation -2018-01-18 01:58:51.996 UTC [policies] CommitProposals -> DEBU 406 In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -2018-01-18 01:58:51.996 UTC [policies] GetPolicy -> DEBU 407 Returning policy Admins for evaluation -2018-01-18 01:58:51.996 UTC [policies] CommitProposals -> DEBU 408 In commit adding relative sub-policy Application/Admins to Channel -2018-01-18 01:58:51.996 UTC [policies] GetPolicy -> DEBU 409 Returning policy Writers for evaluation -2018-01-18 01:58:51.996 UTC [policies] CommitProposals -> DEBU 40a In commit adding relative sub-policy Application/Writers to Channel -2018-01-18 01:58:51.996 UTC [policies] GetPolicy -> DEBU 40b Returning policy Org2MSP/Writers for evaluation -2018-01-18 01:58:51.996 UTC [policies] CommitProposals -> DEBU 40c In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -2018-01-18 01:58:51.996 UTC [policies] GetPolicy -> DEBU 40d Returning policy Org2MSP/Readers for evaluation -2018-01-18 01:58:51.996 UTC [policies] CommitProposals -> DEBU 40e In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -2018-01-18 01:58:51.996 UTC [policies] GetPolicy -> DEBU 40f Returning policy Org1MSP/Admins for evaluation -2018-01-18 01:58:51.996 UTC [policies] CommitProposals -> DEBU 410 In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -2018-01-18 01:58:51.996 UTC [policies] GetPolicy -> DEBU 411 Returning policy Org1MSP/Writers for evaluation -2018-01-18 01:58:51.996 UTC [policies] CommitProposals -> DEBU 412 In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -2018-01-18 01:58:51.996 UTC [policies] GetPolicy -> DEBU 413 Returning policy OrdererOrg/Readers for evaluation -2018-01-18 01:58:51.996 UTC [policies] CommitProposals -> DEBU 414 In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -2018-01-18 01:58:51.996 UTC [policies] GetPolicy -> DEBU 415 Returning policy Writers for evaluation -2018-01-18 01:58:51.996 UTC [policies] CommitProposals -> DEBU 416 In commit adding relative sub-policy Orderer/Writers to Channel -2018-01-18 01:58:51.996 UTC [policies] GetPolicy -> DEBU 417 Returning policy Admins for evaluation -2018-01-18 01:58:51.996 UTC [policies] CommitProposals -> DEBU 418 In commit adding relative sub-policy Orderer/Admins to Channel -2018-01-18 01:58:51.997 UTC [policies] GetPolicy -> DEBU 419 Returning policy BlockValidation for evaluation -2018-01-18 01:58:51.997 UTC [policies] CommitProposals -> DEBU 41a In commit adding relative sub-policy Orderer/BlockValidation to Channel -2018-01-18 01:58:51.997 UTC [policies] GetPolicy -> DEBU 41b Returning policy Readers for evaluation -2018-01-18 01:58:51.997 UTC [policies] CommitProposals -> DEBU 41c In commit adding relative sub-policy Orderer/Readers to Channel -2018-01-18 01:58:51.997 UTC [policies] GetPolicy -> DEBU 41d Returning policy OrdererOrg/Writers for evaluation -2018-01-18 01:58:51.998 UTC [policies] CommitProposals -> DEBU 41e In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -2018-01-18 01:58:51.998 UTC [policies] GetPolicy -> DEBU 41f Returning policy OrdererOrg/Admins for evaluation -2018-01-18 01:58:51.998 UTC [policies] CommitProposals -> DEBU 420 In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -2018-01-18 01:58:51.998 UTC [policies] GetPolicy -> DEBU 421 Returning policy Admins for evaluation -2018-01-18 01:58:51.998 UTC [policies] GetPolicy -> DEBU 422 Returning policy Admins for evaluation -2018-01-18 01:58:51.998 UTC [policies] GetPolicy -> DEBU 423 Returning policy Readers for evaluation -2018-01-18 01:58:51.998 UTC [policies] GetPolicy -> DEBU 424 Returning policy Readers for evaluation -2018-01-18 01:58:51.998 UTC [policies] GetPolicy -> DEBU 425 Returning policy Writers for evaluation -2018-01-18 01:58:51.998 UTC [policies] GetPolicy -> DEBU 426 Returning policy Writers for evaluation -2018-01-18 01:58:51.998 UTC [policies] GetPolicy -> DEBU 427 Returning policy Readers for evaluation -2018-01-18 01:58:51.998 UTC [policies] CommitProposals -> DEBU 428 As expected, current configuration has policy '/Channel/Readers' -2018-01-18 01:58:51.998 UTC [policies] GetPolicy -> DEBU 429 Returning policy Writers for evaluation -2018-01-18 01:58:51.998 UTC [policies] CommitProposals -> DEBU 42a As expected, current configuration has policy '/Channel/Writers' -2018-01-18 01:58:51.998 UTC [policies] GetPolicy -> DEBU 42b Returning policy Application/Readers for evaluation -2018-01-18 01:58:51.998 UTC [policies] CommitProposals -> DEBU 42c As expected, current configuration has policy '/Channel/Application/Readers' -2018-01-18 01:58:51.998 UTC [policies] GetPolicy -> DEBU 42d Returning policy Application/Writers for evaluation -2018-01-18 01:58:51.998 UTC [policies] CommitProposals -> DEBU 42e As expected, current configuration has policy '/Channel/Application/Writers' -2018-01-18 01:58:51.998 UTC [policies] GetPolicy -> DEBU 42f Returning policy Application/Admins for evaluation -2018-01-18 01:58:51.998 UTC [policies] CommitProposals -> DEBU 430 As expected, current configuration has policy '/Channel/Application/Admins' -2018-01-18 01:58:51.998 UTC [policies] GetPolicy -> DEBU 431 Returning policy Orderer/BlockValidation for evaluation -2018-01-18 01:58:51.998 UTC [policies] CommitProposals -> DEBU 432 As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -2018-01-18 01:58:51.998 UTC [common/config] NewStandardValues -> DEBU 433 Initializing protos for *config.ChannelProtos -2018-01-18 01:58:51.998 UTC [common/config] initializeProtosStruct -> DEBU 434 Processing field: HashingAlgorithm -2018-01-18 01:58:51.999 UTC [common/config] initializeProtosStruct -> DEBU 435 Processing field: BlockDataHashingStructure -2018-01-18 01:58:51.999 UTC [common/config] initializeProtosStruct -> DEBU 436 Processing field: OrdererAddresses -2018-01-18 01:58:51.999 UTC [common/config] initializeProtosStruct -> DEBU 437 Processing field: Consortium -2018-01-18 01:58:51.999 UTC [common/configtx] addToMap -> DEBU 438 Adding to config map: [Groups] /Channel -2018-01-18 01:58:51.999 UTC [common/configtx] addToMap -> DEBU 439 Adding to config map: [Groups] /Channel/Application -2018-01-18 01:58:51.999 UTC [common/configtx] addToMap -> DEBU 43a Adding to config map: [Groups] /Channel/Application/Org1MSP -2018-01-18 01:58:51.999 UTC [common/configtx] addToMap -> DEBU 43b Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -2018-01-18 01:58:51.999 UTC [common/configtx] addToMap -> DEBU 43c Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -2018-01-18 01:58:51.999 UTC [common/configtx] addToMap -> DEBU 43d Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -2018-01-18 01:58:52.000 UTC [common/configtx] addToMap -> DEBU 43e Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -2018-01-18 01:58:52.000 UTC [common/configtx] addToMap -> DEBU 43f Adding to config map: [Groups] /Channel/Application/Org2MSP -2018-01-18 01:58:52.000 UTC [common/configtx] addToMap -> DEBU 440 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -2018-01-18 01:58:52.000 UTC [common/configtx] addToMap -> DEBU 441 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -2018-01-18 01:58:52.000 UTC [common/configtx] addToMap -> DEBU 442 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -2018-01-18 01:58:52.000 UTC [common/configtx] addToMap -> DEBU 443 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -2018-01-18 01:58:52.000 UTC [common/configtx] addToMap -> DEBU 444 Adding to config map: [Policy] /Channel/Application/Admins -2018-01-18 01:58:52.000 UTC [common/configtx] addToMap -> DEBU 445 Adding to config map: [Policy] /Channel/Application/Writers -2018-01-18 01:58:52.000 UTC [common/configtx] addToMap -> DEBU 446 Adding to config map: [Policy] /Channel/Application/Readers -2018-01-18 01:58:52.000 UTC [common/configtx] addToMap -> DEBU 447 Adding to config map: [Groups] /Channel/Orderer -2018-01-18 01:58:52.000 UTC [common/configtx] addToMap -> DEBU 448 Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -2018-01-18 01:58:52.000 UTC [common/configtx] addToMap -> DEBU 449 Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -2018-01-18 01:58:52.000 UTC [common/configtx] addToMap -> DEBU 44a Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -2018-01-18 01:58:52.000 UTC [common/configtx] addToMap -> DEBU 44b Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -2018-01-18 01:58:52.000 UTC [common/configtx] addToMap -> DEBU 44c Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -2018-01-18 01:58:52.000 UTC [common/configtx] addToMap -> DEBU 44d Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -2018-01-18 01:58:52.000 UTC [common/configtx] addToMap -> DEBU 44e Adding to config map: [Values] /Channel/Orderer/ConsensusType -2018-01-18 01:58:52.001 UTC [common/configtx] addToMap -> DEBU 44f Adding to config map: [Values] /Channel/Orderer/BatchSize -2018-01-18 01:58:52.001 UTC [common/configtx] addToMap -> DEBU 450 Adding to config map: [Values] /Channel/Orderer/BatchTimeout -2018-01-18 01:58:52.001 UTC [common/configtx] addToMap -> DEBU 451 Adding to config map: [Policy] /Channel/Orderer/BlockValidation -2018-01-18 01:58:52.001 UTC [common/configtx] addToMap -> DEBU 452 Adding to config map: [Policy] /Channel/Orderer/Readers -2018-01-18 01:58:52.001 UTC [common/configtx] addToMap -> DEBU 453 Adding to config map: [Policy] /Channel/Orderer/Writers -2018-01-18 01:58:52.001 UTC [common/configtx] addToMap -> DEBU 454 Adding to config map: [Policy] /Channel/Orderer/Admins -2018-01-18 01:58:52.001 UTC [common/configtx] addToMap -> DEBU 455 Adding to config map: [Values] /Channel/HashingAlgorithm -2018-01-18 01:58:52.001 UTC [common/configtx] addToMap -> DEBU 456 Adding to config map: [Values] /Channel/BlockDataHashingStructure -2018-01-18 01:58:52.001 UTC [common/configtx] addToMap -> DEBU 457 Adding to config map: [Values] /Channel/Consortium -2018-01-18 01:58:52.001 UTC [common/configtx] addToMap -> DEBU 458 Adding to config map: [Values] /Channel/OrdererAddresses -2018-01-18 01:58:52.001 UTC [common/configtx] addToMap -> DEBU 459 Adding to config map: [Policy] /Channel/Writers -2018-01-18 01:58:52.001 UTC [common/configtx] addToMap -> DEBU 45a Adding to config map: [Policy] /Channel/Admins -2018-01-18 01:58:52.001 UTC [common/configtx] addToMap -> DEBU 45b Adding to config map: [Policy] /Channel/Readers -2018-01-18 01:58:52.001 UTC [common/configtx] processConfig -> DEBU 45c Beginning new config for channel businesschannel -2018-01-18 01:58:52.001 UTC [common/config] NewStandardValues -> DEBU 45d Initializing protos for *config.ChannelProtos -2018-01-18 01:58:52.001 UTC [common/config] initializeProtosStruct -> DEBU 45e Processing field: HashingAlgorithm -2018-01-18 01:58:52.001 UTC [common/config] initializeProtosStruct -> DEBU 45f Processing field: BlockDataHashingStructure -2018-01-18 01:58:52.001 UTC [common/config] initializeProtosStruct -> DEBU 460 Processing field: OrdererAddresses -2018-01-18 01:58:52.001 UTC [common/config] initializeProtosStruct -> DEBU 461 Processing field: Consortium -2018-01-18 01:58:52.001 UTC [policies] ProposePolicy -> DEBU 462 Proposed new policy Readers for Channel -2018-01-18 01:58:52.001 UTC [policies] ProposePolicy -> DEBU 463 Proposed new policy Writers for Channel -2018-01-18 01:58:52.002 UTC [policies] ProposePolicy -> DEBU 464 Proposed new policy Admins for Channel -2018-01-18 01:58:52.002 UTC [common/config] NewStandardValues -> DEBU 465 Initializing protos for *struct {} -2018-01-18 01:58:52.002 UTC [policies] ProposePolicy -> DEBU 466 Proposed new policy Admins for Application -2018-01-18 01:58:52.002 UTC [policies] ProposePolicy -> DEBU 467 Proposed new policy Writers for Application -2018-01-18 01:58:52.002 UTC [policies] ProposePolicy -> DEBU 468 Proposed new policy Readers for Application -2018-01-18 01:58:52.002 UTC [common/config] NewStandardValues -> DEBU 469 Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:52.002 UTC [common/config] initializeProtosStruct -> DEBU 46a Processing field: MSP -2018-01-18 01:58:52.002 UTC [common/config] NewStandardValues -> DEBU 46b Initializing protos for *config.ApplicationOrgProtos -2018-01-18 01:58:52.002 UTC [common/config] initializeProtosStruct -> DEBU 46c Processing field: AnchorPeers -2018-01-18 01:58:52.002 UTC [common/config] NewStandardValues -> DEBU 46d Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:52.002 UTC [common/config] initializeProtosStruct -> DEBU 46e Processing field: MSP -2018-01-18 01:58:52.002 UTC [policies] ProposePolicy -> DEBU 46f Proposed new policy Admins for Org1MSP -2018-01-18 01:58:52.002 UTC [policies] ProposePolicy -> DEBU 470 Proposed new policy Readers for Org1MSP -2018-01-18 01:58:52.002 UTC [policies] ProposePolicy -> DEBU 471 Proposed new policy Writers for Org1MSP -2018-01-18 01:58:52.002 UTC [common/config] NewStandardValues -> DEBU 472 Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:52.002 UTC [common/config] initializeProtosStruct -> DEBU 473 Processing field: MSP -2018-01-18 01:58:52.002 UTC [common/config] NewStandardValues -> DEBU 474 Initializing protos for *config.ApplicationOrgProtos -2018-01-18 01:58:52.002 UTC [common/config] initializeProtosStruct -> DEBU 475 Processing field: AnchorPeers -2018-01-18 01:58:52.002 UTC [common/config] NewStandardValues -> DEBU 476 Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:52.002 UTC [common/config] initializeProtosStruct -> DEBU 477 Processing field: MSP -2018-01-18 01:58:52.002 UTC [policies] ProposePolicy -> DEBU 478 Proposed new policy Writers for Org2MSP -2018-01-18 01:58:52.002 UTC [policies] ProposePolicy -> DEBU 479 Proposed new policy Admins for Org2MSP -2018-01-18 01:58:52.002 UTC [policies] ProposePolicy -> DEBU 47a Proposed new policy Readers for Org2MSP -2018-01-18 01:58:52.002 UTC [common/config] NewStandardValues -> DEBU 47b Initializing protos for *config.OrdererProtos -2018-01-18 01:58:52.002 UTC [common/config] initializeProtosStruct -> DEBU 47c Processing field: ConsensusType -2018-01-18 01:58:52.003 UTC [common/config] initializeProtosStruct -> DEBU 47d Processing field: BatchSize -2018-01-18 01:58:52.003 UTC [common/config] initializeProtosStruct -> DEBU 47e Processing field: BatchTimeout -2018-01-18 01:58:52.003 UTC [common/config] initializeProtosStruct -> DEBU 47f Processing field: KafkaBrokers -2018-01-18 01:58:52.003 UTC [common/config] initializeProtosStruct -> DEBU 480 Processing field: ChannelRestrictions -2018-01-18 01:58:52.003 UTC [policies] ProposePolicy -> DEBU 481 Proposed new policy BlockValidation for Orderer -2018-01-18 01:58:52.003 UTC [policies] ProposePolicy -> DEBU 482 Proposed new policy Readers for Orderer -2018-01-18 01:58:52.003 UTC [policies] ProposePolicy -> DEBU 483 Proposed new policy Writers for Orderer -2018-01-18 01:58:52.003 UTC [policies] ProposePolicy -> DEBU 484 Proposed new policy Admins for Orderer -2018-01-18 01:58:52.003 UTC [common/config] NewStandardValues -> DEBU 485 Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:52.003 UTC [common/config] initializeProtosStruct -> DEBU 486 Processing field: MSP -2018-01-18 01:58:52.003 UTC [policies] ProposePolicy -> DEBU 487 Proposed new policy Admins for OrdererOrg -2018-01-18 01:58:52.003 UTC [policies] ProposePolicy -> DEBU 488 Proposed new policy Readers for OrdererOrg -2018-01-18 01:58:52.003 UTC [policies] ProposePolicy -> DEBU 489 Proposed new policy Writers for OrdererOrg -2018-01-18 01:58:52.003 UTC [common/config] Validate -> DEBU 48a Anchor peers for org Org1MSP are -2018-01-18 01:58:52.003 UTC [common/config] validateMSP -> DEBU 48b Setting up MSP for org Org1MSP -2018-01-18 01:58:52.003 UTC [msp] NewBccspMsp -> DEBU 48c Creating BCCSP-based MSP instance -2018-01-18 01:58:52.004 UTC [msp] Setup -> DEBU 48d Setting up MSP instance Org1MSP -2018-01-18 01:58:52.004 UTC [msp/identity] newIdentity -> DEBU 48e Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf -db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx -JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi -/IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ -H7n8z1pj5w== ------END CERTIFICATE----- -2018-01-18 01:58:52.004 UTC [msp/identity] newIdentity -> DEBU 48f Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -xHTBvxfK6mAzmUitFmY= ------END CERTIFICATE----- -2018-01-18 01:58:52.004 UTC [msp/identity] newIdentity -> DEBU 490 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -xHTBvxfK6mAzmUitFmY= ------END CERTIFICATE----- -2018-01-18 01:58:52.005 UTC [msp] Validate -> DEBU 491 MSP Org1MSP validating identity -2018-01-18 01:58:52.005 UTC [common/config] Validate -> DEBU 492 Anchor peers for org Org2MSP are -2018-01-18 01:58:52.005 UTC [common/config] validateMSP -> DEBU 493 Setting up MSP for org Org2MSP -2018-01-18 01:58:52.005 UTC [msp] NewBccspMsp -> DEBU 494 Creating BCCSP-based MSP instance -2018-01-18 01:58:52.005 UTC [msp] Setup -> DEBU 495 Setting up MSP instance Org2MSP -2018-01-18 01:58:52.006 UTC [msp/identity] newIdentity -> DEBU 496 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:43.986 UTC [msp] Validate -> DEBU 3da MSP Org1MSP validating identity +2018-01-18 09:29:43.986 UTC [common/config] Validate -> DEBU 3db Anchor peers for org Org2MSP are +2018-01-18 09:29:43.986 UTC [common/config] validateMSP -> DEBU 3dc Setting up MSP for org Org2MSP +2018-01-18 09:29:43.987 UTC [msp] NewBccspMsp -> DEBU 3dd Creating BCCSP-based MSP instance +2018-01-18 09:29:43.987 UTC [msp] Setup -> DEBU 3de Setting up MSP instance Org2MSP +2018-01-18 09:29:43.988 UTC [msp/identity] newIdentity -> DEBU 3df Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -2078,7 +1791,7 @@ xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk SCjyRdD3aQ== -----END CERTIFICATE----- -2018-01-18 01:58:52.006 UTC [msp/identity] newIdentity -> DEBU 497 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:43.988 UTC [msp/identity] newIdentity -> DEBU 3e0 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -2092,7 +1805,7 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS AXYxULZpXYDQXt1KaLI= -----END CERTIFICATE----- -2018-01-18 01:58:52.006 UTC [msp/identity] newIdentity -> DEBU 498 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:43.989 UTC [msp/identity] newIdentity -> DEBU 3e1 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -2106,11 +1819,11 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS AXYxULZpXYDQXt1KaLI= -----END CERTIFICATE----- -2018-01-18 01:58:52.007 UTC [msp] Validate -> DEBU 499 MSP Org2MSP validating identity -2018-01-18 01:58:52.007 UTC [common/config] validateMSP -> DEBU 49a Setting up MSP for org OrdererOrg -2018-01-18 01:58:52.007 UTC [msp] NewBccspMsp -> DEBU 49b Creating BCCSP-based MSP instance -2018-01-18 01:58:52.007 UTC [msp] Setup -> DEBU 49c Setting up MSP instance OrdererMSP -2018-01-18 01:58:52.007 UTC [msp/identity] newIdentity -> DEBU 49d Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:43.990 UTC [msp] Validate -> DEBU 3e2 MSP Org2MSP validating identity +2018-01-18 09:29:43.991 UTC [common/config] validateMSP -> DEBU 3e3 Setting up MSP for org OrdererOrg +2018-01-18 09:29:43.991 UTC [msp] NewBccspMsp -> DEBU 3e4 Creating BCCSP-based MSP instance +2018-01-18 09:29:43.991 UTC [msp] Setup -> DEBU 3e5 Setting up MSP instance OrdererMSP +2018-01-18 09:29:43.991 UTC [msp/identity] newIdentity -> DEBU 3e6 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -2124,7 +1837,7 @@ AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= -----END CERTIFICATE----- -2018-01-18 01:58:52.008 UTC [msp/identity] newIdentity -> DEBU 49e Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:43.992 UTC [msp/identity] newIdentity -> DEBU 3e7 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -2137,7 +1850,7 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -----END CERTIFICATE----- -2018-01-18 01:58:52.008 UTC [msp/identity] newIdentity -> DEBU 49f Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:43.993 UTC [msp/identity] newIdentity -> DEBU 3e8 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -2150,93 +1863,399 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -----END CERTIFICATE----- -2018-01-18 01:58:52.008 UTC [msp] Validate -> DEBU 4a0 MSP OrdererMSP validating identity -2018-01-18 01:58:52.008 UTC [msp] Setup -> DEBU 4a1 Setting up the MSP manager (3 msps) -2018-01-18 01:58:52.009 UTC [msp] Setup -> DEBU 4a2 MSP manager setup complete, setup 3 msps -2018-01-18 01:58:52.009 UTC [policies] GetPolicy -> DEBU 4a3 Returning policy Admins for evaluation -2018-01-18 01:58:52.009 UTC [policies] CommitProposals -> DEBU 4a4 In commit adding relative sub-policy Org1MSP/Admins to Application -2018-01-18 01:58:52.009 UTC [policies] GetPolicy -> DEBU 4a5 Returning policy Readers for evaluation -2018-01-18 01:58:52.009 UTC [policies] CommitProposals -> DEBU 4a6 In commit adding relative sub-policy Org1MSP/Readers to Application -2018-01-18 01:58:52.009 UTC [policies] GetPolicy -> DEBU 4a7 Returning policy Writers for evaluation -2018-01-18 01:58:52.009 UTC [policies] CommitProposals -> DEBU 4a8 In commit adding relative sub-policy Org1MSP/Writers to Application -2018-01-18 01:58:52.009 UTC [policies] GetPolicy -> DEBU 4a9 Returning policy Writers for evaluation -2018-01-18 01:58:52.009 UTC [policies] CommitProposals -> DEBU 4aa In commit adding relative sub-policy Org2MSP/Writers to Application -2018-01-18 01:58:52.009 UTC [policies] GetPolicy -> DEBU 4ab Returning policy Admins for evaluation -2018-01-18 01:58:52.009 UTC [policies] CommitProposals -> DEBU 4ac In commit adding relative sub-policy Org2MSP/Admins to Application -2018-01-18 01:58:52.009 UTC [policies] GetPolicy -> DEBU 4ad Returning policy Readers for evaluation -2018-01-18 01:58:52.009 UTC [policies] CommitProposals -> DEBU 4ae In commit adding relative sub-policy Org2MSP/Readers to Application -2018-01-18 01:58:52.009 UTC [policies] GetPolicy -> DEBU 4af Returning policy Admins for evaluation -2018-01-18 01:58:52.009 UTC [policies] GetPolicy -> DEBU 4b0 Returning policy Admins for evaluation -2018-01-18 01:58:52.009 UTC [policies] GetPolicy -> DEBU 4b1 Returning policy Writers for evaluation -2018-01-18 01:58:52.009 UTC [policies] GetPolicy -> DEBU 4b2 Returning policy Writers for evaluation -2018-01-18 01:58:52.009 UTC [policies] GetPolicy -> DEBU 4b3 Returning policy Readers for evaluation -2018-01-18 01:58:52.009 UTC [policies] GetPolicy -> DEBU 4b4 Returning policy Readers for evaluation -2018-01-18 01:58:52.009 UTC [policies] GetPolicy -> DEBU 4b5 Returning policy Admins for evaluation -2018-01-18 01:58:52.009 UTC [policies] CommitProposals -> DEBU 4b6 In commit adding relative sub-policy OrdererOrg/Admins to Orderer -2018-01-18 01:58:52.009 UTC [policies] GetPolicy -> DEBU 4b7 Returning policy Readers for evaluation -2018-01-18 01:58:52.009 UTC [policies] CommitProposals -> DEBU 4b8 In commit adding relative sub-policy OrdererOrg/Readers to Orderer -2018-01-18 01:58:52.009 UTC [policies] GetPolicy -> DEBU 4b9 Returning policy Writers for evaluation -2018-01-18 01:58:52.009 UTC [policies] CommitProposals -> DEBU 4ba In commit adding relative sub-policy OrdererOrg/Writers to Orderer -2018-01-18 01:58:52.009 UTC [policies] GetPolicy -> DEBU 4bb Returning policy Writers for evaluation -2018-01-18 01:58:52.010 UTC [policies] GetPolicy -> DEBU 4bc Returning policy Readers for evaluation -2018-01-18 01:58:52.010 UTC [policies] GetPolicy -> DEBU 4bd Returning policy Writers for evaluation -2018-01-18 01:58:52.010 UTC [policies] GetPolicy -> DEBU 4be Returning policy Admins for evaluation -2018-01-18 01:58:52.010 UTC [policies] GetPolicy -> DEBU 4bf Returning policy Admins for evaluation -2018-01-18 01:58:52.010 UTC [policies] CommitProposals -> DEBU 4c0 In commit adding relative sub-policy Application/Admins to Channel -2018-01-18 01:58:52.010 UTC [policies] GetPolicy -> DEBU 4c1 Returning policy Readers for evaluation -2018-01-18 01:58:52.010 UTC [policies] CommitProposals -> DEBU 4c2 In commit adding relative sub-policy Application/Readers to Channel -2018-01-18 01:58:52.010 UTC [policies] GetPolicy -> DEBU 4c3 Returning policy Org1MSP/Admins for evaluation -2018-01-18 01:58:52.010 UTC [policies] CommitProposals -> DEBU 4c4 In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -2018-01-18 01:58:52.010 UTC [policies] GetPolicy -> DEBU 4c5 Returning policy Org1MSP/Readers for evaluation -2018-01-18 01:58:52.010 UTC [policies] CommitProposals -> DEBU 4c6 In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -2018-01-18 01:58:52.010 UTC [policies] GetPolicy -> DEBU 4c7 Returning policy Org1MSP/Writers for evaluation -2018-01-18 01:58:52.010 UTC [policies] CommitProposals -> DEBU 4c8 In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -2018-01-18 01:58:52.010 UTC [policies] GetPolicy -> DEBU 4c9 Returning policy Org2MSP/Writers for evaluation -2018-01-18 01:58:52.010 UTC [policies] CommitProposals -> DEBU 4ca In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -2018-01-18 01:58:52.010 UTC [policies] GetPolicy -> DEBU 4cb Returning policy Writers for evaluation -2018-01-18 01:58:52.010 UTC [policies] CommitProposals -> DEBU 4cc In commit adding relative sub-policy Application/Writers to Channel -2018-01-18 01:58:52.011 UTC [policies] GetPolicy -> DEBU 4cd Returning policy Org2MSP/Admins for evaluation -2018-01-18 01:58:52.011 UTC [policies] CommitProposals -> DEBU 4ce In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -2018-01-18 01:58:52.011 UTC [policies] GetPolicy -> DEBU 4cf Returning policy Org2MSP/Readers for evaluation -2018-01-18 01:58:52.011 UTC [policies] CommitProposals -> DEBU 4d0 In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -2018-01-18 01:58:52.011 UTC [policies] GetPolicy -> DEBU 4d1 Returning policy Writers for evaluation -2018-01-18 01:58:52.011 UTC [policies] CommitProposals -> DEBU 4d2 In commit adding relative sub-policy Orderer/Writers to Channel -2018-01-18 01:58:52.011 UTC [policies] GetPolicy -> DEBU 4d3 Returning policy Admins for evaluation -2018-01-18 01:58:52.011 UTC [policies] CommitProposals -> DEBU 4d4 In commit adding relative sub-policy Orderer/Admins to Channel -2018-01-18 01:58:52.011 UTC [policies] GetPolicy -> DEBU 4d5 Returning policy OrdererOrg/Admins for evaluation -2018-01-18 01:58:52.011 UTC [policies] CommitProposals -> DEBU 4d6 In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -2018-01-18 01:58:52.011 UTC [policies] GetPolicy -> DEBU 4d7 Returning policy OrdererOrg/Readers for evaluation -2018-01-18 01:58:52.011 UTC [policies] CommitProposals -> DEBU 4d8 In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -2018-01-18 01:58:52.011 UTC [policies] GetPolicy -> DEBU 4d9 Returning policy OrdererOrg/Writers for evaluation -2018-01-18 01:58:52.011 UTC [policies] CommitProposals -> DEBU 4da In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -2018-01-18 01:58:52.011 UTC [policies] GetPolicy -> DEBU 4db Returning policy BlockValidation for evaluation -2018-01-18 01:58:52.011 UTC [policies] CommitProposals -> DEBU 4dc In commit adding relative sub-policy Orderer/BlockValidation to Channel -2018-01-18 01:58:52.011 UTC [policies] GetPolicy -> DEBU 4dd Returning policy Readers for evaluation -2018-01-18 01:58:52.011 UTC [policies] CommitProposals -> DEBU 4de In commit adding relative sub-policy Orderer/Readers to Channel -2018-01-18 01:58:52.011 UTC [policies] GetPolicy -> DEBU 4df Returning policy Readers for evaluation -2018-01-18 01:58:52.011 UTC [policies] GetPolicy -> DEBU 4e0 Returning policy Readers for evaluation -2018-01-18 01:58:52.011 UTC [policies] GetPolicy -> DEBU 4e1 Returning policy Writers for evaluation -2018-01-18 01:58:52.012 UTC [policies] GetPolicy -> DEBU 4e2 Returning policy Writers for evaluation -2018-01-18 01:58:52.012 UTC [policies] GetPolicy -> DEBU 4e3 Returning policy Admins for evaluation -2018-01-18 01:58:52.012 UTC [policies] GetPolicy -> DEBU 4e4 Returning policy Admins for evaluation -2018-01-18 01:58:52.012 UTC [policies] GetPolicy -> DEBU 4e5 Returning policy Readers for evaluation -2018-01-18 01:58:52.012 UTC [policies] CommitProposals -> DEBU 4e6 As expected, current configuration has policy '/Channel/Readers' -2018-01-18 01:58:52.012 UTC [policies] GetPolicy -> DEBU 4e7 Returning policy Writers for evaluation -2018-01-18 01:58:52.012 UTC [policies] CommitProposals -> DEBU 4e8 As expected, current configuration has policy '/Channel/Writers' -2018-01-18 01:58:52.012 UTC [policies] GetPolicy -> DEBU 4e9 Returning policy Application/Readers for evaluation -2018-01-18 01:58:52.012 UTC [policies] CommitProposals -> DEBU 4ea As expected, current configuration has policy '/Channel/Application/Readers' -2018-01-18 01:58:52.012 UTC [policies] GetPolicy -> DEBU 4eb Returning policy Application/Writers for evaluation -2018-01-18 01:58:52.012 UTC [policies] CommitProposals -> DEBU 4ec As expected, current configuration has policy '/Channel/Application/Writers' -2018-01-18 01:58:52.012 UTC [policies] GetPolicy -> DEBU 4ed Returning policy Application/Admins for evaluation -2018-01-18 01:58:52.012 UTC [policies] CommitProposals -> DEBU 4ee As expected, current configuration has policy '/Channel/Application/Admins' -2018-01-18 01:58:52.012 UTC [policies] GetPolicy -> DEBU 4ef Returning policy Orderer/BlockValidation for evaluation -2018-01-18 01:58:52.012 UTC [policies] CommitProposals -> DEBU 4f0 As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -2018-01-18 01:58:52.012 UTC [orderer/common/broadcast] Handle -> DEBU 4f1 [channel: testchainid] Broadcast has successfully enqueued message of type ORDERER_TRANSACTION -2018-01-18 01:58:52.013 UTC [policies] GetPolicy -> DEBU 4f2 Returning policy Writers for evaluation -2018-01-18 01:58:52.013 UTC [cauthdsl] func1 -> DEBU 4f3 0xc420026028 gate 1516240732013234104 evaluation starts -2018-01-18 01:58:52.013 UTC [cauthdsl] func2 -> DEBU 4f4 0xc420026028 signed by 0 principal evaluation starts (used [false]) -2018-01-18 01:58:52.013 UTC [cauthdsl] func2 -> DEBU 4f5 0xc420026028 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-18 01:58:52.013 UTC [msp/identity] newIdentity -> DEBU 4f6 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:43.994 UTC [msp] Validate -> DEBU 3e9 MSP OrdererMSP validating identity +2018-01-18 09:29:43.994 UTC [msp] Setup -> DEBU 3ea Setting up the MSP manager (3 msps) +2018-01-18 09:29:43.995 UTC [msp] Setup -> DEBU 3eb MSP manager setup complete, setup 3 msps +2018-01-18 09:29:43.995 UTC [policies] GetPolicy -> DEBU 3ec Returning policy Admins for evaluation +2018-01-18 09:29:43.995 UTC [policies] CommitProposals -> DEBU 3ed In commit adding relative sub-policy Org1MSP/Admins to Application +2018-01-18 09:29:43.995 UTC [policies] GetPolicy -> DEBU 3ee Returning policy Readers for evaluation +2018-01-18 09:29:43.995 UTC [policies] CommitProposals -> DEBU 3ef In commit adding relative sub-policy Org1MSP/Readers to Application +2018-01-18 09:29:43.995 UTC [policies] GetPolicy -> DEBU 3f0 Returning policy Writers for evaluation +2018-01-18 09:29:43.995 UTC [policies] CommitProposals -> DEBU 3f1 In commit adding relative sub-policy Org1MSP/Writers to Application +2018-01-18 09:29:43.995 UTC [policies] GetPolicy -> DEBU 3f2 Returning policy Admins for evaluation +2018-01-18 09:29:43.996 UTC [policies] CommitProposals -> DEBU 3f3 In commit adding relative sub-policy Org2MSP/Admins to Application +2018-01-18 09:29:43.996 UTC [policies] GetPolicy -> DEBU 3f4 Returning policy Readers for evaluation +2018-01-18 09:29:43.996 UTC [policies] CommitProposals -> DEBU 3f5 In commit adding relative sub-policy Org2MSP/Readers to Application +2018-01-18 09:29:43.996 UTC [policies] GetPolicy -> DEBU 3f6 Returning policy Writers for evaluation +2018-01-18 09:29:43.996 UTC [policies] CommitProposals -> DEBU 3f7 In commit adding relative sub-policy Org2MSP/Writers to Application +2018-01-18 09:29:43.996 UTC [policies] GetPolicy -> DEBU 3f8 Returning policy Admins for evaluation +2018-01-18 09:29:43.996 UTC [policies] GetPolicy -> DEBU 3f9 Returning policy Admins for evaluation +2018-01-18 09:29:43.996 UTC [policies] GetPolicy -> DEBU 3fa Returning policy Writers for evaluation +2018-01-18 09:29:43.996 UTC [policies] GetPolicy -> DEBU 3fb Returning policy Writers for evaluation +2018-01-18 09:29:43.996 UTC [policies] GetPolicy -> DEBU 3fc Returning policy Readers for evaluation +2018-01-18 09:29:43.997 UTC [policies] GetPolicy -> DEBU 3fd Returning policy Readers for evaluation +2018-01-18 09:29:43.997 UTC [policies] GetPolicy -> DEBU 3fe Returning policy Admins for evaluation +2018-01-18 09:29:43.997 UTC [policies] CommitProposals -> DEBU 3ff In commit adding relative sub-policy OrdererOrg/Admins to Orderer +2018-01-18 09:29:43.997 UTC [policies] GetPolicy -> DEBU 400 Returning policy Readers for evaluation +2018-01-18 09:29:43.997 UTC [policies] CommitProposals -> DEBU 401 In commit adding relative sub-policy OrdererOrg/Readers to Orderer +2018-01-18 09:29:43.997 UTC [policies] GetPolicy -> DEBU 402 Returning policy Writers for evaluation +2018-01-18 09:29:43.997 UTC [policies] CommitProposals -> DEBU 403 In commit adding relative sub-policy OrdererOrg/Writers to Orderer +2018-01-18 09:29:43.997 UTC [policies] GetPolicy -> DEBU 404 Returning policy Readers for evaluation +2018-01-18 09:29:43.997 UTC [policies] GetPolicy -> DEBU 405 Returning policy Writers for evaluation +2018-01-18 09:29:43.997 UTC [policies] GetPolicy -> DEBU 406 Returning policy Admins for evaluation +2018-01-18 09:29:43.998 UTC [policies] GetPolicy -> DEBU 407 Returning policy Writers for evaluation +2018-01-18 09:29:43.998 UTC [policies] GetPolicy -> DEBU 408 Returning policy Admins for evaluation +2018-01-18 09:29:43.998 UTC [policies] CommitProposals -> DEBU 409 In commit adding relative sub-policy Application/Admins to Channel +2018-01-18 09:29:43.998 UTC [policies] GetPolicy -> DEBU 40a Returning policy Writers for evaluation +2018-01-18 09:29:43.998 UTC [policies] CommitProposals -> DEBU 40b In commit adding relative sub-policy Application/Writers to Channel +2018-01-18 09:29:43.998 UTC [policies] GetPolicy -> DEBU 40c Returning policy Org2MSP/Readers for evaluation +2018-01-18 09:29:43.998 UTC [policies] CommitProposals -> DEBU 40d In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +2018-01-18 09:29:43.998 UTC [policies] GetPolicy -> DEBU 40e Returning policy Org2MSP/Writers for evaluation +2018-01-18 09:29:43.998 UTC [policies] CommitProposals -> DEBU 40f In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +2018-01-18 09:29:43.998 UTC [policies] GetPolicy -> DEBU 410 Returning policy Readers for evaluation +2018-01-18 09:29:43.999 UTC [policies] CommitProposals -> DEBU 411 In commit adding relative sub-policy Application/Readers to Channel +2018-01-18 09:29:43.999 UTC [policies] GetPolicy -> DEBU 412 Returning policy Org1MSP/Admins for evaluation +2018-01-18 09:29:43.999 UTC [policies] CommitProposals -> DEBU 413 In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +2018-01-18 09:29:44.000 UTC [policies] GetPolicy -> DEBU 414 Returning policy Org1MSP/Readers for evaluation +2018-01-18 09:29:44.000 UTC [policies] CommitProposals -> DEBU 415 In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +2018-01-18 09:29:44.000 UTC [policies] GetPolicy -> DEBU 416 Returning policy Org1MSP/Writers for evaluation +2018-01-18 09:29:44.000 UTC [policies] CommitProposals -> DEBU 417 In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +2018-01-18 09:29:44.001 UTC [policies] GetPolicy -> DEBU 418 Returning policy Org2MSP/Admins for evaluation +2018-01-18 09:29:44.001 UTC [policies] CommitProposals -> DEBU 419 In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +2018-01-18 09:29:44.001 UTC [policies] GetPolicy -> DEBU 41a Returning policy Writers for evaluation +2018-01-18 09:29:44.001 UTC [policies] CommitProposals -> DEBU 41b In commit adding relative sub-policy Orderer/Writers to Channel +2018-01-18 09:29:44.001 UTC [policies] GetPolicy -> DEBU 41c Returning policy Admins for evaluation +2018-01-18 09:29:44.001 UTC [policies] CommitProposals -> DEBU 41d In commit adding relative sub-policy Orderer/Admins to Channel +2018-01-18 09:29:44.002 UTC [policies] GetPolicy -> DEBU 41e Returning policy BlockValidation for evaluation +2018-01-18 09:29:44.002 UTC [policies] CommitProposals -> DEBU 41f In commit adding relative sub-policy Orderer/BlockValidation to Channel +2018-01-18 09:29:44.002 UTC [policies] GetPolicy -> DEBU 420 Returning policy OrdererOrg/Admins for evaluation +2018-01-18 09:29:44.002 UTC [policies] CommitProposals -> DEBU 421 In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +2018-01-18 09:29:44.002 UTC [policies] GetPolicy -> DEBU 422 Returning policy OrdererOrg/Readers for evaluation +2018-01-18 09:29:44.002 UTC [policies] CommitProposals -> DEBU 423 In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +2018-01-18 09:29:44.002 UTC [policies] GetPolicy -> DEBU 424 Returning policy OrdererOrg/Writers for evaluation +2018-01-18 09:29:44.002 UTC [policies] CommitProposals -> DEBU 425 In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +2018-01-18 09:29:44.002 UTC [policies] GetPolicy -> DEBU 426 Returning policy Readers for evaluation +2018-01-18 09:29:44.002 UTC [policies] CommitProposals -> DEBU 427 In commit adding relative sub-policy Orderer/Readers to Channel +2018-01-18 09:29:44.003 UTC [policies] GetPolicy -> DEBU 428 Returning policy Writers for evaluation +2018-01-18 09:29:44.003 UTC [policies] GetPolicy -> DEBU 429 Returning policy Writers for evaluation +2018-01-18 09:29:44.003 UTC [policies] GetPolicy -> DEBU 42a Returning policy Admins for evaluation +2018-01-18 09:29:44.003 UTC [policies] GetPolicy -> DEBU 42b Returning policy Admins for evaluation +2018-01-18 09:29:44.004 UTC [policies] GetPolicy -> DEBU 42c Returning policy Readers for evaluation +2018-01-18 09:29:44.004 UTC [policies] GetPolicy -> DEBU 42d Returning policy Readers for evaluation +2018-01-18 09:29:44.004 UTC [policies] GetPolicy -> DEBU 42e Returning policy Readers for evaluation +2018-01-18 09:29:44.004 UTC [policies] CommitProposals -> DEBU 42f As expected, current configuration has policy '/Channel/Readers' +2018-01-18 09:29:44.004 UTC [policies] GetPolicy -> DEBU 430 Returning policy Writers for evaluation +2018-01-18 09:29:44.004 UTC [policies] CommitProposals -> DEBU 431 As expected, current configuration has policy '/Channel/Writers' +2018-01-18 09:29:44.004 UTC [policies] GetPolicy -> DEBU 432 Returning policy Application/Readers for evaluation +2018-01-18 09:29:44.004 UTC [policies] CommitProposals -> DEBU 433 As expected, current configuration has policy '/Channel/Application/Readers' +2018-01-18 09:29:44.005 UTC [policies] GetPolicy -> DEBU 434 Returning policy Application/Writers for evaluation +2018-01-18 09:29:44.005 UTC [policies] CommitProposals -> DEBU 435 As expected, current configuration has policy '/Channel/Application/Writers' +2018-01-18 09:29:44.005 UTC [policies] GetPolicy -> DEBU 436 Returning policy Application/Admins for evaluation +2018-01-18 09:29:44.005 UTC [policies] CommitProposals -> DEBU 437 As expected, current configuration has policy '/Channel/Application/Admins' +2018-01-18 09:29:44.005 UTC [policies] GetPolicy -> DEBU 438 Returning policy Orderer/BlockValidation for evaluation +2018-01-18 09:29:44.005 UTC [policies] CommitProposals -> DEBU 439 As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +2018-01-18 09:29:44.005 UTC [common/config] NewStandardValues -> DEBU 43a Initializing protos for *config.ChannelProtos +2018-01-18 09:29:44.005 UTC [common/config] initializeProtosStruct -> DEBU 43b Processing field: HashingAlgorithm +2018-01-18 09:29:44.005 UTC [common/config] initializeProtosStruct -> DEBU 43c Processing field: BlockDataHashingStructure +2018-01-18 09:29:44.005 UTC [common/config] initializeProtosStruct -> DEBU 43d Processing field: OrdererAddresses +2018-01-18 09:29:44.005 UTC [common/config] initializeProtosStruct -> DEBU 43e Processing field: Consortium +2018-01-18 09:29:44.006 UTC [common/configtx] addToMap -> DEBU 43f Adding to config map: [Groups] /Channel +2018-01-18 09:29:44.006 UTC [common/configtx] addToMap -> DEBU 440 Adding to config map: [Groups] /Channel/Orderer +2018-01-18 09:29:44.006 UTC [common/configtx] addToMap -> DEBU 441 Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +2018-01-18 09:29:44.006 UTC [common/configtx] addToMap -> DEBU 442 Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +2018-01-18 09:29:44.006 UTC [common/configtx] addToMap -> DEBU 443 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +2018-01-18 09:29:44.006 UTC [common/configtx] addToMap -> DEBU 444 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +2018-01-18 09:29:44.007 UTC [common/configtx] addToMap -> DEBU 445 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +2018-01-18 09:29:44.007 UTC [common/configtx] addToMap -> DEBU 446 Adding to config map: [Values] /Channel/Orderer/ConsensusType +2018-01-18 09:29:44.007 UTC [common/configtx] addToMap -> DEBU 447 Adding to config map: [Values] /Channel/Orderer/BatchSize +2018-01-18 09:29:44.007 UTC [common/configtx] addToMap -> DEBU 448 Adding to config map: [Values] /Channel/Orderer/BatchTimeout +2018-01-18 09:29:44.007 UTC [common/configtx] addToMap -> DEBU 449 Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +2018-01-18 09:29:44.007 UTC [common/configtx] addToMap -> DEBU 44a Adding to config map: [Policy] /Channel/Orderer/BlockValidation +2018-01-18 09:29:44.007 UTC [common/configtx] addToMap -> DEBU 44b Adding to config map: [Policy] /Channel/Orderer/Readers +2018-01-18 09:29:44.007 UTC [common/configtx] addToMap -> DEBU 44c Adding to config map: [Policy] /Channel/Orderer/Writers +2018-01-18 09:29:44.008 UTC [common/configtx] addToMap -> DEBU 44d Adding to config map: [Policy] /Channel/Orderer/Admins +2018-01-18 09:29:44.008 UTC [common/configtx] addToMap -> DEBU 44e Adding to config map: [Groups] /Channel/Application +2018-01-18 09:29:44.008 UTC [common/configtx] addToMap -> DEBU 44f Adding to config map: [Groups] /Channel/Application/Org1MSP +2018-01-18 09:29:44.008 UTC [common/configtx] addToMap -> DEBU 450 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +2018-01-18 09:29:44.008 UTC [common/configtx] addToMap -> DEBU 451 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +2018-01-18 09:29:44.009 UTC [common/configtx] addToMap -> DEBU 452 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +2018-01-18 09:29:44.009 UTC [common/configtx] addToMap -> DEBU 453 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +2018-01-18 09:29:44.009 UTC [common/configtx] addToMap -> DEBU 454 Adding to config map: [Groups] /Channel/Application/Org2MSP +2018-01-18 09:29:44.009 UTC [common/configtx] addToMap -> DEBU 455 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +2018-01-18 09:29:44.009 UTC [common/configtx] addToMap -> DEBU 456 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +2018-01-18 09:29:44.009 UTC [common/configtx] addToMap -> DEBU 457 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +2018-01-18 09:29:44.010 UTC [common/configtx] addToMap -> DEBU 458 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +2018-01-18 09:29:44.010 UTC [common/configtx] addToMap -> DEBU 459 Adding to config map: [Policy] /Channel/Application/Readers +2018-01-18 09:29:44.010 UTC [common/configtx] addToMap -> DEBU 45a Adding to config map: [Policy] /Channel/Application/Admins +2018-01-18 09:29:44.010 UTC [common/configtx] addToMap -> DEBU 45b Adding to config map: [Policy] /Channel/Application/Writers +2018-01-18 09:29:44.010 UTC [common/configtx] addToMap -> DEBU 45c Adding to config map: [Values] /Channel/Consortium +2018-01-18 09:29:44.010 UTC [common/configtx] addToMap -> DEBU 45d Adding to config map: [Values] /Channel/BlockDataHashingStructure +2018-01-18 09:29:44.011 UTC [common/configtx] addToMap -> DEBU 45e Adding to config map: [Values] /Channel/OrdererAddresses +2018-01-18 09:29:44.011 UTC [common/configtx] addToMap -> DEBU 45f Adding to config map: [Values] /Channel/HashingAlgorithm +2018-01-18 09:29:44.011 UTC [common/configtx] addToMap -> DEBU 460 Adding to config map: [Policy] /Channel/Writers +2018-01-18 09:29:44.011 UTC [common/configtx] addToMap -> DEBU 461 Adding to config map: [Policy] /Channel/Admins +2018-01-18 09:29:44.011 UTC [common/configtx] addToMap -> DEBU 462 Adding to config map: [Policy] /Channel/Readers +2018-01-18 09:29:44.011 UTC [common/configtx] processConfig -> DEBU 463 Beginning new config for channel businesschannel +2018-01-18 09:29:44.011 UTC [common/config] NewStandardValues -> DEBU 464 Initializing protos for *config.ChannelProtos +2018-01-18 09:29:44.011 UTC [common/config] initializeProtosStruct -> DEBU 465 Processing field: HashingAlgorithm +2018-01-18 09:29:44.012 UTC [common/config] initializeProtosStruct -> DEBU 466 Processing field: BlockDataHashingStructure +2018-01-18 09:29:44.012 UTC [common/config] initializeProtosStruct -> DEBU 467 Processing field: OrdererAddresses +2018-01-18 09:29:44.012 UTC [common/config] initializeProtosStruct -> DEBU 468 Processing field: Consortium +2018-01-18 09:29:44.012 UTC [policies] ProposePolicy -> DEBU 469 Proposed new policy Admins for Channel +2018-01-18 09:29:44.012 UTC [policies] ProposePolicy -> DEBU 46a Proposed new policy Readers for Channel +2018-01-18 09:29:44.012 UTC [policies] ProposePolicy -> DEBU 46b Proposed new policy Writers for Channel +2018-01-18 09:29:44.013 UTC [common/config] NewStandardValues -> DEBU 46c Initializing protos for *struct {} +2018-01-18 09:29:44.013 UTC [policies] ProposePolicy -> DEBU 46d Proposed new policy Admins for Application +2018-01-18 09:29:44.014 UTC [policies] ProposePolicy -> DEBU 46e Proposed new policy Writers for Application +2018-01-18 09:29:44.014 UTC [policies] ProposePolicy -> DEBU 46f Proposed new policy Readers for Application +2018-01-18 09:29:44.014 UTC [common/config] NewStandardValues -> DEBU 470 Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:44.014 UTC [common/config] initializeProtosStruct -> DEBU 471 Processing field: MSP +2018-01-18 09:29:44.014 UTC [common/config] NewStandardValues -> DEBU 472 Initializing protos for *config.ApplicationOrgProtos +2018-01-18 09:29:44.014 UTC [common/config] initializeProtosStruct -> DEBU 473 Processing field: AnchorPeers +2018-01-18 09:29:44.014 UTC [common/config] NewStandardValues -> DEBU 474 Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:44.014 UTC [common/config] initializeProtosStruct -> DEBU 475 Processing field: MSP +2018-01-18 09:29:44.014 UTC [policies] ProposePolicy -> DEBU 476 Proposed new policy Admins for Org1MSP +2018-01-18 09:29:44.014 UTC [policies] ProposePolicy -> DEBU 477 Proposed new policy Readers for Org1MSP +2018-01-18 09:29:44.014 UTC [policies] ProposePolicy -> DEBU 478 Proposed new policy Writers for Org1MSP +2018-01-18 09:29:44.014 UTC [common/config] NewStandardValues -> DEBU 479 Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:44.015 UTC [common/config] initializeProtosStruct -> DEBU 47a Processing field: MSP +2018-01-18 09:29:44.015 UTC [common/config] NewStandardValues -> DEBU 47b Initializing protos for *config.ApplicationOrgProtos +2018-01-18 09:29:44.015 UTC [common/config] initializeProtosStruct -> DEBU 47c Processing field: AnchorPeers +2018-01-18 09:29:44.015 UTC [common/config] NewStandardValues -> DEBU 47d Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:44.015 UTC [common/config] initializeProtosStruct -> DEBU 47e Processing field: MSP +2018-01-18 09:29:44.015 UTC [policies] ProposePolicy -> DEBU 47f Proposed new policy Writers for Org2MSP +2018-01-18 09:29:44.015 UTC [policies] ProposePolicy -> DEBU 480 Proposed new policy Admins for Org2MSP +2018-01-18 09:29:44.015 UTC [policies] ProposePolicy -> DEBU 481 Proposed new policy Readers for Org2MSP +2018-01-18 09:29:44.015 UTC [common/config] NewStandardValues -> DEBU 482 Initializing protos for *config.OrdererProtos +2018-01-18 09:29:44.015 UTC [common/config] initializeProtosStruct -> DEBU 483 Processing field: ConsensusType +2018-01-18 09:29:44.015 UTC [common/config] initializeProtosStruct -> DEBU 484 Processing field: BatchSize +2018-01-18 09:29:44.015 UTC [common/config] initializeProtosStruct -> DEBU 485 Processing field: BatchTimeout +2018-01-18 09:29:44.015 UTC [common/config] initializeProtosStruct -> DEBU 486 Processing field: KafkaBrokers +2018-01-18 09:29:44.015 UTC [common/config] initializeProtosStruct -> DEBU 487 Processing field: ChannelRestrictions +2018-01-18 09:29:44.016 UTC [policies] ProposePolicy -> DEBU 488 Proposed new policy BlockValidation for Orderer +2018-01-18 09:29:44.016 UTC [policies] ProposePolicy -> DEBU 489 Proposed new policy Readers for Orderer +2018-01-18 09:29:44.016 UTC [policies] ProposePolicy -> DEBU 48a Proposed new policy Writers for Orderer +2018-01-18 09:29:44.016 UTC [policies] ProposePolicy -> DEBU 48b Proposed new policy Admins for Orderer +2018-01-18 09:29:44.016 UTC [common/config] NewStandardValues -> DEBU 48c Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:44.016 UTC [common/config] initializeProtosStruct -> DEBU 48d Processing field: MSP +2018-01-18 09:29:44.016 UTC [policies] ProposePolicy -> DEBU 48e Proposed new policy Writers for OrdererOrg +2018-01-18 09:29:44.016 UTC [policies] ProposePolicy -> DEBU 48f Proposed new policy Admins for OrdererOrg +2018-01-18 09:29:44.016 UTC [policies] ProposePolicy -> DEBU 490 Proposed new policy Readers for OrdererOrg +2018-01-18 09:29:44.016 UTC [common/config] Validate -> DEBU 491 Anchor peers for org Org1MSP are +2018-01-18 09:29:44.016 UTC [common/config] validateMSP -> DEBU 492 Setting up MSP for org Org1MSP +2018-01-18 09:29:44.016 UTC [msp] NewBccspMsp -> DEBU 493 Creating BCCSP-based MSP instance +2018-01-18 09:29:44.016 UTC [msp] Setup -> DEBU 494 Setting up MSP instance Org1MSP +2018-01-18 09:29:44.017 UTC [msp/identity] newIdentity -> DEBU 495 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf +db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx +JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi +/IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ +H7n8z1pj5w== +-----END CERTIFICATE----- +2018-01-18 09:29:44.018 UTC [msp/identity] newIdentity -> DEBU 496 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +xHTBvxfK6mAzmUitFmY= +-----END CERTIFICATE----- +2018-01-18 09:29:44.018 UTC [msp/identity] newIdentity -> DEBU 497 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +xHTBvxfK6mAzmUitFmY= +-----END CERTIFICATE----- +2018-01-18 09:29:44.019 UTC [msp] Validate -> DEBU 498 MSP Org1MSP validating identity +2018-01-18 09:29:44.019 UTC [common/config] Validate -> DEBU 499 Anchor peers for org Org2MSP are +2018-01-18 09:29:44.019 UTC [common/config] validateMSP -> DEBU 49a Setting up MSP for org Org2MSP +2018-01-18 09:29:44.019 UTC [msp] NewBccspMsp -> DEBU 49b Creating BCCSP-based MSP instance +2018-01-18 09:29:44.020 UTC [msp] Setup -> DEBU 49c Setting up MSP instance Org2MSP +2018-01-18 09:29:44.020 UTC [msp/identity] newIdentity -> DEBU 49d Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 +sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ +xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv +WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk +SCjyRdD3aQ== +-----END CERTIFICATE----- +2018-01-18 09:29:44.021 UTC [msp/identity] newIdentity -> DEBU 49e Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +AXYxULZpXYDQXt1KaLI= +-----END CERTIFICATE----- +2018-01-18 09:29:44.021 UTC [msp/identity] newIdentity -> DEBU 49f Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +AXYxULZpXYDQXt1KaLI= +-----END CERTIFICATE----- +2018-01-18 09:29:44.022 UTC [msp] Validate -> DEBU 4a0 MSP Org2MSP validating identity +2018-01-18 09:29:44.023 UTC [common/config] validateMSP -> DEBU 4a1 Setting up MSP for org OrdererOrg +2018-01-18 09:29:44.023 UTC [msp] NewBccspMsp -> DEBU 4a2 Creating BCCSP-based MSP instance +2018-01-18 09:29:44.023 UTC [msp] Setup -> DEBU 4a3 Setting up MSP instance OrdererMSP +2018-01-18 09:29:44.023 UTC [msp/identity] newIdentity -> DEBU 4a4 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW +gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w +XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK +BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs +KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= +-----END CERTIFICATE----- +2018-01-18 09:29:44.023 UTC [msp/identity] newIdentity -> DEBU 4a5 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-18 09:29:44.024 UTC [msp/identity] newIdentity -> DEBU 4a6 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-18 09:29:44.025 UTC [msp] Validate -> DEBU 4a7 MSP OrdererMSP validating identity +2018-01-18 09:29:44.025 UTC [msp] Setup -> DEBU 4a8 Setting up the MSP manager (3 msps) +2018-01-18 09:29:44.025 UTC [msp] Setup -> DEBU 4a9 MSP manager setup complete, setup 3 msps +2018-01-18 09:29:44.025 UTC [policies] GetPolicy -> DEBU 4aa Returning policy Admins for evaluation +2018-01-18 09:29:44.025 UTC [policies] CommitProposals -> DEBU 4ab In commit adding relative sub-policy Org1MSP/Admins to Application +2018-01-18 09:29:44.025 UTC [policies] GetPolicy -> DEBU 4ac Returning policy Readers for evaluation +2018-01-18 09:29:44.025 UTC [policies] CommitProposals -> DEBU 4ad In commit adding relative sub-policy Org1MSP/Readers to Application +2018-01-18 09:29:44.025 UTC [policies] GetPolicy -> DEBU 4ae Returning policy Writers for evaluation +2018-01-18 09:29:44.025 UTC [policies] CommitProposals -> DEBU 4af In commit adding relative sub-policy Org1MSP/Writers to Application +2018-01-18 09:29:44.025 UTC [policies] GetPolicy -> DEBU 4b0 Returning policy Writers for evaluation +2018-01-18 09:29:44.025 UTC [policies] CommitProposals -> DEBU 4b1 In commit adding relative sub-policy Org2MSP/Writers to Application +2018-01-18 09:29:44.025 UTC [policies] GetPolicy -> DEBU 4b2 Returning policy Admins for evaluation +2018-01-18 09:29:44.025 UTC [policies] CommitProposals -> DEBU 4b3 In commit adding relative sub-policy Org2MSP/Admins to Application +2018-01-18 09:29:44.025 UTC [policies] GetPolicy -> DEBU 4b4 Returning policy Readers for evaluation +2018-01-18 09:29:44.025 UTC [policies] CommitProposals -> DEBU 4b5 In commit adding relative sub-policy Org2MSP/Readers to Application +2018-01-18 09:29:44.025 UTC [policies] GetPolicy -> DEBU 4b6 Returning policy Admins for evaluation +2018-01-18 09:29:44.025 UTC [policies] GetPolicy -> DEBU 4b7 Returning policy Admins for evaluation +2018-01-18 09:29:44.025 UTC [policies] GetPolicy -> DEBU 4b8 Returning policy Writers for evaluation +2018-01-18 09:29:44.025 UTC [policies] GetPolicy -> DEBU 4b9 Returning policy Writers for evaluation +2018-01-18 09:29:44.026 UTC [policies] GetPolicy -> DEBU 4ba Returning policy Readers for evaluation +2018-01-18 09:29:44.026 UTC [policies] GetPolicy -> DEBU 4bb Returning policy Readers for evaluation +2018-01-18 09:29:44.026 UTC [policies] GetPolicy -> DEBU 4bc Returning policy Admins for evaluation +2018-01-18 09:29:44.026 UTC [policies] CommitProposals -> DEBU 4bd In commit adding relative sub-policy OrdererOrg/Admins to Orderer +2018-01-18 09:29:44.026 UTC [policies] GetPolicy -> DEBU 4be Returning policy Readers for evaluation +2018-01-18 09:29:44.026 UTC [policies] CommitProposals -> DEBU 4bf In commit adding relative sub-policy OrdererOrg/Readers to Orderer +2018-01-18 09:29:44.026 UTC [policies] GetPolicy -> DEBU 4c0 Returning policy Writers for evaluation +2018-01-18 09:29:44.026 UTC [policies] CommitProposals -> DEBU 4c1 In commit adding relative sub-policy OrdererOrg/Writers to Orderer +2018-01-18 09:29:44.026 UTC [policies] GetPolicy -> DEBU 4c2 Returning policy Writers for evaluation +2018-01-18 09:29:44.026 UTC [policies] GetPolicy -> DEBU 4c3 Returning policy Readers for evaluation +2018-01-18 09:29:44.026 UTC [policies] GetPolicy -> DEBU 4c4 Returning policy Writers for evaluation +2018-01-18 09:29:44.026 UTC [policies] GetPolicy -> DEBU 4c5 Returning policy Admins for evaluation +2018-01-18 09:29:44.026 UTC [policies] GetPolicy -> DEBU 4c6 Returning policy OrdererOrg/Readers for evaluation +2018-01-18 09:29:44.026 UTC [policies] CommitProposals -> DEBU 4c7 In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +2018-01-18 09:29:44.026 UTC [policies] GetPolicy -> DEBU 4c8 Returning policy OrdererOrg/Writers for evaluation +2018-01-18 09:29:44.026 UTC [policies] CommitProposals -> DEBU 4c9 In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +2018-01-18 09:29:44.026 UTC [policies] GetPolicy -> DEBU 4ca Returning policy BlockValidation for evaluation +2018-01-18 09:29:44.026 UTC [policies] CommitProposals -> DEBU 4cb In commit adding relative sub-policy Orderer/BlockValidation to Channel +2018-01-18 09:29:44.026 UTC [policies] GetPolicy -> DEBU 4cc Returning policy Readers for evaluation +2018-01-18 09:29:44.026 UTC [policies] CommitProposals -> DEBU 4cd In commit adding relative sub-policy Orderer/Readers to Channel +2018-01-18 09:29:44.026 UTC [policies] GetPolicy -> DEBU 4ce Returning policy Writers for evaluation +2018-01-18 09:29:44.026 UTC [policies] CommitProposals -> DEBU 4cf In commit adding relative sub-policy Orderer/Writers to Channel +2018-01-18 09:29:44.026 UTC [policies] GetPolicy -> DEBU 4d0 Returning policy Admins for evaluation +2018-01-18 09:29:44.027 UTC [policies] CommitProposals -> DEBU 4d1 In commit adding relative sub-policy Orderer/Admins to Channel +2018-01-18 09:29:44.027 UTC [policies] GetPolicy -> DEBU 4d2 Returning policy OrdererOrg/Admins for evaluation +2018-01-18 09:29:44.027 UTC [policies] CommitProposals -> DEBU 4d3 In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +2018-01-18 09:29:44.027 UTC [policies] GetPolicy -> DEBU 4d4 Returning policy Readers for evaluation +2018-01-18 09:29:44.027 UTC [policies] CommitProposals -> DEBU 4d5 In commit adding relative sub-policy Application/Readers to Channel +2018-01-18 09:29:44.027 UTC [policies] GetPolicy -> DEBU 4d6 Returning policy Org1MSP/Readers for evaluation +2018-01-18 09:29:44.027 UTC [policies] CommitProposals -> DEBU 4d7 In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +2018-01-18 09:29:44.027 UTC [policies] GetPolicy -> DEBU 4d8 Returning policy Org2MSP/Readers for evaluation +2018-01-18 09:29:44.027 UTC [policies] CommitProposals -> DEBU 4d9 In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +2018-01-18 09:29:44.027 UTC [policies] GetPolicy -> DEBU 4da Returning policy Writers for evaluation +2018-01-18 09:29:44.027 UTC [policies] CommitProposals -> DEBU 4db In commit adding relative sub-policy Application/Writers to Channel +2018-01-18 09:29:44.027 UTC [policies] GetPolicy -> DEBU 4dc Returning policy Org1MSP/Admins for evaluation +2018-01-18 09:29:44.027 UTC [policies] CommitProposals -> DEBU 4dd In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +2018-01-18 09:29:44.027 UTC [policies] GetPolicy -> DEBU 4de Returning policy Org1MSP/Writers for evaluation +2018-01-18 09:29:44.027 UTC [policies] CommitProposals -> DEBU 4df In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +2018-01-18 09:29:44.027 UTC [policies] GetPolicy -> DEBU 4e0 Returning policy Org2MSP/Writers for evaluation +2018-01-18 09:29:44.027 UTC [policies] CommitProposals -> DEBU 4e1 In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +2018-01-18 09:29:44.027 UTC [policies] GetPolicy -> DEBU 4e2 Returning policy Org2MSP/Admins for evaluation +2018-01-18 09:29:44.027 UTC [policies] CommitProposals -> DEBU 4e3 In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +2018-01-18 09:29:44.027 UTC [policies] GetPolicy -> DEBU 4e4 Returning policy Admins for evaluation +2018-01-18 09:29:44.027 UTC [policies] CommitProposals -> DEBU 4e5 In commit adding relative sub-policy Application/Admins to Channel +2018-01-18 09:29:44.027 UTC [policies] GetPolicy -> DEBU 4e6 Returning policy Admins for evaluation +2018-01-18 09:29:44.027 UTC [policies] GetPolicy -> DEBU 4e7 Returning policy Admins for evaluation +2018-01-18 09:29:44.027 UTC [policies] GetPolicy -> DEBU 4e8 Returning policy Readers for evaluation +2018-01-18 09:29:44.027 UTC [policies] GetPolicy -> DEBU 4e9 Returning policy Readers for evaluation +2018-01-18 09:29:44.027 UTC [policies] GetPolicy -> DEBU 4ea Returning policy Writers for evaluation +2018-01-18 09:29:44.027 UTC [policies] GetPolicy -> DEBU 4eb Returning policy Writers for evaluation +2018-01-18 09:29:44.027 UTC [policies] GetPolicy -> DEBU 4ec Returning policy Readers for evaluation +2018-01-18 09:29:44.028 UTC [policies] CommitProposals -> DEBU 4ed As expected, current configuration has policy '/Channel/Readers' +2018-01-18 09:29:44.028 UTC [policies] GetPolicy -> DEBU 4ee Returning policy Writers for evaluation +2018-01-18 09:29:44.028 UTC [policies] CommitProposals -> DEBU 4ef As expected, current configuration has policy '/Channel/Writers' +2018-01-18 09:29:44.028 UTC [policies] GetPolicy -> DEBU 4f0 Returning policy Application/Readers for evaluation +2018-01-18 09:29:44.028 UTC [policies] CommitProposals -> DEBU 4f1 As expected, current configuration has policy '/Channel/Application/Readers' +2018-01-18 09:29:44.028 UTC [policies] GetPolicy -> DEBU 4f2 Returning policy Application/Writers for evaluation +2018-01-18 09:29:44.028 UTC [policies] CommitProposals -> DEBU 4f3 As expected, current configuration has policy '/Channel/Application/Writers' +2018-01-18 09:29:44.028 UTC [policies] GetPolicy -> DEBU 4f4 Returning policy Application/Admins for evaluation +2018-01-18 09:29:44.028 UTC [policies] CommitProposals -> DEBU 4f5 As expected, current configuration has policy '/Channel/Application/Admins' +2018-01-18 09:29:44.028 UTC [policies] GetPolicy -> DEBU 4f6 Returning policy Orderer/BlockValidation for evaluation +2018-01-18 09:29:44.028 UTC [policies] CommitProposals -> DEBU 4f7 As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +2018-01-18 09:29:44.029 UTC [policies] GetPolicy -> DEBU 4f9 Returning policy Writers for evaluation +2018-01-18 09:29:44.029 UTC [cauthdsl] func1 -> DEBU 4fa 0xc42014a0e0 gate 1516267784029610165 evaluation starts +2018-01-18 09:29:44.029 UTC [cauthdsl] func2 -> DEBU 4fb 0xc42014a0e0 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:29:44.029 UTC [cauthdsl] func2 -> DEBU 4fc 0xc42014a0e0 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:29:44.030 UTC [msp/identity] newIdentity -> DEBU 4fd Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -2249,112 +2268,120 @@ DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH /4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl -----END CERTIFICATE----- -2018-01-18 01:58:52.013 UTC [msp] SatisfiesPrincipal -> DEBU 4f7 Checking if identity satisfies MEMBER role for OrdererMSP -2018-01-18 01:58:52.013 UTC [msp] Validate -> DEBU 4f8 MSP OrdererMSP validating identity -2018-01-18 01:58:52.014 UTC [cauthdsl] func2 -> DEBU 4f9 0xc420026028 principal matched by identity 0 -2018-01-18 01:58:52.014 UTC [msp/identity] Verify -> DEBU 4fa Verify: digest = 00000000 0e f1 13 89 ab 59 12 bf 66 d9 1d 41 e6 47 42 e3 |.....Y..f..A.GB.| -00000010 db ce c8 72 e0 b8 d1 19 a3 49 9e 68 de 11 de 32 |...r.....I.h...2| -2018-01-18 01:58:52.014 UTC [msp/identity] Verify -> DEBU 4fb Verify: sig = 00000000 30 45 02 21 00 87 2f 92 95 54 fb 85 e0 ff ce 19 |0E.!../..T......| -00000010 8d dc 61 d1 ea fa 81 9b fa 83 0b 66 ee c6 8f 3e |..a........f...>| -00000020 64 0d 71 9b 09 02 20 4d 7e d7 b1 be eb 57 8f 9a |d.q... M~....W..| -00000030 17 5f 57 5b d4 ad f3 f1 20 b2 bc a5 05 58 b3 2c |._W[.... ....X.,| -00000040 9f 3b e7 3c 89 72 68 |.;.<.rh| -2018-01-18 01:58:52.014 UTC [cauthdsl] func2 -> DEBU 4fc 0xc420026028 principal evaluation succeeds for identity 0 -2018-01-18 01:58:52.014 UTC [cauthdsl] func1 -> DEBU 4fd 0xc420026028 gate 1516240732013234104 evaluation succeeds -2018-01-18 01:58:52.014 UTC [orderer/common/sigfilter] Apply -> DEBU 4fe Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420381280 1 [0xc42014a5d8]}) Writers]} -2018-01-18 01:58:52.014 UTC [msp] GetLocalMSP -> DEBU 4ff Returning existing local MSP -2018-01-18 01:58:52.014 UTC [msp] GetDefaultSigningIdentity -> DEBU 500 Obtaining default signing identity -2018-01-18 01:58:52.014 UTC [msp] GetLocalMSP -> DEBU 501 Returning existing local MSP -2018-01-18 01:58:52.014 UTC [msp] GetDefaultSigningIdentity -> DEBU 502 Obtaining default signing identity -2018-01-18 01:58:52.014 UTC [msp/identity] Sign -> DEBU 503 Sign: plaintext: 0AB7060A1B08011A0608DCFEFFD20522...07577269746572731A0641646D696E73 -2018-01-18 01:58:52.014 UTC [msp/identity] Sign -> DEBU 504 Sign: digest: AE8E1C872814EF9A144F05935113C92DA20DBDF502053942E7AEA68C4A8958F0 -2018-01-18 01:58:52.015 UTC [common/config] NewStandardValues -> DEBU 505 Initializing protos for *config.ChannelProtos -2018-01-18 01:58:52.015 UTC [common/config] initializeProtosStruct -> DEBU 506 Processing field: HashingAlgorithm -2018-01-18 01:58:52.015 UTC [common/config] initializeProtosStruct -> DEBU 507 Processing field: BlockDataHashingStructure -2018-01-18 01:58:52.015 UTC [common/config] initializeProtosStruct -> DEBU 508 Processing field: OrdererAddresses -2018-01-18 01:58:52.015 UTC [common/config] initializeProtosStruct -> DEBU 509 Processing field: Consortium -2018-01-18 01:58:52.015 UTC [common/configtx] addToMap -> DEBU 50a Adding to config map: [Groups] /Channel -2018-01-18 01:58:52.015 UTC [common/configtx] addToMap -> DEBU 50b Adding to config map: [Groups] /Channel/Orderer -2018-01-18 01:58:52.015 UTC [common/configtx] addToMap -> DEBU 50c Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -2018-01-18 01:58:52.015 UTC [common/configtx] addToMap -> DEBU 50d Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -2018-01-18 01:58:52.015 UTC [common/configtx] addToMap -> DEBU 50e Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -2018-01-18 01:58:52.015 UTC [common/configtx] addToMap -> DEBU 50f Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -2018-01-18 01:58:52.015 UTC [common/configtx] addToMap -> DEBU 510 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -2018-01-18 01:58:52.016 UTC [common/configtx] addToMap -> DEBU 511 Adding to config map: [Values] /Channel/Orderer/BatchTimeout -2018-01-18 01:58:52.016 UTC [common/configtx] addToMap -> DEBU 512 Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -2018-01-18 01:58:52.016 UTC [common/configtx] addToMap -> DEBU 513 Adding to config map: [Values] /Channel/Orderer/ConsensusType -2018-01-18 01:58:52.016 UTC [common/configtx] addToMap -> DEBU 514 Adding to config map: [Values] /Channel/Orderer/BatchSize -2018-01-18 01:58:52.016 UTC [common/configtx] addToMap -> DEBU 515 Adding to config map: [Policy] /Channel/Orderer/Writers -2018-01-18 01:58:52.016 UTC [common/configtx] addToMap -> DEBU 516 Adding to config map: [Policy] /Channel/Orderer/Admins -2018-01-18 01:58:52.016 UTC [common/configtx] addToMap -> DEBU 517 Adding to config map: [Policy] /Channel/Orderer/BlockValidation -2018-01-18 01:58:52.016 UTC [common/configtx] addToMap -> DEBU 518 Adding to config map: [Policy] /Channel/Orderer/Readers -2018-01-18 01:58:52.016 UTC [common/configtx] addToMap -> DEBU 519 Adding to config map: [Groups] /Channel/Application -2018-01-18 01:58:52.016 UTC [common/configtx] addToMap -> DEBU 51a Adding to config map: [Groups] /Channel/Application/Org1MSP -2018-01-18 01:58:52.016 UTC [common/configtx] addToMap -> DEBU 51b Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -2018-01-18 01:58:52.016 UTC [common/configtx] addToMap -> DEBU 51c Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -2018-01-18 01:58:52.016 UTC [common/configtx] addToMap -> DEBU 51d Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -2018-01-18 01:58:52.016 UTC [common/configtx] addToMap -> DEBU 51e Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -2018-01-18 01:58:52.016 UTC [common/configtx] addToMap -> DEBU 51f Adding to config map: [Groups] /Channel/Application/Org2MSP -2018-01-18 01:58:52.017 UTC [common/configtx] addToMap -> DEBU 520 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -2018-01-18 01:58:52.017 UTC [common/configtx] addToMap -> DEBU 521 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -2018-01-18 01:58:52.017 UTC [common/configtx] addToMap -> DEBU 522 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -2018-01-18 01:58:52.017 UTC [common/configtx] addToMap -> DEBU 523 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -2018-01-18 01:58:52.017 UTC [common/configtx] addToMap -> DEBU 524 Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy -2018-01-18 01:58:52.017 UTC [common/configtx] addToMap -> DEBU 525 Adding to config map: [Values] /Channel/BlockDataHashingStructure -2018-01-18 01:58:52.017 UTC [common/configtx] addToMap -> DEBU 526 Adding to config map: [Values] /Channel/OrdererAddresses -2018-01-18 01:58:52.017 UTC [common/configtx] addToMap -> DEBU 527 Adding to config map: [Values] /Channel/Consortium -2018-01-18 01:58:52.017 UTC [common/configtx] addToMap -> DEBU 528 Adding to config map: [Values] /Channel/HashingAlgorithm -2018-01-18 01:58:52.017 UTC [common/configtx] addToMap -> DEBU 529 Adding to config map: [Policy] /Channel/Admins -2018-01-18 01:58:52.017 UTC [common/configtx] addToMap -> DEBU 52a Adding to config map: [Policy] /Channel/Readers -2018-01-18 01:58:52.017 UTC [common/configtx] addToMap -> DEBU 52b Adding to config map: [Policy] /Channel/Writers -2018-01-18 01:58:52.017 UTC [common/configtx] processConfig -> DEBU 52c Beginning new config for channel businesschannel -2018-01-18 01:58:52.017 UTC [common/config] NewStandardValues -> DEBU 52d Initializing protos for *config.ChannelProtos -2018-01-18 01:58:52.018 UTC [common/config] initializeProtosStruct -> DEBU 52e Processing field: HashingAlgorithm -2018-01-18 01:58:52.018 UTC [common/config] initializeProtosStruct -> DEBU 52f Processing field: BlockDataHashingStructure -2018-01-18 01:58:52.018 UTC [common/config] initializeProtosStruct -> DEBU 530 Processing field: OrdererAddresses -2018-01-18 01:58:52.018 UTC [common/config] initializeProtosStruct -> DEBU 531 Processing field: Consortium -2018-01-18 01:58:52.018 UTC [policies] ProposePolicy -> DEBU 532 Proposed new policy Writers for Channel -2018-01-18 01:58:52.018 UTC [policies] ProposePolicy -> DEBU 533 Proposed new policy Admins for Channel -2018-01-18 01:58:52.018 UTC [policies] ProposePolicy -> DEBU 534 Proposed new policy Readers for Channel -2018-01-18 01:58:52.018 UTC [common/config] NewStandardValues -> DEBU 535 Initializing protos for *config.OrdererProtos -2018-01-18 01:58:52.018 UTC [common/config] initializeProtosStruct -> DEBU 536 Processing field: ConsensusType -2018-01-18 01:58:52.018 UTC [common/config] initializeProtosStruct -> DEBU 537 Processing field: BatchSize -2018-01-18 01:58:52.018 UTC [common/config] initializeProtosStruct -> DEBU 538 Processing field: BatchTimeout -2018-01-18 01:58:52.018 UTC [common/config] initializeProtosStruct -> DEBU 539 Processing field: KafkaBrokers -2018-01-18 01:58:52.018 UTC [common/config] initializeProtosStruct -> DEBU 53a Processing field: ChannelRestrictions -2018-01-18 01:58:52.018 UTC [policies] ProposePolicy -> DEBU 53b Proposed new policy Readers for Orderer -2018-01-18 01:58:52.018 UTC [policies] ProposePolicy -> DEBU 53c Proposed new policy Writers for Orderer -2018-01-18 01:58:52.018 UTC [policies] ProposePolicy -> DEBU 53d Proposed new policy Admins for Orderer -2018-01-18 01:58:52.018 UTC [policies] ProposePolicy -> DEBU 53e Proposed new policy BlockValidation for Orderer -2018-01-18 01:58:52.018 UTC [common/config] NewStandardValues -> DEBU 53f Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:52.018 UTC [common/config] initializeProtosStruct -> DEBU 540 Processing field: MSP -2018-01-18 01:58:52.018 UTC [policies] ProposePolicy -> DEBU 541 Proposed new policy Readers for OrdererOrg -2018-01-18 01:58:52.018 UTC [policies] ProposePolicy -> DEBU 542 Proposed new policy Writers for OrdererOrg -2018-01-18 01:58:52.018 UTC [policies] ProposePolicy -> DEBU 543 Proposed new policy Admins for OrdererOrg -2018-01-18 01:58:52.018 UTC [common/config] NewStandardValues -> DEBU 544 Initializing protos for *struct {} -2018-01-18 01:58:52.018 UTC [policies] ProposePolicy -> DEBU 545 Proposed new policy ChannelCreationPolicy for Application -2018-01-18 01:58:52.018 UTC [common/config] NewStandardValues -> DEBU 546 Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:52.018 UTC [common/config] initializeProtosStruct -> DEBU 547 Processing field: MSP -2018-01-18 01:58:52.019 UTC [common/config] NewStandardValues -> DEBU 548 Initializing protos for *config.ApplicationOrgProtos -2018-01-18 01:58:52.019 UTC [common/config] initializeProtosStruct -> DEBU 549 Processing field: AnchorPeers -2018-01-18 01:58:52.019 UTC [common/config] NewStandardValues -> DEBU 54a Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:52.019 UTC [common/config] initializeProtosStruct -> DEBU 54b Processing field: MSP -2018-01-18 01:58:52.019 UTC [policies] ProposePolicy -> DEBU 54c Proposed new policy Readers for Org1MSP -2018-01-18 01:58:52.019 UTC [policies] ProposePolicy -> DEBU 54d Proposed new policy Writers for Org1MSP -2018-01-18 01:58:52.019 UTC [policies] ProposePolicy -> DEBU 54e Proposed new policy Admins for Org1MSP -2018-01-18 01:58:52.019 UTC [common/config] NewStandardValues -> DEBU 54f Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:52.019 UTC [common/config] initializeProtosStruct -> DEBU 550 Processing field: MSP -2018-01-18 01:58:52.019 UTC [common/config] NewStandardValues -> DEBU 551 Initializing protos for *config.ApplicationOrgProtos -2018-01-18 01:58:52.019 UTC [common/config] initializeProtosStruct -> DEBU 552 Processing field: AnchorPeers -2018-01-18 01:58:52.019 UTC [common/config] NewStandardValues -> DEBU 553 Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:52.019 UTC [common/config] initializeProtosStruct -> DEBU 554 Processing field: MSP -2018-01-18 01:58:52.019 UTC [policies] ProposePolicy -> DEBU 555 Proposed new policy Writers for Org2MSP -2018-01-18 01:58:52.019 UTC [policies] ProposePolicy -> DEBU 556 Proposed new policy Admins for Org2MSP -2018-01-18 01:58:52.019 UTC [policies] ProposePolicy -> DEBU 557 Proposed new policy Readers for Org2MSP -2018-01-18 01:58:52.019 UTC [common/config] validateMSP -> DEBU 558 Setting up MSP for org OrdererOrg -2018-01-18 01:58:52.019 UTC [msp] NewBccspMsp -> DEBU 559 Creating BCCSP-based MSP instance -2018-01-18 01:58:52.019 UTC [msp] Setup -> DEBU 55a Setting up MSP instance OrdererMSP -2018-01-18 01:58:52.020 UTC [msp/identity] newIdentity -> DEBU 55b Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:44.030 UTC [msp] SatisfiesPrincipal -> DEBU 4fe Checking if identity satisfies MEMBER role for OrdererMSP +2018-01-18 09:29:44.030 UTC [msp] Validate -> DEBU 4ff MSP OrdererMSP validating identity +2018-01-18 09:29:44.031 UTC [cauthdsl] func2 -> DEBU 500 0xc42014a0e0 principal matched by identity 0 +2018-01-18 09:29:44.031 UTC [msp/identity] Verify -> DEBU 501 Verify: digest = 00000000 b5 0e a3 4a bc d8 ae fc ce f9 26 18 ae 87 b2 56 |...J......&....V| +00000010 a8 63 01 bc e0 c1 4c b8 83 70 56 e3 e8 d5 86 bc |.c....L..pV.....| +2018-01-18 09:29:44.031 UTC [msp/identity] Verify -> DEBU 502 Verify: sig = 00000000 30 45 02 21 00 b7 4d ae e7 de c0 7a 42 8c aa fb |0E.!..M....zB...| +00000010 1c c8 34 20 f4 dc 17 30 c8 8f d8 cf 3b 20 ea d5 |..4 ...0....; ..| +00000020 cb 94 ce 1b 1e 02 20 4d a8 cf db 60 ce fd 3d ca |...... M...`..=.| +00000030 87 0a 42 4c 3e 9a 71 10 b0 ee 3f 1a 3f 40 b5 81 |..BL>.q...?.?@..| +00000040 9a 87 ba 88 52 27 46 |....R'F| +2018-01-18 09:29:44.031 UTC [cauthdsl] func2 -> DEBU 503 0xc42014a0e0 principal evaluation succeeds for identity 0 +2018-01-18 09:29:44.031 UTC [cauthdsl] func1 -> DEBU 504 0xc42014a0e0 gate 1516267784029610165 evaluation succeeds +2018-01-18 09:29:44.031 UTC [orderer/common/sigfilter] Apply -> DEBU 505 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [Writers %!s(*policies.implicitMetaPolicy=&{0xc420371d80 1 [0xc420026490]})]} +2018-01-18 09:29:44.031 UTC [msp] GetLocalMSP -> DEBU 506 Returning existing local MSP +2018-01-18 09:29:44.031 UTC [msp] GetDefaultSigningIdentity -> DEBU 507 Obtaining default signing identity +2018-01-18 09:29:44.032 UTC [msp] GetLocalMSP -> DEBU 508 Returning existing local MSP +2018-01-18 09:29:44.032 UTC [msp] GetDefaultSigningIdentity -> DEBU 509 Obtaining default signing identity +2018-01-18 09:29:44.032 UTC [msp/identity] Sign -> DEBU 50a Sign: plaintext: 0AB7060A1B08011A060888D281D30522...41646D696E7310021A0641646D696E73 +2018-01-18 09:29:44.032 UTC [msp/identity] Sign -> DEBU 50b Sign: digest: FD2759BAA5F8950C3C72F255A38D76286B808B67DE802262C57B51BDF49EAC6E +2018-01-18 09:29:44.032 UTC [common/config] NewStandardValues -> DEBU 50c Initializing protos for *config.ChannelProtos +2018-01-18 09:29:44.032 UTC [common/config] initializeProtosStruct -> DEBU 50d Processing field: HashingAlgorithm +2018-01-18 09:29:44.033 UTC [common/config] initializeProtosStruct -> DEBU 50e Processing field: BlockDataHashingStructure +2018-01-18 09:29:44.033 UTC [common/config] initializeProtosStruct -> DEBU 50f Processing field: OrdererAddresses +2018-01-18 09:29:44.033 UTC [common/config] initializeProtosStruct -> DEBU 510 Processing field: Consortium +2018-01-18 09:29:44.033 UTC [common/configtx] addToMap -> DEBU 511 Adding to config map: [Groups] /Channel +2018-01-18 09:29:44.033 UTC [common/configtx] addToMap -> DEBU 512 Adding to config map: [Groups] /Channel/Application +2018-01-18 09:29:44.033 UTC [common/configtx] addToMap -> DEBU 513 Adding to config map: [Groups] /Channel/Application/Org2MSP +2018-01-18 09:29:44.033 UTC [common/configtx] addToMap -> DEBU 514 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +2018-01-18 09:29:44.033 UTC [common/configtx] addToMap -> DEBU 515 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +2018-01-18 09:29:44.033 UTC [common/configtx] addToMap -> DEBU 516 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +2018-01-18 09:29:44.034 UTC [common/configtx] addToMap -> DEBU 517 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +2018-01-18 09:29:44.034 UTC [common/configtx] addToMap -> DEBU 518 Adding to config map: [Groups] /Channel/Application/Org1MSP +2018-01-18 09:29:44.034 UTC [common/configtx] addToMap -> DEBU 519 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +2018-01-18 09:29:44.034 UTC [common/configtx] addToMap -> DEBU 51a Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +2018-01-18 09:29:44.034 UTC [common/configtx] addToMap -> DEBU 51b Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +2018-01-18 09:29:44.034 UTC [common/configtx] addToMap -> DEBU 51c Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +2018-01-18 09:29:44.034 UTC [common/configtx] addToMap -> DEBU 51d Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy +2018-01-18 09:29:44.034 UTC [common/configtx] addToMap -> DEBU 51e Adding to config map: [Groups] /Channel/Orderer +2018-01-18 09:29:44.034 UTC [common/configtx] addToMap -> DEBU 51f Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +2018-01-18 09:29:44.034 UTC [common/configtx] addToMap -> DEBU 520 Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +2018-01-18 09:29:44.034 UTC [common/configtx] addToMap -> DEBU 521 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +2018-01-18 09:29:44.034 UTC [common/configtx] addToMap -> DEBU 522 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +2018-01-18 09:29:44.034 UTC [common/configtx] addToMap -> DEBU 523 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +2018-01-18 09:29:44.035 UTC [common/configtx] addToMap -> DEBU 524 Adding to config map: [Values] /Channel/Orderer/ConsensusType +2018-01-18 09:29:44.035 UTC [common/configtx] addToMap -> DEBU 525 Adding to config map: [Values] /Channel/Orderer/BatchSize +2018-01-18 09:29:44.035 UTC [common/configtx] addToMap -> DEBU 526 Adding to config map: [Values] /Channel/Orderer/BatchTimeout +2018-01-18 09:29:44.035 UTC [common/configtx] addToMap -> DEBU 527 Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +2018-01-18 09:29:44.035 UTC [common/configtx] addToMap -> DEBU 528 Adding to config map: [Policy] /Channel/Orderer/Writers +2018-01-18 09:29:44.035 UTC [common/configtx] addToMap -> DEBU 529 Adding to config map: [Policy] /Channel/Orderer/Admins +2018-01-18 09:29:44.035 UTC [common/configtx] addToMap -> DEBU 52a Adding to config map: [Policy] /Channel/Orderer/BlockValidation +2018-01-18 09:29:44.035 UTC [common/configtx] addToMap -> DEBU 52b Adding to config map: [Policy] /Channel/Orderer/Readers +2018-01-18 09:29:44.035 UTC [common/configtx] addToMap -> DEBU 52c Adding to config map: [Values] /Channel/HashingAlgorithm +2018-01-18 09:29:44.035 UTC [common/configtx] addToMap -> DEBU 52d Adding to config map: [Values] /Channel/Consortium +2018-01-18 09:29:44.035 UTC [common/configtx] addToMap -> DEBU 52e Adding to config map: [Values] /Channel/BlockDataHashingStructure +2018-01-18 09:29:44.029 UTC [orderer/common/broadcast] Handle -> DEBU 4f8 [channel: testchainid] Broadcast has successfully enqueued message of type ORDERER_TRANSACTION +2018-01-18 09:29:44.042 UTC [orderer/common/deliver] Handle -> DEBU 52f Rejecting deliver because channel businesschannel not found +2018-01-18 09:29:44.044 UTC [orderer/common/broadcast] Handle -> WARN 530 Error reading from stream: rpc error: code = Canceled desc = context canceled +2018-01-18 09:29:44.044 UTC [orderer/main] func1 -> DEBU 531 Closing Broadcast stream +2018-01-18 09:29:44.047 UTC [orderer/main] func1 -> DEBU 532 Closing Deliver stream +2018-01-18 09:29:44.048 UTC [common/configtx] addToMap -> DEBU 533 Adding to config map: [Values] /Channel/OrdererAddresses +2018-01-18 09:29:44.048 UTC [common/configtx] addToMap -> DEBU 534 Adding to config map: [Policy] /Channel/Readers +2018-01-18 09:29:44.048 UTC [common/configtx] addToMap -> DEBU 535 Adding to config map: [Policy] /Channel/Writers +2018-01-18 09:29:44.048 UTC [common/configtx] addToMap -> DEBU 536 Adding to config map: [Policy] /Channel/Admins +2018-01-18 09:29:44.049 UTC [common/configtx] processConfig -> DEBU 537 Beginning new config for channel businesschannel +2018-01-18 09:29:44.050 UTC [common/config] NewStandardValues -> DEBU 538 Initializing protos for *config.ChannelProtos +2018-01-18 09:29:44.050 UTC [common/config] initializeProtosStruct -> DEBU 539 Processing field: HashingAlgorithm +2018-01-18 09:29:44.050 UTC [common/config] initializeProtosStruct -> DEBU 53a Processing field: BlockDataHashingStructure +2018-01-18 09:29:44.051 UTC [common/config] initializeProtosStruct -> DEBU 53b Processing field: OrdererAddresses +2018-01-18 09:29:44.052 UTC [common/config] initializeProtosStruct -> DEBU 53c Processing field: Consortium +2018-01-18 09:29:44.054 UTC [policies] ProposePolicy -> DEBU 53d Proposed new policy Readers for Channel +2018-01-18 09:29:44.055 UTC [policies] ProposePolicy -> DEBU 53e Proposed new policy Writers for Channel +2018-01-18 09:29:44.057 UTC [policies] ProposePolicy -> DEBU 53f Proposed new policy Admins for Channel +2018-01-18 09:29:44.057 UTC [common/config] NewStandardValues -> DEBU 540 Initializing protos for *config.OrdererProtos +2018-01-18 09:29:44.057 UTC [common/config] initializeProtosStruct -> DEBU 541 Processing field: ConsensusType +2018-01-18 09:29:44.057 UTC [common/config] initializeProtosStruct -> DEBU 542 Processing field: BatchSize +2018-01-18 09:29:44.057 UTC [common/config] initializeProtosStruct -> DEBU 543 Processing field: BatchTimeout +2018-01-18 09:29:44.057 UTC [common/config] initializeProtosStruct -> DEBU 544 Processing field: KafkaBrokers +2018-01-18 09:29:44.058 UTC [common/config] initializeProtosStruct -> DEBU 545 Processing field: ChannelRestrictions +2018-01-18 09:29:44.058 UTC [policies] ProposePolicy -> DEBU 546 Proposed new policy Readers for Orderer +2018-01-18 09:29:44.058 UTC [policies] ProposePolicy -> DEBU 547 Proposed new policy Writers for Orderer +2018-01-18 09:29:44.058 UTC [policies] ProposePolicy -> DEBU 548 Proposed new policy Admins for Orderer +2018-01-18 09:29:44.058 UTC [policies] ProposePolicy -> DEBU 549 Proposed new policy BlockValidation for Orderer +2018-01-18 09:29:44.058 UTC [common/config] NewStandardValues -> DEBU 54a Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:44.058 UTC [common/config] initializeProtosStruct -> DEBU 54b Processing field: MSP +2018-01-18 09:29:44.058 UTC [policies] ProposePolicy -> DEBU 54c Proposed new policy Writers for OrdererOrg +2018-01-18 09:29:44.058 UTC [policies] ProposePolicy -> DEBU 54d Proposed new policy Admins for OrdererOrg +2018-01-18 09:29:44.058 UTC [policies] ProposePolicy -> DEBU 54e Proposed new policy Readers for OrdererOrg +2018-01-18 09:29:44.059 UTC [common/config] NewStandardValues -> DEBU 54f Initializing protos for *struct {} +2018-01-18 09:29:44.060 UTC [policies] ProposePolicy -> DEBU 550 Proposed new policy ChannelCreationPolicy for Application +2018-01-18 09:29:44.061 UTC [common/config] NewStandardValues -> DEBU 551 Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:44.061 UTC [common/config] initializeProtosStruct -> DEBU 552 Processing field: MSP +2018-01-18 09:29:44.061 UTC [common/config] NewStandardValues -> DEBU 553 Initializing protos for *config.ApplicationOrgProtos +2018-01-18 09:29:44.061 UTC [common/config] initializeProtosStruct -> DEBU 554 Processing field: AnchorPeers +2018-01-18 09:29:44.062 UTC [common/config] NewStandardValues -> DEBU 555 Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:44.064 UTC [common/config] initializeProtosStruct -> DEBU 556 Processing field: MSP +2018-01-18 09:29:44.064 UTC [policies] ProposePolicy -> DEBU 557 Proposed new policy Admins for Org2MSP +2018-01-18 09:29:44.064 UTC [policies] ProposePolicy -> DEBU 558 Proposed new policy Readers for Org2MSP +2018-01-18 09:29:44.064 UTC [policies] ProposePolicy -> DEBU 559 Proposed new policy Writers for Org2MSP +2018-01-18 09:29:44.065 UTC [common/config] NewStandardValues -> DEBU 55a Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:44.065 UTC [common/config] initializeProtosStruct -> DEBU 55b Processing field: MSP +2018-01-18 09:29:44.065 UTC [common/config] NewStandardValues -> DEBU 55c Initializing protos for *config.ApplicationOrgProtos +2018-01-18 09:29:44.066 UTC [common/config] initializeProtosStruct -> DEBU 55d Processing field: AnchorPeers +2018-01-18 09:29:44.066 UTC [common/config] NewStandardValues -> DEBU 55e Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:44.067 UTC [common/config] initializeProtosStruct -> DEBU 55f Processing field: MSP +2018-01-18 09:29:44.067 UTC [policies] ProposePolicy -> DEBU 560 Proposed new policy Writers for Org1MSP +2018-01-18 09:29:44.067 UTC [policies] ProposePolicy -> DEBU 561 Proposed new policy Admins for Org1MSP +2018-01-18 09:29:44.067 UTC [policies] ProposePolicy -> DEBU 562 Proposed new policy Readers for Org1MSP +2018-01-18 09:29:44.067 UTC [common/config] validateMSP -> DEBU 563 Setting up MSP for org OrdererOrg +2018-01-18 09:29:44.067 UTC [msp] NewBccspMsp -> DEBU 564 Creating BCCSP-based MSP instance +2018-01-18 09:29:44.067 UTC [orderer/main] Deliver -> DEBU 565 Starting new Deliver handler +2018-01-18 09:29:44.068 UTC [orderer/common/deliver] Handle -> DEBU 567 Starting new deliver loop +2018-01-18 09:29:44.068 UTC [orderer/common/deliver] Handle -> DEBU 568 Attempting to read seek info message +2018-01-18 09:29:44.067 UTC [msp] Setup -> DEBU 566 Setting up MSP instance OrdererMSP +2018-01-18 09:29:44.068 UTC [msp/identity] newIdentity -> DEBU 569 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -2368,7 +2395,7 @@ AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= -----END CERTIFICATE----- -2018-01-18 01:58:52.020 UTC [msp/identity] newIdentity -> DEBU 55c Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:44.069 UTC [msp/identity] newIdentity -> DEBU 56a Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -2381,7 +2408,7 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -----END CERTIFICATE----- -2018-01-18 01:58:52.021 UTC [msp/identity] newIdentity -> DEBU 55d Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:44.070 UTC [msp/identity] newIdentity -> DEBU 56b Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -2394,67 +2421,12 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -----END CERTIFICATE----- -2018-01-18 01:58:52.022 UTC [msp] Validate -> DEBU 55e MSP OrdererMSP validating identity -2018-01-18 01:58:52.023 UTC [orderer/common/deliver] Handle -> DEBU 560 Rejecting deliver because channel businesschannel not found -2018-01-18 01:58:52.026 UTC [orderer/main] func1 -> DEBU 561 Closing Deliver stream -2018-01-18 01:58:52.023 UTC [common/config] Validate -> DEBU 55f Anchor peers for org Org1MSP are -2018-01-18 01:58:52.029 UTC [common/config] validateMSP -> DEBU 563 Setting up MSP for org Org1MSP -2018-01-18 01:58:52.029 UTC [orderer/common/broadcast] Handle -> WARN 562 Error reading from stream: rpc error: code = Canceled desc = context canceled -2018-01-18 01:58:52.030 UTC [orderer/main] func1 -> DEBU 565 Closing Broadcast stream -2018-01-18 01:58:52.029 UTC [msp] NewBccspMsp -> DEBU 564 Creating BCCSP-based MSP instance -2018-01-18 01:58:52.030 UTC [msp] Setup -> DEBU 566 Setting up MSP instance Org1MSP -2018-01-18 01:58:52.031 UTC [msp/identity] newIdentity -> DEBU 567 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf -db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx -JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi -/IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ -H7n8z1pj5w== ------END CERTIFICATE----- -2018-01-18 01:58:52.032 UTC [msp/identity] newIdentity -> DEBU 568 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -xHTBvxfK6mAzmUitFmY= ------END CERTIFICATE----- -2018-01-18 01:58:52.035 UTC [msp/identity] newIdentity -> DEBU 569 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -xHTBvxfK6mAzmUitFmY= ------END CERTIFICATE----- -2018-01-18 01:58:52.038 UTC [msp] Validate -> DEBU 56a MSP Org1MSP validating identity -2018-01-18 01:58:52.041 UTC [orderer/main] Deliver -> DEBU 56b Starting new Deliver handler -2018-01-18 01:58:52.041 UTC [orderer/common/deliver] Handle -> DEBU 56c Starting new deliver loop -2018-01-18 01:58:52.041 UTC [orderer/common/deliver] Handle -> DEBU 56d Attempting to read seek info message -2018-01-18 01:58:52.041 UTC [common/config] Validate -> DEBU 56e Anchor peers for org Org2MSP are -2018-01-18 01:58:52.041 UTC [common/config] validateMSP -> DEBU 56f Setting up MSP for org Org2MSP -2018-01-18 01:58:52.041 UTC [msp] NewBccspMsp -> DEBU 570 Creating BCCSP-based MSP instance -2018-01-18 01:58:52.042 UTC [msp] Setup -> DEBU 571 Setting up MSP instance Org2MSP -2018-01-18 01:58:52.043 UTC [msp/identity] newIdentity -> DEBU 572 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:44.071 UTC [msp] Validate -> DEBU 56c MSP OrdererMSP validating identity +2018-01-18 09:29:44.071 UTC [common/config] Validate -> DEBU 56d Anchor peers for org Org2MSP are +2018-01-18 09:29:44.072 UTC [common/config] validateMSP -> DEBU 56e Setting up MSP for org Org2MSP +2018-01-18 09:29:44.072 UTC [msp] NewBccspMsp -> DEBU 56f Creating BCCSP-based MSP instance +2018-01-18 09:29:44.072 UTC [msp] Setup -> DEBU 570 Setting up MSP instance Org2MSP +2018-01-18 09:29:44.073 UTC [msp/identity] newIdentity -> DEBU 571 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -2469,7 +2441,7 @@ xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk SCjyRdD3aQ== -----END CERTIFICATE----- -2018-01-18 01:58:52.043 UTC [msp/identity] newIdentity -> DEBU 573 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:44.075 UTC [msp/identity] newIdentity -> DEBU 572 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -2483,7 +2455,7 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS AXYxULZpXYDQXt1KaLI= -----END CERTIFICATE----- -2018-01-18 01:58:52.044 UTC [msp/identity] newIdentity -> DEBU 574 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:44.076 UTC [msp/identity] newIdentity -> DEBU 573 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -2497,223 +2469,12 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS AXYxULZpXYDQXt1KaLI= -----END CERTIFICATE----- -2018-01-18 01:58:52.044 UTC [msp] Validate -> DEBU 575 MSP Org2MSP validating identity -2018-01-18 01:58:52.044 UTC [msp] Setup -> DEBU 576 Setting up the MSP manager (3 msps) -2018-01-18 01:58:52.044 UTC [msp] Setup -> DEBU 577 MSP manager setup complete, setup 3 msps -2018-01-18 01:58:52.044 UTC [policies] GetPolicy -> DEBU 578 Returning policy Admins for evaluation -2018-01-18 01:58:52.044 UTC [policies] CommitProposals -> DEBU 579 In commit adding relative sub-policy OrdererOrg/Admins to Orderer -2018-01-18 01:58:52.044 UTC [policies] GetPolicy -> DEBU 57a Returning policy Readers for evaluation -2018-01-18 01:58:52.045 UTC [policies] CommitProposals -> DEBU 57b In commit adding relative sub-policy OrdererOrg/Readers to Orderer -2018-01-18 01:58:52.045 UTC [policies] GetPolicy -> DEBU 57c Returning policy Writers for evaluation -2018-01-18 01:58:52.045 UTC [policies] CommitProposals -> DEBU 57d In commit adding relative sub-policy OrdererOrg/Writers to Orderer -2018-01-18 01:58:52.045 UTC [policies] GetPolicy -> DEBU 57e Returning policy Readers for evaluation -2018-01-18 01:58:52.045 UTC [policies] GetPolicy -> DEBU 57f Returning policy Writers for evaluation -2018-01-18 01:58:52.045 UTC [policies] GetPolicy -> DEBU 580 Returning policy Admins for evaluation -2018-01-18 01:58:52.045 UTC [policies] GetPolicy -> DEBU 581 Returning policy Writers for evaluation -2018-01-18 01:58:52.045 UTC [policies] GetPolicy -> DEBU 582 Returning policy Writers for evaluation -2018-01-18 01:58:52.045 UTC [policies] CommitProposals -> DEBU 583 In commit adding relative sub-policy Org1MSP/Writers to Application -2018-01-18 01:58:52.045 UTC [policies] GetPolicy -> DEBU 584 Returning policy Admins for evaluation -2018-01-18 01:58:52.045 UTC [policies] CommitProposals -> DEBU 585 In commit adding relative sub-policy Org1MSP/Admins to Application -2018-01-18 01:58:52.045 UTC [policies] GetPolicy -> DEBU 586 Returning policy Readers for evaluation -2018-01-18 01:58:52.045 UTC [policies] CommitProposals -> DEBU 587 In commit adding relative sub-policy Org1MSP/Readers to Application -2018-01-18 01:58:52.045 UTC [policies] GetPolicy -> DEBU 588 Returning policy Writers for evaluation -2018-01-18 01:58:52.045 UTC [policies] CommitProposals -> DEBU 589 In commit adding relative sub-policy Org2MSP/Writers to Application -2018-01-18 01:58:52.045 UTC [policies] GetPolicy -> DEBU 58a Returning policy Admins for evaluation -2018-01-18 01:58:52.045 UTC [policies] CommitProposals -> DEBU 58b In commit adding relative sub-policy Org2MSP/Admins to Application -2018-01-18 01:58:52.045 UTC [policies] GetPolicy -> DEBU 58c Returning policy Readers for evaluation -2018-01-18 01:58:52.045 UTC [policies] CommitProposals -> DEBU 58d In commit adding relative sub-policy Org2MSP/Readers to Application -2018-01-18 01:58:52.045 UTC [policies] GetPolicy -> DEBU 58e Returning policy Admins for evaluation -2018-01-18 01:58:52.045 UTC [policies] GetPolicy -> DEBU 58f Returning policy Admins for evaluation -2018-01-18 01:58:52.045 UTC [policies] GetPolicy -> DEBU 590 Returning policy Admins for evaluation -2018-01-18 01:58:52.045 UTC [policies] CommitProposals -> DEBU 591 In commit adding relative sub-policy Orderer/Admins to Channel -2018-01-18 01:58:52.045 UTC [policies] GetPolicy -> DEBU 592 Returning policy BlockValidation for evaluation -2018-01-18 01:58:52.045 UTC [policies] CommitProposals -> DEBU 593 In commit adding relative sub-policy Orderer/BlockValidation to Channel -2018-01-18 01:58:52.045 UTC [policies] GetPolicy -> DEBU 594 Returning policy OrdererOrg/Admins for evaluation -2018-01-18 01:58:52.045 UTC [policies] CommitProposals -> DEBU 595 In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -2018-01-18 01:58:52.045 UTC [policies] GetPolicy -> DEBU 596 Returning policy OrdererOrg/Readers for evaluation -2018-01-18 01:58:52.045 UTC [policies] CommitProposals -> DEBU 597 In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -2018-01-18 01:58:52.045 UTC [policies] GetPolicy -> DEBU 598 Returning policy OrdererOrg/Writers for evaluation -2018-01-18 01:58:52.045 UTC [policies] CommitProposals -> DEBU 599 In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -2018-01-18 01:58:52.045 UTC [policies] GetPolicy -> DEBU 59a Returning policy Readers for evaluation -2018-01-18 01:58:52.045 UTC [policies] CommitProposals -> DEBU 59b In commit adding relative sub-policy Orderer/Readers to Channel -2018-01-18 01:58:52.045 UTC [policies] GetPolicy -> DEBU 59c Returning policy Writers for evaluation -2018-01-18 01:58:52.045 UTC [policies] CommitProposals -> DEBU 59d In commit adding relative sub-policy Orderer/Writers to Channel -2018-01-18 01:58:52.045 UTC [policies] GetPolicy -> DEBU 59e Returning policy Org2MSP/Writers for evaluation -2018-01-18 01:58:52.045 UTC [policies] CommitProposals -> DEBU 59f In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -2018-01-18 01:58:52.045 UTC [policies] GetPolicy -> DEBU 5a0 Returning policy Org2MSP/Admins for evaluation -2018-01-18 01:58:52.046 UTC [policies] CommitProposals -> DEBU 5a1 In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -2018-01-18 01:58:52.046 UTC [policies] GetPolicy -> DEBU 5a2 Returning policy Org2MSP/Readers for evaluation -2018-01-18 01:58:52.046 UTC [policies] CommitProposals -> DEBU 5a3 In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -2018-01-18 01:58:52.046 UTC [policies] GetPolicy -> DEBU 5a4 Returning policy ChannelCreationPolicy for evaluation -2018-01-18 01:58:52.046 UTC [policies] CommitProposals -> DEBU 5a5 In commit adding relative sub-policy Application/ChannelCreationPolicy to Channel -2018-01-18 01:58:52.046 UTC [policies] GetPolicy -> DEBU 5a6 Returning policy Org1MSP/Writers for evaluation -2018-01-18 01:58:52.046 UTC [policies] CommitProposals -> DEBU 5a7 In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -2018-01-18 01:58:52.046 UTC [policies] GetPolicy -> DEBU 5a8 Returning policy Org1MSP/Admins for evaluation -2018-01-18 01:58:52.046 UTC [policies] CommitProposals -> DEBU 5a9 In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -2018-01-18 01:58:52.046 UTC [policies] GetPolicy -> DEBU 5aa Returning policy Org1MSP/Readers for evaluation -2018-01-18 01:58:52.046 UTC [policies] CommitProposals -> DEBU 5ab In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -2018-01-18 01:58:52.046 UTC [policies] GetPolicy -> DEBU 5ac Returning dummy reject all policy because Writers could not be found in /Application/Writers -2018-01-18 01:58:52.046 UTC [policies] GetPolicy -> DEBU 5ad Returning policy Writers for evaluation -2018-01-18 01:58:52.046 UTC [policies] GetPolicy -> DEBU 5ae Returning policy Admins for evaluation -2018-01-18 01:58:52.046 UTC [policies] GetPolicy -> DEBU 5af Returning dummy reject all policy because Admins could not be found in /Application/Admins -2018-01-18 01:58:52.046 UTC [policies] GetPolicy -> DEBU 5b0 Returning policy Readers for evaluation -2018-01-18 01:58:52.046 UTC [policies] GetPolicy -> DEBU 5b1 Returning dummy reject all policy because Readers could not be found in /Application/Readers -2018-01-18 01:58:52.046 UTC [common/configtx] addToMap -> DEBU 5b2 Adding to config map: [Groups] /Channel -2018-01-18 01:58:52.047 UTC [common/configtx] addToMap -> DEBU 5b3 Adding to config map: [Groups] /Channel/Application -2018-01-18 01:58:52.047 UTC [common/configtx] addToMap -> DEBU 5b4 Adding to config map: [Groups] /Channel/Application/Org1MSP -2018-01-18 01:58:52.047 UTC [common/configtx] addToMap -> DEBU 5b5 Adding to config map: [Groups] /Channel/Application/Org2MSP -2018-01-18 01:58:52.047 UTC [common/configtx] addToMap -> DEBU 5b6 Adding to config map: [Values] /Channel/Consortium -2018-01-18 01:58:52.048 UTC [common/configtx] addToMap -> DEBU 5b7 Adding to config map: [Groups] /Channel -2018-01-18 01:58:52.048 UTC [common/configtx] addToMap -> DEBU 5b8 Adding to config map: [Groups] /Channel/Application -2018-01-18 01:58:52.048 UTC [common/configtx] addToMap -> DEBU 5b9 Adding to config map: [Groups] /Channel/Application/Org1MSP -2018-01-18 01:58:52.048 UTC [common/configtx] addToMap -> DEBU 5ba Adding to config map: [Groups] /Channel/Application/Org2MSP -2018-01-18 01:58:52.049 UTC [common/configtx] addToMap -> DEBU 5bb Adding to config map: [Policy] /Channel/Application/Admins -2018-01-18 01:58:52.049 UTC [common/configtx] addToMap -> DEBU 5bc Adding to config map: [Policy] /Channel/Application/Writers -2018-01-18 01:58:52.049 UTC [common/configtx] addToMap -> DEBU 5bd Adding to config map: [Policy] /Channel/Application/Readers -2018-01-18 01:58:52.049 UTC [common/configtx] addToMap -> DEBU 5be Adding to config map: [Values] /Channel/Consortium -2018-01-18 01:58:52.049 UTC [policies] GetPolicy -> DEBU 5bf Returning policy ChannelCreationPolicy for evaluation -2018-01-18 01:58:52.049 UTC [cauthdsl] func1 -> DEBU 5c0 0xc42014a8f8 gate 1516240732049767129 evaluation starts -2018-01-18 01:58:52.049 UTC [cauthdsl] func2 -> DEBU 5c1 0xc42014a8f8 signed by 0 principal evaluation starts (used [false]) -2018-01-18 01:58:52.049 UTC [cauthdsl] func2 -> DEBU 5c2 0xc42014a8f8 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-18 01:58:52.050 UTC [msp/identity] newIdentity -> DEBU 5c3 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -xHTBvxfK6mAzmUitFmY= ------END CERTIFICATE----- -2018-01-18 01:58:52.050 UTC [msp] SatisfiesPrincipal -> DEBU 5c4 Checking if identity satisfies ADMIN role for Org1MSP -2018-01-18 01:58:52.050 UTC [cauthdsl] func2 -> DEBU 5c5 0xc42014a8f8 principal matched by identity 0 -2018-01-18 01:58:52.050 UTC [msp/identity] Verify -> DEBU 5c6 Verify: digest = 00000000 0a a0 5d 09 26 8b 7a 10 a3 b6 c2 9d af ba c9 56 |..].&.z........V| -00000010 5f cb 22 5a 66 84 57 14 0b e8 1a 28 36 06 e9 3e |_."Zf.W....(6..>| -2018-01-18 01:58:52.050 UTC [msp/identity] Verify -> DEBU 5c7 Verify: sig = 00000000 30 44 02 20 29 07 f5 3b 75 87 a0 a4 66 fd f4 8c |0D. )..;u...f...| -00000010 9d 33 36 f4 39 b7 2e 82 fb 27 b6 27 f8 27 57 50 |.36.9....'.'.'WP| -00000020 a2 9f 0c a4 02 20 3e 03 90 56 ce da 45 23 b2 2d |..... >..V..E#.-| -00000030 85 0f 22 ec 4c 0d 0e f8 31 f9 4d ed fb a4 0e 7e |..".L...1.M....~| -00000040 2e 30 01 0f 91 31 |.0...1| -2018-01-18 01:58:52.050 UTC [cauthdsl] func2 -> DEBU 5c8 0xc42014a8f8 principal evaluation succeeds for identity 0 -2018-01-18 01:58:52.050 UTC [cauthdsl] func1 -> DEBU 5c9 0xc42014a8f8 gate 1516240732049767129 evaluation succeeds -2018-01-18 01:58:52.051 UTC [common/configtx] recurseConfigMap -> DEBU 5ca Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-18 01:58:52.051 UTC [common/configtx] recurseConfigMap -> DEBU 5cb Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-18 01:58:52.051 UTC [common/configtx] recurseConfigMap -> DEBU 5cc Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-18 01:58:52.051 UTC [common/configtx] recurseConfigMap -> DEBU 5cd Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-18 01:58:52.051 UTC [common/configtx] recurseConfigMap -> DEBU 5ce Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-18 01:58:52.051 UTC [common/configtx] recurseConfigMap -> DEBU 5cf Setting policy for key BlockValidation to policy: mod_policy:"Admins" -2018-01-18 01:58:52.051 UTC [common/configtx] recurseConfigMap -> DEBU 5d0 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-18 01:58:52.051 UTC [common/configtx] recurseConfigMap -> DEBU 5d1 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-18 01:58:52.051 UTC [common/configtx] recurseConfigMap -> DEBU 5d2 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-18 01:58:52.051 UTC [common/configtx] recurseConfigMap -> DEBU 5d3 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-18 01:58:52.051 UTC [common/configtx] recurseConfigMap -> DEBU 5d4 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-18 01:58:52.051 UTC [common/configtx] recurseConfigMap -> DEBU 5d5 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-18 01:58:52.051 UTC [common/configtx] recurseConfigMap -> DEBU 5d6 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-18 01:58:52.051 UTC [common/configtx] recurseConfigMap -> DEBU 5d7 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-18 01:58:52.051 UTC [common/configtx] recurseConfigMap -> DEBU 5d8 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-18 01:58:52.052 UTC [common/configtx] recurseConfigMap -> DEBU 5d9 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-18 01:58:52.052 UTC [common/configtx] recurseConfigMap -> DEBU 5da Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-18 01:58:52.052 UTC [common/configtx] recurseConfigMap -> DEBU 5db Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-18 01:58:52.052 UTC [common/configtx] recurseConfigMap -> DEBU 5dc Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-18 01:58:52.052 UTC [common/configtx] processConfig -> DEBU 5dd Beginning new config for channel businesschannel -2018-01-18 01:58:52.052 UTC [common/config] NewStandardValues -> DEBU 5de Initializing protos for *config.ChannelProtos -2018-01-18 01:58:52.052 UTC [common/config] initializeProtosStruct -> DEBU 5df Processing field: HashingAlgorithm -2018-01-18 01:58:52.052 UTC [common/config] initializeProtosStruct -> DEBU 5e0 Processing field: BlockDataHashingStructure -2018-01-18 01:58:52.052 UTC [common/config] initializeProtosStruct -> DEBU 5e1 Processing field: OrdererAddresses -2018-01-18 01:58:52.052 UTC [common/config] initializeProtosStruct -> DEBU 5e2 Processing field: Consortium -2018-01-18 01:58:52.052 UTC [policies] ProposePolicy -> DEBU 5e3 Proposed new policy Admins for Channel -2018-01-18 01:58:52.052 UTC [policies] ProposePolicy -> DEBU 5e4 Proposed new policy Readers for Channel -2018-01-18 01:58:52.052 UTC [policies] ProposePolicy -> DEBU 5e5 Proposed new policy Writers for Channel -2018-01-18 01:58:52.052 UTC [common/config] NewStandardValues -> DEBU 5e6 Initializing protos for *config.OrdererProtos -2018-01-18 01:58:52.052 UTC [common/config] initializeProtosStruct -> DEBU 5e7 Processing field: ConsensusType -2018-01-18 01:58:52.052 UTC [common/config] initializeProtosStruct -> DEBU 5e8 Processing field: BatchSize -2018-01-18 01:58:52.052 UTC [common/config] initializeProtosStruct -> DEBU 5e9 Processing field: BatchTimeout -2018-01-18 01:58:52.052 UTC [common/config] initializeProtosStruct -> DEBU 5ea Processing field: KafkaBrokers -2018-01-18 01:58:52.052 UTC [common/config] initializeProtosStruct -> DEBU 5eb Processing field: ChannelRestrictions -2018-01-18 01:58:52.052 UTC [policies] ProposePolicy -> DEBU 5ec Proposed new policy Writers for Orderer -2018-01-18 01:58:52.052 UTC [policies] ProposePolicy -> DEBU 5ed Proposed new policy Admins for Orderer -2018-01-18 01:58:52.052 UTC [policies] ProposePolicy -> DEBU 5ee Proposed new policy BlockValidation for Orderer -2018-01-18 01:58:52.052 UTC [policies] ProposePolicy -> DEBU 5ef Proposed new policy Readers for Orderer -2018-01-18 01:58:52.052 UTC [common/config] NewStandardValues -> DEBU 5f0 Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:52.053 UTC [common/config] initializeProtosStruct -> DEBU 5f1 Processing field: MSP -2018-01-18 01:58:52.053 UTC [policies] ProposePolicy -> DEBU 5f2 Proposed new policy Admins for OrdererOrg -2018-01-18 01:58:52.053 UTC [policies] ProposePolicy -> DEBU 5f3 Proposed new policy Readers for OrdererOrg -2018-01-18 01:58:52.053 UTC [policies] ProposePolicy -> DEBU 5f4 Proposed new policy Writers for OrdererOrg -2018-01-18 01:58:52.053 UTC [common/config] NewStandardValues -> DEBU 5f5 Initializing protos for *struct {} -2018-01-18 01:58:52.053 UTC [policies] ProposePolicy -> DEBU 5f6 Proposed new policy Admins for Application -2018-01-18 01:58:52.053 UTC [policies] ProposePolicy -> DEBU 5f7 Proposed new policy Writers for Application -2018-01-18 01:58:52.053 UTC [policies] ProposePolicy -> DEBU 5f8 Proposed new policy Readers for Application -2018-01-18 01:58:52.053 UTC [common/config] NewStandardValues -> DEBU 5f9 Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:52.053 UTC [common/config] initializeProtosStruct -> DEBU 5fa Processing field: MSP -2018-01-18 01:58:52.053 UTC [common/config] NewStandardValues -> DEBU 5fb Initializing protos for *config.ApplicationOrgProtos -2018-01-18 01:58:52.053 UTC [common/config] initializeProtosStruct -> DEBU 5fc Processing field: AnchorPeers -2018-01-18 01:58:52.053 UTC [common/config] NewStandardValues -> DEBU 5fd Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:52.053 UTC [common/config] initializeProtosStruct -> DEBU 5fe Processing field: MSP -2018-01-18 01:58:52.053 UTC [policies] ProposePolicy -> DEBU 5ff Proposed new policy Writers for Org1MSP -2018-01-18 01:58:52.053 UTC [policies] ProposePolicy -> DEBU 600 Proposed new policy Admins for Org1MSP -2018-01-18 01:58:52.053 UTC [policies] ProposePolicy -> DEBU 601 Proposed new policy Readers for Org1MSP -2018-01-18 01:58:52.053 UTC [common/config] NewStandardValues -> DEBU 602 Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:52.053 UTC [common/config] initializeProtosStruct -> DEBU 603 Processing field: MSP -2018-01-18 01:58:52.053 UTC [common/config] NewStandardValues -> DEBU 604 Initializing protos for *config.ApplicationOrgProtos -2018-01-18 01:58:52.053 UTC [common/config] initializeProtosStruct -> DEBU 605 Processing field: AnchorPeers -2018-01-18 01:58:52.053 UTC [common/config] NewStandardValues -> DEBU 606 Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:52.054 UTC [common/config] initializeProtosStruct -> DEBU 607 Processing field: MSP -2018-01-18 01:58:52.054 UTC [policies] ProposePolicy -> DEBU 608 Proposed new policy Admins for Org2MSP -2018-01-18 01:58:52.054 UTC [policies] ProposePolicy -> DEBU 609 Proposed new policy Readers for Org2MSP -2018-01-18 01:58:52.054 UTC [policies] ProposePolicy -> DEBU 60a Proposed new policy Writers for Org2MSP -2018-01-18 01:58:52.054 UTC [common/config] validateMSP -> DEBU 60b Setting up MSP for org OrdererOrg -2018-01-18 01:58:52.054 UTC [msp] NewBccspMsp -> DEBU 60c Creating BCCSP-based MSP instance -2018-01-18 01:58:52.054 UTC [msp] Setup -> DEBU 60d Setting up MSP instance OrdererMSP -2018-01-18 01:58:52.054 UTC [msp/identity] newIdentity -> DEBU 60e Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW -gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w -XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK -BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs -KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= ------END CERTIFICATE----- -2018-01-18 01:58:52.054 UTC [msp/identity] newIdentity -> DEBU 60f Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 ------END CERTIFICATE----- -2018-01-18 01:58:52.055 UTC [msp/identity] newIdentity -> DEBU 610 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 ------END CERTIFICATE----- -2018-01-18 01:58:52.055 UTC [msp] Validate -> DEBU 611 MSP OrdererMSP validating identity -2018-01-18 01:58:52.055 UTC [common/config] Validate -> DEBU 612 Anchor peers for org Org1MSP are -2018-01-18 01:58:52.056 UTC [common/config] validateMSP -> DEBU 613 Setting up MSP for org Org1MSP -2018-01-18 01:58:52.056 UTC [msp] NewBccspMsp -> DEBU 614 Creating BCCSP-based MSP instance -2018-01-18 01:58:52.056 UTC [msp] Setup -> DEBU 615 Setting up MSP instance Org1MSP -2018-01-18 01:58:52.056 UTC [msp/identity] newIdentity -> DEBU 616 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:44.077 UTC [msp] Validate -> DEBU 574 MSP Org2MSP validating identity +2018-01-18 09:29:44.077 UTC [common/config] Validate -> DEBU 575 Anchor peers for org Org1MSP are +2018-01-18 09:29:44.078 UTC [common/config] validateMSP -> DEBU 576 Setting up MSP for org Org1MSP +2018-01-18 09:29:44.078 UTC [msp] NewBccspMsp -> DEBU 577 Creating BCCSP-based MSP instance +2018-01-18 09:29:44.078 UTC [msp] Setup -> DEBU 578 Setting up MSP instance Org1MSP +2018-01-18 09:29:44.078 UTC [msp/identity] newIdentity -> DEBU 579 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -2728,7 +2489,7 @@ JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ H7n8z1pj5w== -----END CERTIFICATE----- -2018-01-18 01:58:52.056 UTC [msp/identity] newIdentity -> DEBU 617 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:44.079 UTC [msp/identity] newIdentity -> DEBU 57a Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -2742,7 +2503,7 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-18 01:58:52.057 UTC [msp/identity] newIdentity -> DEBU 618 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:44.080 UTC [msp/identity] newIdentity -> DEBU 57b Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -2756,111 +2517,85 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-18 01:58:52.057 UTC [msp] Validate -> DEBU 619 MSP Org1MSP validating identity -2018-01-18 01:58:52.058 UTC [common/config] Validate -> DEBU 61a Anchor peers for org Org2MSP are -2018-01-18 01:58:52.058 UTC [common/config] validateMSP -> DEBU 61b Setting up MSP for org Org2MSP -2018-01-18 01:58:52.058 UTC [msp] NewBccspMsp -> DEBU 61c Creating BCCSP-based MSP instance -2018-01-18 01:58:52.058 UTC [msp] Setup -> DEBU 61d Setting up MSP instance Org2MSP -2018-01-18 01:58:52.058 UTC [msp/identity] newIdentity -> DEBU 61e Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa -MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 -sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ -xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv -WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk -SCjyRdD3aQ== ------END CERTIFICATE----- -2018-01-18 01:58:52.058 UTC [msp/identity] newIdentity -> DEBU 61f Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -AXYxULZpXYDQXt1KaLI= ------END CERTIFICATE----- -2018-01-18 01:58:52.058 UTC [msp/identity] newIdentity -> DEBU 620 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -AXYxULZpXYDQXt1KaLI= ------END CERTIFICATE----- -2018-01-18 01:58:52.059 UTC [msp] Validate -> DEBU 621 MSP Org2MSP validating identity -2018-01-18 01:58:52.059 UTC [msp] Setup -> DEBU 622 Setting up the MSP manager (3 msps) -2018-01-18 01:58:52.059 UTC [msp] Setup -> DEBU 623 MSP manager setup complete, setup 3 msps -2018-01-18 01:58:52.059 UTC [common/configtx] addToMap -> DEBU 624 Adding to config map: [Groups] /Channel -2018-01-18 01:58:52.059 UTC [common/configtx] addToMap -> DEBU 625 Adding to config map: [Groups] /Channel/Orderer -2018-01-18 01:58:52.059 UTC [common/configtx] addToMap -> DEBU 626 Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -2018-01-18 01:58:52.060 UTC [common/configtx] addToMap -> DEBU 627 Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -2018-01-18 01:58:52.060 UTC [common/configtx] addToMap -> DEBU 628 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -2018-01-18 01:58:52.060 UTC [common/configtx] addToMap -> DEBU 629 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -2018-01-18 01:58:52.060 UTC [common/configtx] addToMap -> DEBU 62a Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -2018-01-18 01:58:52.060 UTC [common/configtx] addToMap -> DEBU 62b Adding to config map: [Values] /Channel/Orderer/ConsensusType -2018-01-18 01:58:52.060 UTC [common/configtx] addToMap -> DEBU 62c Adding to config map: [Values] /Channel/Orderer/BatchSize -2018-01-18 01:58:52.060 UTC [common/configtx] addToMap -> DEBU 62d Adding to config map: [Values] /Channel/Orderer/BatchTimeout -2018-01-18 01:58:52.060 UTC [common/configtx] addToMap -> DEBU 62e Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -2018-01-18 01:58:52.060 UTC [common/configtx] addToMap -> DEBU 62f Adding to config map: [Policy] /Channel/Orderer/BlockValidation -2018-01-18 01:58:52.060 UTC [common/configtx] addToMap -> DEBU 630 Adding to config map: [Policy] /Channel/Orderer/Readers -2018-01-18 01:58:52.060 UTC [common/configtx] addToMap -> DEBU 631 Adding to config map: [Policy] /Channel/Orderer/Writers -2018-01-18 01:58:52.061 UTC [common/configtx] addToMap -> DEBU 632 Adding to config map: [Policy] /Channel/Orderer/Admins -2018-01-18 01:58:52.061 UTC [common/configtx] addToMap -> DEBU 633 Adding to config map: [Groups] /Channel/Application -2018-01-18 01:58:52.061 UTC [common/configtx] addToMap -> DEBU 634 Adding to config map: [Groups] /Channel/Application/Org2MSP -2018-01-18 01:58:52.061 UTC [common/configtx] addToMap -> DEBU 635 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -2018-01-18 01:58:52.061 UTC [common/configtx] addToMap -> DEBU 636 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -2018-01-18 01:58:52.061 UTC [common/configtx] addToMap -> DEBU 637 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -2018-01-18 01:58:52.061 UTC [common/configtx] addToMap -> DEBU 638 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -2018-01-18 01:58:52.061 UTC [common/configtx] addToMap -> DEBU 639 Adding to config map: [Groups] /Channel/Application/Org1MSP -2018-01-18 01:58:52.061 UTC [common/configtx] addToMap -> DEBU 63a Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -2018-01-18 01:58:52.061 UTC [common/configtx] addToMap -> DEBU 63b Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -2018-01-18 01:58:52.061 UTC [common/configtx] addToMap -> DEBU 63c Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -2018-01-18 01:58:52.061 UTC [common/configtx] addToMap -> DEBU 63d Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -2018-01-18 01:58:52.061 UTC [common/configtx] addToMap -> DEBU 63e Adding to config map: [Policy] /Channel/Application/Readers -2018-01-18 01:58:52.061 UTC [common/configtx] addToMap -> DEBU 63f Adding to config map: [Policy] /Channel/Application/Admins -2018-01-18 01:58:52.061 UTC [common/configtx] addToMap -> DEBU 640 Adding to config map: [Policy] /Channel/Application/Writers -2018-01-18 01:58:52.062 UTC [common/configtx] addToMap -> DEBU 641 Adding to config map: [Values] /Channel/Consortium -2018-01-18 01:58:52.062 UTC [common/configtx] addToMap -> DEBU 642 Adding to config map: [Values] /Channel/HashingAlgorithm -2018-01-18 01:58:52.062 UTC [common/configtx] addToMap -> DEBU 643 Adding to config map: [Values] /Channel/BlockDataHashingStructure -2018-01-18 01:58:52.062 UTC [common/configtx] addToMap -> DEBU 644 Adding to config map: [Values] /Channel/OrdererAddresses -2018-01-18 01:58:52.062 UTC [common/configtx] addToMap -> DEBU 645 Adding to config map: [Policy] /Channel/Admins -2018-01-18 01:58:52.062 UTC [common/configtx] addToMap -> DEBU 646 Adding to config map: [Policy] /Channel/Readers -2018-01-18 01:58:52.062 UTC [common/configtx] addToMap -> DEBU 647 Adding to config map: [Policy] /Channel/Writers -2018-01-18 01:58:52.062 UTC [common/configtx] addToMap -> DEBU 648 Adding to config map: [Groups] /Channel -2018-01-18 01:58:52.062 UTC [common/configtx] addToMap -> DEBU 649 Adding to config map: [Groups] /Channel/Application -2018-01-18 01:58:52.062 UTC [common/configtx] addToMap -> DEBU 64a Adding to config map: [Groups] /Channel/Application/Org1MSP -2018-01-18 01:58:52.062 UTC [common/configtx] addToMap -> DEBU 64b Adding to config map: [Groups] /Channel/Application/Org2MSP -2018-01-18 01:58:52.062 UTC [common/configtx] addToMap -> DEBU 64c Adding to config map: [Values] /Channel/Consortium -2018-01-18 01:58:52.062 UTC [common/configtx] addToMap -> DEBU 64d Adding to config map: [Groups] /Channel -2018-01-18 01:58:52.062 UTC [common/configtx] addToMap -> DEBU 64e Adding to config map: [Groups] /Channel/Application -2018-01-18 01:58:52.062 UTC [common/configtx] addToMap -> DEBU 64f Adding to config map: [Groups] /Channel/Application/Org1MSP -2018-01-18 01:58:52.062 UTC [common/configtx] addToMap -> DEBU 650 Adding to config map: [Groups] /Channel/Application/Org2MSP -2018-01-18 01:58:52.062 UTC [common/configtx] addToMap -> DEBU 651 Adding to config map: [Policy] /Channel/Application/Admins -2018-01-18 01:58:52.062 UTC [common/configtx] addToMap -> DEBU 652 Adding to config map: [Policy] /Channel/Application/Writers -2018-01-18 01:58:52.062 UTC [common/configtx] addToMap -> DEBU 653 Adding to config map: [Policy] /Channel/Application/Readers -2018-01-18 01:58:52.062 UTC [common/configtx] addToMap -> DEBU 654 Adding to config map: [Values] /Channel/Consortium -2018-01-18 01:58:52.063 UTC [policies] GetPolicy -> DEBU 655 Returning policy ChannelCreationPolicy for evaluation -2018-01-18 01:58:52.063 UTC [cauthdsl] func1 -> DEBU 656 0xc42014b0a8 gate 1516240732063082468 evaluation starts -2018-01-18 01:58:52.063 UTC [cauthdsl] func2 -> DEBU 657 0xc42014b0a8 signed by 0 principal evaluation starts (used [false]) -2018-01-18 01:58:52.063 UTC [cauthdsl] func2 -> DEBU 658 0xc42014b0a8 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-18 01:58:52.063 UTC [msp/identity] newIdentity -> DEBU 659 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:44.081 UTC [msp] Validate -> DEBU 57c MSP Org1MSP validating identity +2018-01-18 09:29:44.081 UTC [msp] Setup -> DEBU 57d Setting up the MSP manager (3 msps) +2018-01-18 09:29:44.081 UTC [msp] Setup -> DEBU 57e MSP manager setup complete, setup 3 msps +2018-01-18 09:29:44.082 UTC [policies] GetPolicy -> DEBU 57f Returning policy Writers for evaluation +2018-01-18 09:29:44.082 UTC [policies] CommitProposals -> DEBU 580 In commit adding relative sub-policy OrdererOrg/Writers to Orderer +2018-01-18 09:29:44.082 UTC [policies] GetPolicy -> DEBU 581 Returning policy Admins for evaluation +2018-01-18 09:29:44.082 UTC [policies] CommitProposals -> DEBU 582 In commit adding relative sub-policy OrdererOrg/Admins to Orderer +2018-01-18 09:29:44.083 UTC [policies] GetPolicy -> DEBU 583 Returning policy Readers for evaluation +2018-01-18 09:29:44.083 UTC [policies] CommitProposals -> DEBU 584 In commit adding relative sub-policy OrdererOrg/Readers to Orderer +2018-01-18 09:29:44.083 UTC [policies] GetPolicy -> DEBU 585 Returning policy Readers for evaluation +2018-01-18 09:29:44.084 UTC [policies] GetPolicy -> DEBU 586 Returning policy Writers for evaluation +2018-01-18 09:29:44.086 UTC [policies] GetPolicy -> DEBU 587 Returning policy Admins for evaluation +2018-01-18 09:29:44.086 UTC [policies] GetPolicy -> DEBU 588 Returning policy Writers for evaluation +2018-01-18 09:29:44.087 UTC [policies] GetPolicy -> DEBU 589 Returning policy Readers for evaluation +2018-01-18 09:29:44.087 UTC [policies] CommitProposals -> DEBU 58a In commit adding relative sub-policy Org1MSP/Readers to Application +2018-01-18 09:29:44.088 UTC [policies] GetPolicy -> DEBU 58b Returning policy Writers for evaluation +2018-01-18 09:29:44.088 UTC [policies] CommitProposals -> DEBU 58c In commit adding relative sub-policy Org1MSP/Writers to Application +2018-01-18 09:29:44.088 UTC [policies] GetPolicy -> DEBU 58d Returning policy Admins for evaluation +2018-01-18 09:29:44.088 UTC [policies] CommitProposals -> DEBU 58e In commit adding relative sub-policy Org1MSP/Admins to Application +2018-01-18 09:29:44.088 UTC [policies] GetPolicy -> DEBU 58f Returning policy Admins for evaluation +2018-01-18 09:29:44.088 UTC [policies] CommitProposals -> DEBU 590 In commit adding relative sub-policy Org2MSP/Admins to Application +2018-01-18 09:29:44.088 UTC [policies] GetPolicy -> DEBU 591 Returning policy Readers for evaluation +2018-01-18 09:29:44.088 UTC [policies] CommitProposals -> DEBU 592 In commit adding relative sub-policy Org2MSP/Readers to Application +2018-01-18 09:29:44.089 UTC [policies] GetPolicy -> DEBU 593 Returning policy Writers for evaluation +2018-01-18 09:29:44.089 UTC [policies] CommitProposals -> DEBU 594 In commit adding relative sub-policy Org2MSP/Writers to Application +2018-01-18 09:29:44.089 UTC [policies] GetPolicy -> DEBU 595 Returning policy Admins for evaluation +2018-01-18 09:29:44.089 UTC [policies] GetPolicy -> DEBU 596 Returning policy Admins for evaluation +2018-01-18 09:29:44.089 UTC [policies] GetPolicy -> DEBU 597 Returning policy OrdererOrg/Writers for evaluation +2018-01-18 09:29:44.090 UTC [policies] CommitProposals -> DEBU 598 In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +2018-01-18 09:29:44.090 UTC [policies] GetPolicy -> DEBU 599 Returning policy OrdererOrg/Admins for evaluation +2018-01-18 09:29:44.090 UTC [policies] CommitProposals -> DEBU 59a In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +2018-01-18 09:29:44.090 UTC [policies] GetPolicy -> DEBU 59b Returning policy OrdererOrg/Readers for evaluation +2018-01-18 09:29:44.090 UTC [policies] CommitProposals -> DEBU 59c In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +2018-01-18 09:29:44.091 UTC [policies] GetPolicy -> DEBU 59d Returning policy Readers for evaluation +2018-01-18 09:29:44.091 UTC [policies] CommitProposals -> DEBU 59e In commit adding relative sub-policy Orderer/Readers to Channel +2018-01-18 09:29:44.091 UTC [policies] GetPolicy -> DEBU 59f Returning policy Writers for evaluation +2018-01-18 09:29:44.091 UTC [policies] CommitProposals -> DEBU 5a0 In commit adding relative sub-policy Orderer/Writers to Channel +2018-01-18 09:29:44.091 UTC [policies] GetPolicy -> DEBU 5a1 Returning policy Admins for evaluation +2018-01-18 09:29:44.092 UTC [policies] CommitProposals -> DEBU 5a2 In commit adding relative sub-policy Orderer/Admins to Channel +2018-01-18 09:29:44.092 UTC [policies] GetPolicy -> DEBU 5a3 Returning policy BlockValidation for evaluation +2018-01-18 09:29:44.092 UTC [policies] CommitProposals -> DEBU 5a4 In commit adding relative sub-policy Orderer/BlockValidation to Channel +2018-01-18 09:29:44.092 UTC [policies] GetPolicy -> DEBU 5a5 Returning policy Org1MSP/Writers for evaluation +2018-01-18 09:29:44.092 UTC [policies] CommitProposals -> DEBU 5a6 In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +2018-01-18 09:29:44.093 UTC [policies] GetPolicy -> DEBU 5a7 Returning policy Org1MSP/Admins for evaluation +2018-01-18 09:29:44.093 UTC [policies] CommitProposals -> DEBU 5a8 In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +2018-01-18 09:29:44.093 UTC [policies] GetPolicy -> DEBU 5a9 Returning policy Org2MSP/Admins for evaluation +2018-01-18 09:29:44.093 UTC [policies] CommitProposals -> DEBU 5aa In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +2018-01-18 09:29:44.093 UTC [policies] GetPolicy -> DEBU 5ab Returning policy Org2MSP/Readers for evaluation +2018-01-18 09:29:44.093 UTC [policies] CommitProposals -> DEBU 5ac In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +2018-01-18 09:29:44.093 UTC [policies] GetPolicy -> DEBU 5ad Returning policy Org2MSP/Writers for evaluation +2018-01-18 09:29:44.094 UTC [policies] CommitProposals -> DEBU 5ae In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +2018-01-18 09:29:44.094 UTC [policies] GetPolicy -> DEBU 5af Returning policy ChannelCreationPolicy for evaluation +2018-01-18 09:29:44.094 UTC [policies] CommitProposals -> DEBU 5b0 In commit adding relative sub-policy Application/ChannelCreationPolicy to Channel +2018-01-18 09:29:44.094 UTC [policies] GetPolicy -> DEBU 5b1 Returning policy Org1MSP/Readers for evaluation +2018-01-18 09:29:44.094 UTC [policies] CommitProposals -> DEBU 5b2 In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +2018-01-18 09:29:44.095 UTC [policies] GetPolicy -> DEBU 5b3 Returning policy Readers for evaluation +2018-01-18 09:29:44.095 UTC [policies] GetPolicy -> DEBU 5b4 Returning dummy reject all policy because Readers could not be found in /Application/Readers +2018-01-18 09:29:44.095 UTC [policies] GetPolicy -> DEBU 5b5 Returning policy Writers for evaluation +2018-01-18 09:29:44.095 UTC [policies] GetPolicy -> DEBU 5b6 Returning dummy reject all policy because Writers could not be found in /Application/Writers +2018-01-18 09:29:44.097 UTC [policies] GetPolicy -> DEBU 5b7 Returning policy Admins for evaluation +2018-01-18 09:29:44.098 UTC [policies] GetPolicy -> DEBU 5b8 Returning dummy reject all policy because Admins could not be found in /Application/Admins +2018-01-18 09:29:44.099 UTC [common/configtx] addToMap -> DEBU 5b9 Adding to config map: [Groups] /Channel +2018-01-18 09:29:44.099 UTC [common/configtx] addToMap -> DEBU 5ba Adding to config map: [Groups] /Channel/Application +2018-01-18 09:29:44.100 UTC [common/configtx] addToMap -> DEBU 5bb Adding to config map: [Groups] /Channel/Application/Org1MSP +2018-01-18 09:29:44.100 UTC [common/configtx] addToMap -> DEBU 5bc Adding to config map: [Groups] /Channel/Application/Org2MSP +2018-01-18 09:29:44.100 UTC [common/configtx] addToMap -> DEBU 5bd Adding to config map: [Values] /Channel/Consortium +2018-01-18 09:29:44.100 UTC [common/configtx] addToMap -> DEBU 5be Adding to config map: [Groups] /Channel +2018-01-18 09:29:44.101 UTC [common/configtx] addToMap -> DEBU 5bf Adding to config map: [Groups] /Channel/Application +2018-01-18 09:29:44.101 UTC [common/configtx] addToMap -> DEBU 5c0 Adding to config map: [Groups] /Channel/Application/Org2MSP +2018-01-18 09:29:44.101 UTC [common/configtx] addToMap -> DEBU 5c1 Adding to config map: [Groups] /Channel/Application/Org1MSP +2018-01-18 09:29:44.101 UTC [common/configtx] addToMap -> DEBU 5c2 Adding to config map: [Policy] /Channel/Application/Readers +2018-01-18 09:29:44.101 UTC [common/configtx] addToMap -> DEBU 5c3 Adding to config map: [Policy] /Channel/Application/Admins +2018-01-18 09:29:44.102 UTC [common/configtx] addToMap -> DEBU 5c4 Adding to config map: [Policy] /Channel/Application/Writers +2018-01-18 09:29:44.102 UTC [common/configtx] addToMap -> DEBU 5c5 Adding to config map: [Values] /Channel/Consortium +2018-01-18 09:29:44.102 UTC [policies] GetPolicy -> DEBU 5c6 Returning policy ChannelCreationPolicy for evaluation +2018-01-18 09:29:44.103 UTC [cauthdsl] func1 -> DEBU 5c7 0xc42014aa18 gate 1516267784103024040 evaluation starts +2018-01-18 09:29:44.103 UTC [cauthdsl] func2 -> DEBU 5c8 0xc42014aa18 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:29:44.103 UTC [cauthdsl] func2 -> DEBU 5c9 0xc42014aa18 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:29:44.104 UTC [msp/identity] newIdentity -> DEBU 5ca Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -2874,87 +2609,107 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-18 01:58:52.063 UTC [msp] SatisfiesPrincipal -> DEBU 65a Checking if identity satisfies ADMIN role for Org1MSP -2018-01-18 01:58:52.063 UTC [cauthdsl] func2 -> DEBU 65b 0xc42014b0a8 principal matched by identity 0 -2018-01-18 01:58:52.063 UTC [msp/identity] Verify -> DEBU 65c Verify: digest = 00000000 0a a0 5d 09 26 8b 7a 10 a3 b6 c2 9d af ba c9 56 |..].&.z........V| -00000010 5f cb 22 5a 66 84 57 14 0b e8 1a 28 36 06 e9 3e |_."Zf.W....(6..>| -2018-01-18 01:58:52.063 UTC [msp/identity] Verify -> DEBU 65d Verify: sig = 00000000 30 44 02 20 29 07 f5 3b 75 87 a0 a4 66 fd f4 8c |0D. )..;u...f...| -00000010 9d 33 36 f4 39 b7 2e 82 fb 27 b6 27 f8 27 57 50 |.36.9....'.'.'WP| -00000020 a2 9f 0c a4 02 20 3e 03 90 56 ce da 45 23 b2 2d |..... >..V..E#.-| -00000030 85 0f 22 ec 4c 0d 0e f8 31 f9 4d ed fb a4 0e 7e |..".L...1.M....~| -00000040 2e 30 01 0f 91 31 |.0...1| -2018-01-18 01:58:52.063 UTC [cauthdsl] func2 -> DEBU 65e 0xc42014b0a8 principal evaluation succeeds for identity 0 -2018-01-18 01:58:52.063 UTC [cauthdsl] func1 -> DEBU 65f 0xc42014b0a8 gate 1516240732063082468 evaluation succeeds -2018-01-18 01:58:52.064 UTC [common/configtx] recurseConfigMap -> DEBU 660 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-18 01:58:52.064 UTC [common/configtx] recurseConfigMap -> DEBU 661 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-18 01:58:52.064 UTC [common/configtx] recurseConfigMap -> DEBU 662 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-18 01:58:52.064 UTC [common/configtx] recurseConfigMap -> DEBU 663 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-18 01:58:52.064 UTC [common/configtx] recurseConfigMap -> DEBU 664 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-18 01:58:52.064 UTC [common/configtx] recurseConfigMap -> DEBU 665 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-18 01:58:52.064 UTC [common/configtx] recurseConfigMap -> DEBU 666 Setting policy for key BlockValidation to policy: mod_policy:"Admins" -2018-01-18 01:58:52.064 UTC [common/configtx] recurseConfigMap -> DEBU 667 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-18 01:58:52.064 UTC [common/configtx] recurseConfigMap -> DEBU 668 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-18 01:58:52.064 UTC [common/configtx] recurseConfigMap -> DEBU 669 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-18 01:58:52.064 UTC [common/configtx] recurseConfigMap -> DEBU 66a Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-18 01:58:52.064 UTC [common/configtx] recurseConfigMap -> DEBU 66b Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-18 01:58:52.064 UTC [common/configtx] recurseConfigMap -> DEBU 66c Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-18 01:58:52.064 UTC [common/configtx] recurseConfigMap -> DEBU 66d Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-18 01:58:52.064 UTC [common/configtx] recurseConfigMap -> DEBU 66e Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-18 01:58:52.065 UTC [common/configtx] recurseConfigMap -> DEBU 66f Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-18 01:58:52.065 UTC [common/configtx] recurseConfigMap -> DEBU 670 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-18 01:58:52.065 UTC [common/configtx] recurseConfigMap -> DEBU 671 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-18 01:58:52.065 UTC [common/configtx] recurseConfigMap -> DEBU 672 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-18 01:58:52.065 UTC [common/configtx] processConfig -> DEBU 673 Beginning new config for channel businesschannel -2018-01-18 01:58:52.065 UTC [common/config] NewStandardValues -> DEBU 674 Initializing protos for *config.ChannelProtos -2018-01-18 01:58:52.065 UTC [common/config] initializeProtosStruct -> DEBU 675 Processing field: HashingAlgorithm -2018-01-18 01:58:52.065 UTC [common/config] initializeProtosStruct -> DEBU 676 Processing field: BlockDataHashingStructure -2018-01-18 01:58:52.065 UTC [common/config] initializeProtosStruct -> DEBU 677 Processing field: OrdererAddresses -2018-01-18 01:58:52.065 UTC [common/config] initializeProtosStruct -> DEBU 678 Processing field: Consortium -2018-01-18 01:58:52.065 UTC [policies] ProposePolicy -> DEBU 679 Proposed new policy Admins for Channel -2018-01-18 01:58:52.065 UTC [policies] ProposePolicy -> DEBU 67a Proposed new policy Readers for Channel -2018-01-18 01:58:52.065 UTC [policies] ProposePolicy -> DEBU 67b Proposed new policy Writers for Channel -2018-01-18 01:58:52.065 UTC [common/config] NewStandardValues -> DEBU 67c Initializing protos for *struct {} -2018-01-18 01:58:52.065 UTC [policies] ProposePolicy -> DEBU 67d Proposed new policy Writers for Application -2018-01-18 01:58:52.065 UTC [policies] ProposePolicy -> DEBU 67e Proposed new policy Readers for Application -2018-01-18 01:58:52.065 UTC [policies] ProposePolicy -> DEBU 67f Proposed new policy Admins for Application -2018-01-18 01:58:52.065 UTC [common/config] NewStandardValues -> DEBU 680 Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:52.065 UTC [common/config] initializeProtosStruct -> DEBU 681 Processing field: MSP -2018-01-18 01:58:52.065 UTC [common/config] NewStandardValues -> DEBU 682 Initializing protos for *config.ApplicationOrgProtos -2018-01-18 01:58:52.065 UTC [common/config] initializeProtosStruct -> DEBU 683 Processing field: AnchorPeers -2018-01-18 01:58:52.065 UTC [common/config] NewStandardValues -> DEBU 684 Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:52.066 UTC [common/config] initializeProtosStruct -> DEBU 685 Processing field: MSP -2018-01-18 01:58:52.066 UTC [policies] ProposePolicy -> DEBU 686 Proposed new policy Admins for Org1MSP -2018-01-18 01:58:52.066 UTC [policies] ProposePolicy -> DEBU 687 Proposed new policy Readers for Org1MSP -2018-01-18 01:58:52.066 UTC [policies] ProposePolicy -> DEBU 688 Proposed new policy Writers for Org1MSP -2018-01-18 01:58:52.066 UTC [common/config] NewStandardValues -> DEBU 689 Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:52.066 UTC [common/config] initializeProtosStruct -> DEBU 68a Processing field: MSP -2018-01-18 01:58:52.066 UTC [common/config] NewStandardValues -> DEBU 68b Initializing protos for *config.ApplicationOrgProtos -2018-01-18 01:58:52.066 UTC [common/config] initializeProtosStruct -> DEBU 68c Processing field: AnchorPeers -2018-01-18 01:58:52.066 UTC [common/config] NewStandardValues -> DEBU 68d Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:52.066 UTC [common/config] initializeProtosStruct -> DEBU 68e Processing field: MSP -2018-01-18 01:58:52.066 UTC [policies] ProposePolicy -> DEBU 68f Proposed new policy Writers for Org2MSP -2018-01-18 01:58:52.066 UTC [policies] ProposePolicy -> DEBU 690 Proposed new policy Admins for Org2MSP -2018-01-18 01:58:52.066 UTC [policies] ProposePolicy -> DEBU 691 Proposed new policy Readers for Org2MSP -2018-01-18 01:58:52.066 UTC [common/config] NewStandardValues -> DEBU 692 Initializing protos for *config.OrdererProtos -2018-01-18 01:58:52.066 UTC [common/config] initializeProtosStruct -> DEBU 693 Processing field: ConsensusType -2018-01-18 01:58:52.066 UTC [common/config] initializeProtosStruct -> DEBU 694 Processing field: BatchSize -2018-01-18 01:58:52.066 UTC [common/config] initializeProtosStruct -> DEBU 695 Processing field: BatchTimeout -2018-01-18 01:58:52.066 UTC [common/config] initializeProtosStruct -> DEBU 696 Processing field: KafkaBrokers -2018-01-18 01:58:52.066 UTC [common/config] initializeProtosStruct -> DEBU 697 Processing field: ChannelRestrictions -2018-01-18 01:58:52.066 UTC [policies] ProposePolicy -> DEBU 698 Proposed new policy Writers for Orderer -2018-01-18 01:58:52.066 UTC [policies] ProposePolicy -> DEBU 699 Proposed new policy Admins for Orderer -2018-01-18 01:58:52.066 UTC [policies] ProposePolicy -> DEBU 69a Proposed new policy BlockValidation for Orderer -2018-01-18 01:58:52.067 UTC [policies] ProposePolicy -> DEBU 69b Proposed new policy Readers for Orderer -2018-01-18 01:58:52.067 UTC [common/config] NewStandardValues -> DEBU 69c Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:52.067 UTC [common/config] initializeProtosStruct -> DEBU 69d Processing field: MSP -2018-01-18 01:58:52.067 UTC [policies] ProposePolicy -> DEBU 69e Proposed new policy Writers for OrdererOrg -2018-01-18 01:58:52.067 UTC [policies] ProposePolicy -> DEBU 69f Proposed new policy Admins for OrdererOrg -2018-01-18 01:58:52.067 UTC [policies] ProposePolicy -> DEBU 6a0 Proposed new policy Readers for OrdererOrg -2018-01-18 01:58:52.067 UTC [common/config] Validate -> DEBU 6a1 Anchor peers for org Org1MSP are -2018-01-18 01:58:52.067 UTC [common/config] validateMSP -> DEBU 6a2 Setting up MSP for org Org1MSP -2018-01-18 01:58:52.067 UTC [msp] NewBccspMsp -> DEBU 6a3 Creating BCCSP-based MSP instance -2018-01-18 01:58:52.067 UTC [msp] Setup -> DEBU 6a4 Setting up MSP instance Org1MSP -2018-01-18 01:58:52.067 UTC [msp/identity] newIdentity -> DEBU 6a5 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:44.105 UTC [cauthdsl] func2 -> DEBU 5cb 0xc42014aa18 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got Org1MSP) +2018-01-18 09:29:44.105 UTC [cauthdsl] func2 -> DEBU 5cc 0xc42014aa18 principal evaluation fails +2018-01-18 09:29:44.105 UTC [cauthdsl] func1 -> DEBU 5cd 0xc42014aa18 gate 1516267784103024040 evaluation fails +2018-01-18 09:29:44.106 UTC [cauthdsl] func1 -> DEBU 5ce 0xc42014aa28 gate 1516267784106122790 evaluation starts +2018-01-18 09:29:44.106 UTC [cauthdsl] func2 -> DEBU 5cf 0xc42014aa28 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:29:44.106 UTC [cauthdsl] func2 -> DEBU 5d0 0xc42014aa28 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:29:44.107 UTC [msp/identity] newIdentity -> DEBU 5d1 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +xHTBvxfK6mAzmUitFmY= +-----END CERTIFICATE----- +2018-01-18 09:29:44.108 UTC [msp] SatisfiesPrincipal -> DEBU 5d2 Checking if identity satisfies ADMIN role for Org1MSP +2018-01-18 09:29:44.109 UTC [cauthdsl] func2 -> DEBU 5d3 0xc42014aa28 principal matched by identity 0 +2018-01-18 09:29:44.109 UTC [msp/identity] Verify -> DEBU 5d4 Verify: digest = 00000000 c2 fe 17 b4 c8 3b c1 d6 17 b0 19 ac b7 be a1 8c |.....;..........| +00000010 b9 9f 4f e4 be 55 e9 d4 15 9e 05 c0 ee c6 5c 37 |..O..U........\7| +2018-01-18 09:29:44.109 UTC [msp/identity] Verify -> DEBU 5d5 Verify: sig = 00000000 30 45 02 21 00 91 a7 72 c6 06 52 e5 fc dc 81 54 |0E.!...r..R....T| +00000010 76 54 81 da 3e 58 9e 11 df f1 67 fb 92 ed 61 ef |vT..>X....g...a.| +00000020 bc ae 13 4e 1c 02 20 3d 4a 89 e2 1b 4e e0 cd 08 |...N.. =J...N...| +00000030 aa 9f b4 66 db 3a 4a 2f 16 cc ff a7 a1 0c 8b ca |...f.:J/........| +00000040 0f 7a a5 e9 a8 21 9c |.z...!.| +2018-01-18 09:29:44.110 UTC [cauthdsl] func2 -> DEBU 5d6 0xc42014aa28 principal evaluation succeeds for identity 0 +2018-01-18 09:29:44.110 UTC [cauthdsl] func1 -> DEBU 5d7 0xc42014aa28 gate 1516267784106122790 evaluation succeeds +2018-01-18 09:29:44.111 UTC [common/configtx] recurseConfigMap -> DEBU 5d8 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-18 09:29:44.111 UTC [common/configtx] recurseConfigMap -> DEBU 5d9 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-18 09:29:44.111 UTC [common/configtx] recurseConfigMap -> DEBU 5da Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-18 09:29:44.112 UTC [common/configtx] recurseConfigMap -> DEBU 5db Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-18 09:29:44.112 UTC [common/configtx] recurseConfigMap -> DEBU 5dc Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-18 09:29:44.112 UTC [common/configtx] recurseConfigMap -> DEBU 5dd Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-18 09:29:44.113 UTC [common/configtx] recurseConfigMap -> DEBU 5de Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-18 09:29:44.113 UTC [common/configtx] recurseConfigMap -> DEBU 5df Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-18 09:29:44.113 UTC [common/configtx] recurseConfigMap -> DEBU 5e0 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-18 09:29:44.114 UTC [common/configtx] recurseConfigMap -> DEBU 5e1 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-18 09:29:44.114 UTC [common/configtx] recurseConfigMap -> DEBU 5e2 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-18 09:29:44.114 UTC [common/configtx] recurseConfigMap -> DEBU 5e3 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-18 09:29:44.114 UTC [common/configtx] recurseConfigMap -> DEBU 5e4 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-18 09:29:44.114 UTC [common/configtx] recurseConfigMap -> DEBU 5e5 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-18 09:29:44.115 UTC [common/configtx] recurseConfigMap -> DEBU 5e6 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-18 09:29:44.115 UTC [common/configtx] recurseConfigMap -> DEBU 5e7 Setting policy for key BlockValidation to policy: mod_policy:"Admins" +2018-01-18 09:29:44.115 UTC [common/configtx] recurseConfigMap -> DEBU 5e8 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-18 09:29:44.116 UTC [common/configtx] recurseConfigMap -> DEBU 5e9 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-18 09:29:44.116 UTC [common/configtx] recurseConfigMap -> DEBU 5ea Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-18 09:29:44.117 UTC [common/configtx] processConfig -> DEBU 5eb Beginning new config for channel businesschannel +2018-01-18 09:29:44.117 UTC [common/config] NewStandardValues -> DEBU 5ec Initializing protos for *config.ChannelProtos +2018-01-18 09:29:44.118 UTC [common/config] initializeProtosStruct -> DEBU 5ed Processing field: HashingAlgorithm +2018-01-18 09:29:44.119 UTC [common/config] initializeProtosStruct -> DEBU 5ee Processing field: BlockDataHashingStructure +2018-01-18 09:29:44.119 UTC [common/config] initializeProtosStruct -> DEBU 5ef Processing field: OrdererAddresses +2018-01-18 09:29:44.119 UTC [common/config] initializeProtosStruct -> DEBU 5f0 Processing field: Consortium +2018-01-18 09:29:44.120 UTC [policies] ProposePolicy -> DEBU 5f1 Proposed new policy Readers for Channel +2018-01-18 09:29:44.120 UTC [policies] ProposePolicy -> DEBU 5f2 Proposed new policy Writers for Channel +2018-01-18 09:29:44.120 UTC [policies] ProposePolicy -> DEBU 5f3 Proposed new policy Admins for Channel +2018-01-18 09:29:44.120 UTC [common/config] NewStandardValues -> DEBU 5f4 Initializing protos for *struct {} +2018-01-18 09:29:44.121 UTC [policies] ProposePolicy -> DEBU 5f5 Proposed new policy Admins for Application +2018-01-18 09:29:44.121 UTC [policies] ProposePolicy -> DEBU 5f6 Proposed new policy Writers for Application +2018-01-18 09:29:44.122 UTC [policies] ProposePolicy -> DEBU 5f7 Proposed new policy Readers for Application +2018-01-18 09:29:44.122 UTC [common/config] NewStandardValues -> DEBU 5f8 Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:44.122 UTC [common/config] initializeProtosStruct -> DEBU 5f9 Processing field: MSP +2018-01-18 09:29:44.122 UTC [common/config] NewStandardValues -> DEBU 5fa Initializing protos for *config.ApplicationOrgProtos +2018-01-18 09:29:44.122 UTC [common/config] initializeProtosStruct -> DEBU 5fb Processing field: AnchorPeers +2018-01-18 09:29:44.123 UTC [common/config] NewStandardValues -> DEBU 5fc Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:44.123 UTC [common/config] initializeProtosStruct -> DEBU 5fd Processing field: MSP +2018-01-18 09:29:44.123 UTC [policies] ProposePolicy -> DEBU 5fe Proposed new policy Writers for Org1MSP +2018-01-18 09:29:44.123 UTC [policies] ProposePolicy -> DEBU 5ff Proposed new policy Admins for Org1MSP +2018-01-18 09:29:44.123 UTC [policies] ProposePolicy -> DEBU 600 Proposed new policy Readers for Org1MSP +2018-01-18 09:29:44.124 UTC [common/config] NewStandardValues -> DEBU 601 Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:44.124 UTC [common/config] initializeProtosStruct -> DEBU 602 Processing field: MSP +2018-01-18 09:29:44.124 UTC [common/config] NewStandardValues -> DEBU 603 Initializing protos for *config.ApplicationOrgProtos +2018-01-18 09:29:44.124 UTC [common/config] initializeProtosStruct -> DEBU 604 Processing field: AnchorPeers +2018-01-18 09:29:44.125 UTC [common/config] NewStandardValues -> DEBU 605 Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:44.125 UTC [common/config] initializeProtosStruct -> DEBU 606 Processing field: MSP +2018-01-18 09:29:44.125 UTC [policies] ProposePolicy -> DEBU 607 Proposed new policy Admins for Org2MSP +2018-01-18 09:29:44.125 UTC [policies] ProposePolicy -> DEBU 608 Proposed new policy Readers for Org2MSP +2018-01-18 09:29:44.125 UTC [policies] ProposePolicy -> DEBU 609 Proposed new policy Writers for Org2MSP +2018-01-18 09:29:44.125 UTC [common/config] NewStandardValues -> DEBU 60a Initializing protos for *config.OrdererProtos +2018-01-18 09:29:44.125 UTC [common/config] initializeProtosStruct -> DEBU 60b Processing field: ConsensusType +2018-01-18 09:29:44.126 UTC [common/config] initializeProtosStruct -> DEBU 60c Processing field: BatchSize +2018-01-18 09:29:44.126 UTC [common/config] initializeProtosStruct -> DEBU 60d Processing field: BatchTimeout +2018-01-18 09:29:44.126 UTC [common/config] initializeProtosStruct -> DEBU 60e Processing field: KafkaBrokers +2018-01-18 09:29:44.126 UTC [common/config] initializeProtosStruct -> DEBU 60f Processing field: ChannelRestrictions +2018-01-18 09:29:44.126 UTC [policies] ProposePolicy -> DEBU 610 Proposed new policy Readers for Orderer +2018-01-18 09:29:44.127 UTC [policies] ProposePolicy -> DEBU 611 Proposed new policy Writers for Orderer +2018-01-18 09:29:44.127 UTC [policies] ProposePolicy -> DEBU 612 Proposed new policy Admins for Orderer +2018-01-18 09:29:44.127 UTC [policies] ProposePolicy -> DEBU 613 Proposed new policy BlockValidation for Orderer +2018-01-18 09:29:44.128 UTC [common/config] NewStandardValues -> DEBU 614 Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:44.128 UTC [common/config] initializeProtosStruct -> DEBU 615 Processing field: MSP +2018-01-18 09:29:44.128 UTC [policies] ProposePolicy -> DEBU 616 Proposed new policy Writers for OrdererOrg +2018-01-18 09:29:44.128 UTC [policies] ProposePolicy -> DEBU 617 Proposed new policy Admins for OrdererOrg +2018-01-18 09:29:44.129 UTC [policies] ProposePolicy -> DEBU 618 Proposed new policy Readers for OrdererOrg +2018-01-18 09:29:44.129 UTC [common/config] Validate -> DEBU 619 Anchor peers for org Org1MSP are +2018-01-18 09:29:44.129 UTC [common/config] validateMSP -> DEBU 61a Setting up MSP for org Org1MSP +2018-01-18 09:29:44.130 UTC [msp] NewBccspMsp -> DEBU 61b Creating BCCSP-based MSP instance +2018-01-18 09:29:44.131 UTC [msp] Setup -> DEBU 61c Setting up MSP instance Org1MSP +2018-01-18 09:29:44.131 UTC [msp/identity] newIdentity -> DEBU 61d Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -2969,7 +2724,7 @@ JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ H7n8z1pj5w== -----END CERTIFICATE----- -2018-01-18 01:58:52.068 UTC [msp/identity] newIdentity -> DEBU 6a6 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:44.132 UTC [msp/identity] newIdentity -> DEBU 61e Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -2983,7 +2738,7 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-18 01:58:52.068 UTC [msp/identity] newIdentity -> DEBU 6a7 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:44.133 UTC [msp/identity] newIdentity -> DEBU 61f Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -2997,12 +2752,12 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-18 01:58:52.068 UTC [msp] Validate -> DEBU 6a8 MSP Org1MSP validating identity -2018-01-18 01:58:52.069 UTC [common/config] Validate -> DEBU 6a9 Anchor peers for org Org2MSP are -2018-01-18 01:58:52.069 UTC [common/config] validateMSP -> DEBU 6aa Setting up MSP for org Org2MSP -2018-01-18 01:58:52.069 UTC [msp] NewBccspMsp -> DEBU 6ab Creating BCCSP-based MSP instance -2018-01-18 01:58:52.069 UTC [msp] Setup -> DEBU 6ac Setting up MSP instance Org2MSP -2018-01-18 01:58:52.069 UTC [msp/identity] newIdentity -> DEBU 6ad Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:44.133 UTC [msp] Validate -> DEBU 620 MSP Org1MSP validating identity +2018-01-18 09:29:44.134 UTC [common/config] Validate -> DEBU 621 Anchor peers for org Org2MSP are +2018-01-18 09:29:44.134 UTC [common/config] validateMSP -> DEBU 622 Setting up MSP for org Org2MSP +2018-01-18 09:29:44.134 UTC [msp] NewBccspMsp -> DEBU 623 Creating BCCSP-based MSP instance +2018-01-18 09:29:44.134 UTC [msp] Setup -> DEBU 624 Setting up MSP instance Org2MSP +2018-01-18 09:29:44.134 UTC [msp/identity] newIdentity -> DEBU 625 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -3017,7 +2772,7 @@ xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk SCjyRdD3aQ== -----END CERTIFICATE----- -2018-01-18 01:58:52.069 UTC [msp/identity] newIdentity -> DEBU 6ae Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:44.135 UTC [msp/identity] newIdentity -> DEBU 626 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -3031,7 +2786,7 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS AXYxULZpXYDQXt1KaLI= -----END CERTIFICATE----- -2018-01-18 01:58:52.069 UTC [msp/identity] newIdentity -> DEBU 6af Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:44.135 UTC [msp/identity] newIdentity -> DEBU 627 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -3045,11 +2800,11 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS AXYxULZpXYDQXt1KaLI= -----END CERTIFICATE----- -2018-01-18 01:58:52.070 UTC [msp] Validate -> DEBU 6b0 MSP Org2MSP validating identity -2018-01-18 01:58:52.070 UTC [common/config] validateMSP -> DEBU 6b1 Setting up MSP for org OrdererOrg -2018-01-18 01:58:52.070 UTC [msp] NewBccspMsp -> DEBU 6b2 Creating BCCSP-based MSP instance -2018-01-18 01:58:52.070 UTC [msp] Setup -> DEBU 6b3 Setting up MSP instance OrdererMSP -2018-01-18 01:58:52.071 UTC [msp/identity] newIdentity -> DEBU 6b4 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:44.136 UTC [msp] Validate -> DEBU 628 MSP Org2MSP validating identity +2018-01-18 09:29:44.136 UTC [common/config] validateMSP -> DEBU 629 Setting up MSP for org OrdererOrg +2018-01-18 09:29:44.136 UTC [msp] NewBccspMsp -> DEBU 62a Creating BCCSP-based MSP instance +2018-01-18 09:29:44.136 UTC [msp] Setup -> DEBU 62b Setting up MSP instance OrdererMSP +2018-01-18 09:29:44.137 UTC [msp/identity] newIdentity -> DEBU 62c Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -3063,7 +2818,7 @@ AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= -----END CERTIFICATE----- -2018-01-18 01:58:52.071 UTC [msp/identity] newIdentity -> DEBU 6b5 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:44.137 UTC [msp/identity] newIdentity -> DEBU 62d Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -3076,7 +2831,7 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -----END CERTIFICATE----- -2018-01-18 01:58:52.072 UTC [msp/identity] newIdentity -> DEBU 6b6 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:44.138 UTC [msp/identity] newIdentity -> DEBU 62e Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -3089,179 +2844,177 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -----END CERTIFICATE----- -2018-01-18 01:58:52.072 UTC [msp] Validate -> DEBU 6b7 MSP OrdererMSP validating identity -2018-01-18 01:58:52.073 UTC [msp] Setup -> DEBU 6b8 Setting up the MSP manager (3 msps) -2018-01-18 01:58:52.073 UTC [msp] Setup -> DEBU 6b9 MSP manager setup complete, setup 3 msps -2018-01-18 01:58:52.073 UTC [policies] GetPolicy -> DEBU 6ba Returning policy Admins for evaluation -2018-01-18 01:58:52.073 UTC [policies] CommitProposals -> DEBU 6bb In commit adding relative sub-policy Org1MSP/Admins to Application -2018-01-18 01:58:52.073 UTC [policies] GetPolicy -> DEBU 6bc Returning policy Readers for evaluation -2018-01-18 01:58:52.073 UTC [policies] CommitProposals -> DEBU 6bd In commit adding relative sub-policy Org1MSP/Readers to Application -2018-01-18 01:58:52.073 UTC [policies] GetPolicy -> DEBU 6be Returning policy Writers for evaluation -2018-01-18 01:58:52.073 UTC [policies] CommitProposals -> DEBU 6bf In commit adding relative sub-policy Org1MSP/Writers to Application -2018-01-18 01:58:52.073 UTC [policies] GetPolicy -> DEBU 6c0 Returning policy Writers for evaluation -2018-01-18 01:58:52.073 UTC [policies] CommitProposals -> DEBU 6c1 In commit adding relative sub-policy Org2MSP/Writers to Application -2018-01-18 01:58:52.073 UTC [policies] GetPolicy -> DEBU 6c2 Returning policy Admins for evaluation -2018-01-18 01:58:52.073 UTC [policies] CommitProposals -> DEBU 6c3 In commit adding relative sub-policy Org2MSP/Admins to Application -2018-01-18 01:58:52.073 UTC [policies] GetPolicy -> DEBU 6c4 Returning policy Readers for evaluation -2018-01-18 01:58:52.073 UTC [policies] CommitProposals -> DEBU 6c5 In commit adding relative sub-policy Org2MSP/Readers to Application -2018-01-18 01:58:52.073 UTC [policies] GetPolicy -> DEBU 6c6 Returning policy Writers for evaluation -2018-01-18 01:58:52.073 UTC [policies] GetPolicy -> DEBU 6c7 Returning policy Writers for evaluation -2018-01-18 01:58:52.073 UTC [policies] GetPolicy -> DEBU 6c8 Returning policy Readers for evaluation -2018-01-18 01:58:52.073 UTC [policies] GetPolicy -> DEBU 6c9 Returning policy Readers for evaluation -2018-01-18 01:58:52.074 UTC [policies] GetPolicy -> DEBU 6ca Returning policy Admins for evaluation -2018-01-18 01:58:52.074 UTC [policies] GetPolicy -> DEBU 6cb Returning policy Admins for evaluation -2018-01-18 01:58:52.074 UTC [policies] GetPolicy -> DEBU 6cc Returning policy Writers for evaluation -2018-01-18 01:58:52.074 UTC [policies] CommitProposals -> DEBU 6cd In commit adding relative sub-policy OrdererOrg/Writers to Orderer -2018-01-18 01:58:52.074 UTC [policies] GetPolicy -> DEBU 6ce Returning policy Admins for evaluation -2018-01-18 01:58:52.074 UTC [policies] CommitProposals -> DEBU 6cf In commit adding relative sub-policy OrdererOrg/Admins to Orderer -2018-01-18 01:58:52.074 UTC [policies] GetPolicy -> DEBU 6d0 Returning policy Readers for evaluation -2018-01-18 01:58:52.074 UTC [policies] CommitProposals -> DEBU 6d1 In commit adding relative sub-policy OrdererOrg/Readers to Orderer -2018-01-18 01:58:52.074 UTC [policies] GetPolicy -> DEBU 6d2 Returning policy Writers for evaluation -2018-01-18 01:58:52.074 UTC [policies] GetPolicy -> DEBU 6d3 Returning policy Admins for evaluation -2018-01-18 01:58:52.074 UTC [policies] GetPolicy -> DEBU 6d4 Returning policy Writers for evaluation -2018-01-18 01:58:52.074 UTC [policies] GetPolicy -> DEBU 6d5 Returning policy Readers for evaluation -2018-01-18 01:58:52.074 UTC [policies] GetPolicy -> DEBU 6d6 Returning policy Writers for evaluation -2018-01-18 01:58:52.074 UTC [policies] CommitProposals -> DEBU 6d7 In commit adding relative sub-policy Application/Writers to Channel -2018-01-18 01:58:52.074 UTC [policies] GetPolicy -> DEBU 6d8 Returning policy Readers for evaluation -2018-01-18 01:58:52.074 UTC [policies] CommitProposals -> DEBU 6d9 In commit adding relative sub-policy Application/Readers to Channel -2018-01-18 01:58:52.074 UTC [policies] GetPolicy -> DEBU 6da Returning policy Org1MSP/Admins for evaluation -2018-01-18 01:58:52.074 UTC [policies] CommitProposals -> DEBU 6db In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -2018-01-18 01:58:52.074 UTC [policies] GetPolicy -> DEBU 6dc Returning policy Org1MSP/Readers for evaluation -2018-01-18 01:58:52.074 UTC [policies] CommitProposals -> DEBU 6dd In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -2018-01-18 01:58:52.074 UTC [policies] GetPolicy -> DEBU 6de Returning policy Org1MSP/Writers for evaluation -2018-01-18 01:58:52.075 UTC [policies] CommitProposals -> DEBU 6df In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -2018-01-18 01:58:52.075 UTC [policies] GetPolicy -> DEBU 6e0 Returning policy Admins for evaluation -2018-01-18 01:58:52.075 UTC [policies] CommitProposals -> DEBU 6e1 In commit adding relative sub-policy Application/Admins to Channel -2018-01-18 01:58:52.075 UTC [policies] GetPolicy -> DEBU 6e2 Returning policy Org2MSP/Writers for evaluation -2018-01-18 01:58:52.075 UTC [policies] CommitProposals -> DEBU 6e3 In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -2018-01-18 01:58:52.075 UTC [policies] GetPolicy -> DEBU 6e4 Returning policy Org2MSP/Admins for evaluation -2018-01-18 01:58:52.075 UTC [policies] CommitProposals -> DEBU 6e5 In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -2018-01-18 01:58:52.075 UTC [policies] GetPolicy -> DEBU 6e6 Returning policy Org2MSP/Readers for evaluation -2018-01-18 01:58:52.075 UTC [policies] CommitProposals -> DEBU 6e7 In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -2018-01-18 01:58:52.075 UTC [policies] GetPolicy -> DEBU 6e8 Returning policy Admins for evaluation -2018-01-18 01:58:52.075 UTC [policies] CommitProposals -> DEBU 6e9 In commit adding relative sub-policy Orderer/Admins to Channel -2018-01-18 01:58:52.075 UTC [policies] GetPolicy -> DEBU 6ea Returning policy BlockValidation for evaluation -2018-01-18 01:58:52.075 UTC [policies] CommitProposals -> DEBU 6eb In commit adding relative sub-policy Orderer/BlockValidation to Channel -2018-01-18 01:58:52.075 UTC [policies] GetPolicy -> DEBU 6ec Returning policy Readers for evaluation -2018-01-18 01:58:52.075 UTC [policies] CommitProposals -> DEBU 6ed In commit adding relative sub-policy Orderer/Readers to Channel -2018-01-18 01:58:52.075 UTC [policies] GetPolicy -> DEBU 6ee Returning policy OrdererOrg/Writers for evaluation -2018-01-18 01:58:52.075 UTC [policies] CommitProposals -> DEBU 6ef In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -2018-01-18 01:58:52.075 UTC [policies] GetPolicy -> DEBU 6f0 Returning policy OrdererOrg/Admins for evaluation -2018-01-18 01:58:52.075 UTC [policies] CommitProposals -> DEBU 6f1 In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -2018-01-18 01:58:52.075 UTC [policies] GetPolicy -> DEBU 6f2 Returning policy OrdererOrg/Readers for evaluation -2018-01-18 01:58:52.075 UTC [policies] CommitProposals -> DEBU 6f3 In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -2018-01-18 01:58:52.076 UTC [policies] GetPolicy -> DEBU 6f4 Returning policy Writers for evaluation -2018-01-18 01:58:52.076 UTC [policies] CommitProposals -> DEBU 6f5 In commit adding relative sub-policy Orderer/Writers to Channel -2018-01-18 01:58:52.076 UTC [policies] GetPolicy -> DEBU 6f6 Returning policy Admins for evaluation -2018-01-18 01:58:52.076 UTC [policies] GetPolicy -> DEBU 6f7 Returning policy Admins for evaluation -2018-01-18 01:58:52.076 UTC [policies] GetPolicy -> DEBU 6f8 Returning policy Readers for evaluation -2018-01-18 01:58:52.076 UTC [policies] GetPolicy -> DEBU 6f9 Returning policy Readers for evaluation -2018-01-18 01:58:52.076 UTC [policies] GetPolicy -> DEBU 6fa Returning policy Writers for evaluation -2018-01-18 01:58:52.076 UTC [policies] GetPolicy -> DEBU 6fb Returning policy Writers for evaluation -2018-01-18 01:58:52.076 UTC [policies] GetPolicy -> DEBU 6fc Returning policy Readers for evaluation -2018-01-18 01:58:52.076 UTC [policies] CommitProposals -> DEBU 6fd As expected, current configuration has policy '/Channel/Readers' -2018-01-18 01:58:52.076 UTC [policies] GetPolicy -> DEBU 6fe Returning policy Writers for evaluation -2018-01-18 01:58:52.076 UTC [policies] CommitProposals -> DEBU 6ff As expected, current configuration has policy '/Channel/Writers' -2018-01-18 01:58:52.076 UTC [policies] GetPolicy -> DEBU 700 Returning policy Application/Readers for evaluation -2018-01-18 01:58:52.077 UTC [policies] CommitProposals -> DEBU 701 As expected, current configuration has policy '/Channel/Application/Readers' -2018-01-18 01:58:52.077 UTC [policies] GetPolicy -> DEBU 702 Returning policy Application/Writers for evaluation -2018-01-18 01:58:52.077 UTC [policies] CommitProposals -> DEBU 703 As expected, current configuration has policy '/Channel/Application/Writers' -2018-01-18 01:58:52.077 UTC [policies] GetPolicy -> DEBU 704 Returning policy Application/Admins for evaluation -2018-01-18 01:58:52.077 UTC [policies] CommitProposals -> DEBU 705 As expected, current configuration has policy '/Channel/Application/Admins' -2018-01-18 01:58:52.077 UTC [policies] GetPolicy -> DEBU 706 Returning policy Orderer/BlockValidation for evaluation -2018-01-18 01:58:52.077 UTC [policies] CommitProposals -> DEBU 707 As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -2018-01-18 01:58:52.077 UTC [common/config] NewStandardValues -> DEBU 708 Initializing protos for *config.ChannelProtos -2018-01-18 01:58:52.077 UTC [common/config] initializeProtosStruct -> DEBU 709 Processing field: HashingAlgorithm -2018-01-18 01:58:52.077 UTC [common/config] initializeProtosStruct -> DEBU 70a Processing field: BlockDataHashingStructure -2018-01-18 01:58:52.077 UTC [common/config] initializeProtosStruct -> DEBU 70b Processing field: OrdererAddresses -2018-01-18 01:58:52.077 UTC [common/config] initializeProtosStruct -> DEBU 70c Processing field: Consortium -2018-01-18 01:58:52.077 UTC [common/configtx] addToMap -> DEBU 70d Adding to config map: [Groups] /Channel -2018-01-18 01:58:52.078 UTC [common/configtx] addToMap -> DEBU 70e Adding to config map: [Groups] /Channel/Application -2018-01-18 01:58:52.078 UTC [common/configtx] addToMap -> DEBU 70f Adding to config map: [Groups] /Channel/Application/Org1MSP -2018-01-18 01:58:52.078 UTC [common/configtx] addToMap -> DEBU 710 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -2018-01-18 01:58:52.078 UTC [common/configtx] addToMap -> DEBU 711 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -2018-01-18 01:58:52.082 UTC [common/configtx] addToMap -> DEBU 712 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -2018-01-18 01:58:52.082 UTC [common/configtx] addToMap -> DEBU 713 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -2018-01-18 01:58:52.084 UTC [common/configtx] addToMap -> DEBU 714 Adding to config map: [Groups] /Channel/Application/Org2MSP -2018-01-18 01:58:52.084 UTC [common/configtx] addToMap -> DEBU 715 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -2018-01-18 01:58:52.084 UTC [common/configtx] addToMap -> DEBU 716 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -2018-01-18 01:58:52.084 UTC [common/configtx] addToMap -> DEBU 717 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -2018-01-18 01:58:52.084 UTC [common/configtx] addToMap -> DEBU 718 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -2018-01-18 01:58:52.084 UTC [common/configtx] addToMap -> DEBU 719 Adding to config map: [Policy] /Channel/Application/Admins -2018-01-18 01:58:52.084 UTC [common/configtx] addToMap -> DEBU 71a Adding to config map: [Policy] /Channel/Application/Writers -2018-01-18 01:58:52.084 UTC [common/configtx] addToMap -> DEBU 71b Adding to config map: [Policy] /Channel/Application/Readers -2018-01-18 01:58:52.084 UTC [common/configtx] addToMap -> DEBU 71c Adding to config map: [Groups] /Channel/Orderer -2018-01-18 01:58:52.084 UTC [common/configtx] addToMap -> DEBU 71d Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -2018-01-18 01:58:52.084 UTC [common/configtx] addToMap -> DEBU 71e Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -2018-01-18 01:58:52.084 UTC [common/configtx] addToMap -> DEBU 71f Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -2018-01-18 01:58:52.084 UTC [common/configtx] addToMap -> DEBU 720 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -2018-01-18 01:58:52.084 UTC [common/configtx] addToMap -> DEBU 721 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -2018-01-18 01:58:52.084 UTC [common/configtx] addToMap -> DEBU 722 Adding to config map: [Values] /Channel/Orderer/BatchSize -2018-01-18 01:58:52.084 UTC [common/configtx] addToMap -> DEBU 723 Adding to config map: [Values] /Channel/Orderer/BatchTimeout -2018-01-18 01:58:52.084 UTC [common/configtx] addToMap -> DEBU 724 Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -2018-01-18 01:58:52.085 UTC [common/configtx] addToMap -> DEBU 725 Adding to config map: [Values] /Channel/Orderer/ConsensusType -2018-01-18 01:58:52.085 UTC [common/configtx] addToMap -> DEBU 726 Adding to config map: [Policy] /Channel/Orderer/BlockValidation -2018-01-18 01:58:52.085 UTC [common/configtx] addToMap -> DEBU 727 Adding to config map: [Policy] /Channel/Orderer/Readers -2018-01-18 01:58:52.085 UTC [common/configtx] addToMap -> DEBU 728 Adding to config map: [Policy] /Channel/Orderer/Writers -2018-01-18 01:58:52.085 UTC [common/configtx] addToMap -> DEBU 729 Adding to config map: [Policy] /Channel/Orderer/Admins -2018-01-18 01:58:52.085 UTC [common/configtx] addToMap -> DEBU 72a Adding to config map: [Values] /Channel/HashingAlgorithm -2018-01-18 01:58:52.085 UTC [common/configtx] addToMap -> DEBU 72b Adding to config map: [Values] /Channel/BlockDataHashingStructure -2018-01-18 01:58:52.085 UTC [common/configtx] addToMap -> DEBU 72c Adding to config map: [Values] /Channel/Consortium -2018-01-18 01:58:52.085 UTC [common/configtx] addToMap -> DEBU 72d Adding to config map: [Values] /Channel/OrdererAddresses -2018-01-18 01:58:52.085 UTC [common/configtx] addToMap -> DEBU 72e Adding to config map: [Policy] /Channel/Readers -2018-01-18 01:58:52.085 UTC [common/configtx] addToMap -> DEBU 72f Adding to config map: [Policy] /Channel/Writers -2018-01-18 01:58:52.085 UTC [common/configtx] addToMap -> DEBU 730 Adding to config map: [Policy] /Channel/Admins -2018-01-18 01:58:52.085 UTC [common/configtx] processConfig -> DEBU 731 Beginning new config for channel businesschannel -2018-01-18 01:58:52.085 UTC [common/config] NewStandardValues -> DEBU 732 Initializing protos for *config.ChannelProtos -2018-01-18 01:58:52.085 UTC [common/config] initializeProtosStruct -> DEBU 733 Processing field: HashingAlgorithm -2018-01-18 01:58:52.085 UTC [common/config] initializeProtosStruct -> DEBU 734 Processing field: BlockDataHashingStructure -2018-01-18 01:58:52.085 UTC [common/config] initializeProtosStruct -> DEBU 735 Processing field: OrdererAddresses -2018-01-18 01:58:52.085 UTC [common/config] initializeProtosStruct -> DEBU 736 Processing field: Consortium -2018-01-18 01:58:52.085 UTC [policies] ProposePolicy -> DEBU 737 Proposed new policy Admins for Channel -2018-01-18 01:58:52.085 UTC [policies] ProposePolicy -> DEBU 738 Proposed new policy Readers for Channel -2018-01-18 01:58:52.085 UTC [policies] ProposePolicy -> DEBU 739 Proposed new policy Writers for Channel -2018-01-18 01:58:52.085 UTC [common/config] NewStandardValues -> DEBU 73a Initializing protos for *struct {} -2018-01-18 01:58:52.085 UTC [policies] ProposePolicy -> DEBU 73b Proposed new policy Admins for Application -2018-01-18 01:58:52.085 UTC [policies] ProposePolicy -> DEBU 73c Proposed new policy Writers for Application -2018-01-18 01:58:52.085 UTC [policies] ProposePolicy -> DEBU 73d Proposed new policy Readers for Application -2018-01-18 01:58:52.085 UTC [common/config] NewStandardValues -> DEBU 73e Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:52.085 UTC [common/config] initializeProtosStruct -> DEBU 73f Processing field: MSP -2018-01-18 01:58:52.085 UTC [common/config] NewStandardValues -> DEBU 740 Initializing protos for *config.ApplicationOrgProtos -2018-01-18 01:58:52.085 UTC [common/config] initializeProtosStruct -> DEBU 741 Processing field: AnchorPeers -2018-01-18 01:58:52.085 UTC [common/config] NewStandardValues -> DEBU 742 Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:52.085 UTC [common/config] initializeProtosStruct -> DEBU 743 Processing field: MSP -2018-01-18 01:58:52.085 UTC [policies] ProposePolicy -> DEBU 744 Proposed new policy Writers for Org1MSP -2018-01-18 01:58:52.085 UTC [policies] ProposePolicy -> DEBU 745 Proposed new policy Admins for Org1MSP -2018-01-18 01:58:52.085 UTC [policies] ProposePolicy -> DEBU 746 Proposed new policy Readers for Org1MSP -2018-01-18 01:58:52.085 UTC [common/config] NewStandardValues -> DEBU 747 Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:52.085 UTC [common/config] initializeProtosStruct -> DEBU 748 Processing field: MSP -2018-01-18 01:58:52.085 UTC [common/config] NewStandardValues -> DEBU 749 Initializing protos for *config.ApplicationOrgProtos -2018-01-18 01:58:52.085 UTC [common/config] initializeProtosStruct -> DEBU 74a Processing field: AnchorPeers -2018-01-18 01:58:52.085 UTC [common/config] NewStandardValues -> DEBU 74b Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:52.085 UTC [common/config] initializeProtosStruct -> DEBU 74c Processing field: MSP -2018-01-18 01:58:52.086 UTC [policies] ProposePolicy -> DEBU 74d Proposed new policy Admins for Org2MSP -2018-01-18 01:58:52.086 UTC [policies] ProposePolicy -> DEBU 74e Proposed new policy Readers for Org2MSP -2018-01-18 01:58:52.086 UTC [policies] ProposePolicy -> DEBU 74f Proposed new policy Writers for Org2MSP -2018-01-18 01:58:52.086 UTC [common/config] NewStandardValues -> DEBU 750 Initializing protos for *config.OrdererProtos -2018-01-18 01:58:52.086 UTC [common/config] initializeProtosStruct -> DEBU 751 Processing field: ConsensusType -2018-01-18 01:58:52.086 UTC [common/config] initializeProtosStruct -> DEBU 752 Processing field: BatchSize -2018-01-18 01:58:52.086 UTC [common/config] initializeProtosStruct -> DEBU 753 Processing field: BatchTimeout -2018-01-18 01:58:52.086 UTC [common/config] initializeProtosStruct -> DEBU 754 Processing field: KafkaBrokers -2018-01-18 01:58:52.086 UTC [common/config] initializeProtosStruct -> DEBU 755 Processing field: ChannelRestrictions -2018-01-18 01:58:52.086 UTC [policies] ProposePolicy -> DEBU 756 Proposed new policy Readers for Orderer -2018-01-18 01:58:52.086 UTC [policies] ProposePolicy -> DEBU 757 Proposed new policy Writers for Orderer -2018-01-18 01:58:52.086 UTC [policies] ProposePolicy -> DEBU 758 Proposed new policy Admins for Orderer -2018-01-18 01:58:52.086 UTC [policies] ProposePolicy -> DEBU 759 Proposed new policy BlockValidation for Orderer -2018-01-18 01:58:52.086 UTC [common/config] NewStandardValues -> DEBU 75a Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:52.086 UTC [common/config] initializeProtosStruct -> DEBU 75b Processing field: MSP -2018-01-18 01:58:52.086 UTC [policies] ProposePolicy -> DEBU 75c Proposed new policy Admins for OrdererOrg -2018-01-18 01:58:52.086 UTC [policies] ProposePolicy -> DEBU 75d Proposed new policy Readers for OrdererOrg -2018-01-18 01:58:52.086 UTC [policies] ProposePolicy -> DEBU 75e Proposed new policy Writers for OrdererOrg -2018-01-18 01:58:52.086 UTC [common/config] Validate -> DEBU 75f Anchor peers for org Org1MSP are -2018-01-18 01:58:52.086 UTC [common/config] validateMSP -> DEBU 760 Setting up MSP for org Org1MSP -2018-01-18 01:58:52.086 UTC [msp] NewBccspMsp -> DEBU 761 Creating BCCSP-based MSP instance -2018-01-18 01:58:52.086 UTC [msp] Setup -> DEBU 762 Setting up MSP instance Org1MSP -2018-01-18 01:58:52.087 UTC [msp/identity] newIdentity -> DEBU 763 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:44.139 UTC [msp] Validate -> DEBU 62f MSP OrdererMSP validating identity +2018-01-18 09:29:44.139 UTC [msp] Setup -> DEBU 630 Setting up the MSP manager (3 msps) +2018-01-18 09:29:44.139 UTC [msp] Setup -> DEBU 631 MSP manager setup complete, setup 3 msps +2018-01-18 09:29:44.139 UTC [common/configtx] addToMap -> DEBU 632 Adding to config map: [Groups] /Channel +2018-01-18 09:29:44.140 UTC [common/configtx] addToMap -> DEBU 633 Adding to config map: [Groups] /Channel/Application +2018-01-18 09:29:44.140 UTC [common/configtx] addToMap -> DEBU 634 Adding to config map: [Groups] /Channel/Application/Org1MSP +2018-01-18 09:29:44.140 UTC [common/configtx] addToMap -> DEBU 635 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +2018-01-18 09:29:44.140 UTC [common/configtx] addToMap -> DEBU 636 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +2018-01-18 09:29:44.140 UTC [common/configtx] addToMap -> DEBU 637 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +2018-01-18 09:29:44.140 UTC [common/configtx] addToMap -> DEBU 638 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +2018-01-18 09:29:44.140 UTC [common/configtx] addToMap -> DEBU 639 Adding to config map: [Groups] /Channel/Application/Org2MSP +2018-01-18 09:29:44.140 UTC [common/configtx] addToMap -> DEBU 63a Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +2018-01-18 09:29:44.140 UTC [common/configtx] addToMap -> DEBU 63b Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +2018-01-18 09:29:44.140 UTC [common/configtx] addToMap -> DEBU 63c Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +2018-01-18 09:29:44.141 UTC [common/configtx] addToMap -> DEBU 63d Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +2018-01-18 09:29:44.141 UTC [common/configtx] addToMap -> DEBU 63e Adding to config map: [Policy] /Channel/Application/Writers +2018-01-18 09:29:44.141 UTC [common/configtx] addToMap -> DEBU 63f Adding to config map: [Policy] /Channel/Application/Readers +2018-01-18 09:29:44.141 UTC [common/configtx] addToMap -> DEBU 640 Adding to config map: [Policy] /Channel/Application/Admins +2018-01-18 09:29:44.141 UTC [common/configtx] addToMap -> DEBU 641 Adding to config map: [Groups] /Channel/Orderer +2018-01-18 09:29:44.141 UTC [common/configtx] addToMap -> DEBU 642 Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +2018-01-18 09:29:44.141 UTC [common/configtx] addToMap -> DEBU 643 Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +2018-01-18 09:29:44.141 UTC [common/configtx] addToMap -> DEBU 644 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +2018-01-18 09:29:44.142 UTC [common/configtx] addToMap -> DEBU 645 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +2018-01-18 09:29:44.142 UTC [common/configtx] addToMap -> DEBU 646 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +2018-01-18 09:29:44.142 UTC [common/configtx] addToMap -> DEBU 647 Adding to config map: [Values] /Channel/Orderer/BatchSize +2018-01-18 09:29:44.142 UTC [common/configtx] addToMap -> DEBU 648 Adding to config map: [Values] /Channel/Orderer/BatchTimeout +2018-01-18 09:29:44.142 UTC [common/configtx] addToMap -> DEBU 649 Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +2018-01-18 09:29:44.142 UTC [common/configtx] addToMap -> DEBU 64a Adding to config map: [Values] /Channel/Orderer/ConsensusType +2018-01-18 09:29:44.142 UTC [common/configtx] addToMap -> DEBU 64b Adding to config map: [Policy] /Channel/Orderer/Readers +2018-01-18 09:29:44.142 UTC [common/configtx] addToMap -> DEBU 64c Adding to config map: [Policy] /Channel/Orderer/Writers +2018-01-18 09:29:44.142 UTC [common/configtx] addToMap -> DEBU 64d Adding to config map: [Policy] /Channel/Orderer/Admins +2018-01-18 09:29:44.142 UTC [common/configtx] addToMap -> DEBU 64e Adding to config map: [Policy] /Channel/Orderer/BlockValidation +2018-01-18 09:29:44.142 UTC [common/configtx] addToMap -> DEBU 64f Adding to config map: [Values] /Channel/BlockDataHashingStructure +2018-01-18 09:29:44.142 UTC [common/configtx] addToMap -> DEBU 650 Adding to config map: [Values] /Channel/OrdererAddresses +2018-01-18 09:29:44.142 UTC [common/configtx] addToMap -> DEBU 651 Adding to config map: [Values] /Channel/HashingAlgorithm +2018-01-18 09:29:44.143 UTC [common/configtx] addToMap -> DEBU 652 Adding to config map: [Values] /Channel/Consortium +2018-01-18 09:29:44.143 UTC [common/configtx] addToMap -> DEBU 653 Adding to config map: [Policy] /Channel/Readers +2018-01-18 09:29:44.143 UTC [common/configtx] addToMap -> DEBU 654 Adding to config map: [Policy] /Channel/Writers +2018-01-18 09:29:44.143 UTC [common/configtx] addToMap -> DEBU 655 Adding to config map: [Policy] /Channel/Admins +2018-01-18 09:29:44.143 UTC [common/configtx] addToMap -> DEBU 656 Adding to config map: [Groups] /Channel +2018-01-18 09:29:44.143 UTC [common/configtx] addToMap -> DEBU 657 Adding to config map: [Groups] /Channel/Application +2018-01-18 09:29:44.143 UTC [common/configtx] addToMap -> DEBU 658 Adding to config map: [Groups] /Channel/Application/Org1MSP +2018-01-18 09:29:44.144 UTC [common/configtx] addToMap -> DEBU 659 Adding to config map: [Groups] /Channel/Application/Org2MSP +2018-01-18 09:29:44.144 UTC [common/configtx] addToMap -> DEBU 65a Adding to config map: [Values] /Channel/Consortium +2018-01-18 09:29:44.144 UTC [common/configtx] addToMap -> DEBU 65b Adding to config map: [Groups] /Channel +2018-01-18 09:29:44.144 UTC [common/configtx] addToMap -> DEBU 65c Adding to config map: [Groups] /Channel/Application +2018-01-18 09:29:44.144 UTC [common/configtx] addToMap -> DEBU 65d Adding to config map: [Groups] /Channel/Application/Org1MSP +2018-01-18 09:29:44.144 UTC [common/configtx] addToMap -> DEBU 65e Adding to config map: [Groups] /Channel/Application/Org2MSP +2018-01-18 09:29:44.144 UTC [common/configtx] addToMap -> DEBU 65f Adding to config map: [Policy] /Channel/Application/Admins +2018-01-18 09:29:44.144 UTC [common/configtx] addToMap -> DEBU 660 Adding to config map: [Policy] /Channel/Application/Writers +2018-01-18 09:29:44.144 UTC [common/configtx] addToMap -> DEBU 661 Adding to config map: [Policy] /Channel/Application/Readers +2018-01-18 09:29:44.144 UTC [common/configtx] addToMap -> DEBU 662 Adding to config map: [Values] /Channel/Consortium +2018-01-18 09:29:44.145 UTC [policies] GetPolicy -> DEBU 663 Returning policy ChannelCreationPolicy for evaluation +2018-01-18 09:29:44.145 UTC [cauthdsl] func1 -> DEBU 664 0xc42014b170 gate 1516267784145252315 evaluation starts +2018-01-18 09:29:44.145 UTC [cauthdsl] func2 -> DEBU 665 0xc42014b170 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:29:44.145 UTC [cauthdsl] func2 -> DEBU 666 0xc42014b170 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:29:44.146 UTC [msp/identity] newIdentity -> DEBU 667 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +xHTBvxfK6mAzmUitFmY= +-----END CERTIFICATE----- +2018-01-18 09:29:44.146 UTC [cauthdsl] func2 -> DEBU 668 0xc42014b170 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got Org1MSP) +2018-01-18 09:29:44.146 UTC [cauthdsl] func2 -> DEBU 669 0xc42014b170 principal evaluation fails +2018-01-18 09:29:44.146 UTC [cauthdsl] func1 -> DEBU 66a 0xc42014b170 gate 1516267784145252315 evaluation fails +2018-01-18 09:29:44.146 UTC [cauthdsl] func1 -> DEBU 66b 0xc42014b180 gate 1516267784146647717 evaluation starts +2018-01-18 09:29:44.146 UTC [cauthdsl] func2 -> DEBU 66c 0xc42014b180 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:29:44.146 UTC [cauthdsl] func2 -> DEBU 66d 0xc42014b180 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:29:44.147 UTC [msp/identity] newIdentity -> DEBU 66e Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +xHTBvxfK6mAzmUitFmY= +-----END CERTIFICATE----- +2018-01-18 09:29:44.147 UTC [msp] SatisfiesPrincipal -> DEBU 66f Checking if identity satisfies ADMIN role for Org1MSP +2018-01-18 09:29:44.147 UTC [cauthdsl] func2 -> DEBU 670 0xc42014b180 principal matched by identity 0 +2018-01-18 09:29:44.147 UTC [msp/identity] Verify -> DEBU 671 Verify: digest = 00000000 c2 fe 17 b4 c8 3b c1 d6 17 b0 19 ac b7 be a1 8c |.....;..........| +00000010 b9 9f 4f e4 be 55 e9 d4 15 9e 05 c0 ee c6 5c 37 |..O..U........\7| +2018-01-18 09:29:44.147 UTC [msp/identity] Verify -> DEBU 672 Verify: sig = 00000000 30 45 02 21 00 91 a7 72 c6 06 52 e5 fc dc 81 54 |0E.!...r..R....T| +00000010 76 54 81 da 3e 58 9e 11 df f1 67 fb 92 ed 61 ef |vT..>X....g...a.| +00000020 bc ae 13 4e 1c 02 20 3d 4a 89 e2 1b 4e e0 cd 08 |...N.. =J...N...| +00000030 aa 9f b4 66 db 3a 4a 2f 16 cc ff a7 a1 0c 8b ca |...f.:J/........| +00000040 0f 7a a5 e9 a8 21 9c |.z...!.| +2018-01-18 09:29:44.148 UTC [cauthdsl] func2 -> DEBU 673 0xc42014b180 principal evaluation succeeds for identity 0 +2018-01-18 09:29:44.148 UTC [cauthdsl] func1 -> DEBU 674 0xc42014b180 gate 1516267784146647717 evaluation succeeds +2018-01-18 09:29:44.148 UTC [common/configtx] recurseConfigMap -> DEBU 675 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-18 09:29:44.148 UTC [common/configtx] recurseConfigMap -> DEBU 676 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-18 09:29:44.148 UTC [common/configtx] recurseConfigMap -> DEBU 677 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-18 09:29:44.148 UTC [common/configtx] recurseConfigMap -> DEBU 678 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-18 09:29:44.148 UTC [common/configtx] recurseConfigMap -> DEBU 679 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-18 09:29:44.148 UTC [common/configtx] recurseConfigMap -> DEBU 67a Setting policy for key BlockValidation to policy: mod_policy:"Admins" +2018-01-18 09:29:44.148 UTC [common/configtx] recurseConfigMap -> DEBU 67b Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-18 09:29:44.149 UTC [common/configtx] recurseConfigMap -> DEBU 67c Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-18 09:29:44.149 UTC [common/configtx] recurseConfigMap -> DEBU 67d Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-18 09:29:44.149 UTC [common/configtx] recurseConfigMap -> DEBU 67e Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-18 09:29:44.149 UTC [common/configtx] recurseConfigMap -> DEBU 67f Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-18 09:29:44.149 UTC [common/configtx] recurseConfigMap -> DEBU 680 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-18 09:29:44.149 UTC [common/configtx] recurseConfigMap -> DEBU 681 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-18 09:29:44.149 UTC [common/configtx] recurseConfigMap -> DEBU 682 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-18 09:29:44.150 UTC [common/configtx] recurseConfigMap -> DEBU 683 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-18 09:29:44.150 UTC [common/configtx] recurseConfigMap -> DEBU 684 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-18 09:29:44.150 UTC [common/configtx] recurseConfigMap -> DEBU 685 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-18 09:29:44.150 UTC [common/configtx] recurseConfigMap -> DEBU 686 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-18 09:29:44.150 UTC [common/configtx] recurseConfigMap -> DEBU 687 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-18 09:29:44.150 UTC [common/configtx] processConfig -> DEBU 688 Beginning new config for channel businesschannel +2018-01-18 09:29:44.150 UTC [common/config] NewStandardValues -> DEBU 689 Initializing protos for *config.ChannelProtos +2018-01-18 09:29:44.150 UTC [common/config] initializeProtosStruct -> DEBU 68a Processing field: HashingAlgorithm +2018-01-18 09:29:44.150 UTC [common/config] initializeProtosStruct -> DEBU 68b Processing field: BlockDataHashingStructure +2018-01-18 09:29:44.150 UTC [common/config] initializeProtosStruct -> DEBU 68c Processing field: OrdererAddresses +2018-01-18 09:29:44.151 UTC [common/config] initializeProtosStruct -> DEBU 68d Processing field: Consortium +2018-01-18 09:29:44.151 UTC [policies] ProposePolicy -> DEBU 68e Proposed new policy Writers for Channel +2018-01-18 09:29:44.151 UTC [policies] ProposePolicy -> DEBU 68f Proposed new policy Admins for Channel +2018-01-18 09:29:44.151 UTC [policies] ProposePolicy -> DEBU 690 Proposed new policy Readers for Channel +2018-01-18 09:29:44.151 UTC [common/config] NewStandardValues -> DEBU 691 Initializing protos for *struct {} +2018-01-18 09:29:44.151 UTC [policies] ProposePolicy -> DEBU 692 Proposed new policy Admins for Application +2018-01-18 09:29:44.151 UTC [policies] ProposePolicy -> DEBU 693 Proposed new policy Writers for Application +2018-01-18 09:29:44.151 UTC [policies] ProposePolicy -> DEBU 694 Proposed new policy Readers for Application +2018-01-18 09:29:44.151 UTC [common/config] NewStandardValues -> DEBU 695 Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:44.151 UTC [common/config] initializeProtosStruct -> DEBU 696 Processing field: MSP +2018-01-18 09:29:44.151 UTC [common/config] NewStandardValues -> DEBU 697 Initializing protos for *config.ApplicationOrgProtos +2018-01-18 09:29:44.151 UTC [common/config] initializeProtosStruct -> DEBU 698 Processing field: AnchorPeers +2018-01-18 09:29:44.151 UTC [common/config] NewStandardValues -> DEBU 699 Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:44.152 UTC [common/config] initializeProtosStruct -> DEBU 69a Processing field: MSP +2018-01-18 09:29:44.152 UTC [policies] ProposePolicy -> DEBU 69b Proposed new policy Admins for Org1MSP +2018-01-18 09:29:44.152 UTC [policies] ProposePolicy -> DEBU 69c Proposed new policy Readers for Org1MSP +2018-01-18 09:29:44.152 UTC [policies] ProposePolicy -> DEBU 69d Proposed new policy Writers for Org1MSP +2018-01-18 09:29:44.152 UTC [common/config] NewStandardValues -> DEBU 69e Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:44.152 UTC [common/config] initializeProtosStruct -> DEBU 69f Processing field: MSP +2018-01-18 09:29:44.152 UTC [common/config] NewStandardValues -> DEBU 6a0 Initializing protos for *config.ApplicationOrgProtos +2018-01-18 09:29:44.152 UTC [common/config] initializeProtosStruct -> DEBU 6a1 Processing field: AnchorPeers +2018-01-18 09:29:44.152 UTC [common/config] NewStandardValues -> DEBU 6a2 Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:44.153 UTC [common/config] initializeProtosStruct -> DEBU 6a3 Processing field: MSP +2018-01-18 09:29:44.153 UTC [policies] ProposePolicy -> DEBU 6a4 Proposed new policy Writers for Org2MSP +2018-01-18 09:29:44.153 UTC [policies] ProposePolicy -> DEBU 6a5 Proposed new policy Admins for Org2MSP +2018-01-18 09:29:44.153 UTC [policies] ProposePolicy -> DEBU 6a6 Proposed new policy Readers for Org2MSP +2018-01-18 09:29:44.153 UTC [common/config] NewStandardValues -> DEBU 6a7 Initializing protos for *config.OrdererProtos +2018-01-18 09:29:44.153 UTC [common/config] initializeProtosStruct -> DEBU 6a8 Processing field: ConsensusType +2018-01-18 09:29:44.153 UTC [common/config] initializeProtosStruct -> DEBU 6a9 Processing field: BatchSize +2018-01-18 09:29:44.153 UTC [common/config] initializeProtosStruct -> DEBU 6aa Processing field: BatchTimeout +2018-01-18 09:29:44.153 UTC [common/config] initializeProtosStruct -> DEBU 6ab Processing field: KafkaBrokers +2018-01-18 09:29:44.153 UTC [common/config] initializeProtosStruct -> DEBU 6ac Processing field: ChannelRestrictions +2018-01-18 09:29:44.153 UTC [policies] ProposePolicy -> DEBU 6ad Proposed new policy Admins for Orderer +2018-01-18 09:29:44.153 UTC [policies] ProposePolicy -> DEBU 6ae Proposed new policy BlockValidation for Orderer +2018-01-18 09:29:44.153 UTC [policies] ProposePolicy -> DEBU 6af Proposed new policy Readers for Orderer +2018-01-18 09:29:44.154 UTC [policies] ProposePolicy -> DEBU 6b0 Proposed new policy Writers for Orderer +2018-01-18 09:29:44.154 UTC [common/config] NewStandardValues -> DEBU 6b1 Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:44.154 UTC [common/config] initializeProtosStruct -> DEBU 6b2 Processing field: MSP +2018-01-18 09:29:44.154 UTC [policies] ProposePolicy -> DEBU 6b3 Proposed new policy Writers for OrdererOrg +2018-01-18 09:29:44.154 UTC [policies] ProposePolicy -> DEBU 6b4 Proposed new policy Admins for OrdererOrg +2018-01-18 09:29:44.154 UTC [policies] ProposePolicy -> DEBU 6b5 Proposed new policy Readers for OrdererOrg +2018-01-18 09:29:44.154 UTC [common/config] Validate -> DEBU 6b6 Anchor peers for org Org1MSP are +2018-01-18 09:29:44.154 UTC [common/config] validateMSP -> DEBU 6b7 Setting up MSP for org Org1MSP +2018-01-18 09:29:44.154 UTC [msp] NewBccspMsp -> DEBU 6b8 Creating BCCSP-based MSP instance +2018-01-18 09:29:44.154 UTC [msp] Setup -> DEBU 6b9 Setting up MSP instance Org1MSP +2018-01-18 09:29:44.155 UTC [msp/identity] newIdentity -> DEBU 6ba Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -3276,7 +3029,7 @@ JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ H7n8z1pj5w== -----END CERTIFICATE----- -2018-01-18 01:58:52.088 UTC [msp/identity] newIdentity -> DEBU 764 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:44.155 UTC [msp/identity] newIdentity -> DEBU 6bb Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -3290,7 +3043,7 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-18 01:58:52.088 UTC [msp/identity] newIdentity -> DEBU 765 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:44.156 UTC [msp/identity] newIdentity -> DEBU 6bc Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -3304,12 +3057,12 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-18 01:58:52.089 UTC [msp] Validate -> DEBU 766 MSP Org1MSP validating identity -2018-01-18 01:58:52.089 UTC [common/config] Validate -> DEBU 767 Anchor peers for org Org2MSP are -2018-01-18 01:58:52.089 UTC [common/config] validateMSP -> DEBU 768 Setting up MSP for org Org2MSP -2018-01-18 01:58:52.089 UTC [msp] NewBccspMsp -> DEBU 769 Creating BCCSP-based MSP instance -2018-01-18 01:58:52.089 UTC [msp] Setup -> DEBU 76a Setting up MSP instance Org2MSP -2018-01-18 01:58:52.089 UTC [msp/identity] newIdentity -> DEBU 76b Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:44.157 UTC [msp] Validate -> DEBU 6bd MSP Org1MSP validating identity +2018-01-18 09:29:44.157 UTC [common/config] Validate -> DEBU 6be Anchor peers for org Org2MSP are +2018-01-18 09:29:44.157 UTC [common/config] validateMSP -> DEBU 6bf Setting up MSP for org Org2MSP +2018-01-18 09:29:44.157 UTC [msp] NewBccspMsp -> DEBU 6c0 Creating BCCSP-based MSP instance +2018-01-18 09:29:44.157 UTC [msp] Setup -> DEBU 6c1 Setting up MSP instance Org2MSP +2018-01-18 09:29:44.163 UTC [msp/identity] newIdentity -> DEBU 6c2 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -3324,7 +3077,7 @@ xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk SCjyRdD3aQ== -----END CERTIFICATE----- -2018-01-18 01:58:52.089 UTC [msp/identity] newIdentity -> DEBU 76c Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:44.166 UTC [msp/identity] newIdentity -> DEBU 6c3 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -3338,7 +3091,7 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS AXYxULZpXYDQXt1KaLI= -----END CERTIFICATE----- -2018-01-18 01:58:52.090 UTC [msp/identity] newIdentity -> DEBU 76d Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:44.167 UTC [msp/identity] newIdentity -> DEBU 6c4 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -3352,11 +3105,11 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS AXYxULZpXYDQXt1KaLI= -----END CERTIFICATE----- -2018-01-18 01:58:52.090 UTC [msp] Validate -> DEBU 76e MSP Org2MSP validating identity -2018-01-18 01:58:52.090 UTC [common/config] validateMSP -> DEBU 76f Setting up MSP for org OrdererOrg -2018-01-18 01:58:52.090 UTC [msp] NewBccspMsp -> DEBU 770 Creating BCCSP-based MSP instance -2018-01-18 01:58:52.090 UTC [msp] Setup -> DEBU 771 Setting up MSP instance OrdererMSP -2018-01-18 01:58:52.091 UTC [msp/identity] newIdentity -> DEBU 772 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:44.168 UTC [msp] Validate -> DEBU 6c5 MSP Org2MSP validating identity +2018-01-18 09:29:44.168 UTC [common/config] validateMSP -> DEBU 6c6 Setting up MSP for org OrdererOrg +2018-01-18 09:29:44.168 UTC [msp] NewBccspMsp -> DEBU 6c7 Creating BCCSP-based MSP instance +2018-01-18 09:29:44.168 UTC [msp] Setup -> DEBU 6c8 Setting up MSP instance OrdererMSP +2018-01-18 09:29:44.169 UTC [msp/identity] newIdentity -> DEBU 6c9 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -3370,7 +3123,7 @@ AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= -----END CERTIFICATE----- -2018-01-18 01:58:52.091 UTC [msp/identity] newIdentity -> DEBU 773 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:44.169 UTC [msp/identity] newIdentity -> DEBU 6ca Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -3383,7 +3136,7 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -----END CERTIFICATE----- -2018-01-18 01:58:52.091 UTC [msp/identity] newIdentity -> DEBU 774 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:44.171 UTC [msp/identity] newIdentity -> DEBU 6cb Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -3396,184 +3149,227 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -----END CERTIFICATE----- -2018-01-18 01:58:52.092 UTC [msp] Validate -> DEBU 775 MSP OrdererMSP validating identity -2018-01-18 01:58:52.092 UTC [msp] Setup -> DEBU 776 Setting up the MSP manager (3 msps) -2018-01-18 01:58:52.092 UTC [msp] Setup -> DEBU 777 MSP manager setup complete, setup 3 msps -2018-01-18 01:58:52.092 UTC [policies] GetPolicy -> DEBU 778 Returning policy Admins for evaluation -2018-01-18 01:58:52.092 UTC [policies] CommitProposals -> DEBU 779 In commit adding relative sub-policy Org1MSP/Admins to Application -2018-01-18 01:58:52.092 UTC [policies] GetPolicy -> DEBU 77a Returning policy Readers for evaluation -2018-01-18 01:58:52.092 UTC [policies] CommitProposals -> DEBU 77b In commit adding relative sub-policy Org1MSP/Readers to Application -2018-01-18 01:58:52.092 UTC [policies] GetPolicy -> DEBU 77c Returning policy Writers for evaluation -2018-01-18 01:58:52.092 UTC [policies] CommitProposals -> DEBU 77d In commit adding relative sub-policy Org1MSP/Writers to Application -2018-01-18 01:58:52.092 UTC [policies] GetPolicy -> DEBU 77e Returning policy Readers for evaluation -2018-01-18 01:58:52.092 UTC [policies] CommitProposals -> DEBU 77f In commit adding relative sub-policy Org2MSP/Readers to Application -2018-01-18 01:58:52.092 UTC [policies] GetPolicy -> DEBU 780 Returning policy Writers for evaluation -2018-01-18 01:58:52.092 UTC [policies] CommitProposals -> DEBU 781 In commit adding relative sub-policy Org2MSP/Writers to Application -2018-01-18 01:58:52.092 UTC [policies] GetPolicy -> DEBU 782 Returning policy Admins for evaluation -2018-01-18 01:58:52.092 UTC [policies] CommitProposals -> DEBU 783 In commit adding relative sub-policy Org2MSP/Admins to Application -2018-01-18 01:58:52.092 UTC [policies] GetPolicy -> DEBU 784 Returning policy Admins for evaluation -2018-01-18 01:58:52.092 UTC [policies] GetPolicy -> DEBU 785 Returning policy Admins for evaluation -2018-01-18 01:58:52.092 UTC [policies] GetPolicy -> DEBU 786 Returning policy Writers for evaluation -2018-01-18 01:58:52.092 UTC [policies] GetPolicy -> DEBU 787 Returning policy Writers for evaluation -2018-01-18 01:58:52.092 UTC [policies] GetPolicy -> DEBU 788 Returning policy Readers for evaluation -2018-01-18 01:58:52.092 UTC [policies] GetPolicy -> DEBU 789 Returning policy Readers for evaluation -2018-01-18 01:58:52.092 UTC [policies] GetPolicy -> DEBU 78a Returning policy Admins for evaluation -2018-01-18 01:58:52.092 UTC [policies] CommitProposals -> DEBU 78b In commit adding relative sub-policy OrdererOrg/Admins to Orderer -2018-01-18 01:58:52.092 UTC [policies] GetPolicy -> DEBU 78c Returning policy Readers for evaluation -2018-01-18 01:58:52.092 UTC [policies] CommitProposals -> DEBU 78d In commit adding relative sub-policy OrdererOrg/Readers to Orderer -2018-01-18 01:58:52.092 UTC [policies] GetPolicy -> DEBU 78e Returning policy Writers for evaluation -2018-01-18 01:58:52.092 UTC [policies] CommitProposals -> DEBU 78f In commit adding relative sub-policy OrdererOrg/Writers to Orderer -2018-01-18 01:58:52.092 UTC [policies] GetPolicy -> DEBU 790 Returning policy Readers for evaluation -2018-01-18 01:58:52.092 UTC [policies] GetPolicy -> DEBU 791 Returning policy Writers for evaluation -2018-01-18 01:58:52.093 UTC [policies] GetPolicy -> DEBU 792 Returning policy Admins for evaluation -2018-01-18 01:58:52.093 UTC [policies] GetPolicy -> DEBU 793 Returning policy Writers for evaluation -2018-01-18 01:58:52.093 UTC [policies] GetPolicy -> DEBU 794 Returning policy Admins for evaluation -2018-01-18 01:58:52.093 UTC [policies] CommitProposals -> DEBU 795 In commit adding relative sub-policy Orderer/Admins to Channel -2018-01-18 01:58:52.093 UTC [policies] GetPolicy -> DEBU 796 Returning policy BlockValidation for evaluation -2018-01-18 01:58:52.093 UTC [policies] CommitProposals -> DEBU 797 In commit adding relative sub-policy Orderer/BlockValidation to Channel -2018-01-18 01:58:52.093 UTC [policies] GetPolicy -> DEBU 798 Returning policy OrdererOrg/Admins for evaluation -2018-01-18 01:58:52.093 UTC [policies] CommitProposals -> DEBU 799 In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -2018-01-18 01:58:52.093 UTC [policies] GetPolicy -> DEBU 79a Returning policy OrdererOrg/Readers for evaluation -2018-01-18 01:58:52.093 UTC [policies] CommitProposals -> DEBU 79b In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -2018-01-18 01:58:52.093 UTC [policies] GetPolicy -> DEBU 79c Returning policy OrdererOrg/Writers for evaluation -2018-01-18 01:58:52.093 UTC [policies] CommitProposals -> DEBU 79d In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -2018-01-18 01:58:52.093 UTC [policies] GetPolicy -> DEBU 79e Returning policy Readers for evaluation -2018-01-18 01:58:52.093 UTC [policies] CommitProposals -> DEBU 79f In commit adding relative sub-policy Orderer/Readers to Channel -2018-01-18 01:58:52.093 UTC [policies] GetPolicy -> DEBU 7a0 Returning policy Writers for evaluation -2018-01-18 01:58:52.093 UTC [policies] CommitProposals -> DEBU 7a1 In commit adding relative sub-policy Orderer/Writers to Channel -2018-01-18 01:58:52.093 UTC [policies] GetPolicy -> DEBU 7a2 Returning policy Org2MSP/Admins for evaluation -2018-01-18 01:58:52.093 UTC [policies] CommitProposals -> DEBU 7a3 In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -2018-01-18 01:58:52.093 UTC [policies] GetPolicy -> DEBU 7a4 Returning policy Readers for evaluation -2018-01-18 01:58:52.093 UTC [policies] CommitProposals -> DEBU 7a5 In commit adding relative sub-policy Application/Readers to Channel -2018-01-18 01:58:52.093 UTC [policies] GetPolicy -> DEBU 7a6 Returning policy Org1MSP/Readers for evaluation -2018-01-18 01:58:52.093 UTC [policies] CommitProposals -> DEBU 7a7 In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -2018-01-18 01:58:52.093 UTC [policies] GetPolicy -> DEBU 7a8 Returning policy Org1MSP/Writers for evaluation -2018-01-18 01:58:52.093 UTC [policies] CommitProposals -> DEBU 7a9 In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -2018-01-18 01:58:52.093 UTC [policies] GetPolicy -> DEBU 7aa Returning policy Org2MSP/Readers for evaluation -2018-01-18 01:58:52.094 UTC [policies] CommitProposals -> DEBU 7ab In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -2018-01-18 01:58:52.094 UTC [policies] GetPolicy -> DEBU 7ac Returning policy Org2MSP/Writers for evaluation -2018-01-18 01:58:52.094 UTC [policies] CommitProposals -> DEBU 7ad In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -2018-01-18 01:58:52.094 UTC [policies] GetPolicy -> DEBU 7ae Returning policy Admins for evaluation -2018-01-18 01:58:52.094 UTC [policies] CommitProposals -> DEBU 7af In commit adding relative sub-policy Application/Admins to Channel -2018-01-18 01:58:52.094 UTC [policies] GetPolicy -> DEBU 7b0 Returning policy Writers for evaluation -2018-01-18 01:58:52.094 UTC [policies] CommitProposals -> DEBU 7b1 In commit adding relative sub-policy Application/Writers to Channel -2018-01-18 01:58:52.094 UTC [policies] GetPolicy -> DEBU 7b2 Returning policy Org1MSP/Admins for evaluation -2018-01-18 01:58:52.094 UTC [policies] CommitProposals -> DEBU 7b3 In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -2018-01-18 01:58:52.094 UTC [policies] GetPolicy -> DEBU 7b4 Returning policy Admins for evaluation -2018-01-18 01:58:52.094 UTC [policies] GetPolicy -> DEBU 7b5 Returning policy Admins for evaluation -2018-01-18 01:58:52.094 UTC [policies] GetPolicy -> DEBU 7b6 Returning policy Readers for evaluation -2018-01-18 01:58:52.094 UTC [policies] GetPolicy -> DEBU 7b7 Returning policy Readers for evaluation -2018-01-18 01:58:52.094 UTC [policies] GetPolicy -> DEBU 7b8 Returning policy Writers for evaluation -2018-01-18 01:58:52.094 UTC [policies] GetPolicy -> DEBU 7b9 Returning policy Writers for evaluation -2018-01-18 01:58:52.094 UTC [policies] GetPolicy -> DEBU 7ba Returning policy Readers for evaluation -2018-01-18 01:58:52.094 UTC [policies] CommitProposals -> DEBU 7bb As expected, current configuration has policy '/Channel/Readers' -2018-01-18 01:58:52.094 UTC [policies] GetPolicy -> DEBU 7bc Returning policy Writers for evaluation -2018-01-18 01:58:52.094 UTC [policies] CommitProposals -> DEBU 7bd As expected, current configuration has policy '/Channel/Writers' -2018-01-18 01:58:52.094 UTC [policies] GetPolicy -> DEBU 7be Returning policy Application/Readers for evaluation -2018-01-18 01:58:52.095 UTC [policies] CommitProposals -> DEBU 7bf As expected, current configuration has policy '/Channel/Application/Readers' -2018-01-18 01:58:52.095 UTC [policies] GetPolicy -> DEBU 7c0 Returning policy Application/Writers for evaluation -2018-01-18 01:58:52.095 UTC [policies] CommitProposals -> DEBU 7c1 As expected, current configuration has policy '/Channel/Application/Writers' -2018-01-18 01:58:52.095 UTC [policies] GetPolicy -> DEBU 7c2 Returning policy Application/Admins for evaluation -2018-01-18 01:58:52.095 UTC [policies] CommitProposals -> DEBU 7c3 As expected, current configuration has policy '/Channel/Application/Admins' -2018-01-18 01:58:52.095 UTC [policies] GetPolicy -> DEBU 7c4 Returning policy Orderer/BlockValidation for evaluation -2018-01-18 01:58:52.095 UTC [policies] CommitProposals -> DEBU 7c5 As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -2018-01-18 01:58:52.096 UTC [orderer/common/blockcutter] Ordered -> DEBU 7c6 Found message which requested to be isolated, cutting into its own batch -2018-01-18 01:58:52.096 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 7c7 retrieveBlockByNumber() - blockNum = [0] -2018-01-18 01:58:52.096 UTC [fsblkstorage] newBlockfileStream -> DEBU 7c8 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] -2018-01-18 01:58:52.096 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 7c9 Remaining bytes=[9082], Going to peek [8] bytes -2018-01-18 01:58:52.096 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 7ca Returning blockbytes - length=[9080], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -2018-01-18 01:58:52.096 UTC [common/config] NewStandardValues -> DEBU 7cb Initializing protos for *config.ChannelProtos -2018-01-18 01:58:52.096 UTC [common/config] initializeProtosStruct -> DEBU 7cc Processing field: HashingAlgorithm -2018-01-18 01:58:52.096 UTC [common/config] initializeProtosStruct -> DEBU 7cd Processing field: BlockDataHashingStructure -2018-01-18 01:58:52.096 UTC [common/config] initializeProtosStruct -> DEBU 7ce Processing field: OrdererAddresses -2018-01-18 01:58:52.096 UTC [common/config] initializeProtosStruct -> DEBU 7cf Processing field: Consortium -2018-01-18 01:58:52.097 UTC [common/configtx] addToMap -> DEBU 7d0 Adding to config map: [Groups] /Channel -2018-01-18 01:58:52.097 UTC [common/configtx] addToMap -> DEBU 7d1 Adding to config map: [Groups] /Channel/Application -2018-01-18 01:58:52.097 UTC [common/configtx] addToMap -> DEBU 7d2 Adding to config map: [Groups] /Channel/Application/Org1MSP -2018-01-18 01:58:52.097 UTC [common/configtx] addToMap -> DEBU 7d3 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -2018-01-18 01:58:52.097 UTC [common/configtx] addToMap -> DEBU 7d4 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -2018-01-18 01:58:52.097 UTC [common/configtx] addToMap -> DEBU 7d5 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -2018-01-18 01:58:52.098 UTC [common/configtx] addToMap -> DEBU 7d6 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -2018-01-18 01:58:52.098 UTC [common/configtx] addToMap -> DEBU 7d7 Adding to config map: [Groups] /Channel/Application/Org2MSP -2018-01-18 01:58:52.098 UTC [common/configtx] addToMap -> DEBU 7d8 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -2018-01-18 01:58:52.098 UTC [common/configtx] addToMap -> DEBU 7d9 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -2018-01-18 01:58:52.098 UTC [common/configtx] addToMap -> DEBU 7da Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -2018-01-18 01:58:52.098 UTC [common/configtx] addToMap -> DEBU 7db Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -2018-01-18 01:58:52.099 UTC [common/configtx] addToMap -> DEBU 7dc Adding to config map: [Policy] /Channel/Application/Admins -2018-01-18 01:58:52.099 UTC [common/configtx] addToMap -> DEBU 7dd Adding to config map: [Policy] /Channel/Application/Writers -2018-01-18 01:58:52.099 UTC [common/configtx] addToMap -> DEBU 7de Adding to config map: [Policy] /Channel/Application/Readers -2018-01-18 01:58:52.099 UTC [common/configtx] addToMap -> DEBU 7df Adding to config map: [Groups] /Channel/Orderer -2018-01-18 01:58:52.099 UTC [common/configtx] addToMap -> DEBU 7e0 Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -2018-01-18 01:58:52.099 UTC [common/configtx] addToMap -> DEBU 7e1 Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -2018-01-18 01:58:52.099 UTC [common/configtx] addToMap -> DEBU 7e2 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -2018-01-18 01:58:52.099 UTC [common/configtx] addToMap -> DEBU 7e3 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -2018-01-18 01:58:52.099 UTC [common/configtx] addToMap -> DEBU 7e4 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -2018-01-18 01:58:52.099 UTC [common/configtx] addToMap -> DEBU 7e5 Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -2018-01-18 01:58:52.099 UTC [common/configtx] addToMap -> DEBU 7e6 Adding to config map: [Values] /Channel/Orderer/ConsensusType -2018-01-18 01:58:52.100 UTC [common/configtx] addToMap -> DEBU 7e7 Adding to config map: [Values] /Channel/Orderer/BatchSize -2018-01-18 01:58:52.100 UTC [common/configtx] addToMap -> DEBU 7e8 Adding to config map: [Values] /Channel/Orderer/BatchTimeout -2018-01-18 01:58:52.100 UTC [common/configtx] addToMap -> DEBU 7e9 Adding to config map: [Policy] /Channel/Orderer/BlockValidation -2018-01-18 01:58:52.100 UTC [common/configtx] addToMap -> DEBU 7ea Adding to config map: [Policy] /Channel/Orderer/Readers -2018-01-18 01:58:52.100 UTC [common/configtx] addToMap -> DEBU 7eb Adding to config map: [Policy] /Channel/Orderer/Writers -2018-01-18 01:58:52.100 UTC [common/configtx] addToMap -> DEBU 7ec Adding to config map: [Policy] /Channel/Orderer/Admins -2018-01-18 01:58:52.100 UTC [common/configtx] addToMap -> DEBU 7ed Adding to config map: [Values] /Channel/BlockDataHashingStructure -2018-01-18 01:58:52.100 UTC [common/configtx] addToMap -> DEBU 7ee Adding to config map: [Values] /Channel/Consortium -2018-01-18 01:58:52.100 UTC [common/configtx] addToMap -> DEBU 7ef Adding to config map: [Values] /Channel/OrdererAddresses -2018-01-18 01:58:52.100 UTC [common/configtx] addToMap -> DEBU 7f0 Adding to config map: [Values] /Channel/HashingAlgorithm -2018-01-18 01:58:52.100 UTC [common/configtx] addToMap -> DEBU 7f1 Adding to config map: [Policy] /Channel/Admins -2018-01-18 01:58:52.100 UTC [common/configtx] addToMap -> DEBU 7f2 Adding to config map: [Policy] /Channel/Readers -2018-01-18 01:58:52.100 UTC [common/configtx] addToMap -> DEBU 7f3 Adding to config map: [Policy] /Channel/Writers -2018-01-18 01:58:52.100 UTC [common/configtx] processConfig -> DEBU 7f4 Beginning new config for channel businesschannel -2018-01-18 01:58:52.100 UTC [common/config] NewStandardValues -> DEBU 7f5 Initializing protos for *config.ChannelProtos -2018-01-18 01:58:52.100 UTC [common/config] initializeProtosStruct -> DEBU 7f6 Processing field: HashingAlgorithm -2018-01-18 01:58:52.100 UTC [common/config] initializeProtosStruct -> DEBU 7f7 Processing field: BlockDataHashingStructure -2018-01-18 01:58:52.101 UTC [common/config] initializeProtosStruct -> DEBU 7f8 Processing field: OrdererAddresses -2018-01-18 01:58:52.101 UTC [common/config] initializeProtosStruct -> DEBU 7f9 Processing field: Consortium -2018-01-18 01:58:52.101 UTC [policies] ProposePolicy -> DEBU 7fa Proposed new policy Readers for Channel -2018-01-18 01:58:52.101 UTC [policies] ProposePolicy -> DEBU 7fb Proposed new policy Writers for Channel -2018-01-18 01:58:52.101 UTC [policies] ProposePolicy -> DEBU 7fc Proposed new policy Admins for Channel -2018-01-18 01:58:52.101 UTC [common/config] NewStandardValues -> DEBU 7fd Initializing protos for *struct {} -2018-01-18 01:58:52.101 UTC [policies] ProposePolicy -> DEBU 7fe Proposed new policy Admins for Application -2018-01-18 01:58:52.101 UTC [policies] ProposePolicy -> DEBU 7ff Proposed new policy Writers for Application -2018-01-18 01:58:52.101 UTC [policies] ProposePolicy -> DEBU 800 Proposed new policy Readers for Application -2018-01-18 01:58:52.101 UTC [common/config] NewStandardValues -> DEBU 801 Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:52.101 UTC [common/config] initializeProtosStruct -> DEBU 802 Processing field: MSP -2018-01-18 01:58:52.101 UTC [common/config] NewStandardValues -> DEBU 803 Initializing protos for *config.ApplicationOrgProtos -2018-01-18 01:58:52.101 UTC [common/config] initializeProtosStruct -> DEBU 804 Processing field: AnchorPeers -2018-01-18 01:58:52.101 UTC [common/config] NewStandardValues -> DEBU 805 Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:52.101 UTC [common/config] initializeProtosStruct -> DEBU 806 Processing field: MSP -2018-01-18 01:58:52.101 UTC [policies] ProposePolicy -> DEBU 807 Proposed new policy Admins for Org1MSP -2018-01-18 01:58:52.101 UTC [policies] ProposePolicy -> DEBU 808 Proposed new policy Readers for Org1MSP -2018-01-18 01:58:52.101 UTC [policies] ProposePolicy -> DEBU 809 Proposed new policy Writers for Org1MSP -2018-01-18 01:58:52.101 UTC [common/config] NewStandardValues -> DEBU 80a Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:52.101 UTC [common/config] initializeProtosStruct -> DEBU 80b Processing field: MSP -2018-01-18 01:58:52.101 UTC [common/config] NewStandardValues -> DEBU 80c Initializing protos for *config.ApplicationOrgProtos -2018-01-18 01:58:52.101 UTC [common/config] initializeProtosStruct -> DEBU 80d Processing field: AnchorPeers -2018-01-18 01:58:52.101 UTC [common/config] NewStandardValues -> DEBU 80e Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:52.101 UTC [common/config] initializeProtosStruct -> DEBU 80f Processing field: MSP -2018-01-18 01:58:52.101 UTC [policies] ProposePolicy -> DEBU 810 Proposed new policy Admins for Org2MSP -2018-01-18 01:58:52.101 UTC [policies] ProposePolicy -> DEBU 811 Proposed new policy Readers for Org2MSP -2018-01-18 01:58:52.101 UTC [policies] ProposePolicy -> DEBU 812 Proposed new policy Writers for Org2MSP -2018-01-18 01:58:52.101 UTC [common/config] NewStandardValues -> DEBU 813 Initializing protos for *config.OrdererProtos -2018-01-18 01:58:52.101 UTC [common/config] initializeProtosStruct -> DEBU 814 Processing field: ConsensusType -2018-01-18 01:58:52.101 UTC [common/config] initializeProtosStruct -> DEBU 815 Processing field: BatchSize -2018-01-18 01:58:52.101 UTC [common/config] initializeProtosStruct -> DEBU 816 Processing field: BatchTimeout -2018-01-18 01:58:52.101 UTC [common/config] initializeProtosStruct -> DEBU 817 Processing field: KafkaBrokers -2018-01-18 01:58:52.101 UTC [common/config] initializeProtosStruct -> DEBU 818 Processing field: ChannelRestrictions -2018-01-18 01:58:52.101 UTC [policies] ProposePolicy -> DEBU 819 Proposed new policy Writers for Orderer -2018-01-18 01:58:52.101 UTC [policies] ProposePolicy -> DEBU 81a Proposed new policy Admins for Orderer -2018-01-18 01:58:52.101 UTC [policies] ProposePolicy -> DEBU 81b Proposed new policy BlockValidation for Orderer -2018-01-18 01:58:52.102 UTC [policies] ProposePolicy -> DEBU 81c Proposed new policy Readers for Orderer -2018-01-18 01:58:52.102 UTC [common/config] NewStandardValues -> DEBU 81d Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:52.102 UTC [common/config] initializeProtosStruct -> DEBU 81e Processing field: MSP -2018-01-18 01:58:52.102 UTC [policies] ProposePolicy -> DEBU 81f Proposed new policy Admins for OrdererOrg -2018-01-18 01:58:52.102 UTC [policies] ProposePolicy -> DEBU 820 Proposed new policy Readers for OrdererOrg -2018-01-18 01:58:52.102 UTC [policies] ProposePolicy -> DEBU 821 Proposed new policy Writers for OrdererOrg -2018-01-18 01:58:52.102 UTC [common/config] Validate -> DEBU 822 Anchor peers for org Org1MSP are -2018-01-18 01:58:52.102 UTC [common/config] validateMSP -> DEBU 823 Setting up MSP for org Org1MSP -2018-01-18 01:58:52.102 UTC [msp] NewBccspMsp -> DEBU 824 Creating BCCSP-based MSP instance -2018-01-18 01:58:52.102 UTC [msp] Setup -> DEBU 825 Setting up MSP instance Org1MSP -2018-01-18 01:58:52.102 UTC [msp/identity] newIdentity -> DEBU 826 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:44.172 UTC [msp] Validate -> DEBU 6cc MSP OrdererMSP validating identity +2018-01-18 09:29:44.173 UTC [msp] Setup -> DEBU 6cd Setting up the MSP manager (3 msps) +2018-01-18 09:29:44.173 UTC [msp] Setup -> DEBU 6ce MSP manager setup complete, setup 3 msps +2018-01-18 09:29:44.173 UTC [policies] GetPolicy -> DEBU 6cf Returning policy Admins for evaluation +2018-01-18 09:29:44.173 UTC [policies] CommitProposals -> DEBU 6d0 In commit adding relative sub-policy Org1MSP/Admins to Application +2018-01-18 09:29:44.173 UTC [policies] GetPolicy -> DEBU 6d1 Returning policy Readers for evaluation +2018-01-18 09:29:44.173 UTC [policies] CommitProposals -> DEBU 6d2 In commit adding relative sub-policy Org1MSP/Readers to Application +2018-01-18 09:29:44.173 UTC [policies] GetPolicy -> DEBU 6d3 Returning policy Writers for evaluation +2018-01-18 09:29:44.173 UTC [policies] CommitProposals -> DEBU 6d4 In commit adding relative sub-policy Org1MSP/Writers to Application +2018-01-18 09:29:44.173 UTC [policies] GetPolicy -> DEBU 6d5 Returning policy Writers for evaluation +2018-01-18 09:29:44.173 UTC [policies] CommitProposals -> DEBU 6d6 In commit adding relative sub-policy Org2MSP/Writers to Application +2018-01-18 09:29:44.173 UTC [policies] GetPolicy -> DEBU 6d7 Returning policy Admins for evaluation +2018-01-18 09:29:44.173 UTC [policies] CommitProposals -> DEBU 6d8 In commit adding relative sub-policy Org2MSP/Admins to Application +2018-01-18 09:29:44.173 UTC [policies] GetPolicy -> DEBU 6d9 Returning policy Readers for evaluation +2018-01-18 09:29:44.173 UTC [policies] CommitProposals -> DEBU 6da In commit adding relative sub-policy Org2MSP/Readers to Application +2018-01-18 09:29:44.173 UTC [policies] GetPolicy -> DEBU 6db Returning policy Admins for evaluation +2018-01-18 09:29:44.173 UTC [policies] GetPolicy -> DEBU 6dc Returning policy Admins for evaluation +2018-01-18 09:29:44.173 UTC [policies] GetPolicy -> DEBU 6dd Returning policy Writers for evaluation +2018-01-18 09:29:44.173 UTC [policies] GetPolicy -> DEBU 6de Returning policy Writers for evaluation +2018-01-18 09:29:44.174 UTC [policies] GetPolicy -> DEBU 6df Returning policy Readers for evaluation +2018-01-18 09:29:44.174 UTC [policies] GetPolicy -> DEBU 6e0 Returning policy Readers for evaluation +2018-01-18 09:29:44.174 UTC [policies] GetPolicy -> DEBU 6e1 Returning policy Writers for evaluation +2018-01-18 09:29:44.174 UTC [policies] CommitProposals -> DEBU 6e2 In commit adding relative sub-policy OrdererOrg/Writers to Orderer +2018-01-18 09:29:44.174 UTC [policies] GetPolicy -> DEBU 6e3 Returning policy Admins for evaluation +2018-01-18 09:29:44.174 UTC [policies] CommitProposals -> DEBU 6e4 In commit adding relative sub-policy OrdererOrg/Admins to Orderer +2018-01-18 09:29:44.174 UTC [policies] GetPolicy -> DEBU 6e5 Returning policy Readers for evaluation +2018-01-18 09:29:44.174 UTC [policies] CommitProposals -> DEBU 6e6 In commit adding relative sub-policy OrdererOrg/Readers to Orderer +2018-01-18 09:29:44.175 UTC [policies] GetPolicy -> DEBU 6e7 Returning policy Admins for evaluation +2018-01-18 09:29:44.175 UTC [policies] GetPolicy -> DEBU 6e8 Returning policy Writers for evaluation +2018-01-18 09:29:44.175 UTC [policies] GetPolicy -> DEBU 6e9 Returning policy Readers for evaluation +2018-01-18 09:29:44.175 UTC [policies] GetPolicy -> DEBU 6ea Returning policy Writers for evaluation +2018-01-18 09:29:44.175 UTC [policies] GetPolicy -> DEBU 6eb Returning policy OrdererOrg/Admins for evaluation +2018-01-18 09:29:44.175 UTC [policies] CommitProposals -> DEBU 6ec In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +2018-01-18 09:29:44.175 UTC [policies] GetPolicy -> DEBU 6ed Returning policy OrdererOrg/Readers for evaluation +2018-01-18 09:29:44.175 UTC [policies] CommitProposals -> DEBU 6ee In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +2018-01-18 09:29:44.175 UTC [policies] GetPolicy -> DEBU 6ef Returning policy Admins for evaluation +2018-01-18 09:29:44.175 UTC [policies] CommitProposals -> DEBU 6f0 In commit adding relative sub-policy Orderer/Admins to Channel +2018-01-18 09:29:44.175 UTC [policies] GetPolicy -> DEBU 6f1 Returning policy BlockValidation for evaluation +2018-01-18 09:29:44.175 UTC [policies] CommitProposals -> DEBU 6f2 In commit adding relative sub-policy Orderer/BlockValidation to Channel +2018-01-18 09:29:44.175 UTC [policies] GetPolicy -> DEBU 6f3 Returning policy Readers for evaluation +2018-01-18 09:29:44.175 UTC [policies] CommitProposals -> DEBU 6f4 In commit adding relative sub-policy Orderer/Readers to Channel +2018-01-18 09:29:44.175 UTC [policies] GetPolicy -> DEBU 6f5 Returning policy Writers for evaluation +2018-01-18 09:29:44.175 UTC [policies] CommitProposals -> DEBU 6f6 In commit adding relative sub-policy Orderer/Writers to Channel +2018-01-18 09:29:44.176 UTC [policies] GetPolicy -> DEBU 6f7 Returning policy OrdererOrg/Writers for evaluation +2018-01-18 09:29:44.176 UTC [policies] CommitProposals -> DEBU 6f8 In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +2018-01-18 09:29:44.176 UTC [policies] GetPolicy -> DEBU 6f9 Returning policy Writers for evaluation +2018-01-18 09:29:44.176 UTC [policies] CommitProposals -> DEBU 6fa In commit adding relative sub-policy Application/Writers to Channel +2018-01-18 09:29:44.176 UTC [policies] GetPolicy -> DEBU 6fb Returning policy Org1MSP/Readers for evaluation +2018-01-18 09:29:44.176 UTC [policies] CommitProposals -> DEBU 6fc In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +2018-01-18 09:29:44.176 UTC [policies] GetPolicy -> DEBU 6fd Returning policy Org1MSP/Writers for evaluation +2018-01-18 09:29:44.176 UTC [policies] CommitProposals -> DEBU 6fe In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +2018-01-18 09:29:44.176 UTC [policies] GetPolicy -> DEBU 6ff Returning policy Org2MSP/Writers for evaluation +2018-01-18 09:29:44.176 UTC [policies] CommitProposals -> DEBU 700 In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +2018-01-18 09:29:44.176 UTC [policies] GetPolicy -> DEBU 701 Returning policy Org2MSP/Admins for evaluation +2018-01-18 09:29:44.176 UTC [policies] CommitProposals -> DEBU 702 In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +2018-01-18 09:29:44.176 UTC [policies] GetPolicy -> DEBU 703 Returning policy Org2MSP/Readers for evaluation +2018-01-18 09:29:44.176 UTC [policies] CommitProposals -> DEBU 704 In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +2018-01-18 09:29:44.176 UTC [policies] GetPolicy -> DEBU 705 Returning policy Admins for evaluation +2018-01-18 09:29:44.176 UTC [policies] CommitProposals -> DEBU 706 In commit adding relative sub-policy Application/Admins to Channel +2018-01-18 09:29:44.176 UTC [policies] GetPolicy -> DEBU 707 Returning policy Readers for evaluation +2018-01-18 09:29:44.176 UTC [policies] CommitProposals -> DEBU 708 In commit adding relative sub-policy Application/Readers to Channel +2018-01-18 09:29:44.176 UTC [policies] GetPolicy -> DEBU 709 Returning policy Org1MSP/Admins for evaluation +2018-01-18 09:29:44.176 UTC [policies] CommitProposals -> DEBU 70a In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +2018-01-18 09:29:44.176 UTC [policies] GetPolicy -> DEBU 70b Returning policy Writers for evaluation +2018-01-18 09:29:44.177 UTC [policies] GetPolicy -> DEBU 70c Returning policy Writers for evaluation +2018-01-18 09:29:44.177 UTC [policies] GetPolicy -> DEBU 70d Returning policy Admins for evaluation +2018-01-18 09:29:44.177 UTC [policies] GetPolicy -> DEBU 70e Returning policy Admins for evaluation +2018-01-18 09:29:44.177 UTC [policies] GetPolicy -> DEBU 70f Returning policy Readers for evaluation +2018-01-18 09:29:44.177 UTC [policies] GetPolicy -> DEBU 710 Returning policy Readers for evaluation +2018-01-18 09:29:44.177 UTC [policies] GetPolicy -> DEBU 711 Returning policy Readers for evaluation +2018-01-18 09:29:44.177 UTC [policies] CommitProposals -> DEBU 712 As expected, current configuration has policy '/Channel/Readers' +2018-01-18 09:29:44.177 UTC [policies] GetPolicy -> DEBU 713 Returning policy Writers for evaluation +2018-01-18 09:29:44.177 UTC [policies] CommitProposals -> DEBU 714 As expected, current configuration has policy '/Channel/Writers' +2018-01-18 09:29:44.177 UTC [policies] GetPolicy -> DEBU 715 Returning policy Application/Readers for evaluation +2018-01-18 09:29:44.177 UTC [policies] CommitProposals -> DEBU 716 As expected, current configuration has policy '/Channel/Application/Readers' +2018-01-18 09:29:44.177 UTC [policies] GetPolicy -> DEBU 717 Returning policy Application/Writers for evaluation +2018-01-18 09:29:44.177 UTC [policies] CommitProposals -> DEBU 718 As expected, current configuration has policy '/Channel/Application/Writers' +2018-01-18 09:29:44.178 UTC [policies] GetPolicy -> DEBU 719 Returning policy Application/Admins for evaluation +2018-01-18 09:29:44.178 UTC [policies] CommitProposals -> DEBU 71a As expected, current configuration has policy '/Channel/Application/Admins' +2018-01-18 09:29:44.178 UTC [policies] GetPolicy -> DEBU 71b Returning policy Orderer/BlockValidation for evaluation +2018-01-18 09:29:44.178 UTC [policies] CommitProposals -> DEBU 71c As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +2018-01-18 09:29:44.178 UTC [common/config] NewStandardValues -> DEBU 71d Initializing protos for *config.ChannelProtos +2018-01-18 09:29:44.178 UTC [common/config] initializeProtosStruct -> DEBU 71e Processing field: HashingAlgorithm +2018-01-18 09:29:44.178 UTC [common/config] initializeProtosStruct -> DEBU 71f Processing field: BlockDataHashingStructure +2018-01-18 09:29:44.178 UTC [common/config] initializeProtosStruct -> DEBU 720 Processing field: OrdererAddresses +2018-01-18 09:29:44.178 UTC [common/config] initializeProtosStruct -> DEBU 721 Processing field: Consortium +2018-01-18 09:29:44.179 UTC [common/configtx] addToMap -> DEBU 722 Adding to config map: [Groups] /Channel +2018-01-18 09:29:44.179 UTC [common/configtx] addToMap -> DEBU 723 Adding to config map: [Groups] /Channel/Orderer +2018-01-18 09:29:44.179 UTC [common/configtx] addToMap -> DEBU 724 Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +2018-01-18 09:29:44.179 UTC [common/configtx] addToMap -> DEBU 725 Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +2018-01-18 09:29:44.179 UTC [common/configtx] addToMap -> DEBU 726 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +2018-01-18 09:29:44.179 UTC [common/configtx] addToMap -> DEBU 727 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +2018-01-18 09:29:44.179 UTC [common/configtx] addToMap -> DEBU 728 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +2018-01-18 09:29:44.179 UTC [common/configtx] addToMap -> DEBU 729 Adding to config map: [Values] /Channel/Orderer/BatchSize +2018-01-18 09:29:44.179 UTC [common/configtx] addToMap -> DEBU 72a Adding to config map: [Values] /Channel/Orderer/BatchTimeout +2018-01-18 09:29:44.179 UTC [common/configtx] addToMap -> DEBU 72b Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +2018-01-18 09:29:44.180 UTC [common/configtx] addToMap -> DEBU 72c Adding to config map: [Values] /Channel/Orderer/ConsensusType +2018-01-18 09:29:44.180 UTC [common/configtx] addToMap -> DEBU 72d Adding to config map: [Policy] /Channel/Orderer/Writers +2018-01-18 09:29:44.180 UTC [common/configtx] addToMap -> DEBU 72e Adding to config map: [Policy] /Channel/Orderer/Admins +2018-01-18 09:29:44.180 UTC [common/configtx] addToMap -> DEBU 72f Adding to config map: [Policy] /Channel/Orderer/BlockValidation +2018-01-18 09:29:44.180 UTC [common/configtx] addToMap -> DEBU 730 Adding to config map: [Policy] /Channel/Orderer/Readers +2018-01-18 09:29:44.180 UTC [common/configtx] addToMap -> DEBU 731 Adding to config map: [Groups] /Channel/Application +2018-01-18 09:29:44.180 UTC [common/configtx] addToMap -> DEBU 732 Adding to config map: [Groups] /Channel/Application/Org1MSP +2018-01-18 09:29:44.180 UTC [common/configtx] addToMap -> DEBU 733 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +2018-01-18 09:29:44.181 UTC [common/configtx] addToMap -> DEBU 734 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +2018-01-18 09:29:44.181 UTC [common/configtx] addToMap -> DEBU 735 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +2018-01-18 09:29:44.181 UTC [common/configtx] addToMap -> DEBU 736 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +2018-01-18 09:29:44.181 UTC [common/configtx] addToMap -> DEBU 737 Adding to config map: [Groups] /Channel/Application/Org2MSP +2018-01-18 09:29:44.181 UTC [common/configtx] addToMap -> DEBU 738 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +2018-01-18 09:29:44.181 UTC [common/configtx] addToMap -> DEBU 739 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +2018-01-18 09:29:44.181 UTC [common/configtx] addToMap -> DEBU 73a Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +2018-01-18 09:29:44.182 UTC [common/configtx] addToMap -> DEBU 73b Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +2018-01-18 09:29:44.182 UTC [common/configtx] addToMap -> DEBU 73c Adding to config map: [Policy] /Channel/Application/Writers +2018-01-18 09:29:44.182 UTC [common/configtx] addToMap -> DEBU 73d Adding to config map: [Policy] /Channel/Application/Readers +2018-01-18 09:29:44.182 UTC [common/configtx] addToMap -> DEBU 73e Adding to config map: [Policy] /Channel/Application/Admins +2018-01-18 09:29:44.182 UTC [common/configtx] addToMap -> DEBU 73f Adding to config map: [Values] /Channel/Consortium +2018-01-18 09:29:44.182 UTC [common/configtx] addToMap -> DEBU 740 Adding to config map: [Values] /Channel/BlockDataHashingStructure +2018-01-18 09:29:44.182 UTC [common/configtx] addToMap -> DEBU 741 Adding to config map: [Values] /Channel/OrdererAddresses +2018-01-18 09:29:44.182 UTC [common/configtx] addToMap -> DEBU 742 Adding to config map: [Values] /Channel/HashingAlgorithm +2018-01-18 09:29:44.182 UTC [common/configtx] addToMap -> DEBU 743 Adding to config map: [Policy] /Channel/Writers +2018-01-18 09:29:44.182 UTC [common/configtx] addToMap -> DEBU 744 Adding to config map: [Policy] /Channel/Admins +2018-01-18 09:29:44.183 UTC [common/configtx] addToMap -> DEBU 745 Adding to config map: [Policy] /Channel/Readers +2018-01-18 09:29:44.183 UTC [common/configtx] processConfig -> DEBU 746 Beginning new config for channel businesschannel +2018-01-18 09:29:44.183 UTC [common/config] NewStandardValues -> DEBU 747 Initializing protos for *config.ChannelProtos +2018-01-18 09:29:44.183 UTC [common/config] initializeProtosStruct -> DEBU 748 Processing field: HashingAlgorithm +2018-01-18 09:29:44.183 UTC [common/config] initializeProtosStruct -> DEBU 749 Processing field: BlockDataHashingStructure +2018-01-18 09:29:44.183 UTC [common/config] initializeProtosStruct -> DEBU 74a Processing field: OrdererAddresses +2018-01-18 09:29:44.183 UTC [common/config] initializeProtosStruct -> DEBU 74b Processing field: Consortium +2018-01-18 09:29:44.184 UTC [policies] ProposePolicy -> DEBU 74c Proposed new policy Writers for Channel +2018-01-18 09:29:44.184 UTC [policies] ProposePolicy -> DEBU 74d Proposed new policy Admins for Channel +2018-01-18 09:29:44.184 UTC [policies] ProposePolicy -> DEBU 74e Proposed new policy Readers for Channel +2018-01-18 09:29:44.184 UTC [common/config] NewStandardValues -> DEBU 74f Initializing protos for *struct {} +2018-01-18 09:29:44.184 UTC [policies] ProposePolicy -> DEBU 750 Proposed new policy Admins for Application +2018-01-18 09:29:44.184 UTC [policies] ProposePolicy -> DEBU 751 Proposed new policy Writers for Application +2018-01-18 09:29:44.184 UTC [policies] ProposePolicy -> DEBU 752 Proposed new policy Readers for Application +2018-01-18 09:29:44.184 UTC [common/config] NewStandardValues -> DEBU 753 Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:44.184 UTC [common/config] initializeProtosStruct -> DEBU 754 Processing field: MSP +2018-01-18 09:29:44.184 UTC [common/config] NewStandardValues -> DEBU 755 Initializing protos for *config.ApplicationOrgProtos +2018-01-18 09:29:44.184 UTC [common/config] initializeProtosStruct -> DEBU 756 Processing field: AnchorPeers +2018-01-18 09:29:44.184 UTC [common/config] NewStandardValues -> DEBU 757 Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:44.184 UTC [common/config] initializeProtosStruct -> DEBU 758 Processing field: MSP +2018-01-18 09:29:44.184 UTC [policies] ProposePolicy -> DEBU 759 Proposed new policy Writers for Org2MSP +2018-01-18 09:29:44.185 UTC [policies] ProposePolicy -> DEBU 75a Proposed new policy Admins for Org2MSP +2018-01-18 09:29:44.185 UTC [policies] ProposePolicy -> DEBU 75b Proposed new policy Readers for Org2MSP +2018-01-18 09:29:44.185 UTC [common/config] NewStandardValues -> DEBU 75c Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:44.185 UTC [common/config] initializeProtosStruct -> DEBU 75d Processing field: MSP +2018-01-18 09:29:44.185 UTC [common/config] NewStandardValues -> DEBU 75e Initializing protos for *config.ApplicationOrgProtos +2018-01-18 09:29:44.185 UTC [common/config] initializeProtosStruct -> DEBU 75f Processing field: AnchorPeers +2018-01-18 09:29:44.185 UTC [common/config] NewStandardValues -> DEBU 760 Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:44.185 UTC [common/config] initializeProtosStruct -> DEBU 761 Processing field: MSP +2018-01-18 09:29:44.185 UTC [policies] ProposePolicy -> DEBU 762 Proposed new policy Admins for Org1MSP +2018-01-18 09:29:44.185 UTC [policies] ProposePolicy -> DEBU 763 Proposed new policy Readers for Org1MSP +2018-01-18 09:29:44.185 UTC [policies] ProposePolicy -> DEBU 764 Proposed new policy Writers for Org1MSP +2018-01-18 09:29:44.185 UTC [common/config] NewStandardValues -> DEBU 765 Initializing protos for *config.OrdererProtos +2018-01-18 09:29:44.186 UTC [common/config] initializeProtosStruct -> DEBU 766 Processing field: ConsensusType +2018-01-18 09:29:44.186 UTC [common/config] initializeProtosStruct -> DEBU 767 Processing field: BatchSize +2018-01-18 09:29:44.186 UTC [common/config] initializeProtosStruct -> DEBU 768 Processing field: BatchTimeout +2018-01-18 09:29:44.186 UTC [common/config] initializeProtosStruct -> DEBU 769 Processing field: KafkaBrokers +2018-01-18 09:29:44.187 UTC [common/config] initializeProtosStruct -> DEBU 76a Processing field: ChannelRestrictions +2018-01-18 09:29:44.187 UTC [policies] ProposePolicy -> DEBU 76b Proposed new policy Readers for Orderer +2018-01-18 09:29:44.187 UTC [policies] ProposePolicy -> DEBU 76c Proposed new policy Writers for Orderer +2018-01-18 09:29:44.187 UTC [policies] ProposePolicy -> DEBU 76d Proposed new policy Admins for Orderer +2018-01-18 09:29:44.187 UTC [policies] ProposePolicy -> DEBU 76e Proposed new policy BlockValidation for Orderer +2018-01-18 09:29:44.187 UTC [common/config] NewStandardValues -> DEBU 76f Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:44.187 UTC [common/config] initializeProtosStruct -> DEBU 770 Processing field: MSP +2018-01-18 09:29:44.187 UTC [policies] ProposePolicy -> DEBU 771 Proposed new policy Readers for OrdererOrg +2018-01-18 09:29:44.187 UTC [policies] ProposePolicy -> DEBU 772 Proposed new policy Writers for OrdererOrg +2018-01-18 09:29:44.187 UTC [policies] ProposePolicy -> DEBU 773 Proposed new policy Admins for OrdererOrg +2018-01-18 09:29:44.188 UTC [common/config] Validate -> DEBU 774 Anchor peers for org Org2MSP are +2018-01-18 09:29:44.188 UTC [common/config] validateMSP -> DEBU 775 Setting up MSP for org Org2MSP +2018-01-18 09:29:44.188 UTC [msp] NewBccspMsp -> DEBU 776 Creating BCCSP-based MSP instance +2018-01-18 09:29:44.188 UTC [msp] Setup -> DEBU 777 Setting up MSP instance Org2MSP +2018-01-18 09:29:44.188 UTC [msp/identity] newIdentity -> DEBU 778 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 +sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ +xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv +WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk +SCjyRdD3aQ== +-----END CERTIFICATE----- +2018-01-18 09:29:44.188 UTC [msp/identity] newIdentity -> DEBU 779 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +AXYxULZpXYDQXt1KaLI= +-----END CERTIFICATE----- +2018-01-18 09:29:44.189 UTC [msp/identity] newIdentity -> DEBU 77a Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +AXYxULZpXYDQXt1KaLI= +-----END CERTIFICATE----- +2018-01-18 09:29:44.191 UTC [msp] Validate -> DEBU 77b MSP Org2MSP validating identity +2018-01-18 09:29:44.191 UTC [common/config] Validate -> DEBU 77c Anchor peers for org Org1MSP are +2018-01-18 09:29:44.191 UTC [common/config] validateMSP -> DEBU 77d Setting up MSP for org Org1MSP +2018-01-18 09:29:44.191 UTC [msp] NewBccspMsp -> DEBU 77e Creating BCCSP-based MSP instance +2018-01-18 09:29:44.191 UTC [msp] Setup -> DEBU 77f Setting up MSP instance Org1MSP +2018-01-18 09:29:44.191 UTC [msp/identity] newIdentity -> DEBU 780 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -3588,7 +3384,7 @@ JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ H7n8z1pj5w== -----END CERTIFICATE----- -2018-01-18 01:58:52.102 UTC [msp/identity] newIdentity -> DEBU 827 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:44.192 UTC [msp/identity] newIdentity -> DEBU 781 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -3602,7 +3398,7 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-18 01:58:52.103 UTC [msp/identity] newIdentity -> DEBU 828 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:44.193 UTC [msp/identity] newIdentity -> DEBU 782 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -3616,12 +3412,276 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-18 01:58:52.103 UTC [msp] Validate -> DEBU 829 MSP Org1MSP validating identity -2018-01-18 01:58:52.103 UTC [common/config] Validate -> DEBU 82a Anchor peers for org Org2MSP are -2018-01-18 01:58:52.103 UTC [common/config] validateMSP -> DEBU 82b Setting up MSP for org Org2MSP -2018-01-18 01:58:52.103 UTC [msp] NewBccspMsp -> DEBU 82c Creating BCCSP-based MSP instance -2018-01-18 01:58:52.103 UTC [msp] Setup -> DEBU 82d Setting up MSP instance Org2MSP -2018-01-18 01:58:52.104 UTC [msp/identity] newIdentity -> DEBU 82e Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:44.194 UTC [msp] Validate -> DEBU 783 MSP Org1MSP validating identity +2018-01-18 09:29:44.194 UTC [common/config] validateMSP -> DEBU 784 Setting up MSP for org OrdererOrg +2018-01-18 09:29:44.194 UTC [msp] NewBccspMsp -> DEBU 785 Creating BCCSP-based MSP instance +2018-01-18 09:29:44.194 UTC [msp] Setup -> DEBU 786 Setting up MSP instance OrdererMSP +2018-01-18 09:29:44.195 UTC [msp/identity] newIdentity -> DEBU 787 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW +gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w +XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK +BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs +KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= +-----END CERTIFICATE----- +2018-01-18 09:29:44.196 UTC [msp/identity] newIdentity -> DEBU 788 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-18 09:29:44.196 UTC [msp/identity] newIdentity -> DEBU 789 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-18 09:29:44.198 UTC [msp] Validate -> DEBU 78a MSP OrdererMSP validating identity +2018-01-18 09:29:44.199 UTC [msp] Setup -> DEBU 78b Setting up the MSP manager (3 msps) +2018-01-18 09:29:44.199 UTC [msp] Setup -> DEBU 78c MSP manager setup complete, setup 3 msps +2018-01-18 09:29:44.199 UTC [policies] GetPolicy -> DEBU 78d Returning policy Writers for evaluation +2018-01-18 09:29:44.199 UTC [policies] CommitProposals -> DEBU 78e In commit adding relative sub-policy Org1MSP/Writers to Application +2018-01-18 09:29:44.199 UTC [policies] GetPolicy -> DEBU 78f Returning policy Admins for evaluation +2018-01-18 09:29:44.199 UTC [policies] CommitProposals -> DEBU 790 In commit adding relative sub-policy Org1MSP/Admins to Application +2018-01-18 09:29:44.199 UTC [policies] GetPolicy -> DEBU 791 Returning policy Readers for evaluation +2018-01-18 09:29:44.199 UTC [policies] CommitProposals -> DEBU 792 In commit adding relative sub-policy Org1MSP/Readers to Application +2018-01-18 09:29:44.199 UTC [policies] GetPolicy -> DEBU 793 Returning policy Writers for evaluation +2018-01-18 09:29:44.199 UTC [policies] CommitProposals -> DEBU 794 In commit adding relative sub-policy Org2MSP/Writers to Application +2018-01-18 09:29:44.199 UTC [policies] GetPolicy -> DEBU 795 Returning policy Admins for evaluation +2018-01-18 09:29:44.199 UTC [policies] CommitProposals -> DEBU 796 In commit adding relative sub-policy Org2MSP/Admins to Application +2018-01-18 09:29:44.199 UTC [policies] GetPolicy -> DEBU 797 Returning policy Readers for evaluation +2018-01-18 09:29:44.199 UTC [policies] CommitProposals -> DEBU 798 In commit adding relative sub-policy Org2MSP/Readers to Application +2018-01-18 09:29:44.199 UTC [policies] GetPolicy -> DEBU 799 Returning policy Admins for evaluation +2018-01-18 09:29:44.199 UTC [policies] GetPolicy -> DEBU 79a Returning policy Admins for evaluation +2018-01-18 09:29:44.199 UTC [policies] GetPolicy -> DEBU 79b Returning policy Writers for evaluation +2018-01-18 09:29:44.199 UTC [policies] GetPolicy -> DEBU 79c Returning policy Writers for evaluation +2018-01-18 09:29:44.199 UTC [policies] GetPolicy -> DEBU 79d Returning policy Readers for evaluation +2018-01-18 09:29:44.199 UTC [policies] GetPolicy -> DEBU 79e Returning policy Readers for evaluation +2018-01-18 09:29:44.199 UTC [policies] GetPolicy -> DEBU 79f Returning policy Readers for evaluation +2018-01-18 09:29:44.199 UTC [policies] CommitProposals -> DEBU 7a0 In commit adding relative sub-policy OrdererOrg/Readers to Orderer +2018-01-18 09:29:44.200 UTC [policies] GetPolicy -> DEBU 7a1 Returning policy Writers for evaluation +2018-01-18 09:29:44.200 UTC [policies] CommitProposals -> DEBU 7a2 In commit adding relative sub-policy OrdererOrg/Writers to Orderer +2018-01-18 09:29:44.200 UTC [policies] GetPolicy -> DEBU 7a3 Returning policy Admins for evaluation +2018-01-18 09:29:44.200 UTC [policies] CommitProposals -> DEBU 7a4 In commit adding relative sub-policy OrdererOrg/Admins to Orderer +2018-01-18 09:29:44.200 UTC [policies] GetPolicy -> DEBU 7a5 Returning policy Readers for evaluation +2018-01-18 09:29:44.200 UTC [policies] GetPolicy -> DEBU 7a6 Returning policy Writers for evaluation +2018-01-18 09:29:44.200 UTC [policies] GetPolicy -> DEBU 7a7 Returning policy Admins for evaluation +2018-01-18 09:29:44.200 UTC [policies] GetPolicy -> DEBU 7a8 Returning policy Writers for evaluation +2018-01-18 09:29:44.200 UTC [policies] GetPolicy -> DEBU 7a9 Returning policy Readers for evaluation +2018-01-18 09:29:44.200 UTC [policies] CommitProposals -> DEBU 7aa In commit adding relative sub-policy Application/Readers to Channel +2018-01-18 09:29:44.200 UTC [policies] GetPolicy -> DEBU 7ab Returning policy Org1MSP/Writers for evaluation +2018-01-18 09:29:44.200 UTC [policies] CommitProposals -> DEBU 7ac In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +2018-01-18 09:29:44.200 UTC [policies] GetPolicy -> DEBU 7ad Returning policy Org2MSP/Readers for evaluation +2018-01-18 09:29:44.200 UTC [policies] CommitProposals -> DEBU 7ae In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +2018-01-18 09:29:44.200 UTC [policies] GetPolicy -> DEBU 7af Returning policy Org1MSP/Readers for evaluation +2018-01-18 09:29:44.200 UTC [policies] CommitProposals -> DEBU 7b0 In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +2018-01-18 09:29:44.200 UTC [policies] GetPolicy -> DEBU 7b1 Returning policy Org2MSP/Writers for evaluation +2018-01-18 09:29:44.200 UTC [policies] CommitProposals -> DEBU 7b2 In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +2018-01-18 09:29:44.200 UTC [policies] GetPolicy -> DEBU 7b3 Returning policy Org2MSP/Admins for evaluation +2018-01-18 09:29:44.200 UTC [policies] CommitProposals -> DEBU 7b4 In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +2018-01-18 09:29:44.200 UTC [policies] GetPolicy -> DEBU 7b5 Returning policy Admins for evaluation +2018-01-18 09:29:44.200 UTC [policies] CommitProposals -> DEBU 7b6 In commit adding relative sub-policy Application/Admins to Channel +2018-01-18 09:29:44.200 UTC [policies] GetPolicy -> DEBU 7b7 Returning policy Writers for evaluation +2018-01-18 09:29:44.200 UTC [policies] CommitProposals -> DEBU 7b8 In commit adding relative sub-policy Application/Writers to Channel +2018-01-18 09:29:44.200 UTC [policies] GetPolicy -> DEBU 7b9 Returning policy Org1MSP/Admins for evaluation +2018-01-18 09:29:44.200 UTC [policies] CommitProposals -> DEBU 7ba In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +2018-01-18 09:29:44.200 UTC [policies] GetPolicy -> DEBU 7bb Returning policy OrdererOrg/Readers for evaluation +2018-01-18 09:29:44.200 UTC [policies] CommitProposals -> DEBU 7bc In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +2018-01-18 09:29:44.200 UTC [policies] GetPolicy -> DEBU 7bd Returning policy OrdererOrg/Writers for evaluation +2018-01-18 09:29:44.200 UTC [policies] CommitProposals -> DEBU 7be In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +2018-01-18 09:29:44.200 UTC [policies] GetPolicy -> DEBU 7bf Returning policy OrdererOrg/Admins for evaluation +2018-01-18 09:29:44.200 UTC [policies] CommitProposals -> DEBU 7c0 In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +2018-01-18 09:29:44.200 UTC [policies] GetPolicy -> DEBU 7c1 Returning policy Readers for evaluation +2018-01-18 09:29:44.201 UTC [policies] CommitProposals -> DEBU 7c2 In commit adding relative sub-policy Orderer/Readers to Channel +2018-01-18 09:29:44.201 UTC [policies] GetPolicy -> DEBU 7c3 Returning policy Writers for evaluation +2018-01-18 09:29:44.201 UTC [policies] CommitProposals -> DEBU 7c4 In commit adding relative sub-policy Orderer/Writers to Channel +2018-01-18 09:29:44.201 UTC [policies] GetPolicy -> DEBU 7c5 Returning policy Admins for evaluation +2018-01-18 09:29:44.201 UTC [policies] CommitProposals -> DEBU 7c6 In commit adding relative sub-policy Orderer/Admins to Channel +2018-01-18 09:29:44.201 UTC [policies] GetPolicy -> DEBU 7c7 Returning policy BlockValidation for evaluation +2018-01-18 09:29:44.201 UTC [policies] CommitProposals -> DEBU 7c8 In commit adding relative sub-policy Orderer/BlockValidation to Channel +2018-01-18 09:29:44.201 UTC [policies] GetPolicy -> DEBU 7c9 Returning policy Writers for evaluation +2018-01-18 09:29:44.201 UTC [policies] GetPolicy -> DEBU 7ca Returning policy Writers for evaluation +2018-01-18 09:29:44.202 UTC [policies] GetPolicy -> DEBU 7cb Returning policy Admins for evaluation +2018-01-18 09:29:44.202 UTC [policies] GetPolicy -> DEBU 7cc Returning policy Admins for evaluation +2018-01-18 09:29:44.202 UTC [policies] GetPolicy -> DEBU 7cd Returning policy Readers for evaluation +2018-01-18 09:29:44.202 UTC [policies] GetPolicy -> DEBU 7ce Returning policy Readers for evaluation +2018-01-18 09:29:44.202 UTC [policies] GetPolicy -> DEBU 7cf Returning policy Readers for evaluation +2018-01-18 09:29:44.202 UTC [policies] CommitProposals -> DEBU 7d0 As expected, current configuration has policy '/Channel/Readers' +2018-01-18 09:29:44.202 UTC [policies] GetPolicy -> DEBU 7d1 Returning policy Writers for evaluation +2018-01-18 09:29:44.202 UTC [policies] CommitProposals -> DEBU 7d2 As expected, current configuration has policy '/Channel/Writers' +2018-01-18 09:29:44.202 UTC [policies] GetPolicy -> DEBU 7d3 Returning policy Application/Readers for evaluation +2018-01-18 09:29:44.202 UTC [policies] CommitProposals -> DEBU 7d4 As expected, current configuration has policy '/Channel/Application/Readers' +2018-01-18 09:29:44.203 UTC [policies] GetPolicy -> DEBU 7d5 Returning policy Application/Writers for evaluation +2018-01-18 09:29:44.203 UTC [policies] CommitProposals -> DEBU 7d6 As expected, current configuration has policy '/Channel/Application/Writers' +2018-01-18 09:29:44.203 UTC [policies] GetPolicy -> DEBU 7d7 Returning policy Application/Admins for evaluation +2018-01-18 09:29:44.203 UTC [policies] CommitProposals -> DEBU 7d8 As expected, current configuration has policy '/Channel/Application/Admins' +2018-01-18 09:29:44.203 UTC [policies] GetPolicy -> DEBU 7d9 Returning policy Orderer/BlockValidation for evaluation +2018-01-18 09:29:44.203 UTC [policies] CommitProposals -> DEBU 7da As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +2018-01-18 09:29:44.203 UTC [orderer/common/blockcutter] Ordered -> DEBU 7db Found message which requested to be isolated, cutting into its own batch +2018-01-18 09:29:44.203 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 7dc retrieveBlockByNumber() - blockNum = [0] +2018-01-18 09:29:44.203 UTC [fsblkstorage] newBlockfileStream -> DEBU 7dd newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +2018-01-18 09:29:44.204 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 7de Remaining bytes=[9082], Going to peek [8] bytes +2018-01-18 09:29:44.204 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 7df Returning blockbytes - length=[9080], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +2018-01-18 09:29:44.204 UTC [common/config] NewStandardValues -> DEBU 7e0 Initializing protos for *config.ChannelProtos +2018-01-18 09:29:44.205 UTC [common/config] initializeProtosStruct -> DEBU 7e1 Processing field: HashingAlgorithm +2018-01-18 09:29:44.205 UTC [common/config] initializeProtosStruct -> DEBU 7e2 Processing field: BlockDataHashingStructure +2018-01-18 09:29:44.205 UTC [common/config] initializeProtosStruct -> DEBU 7e3 Processing field: OrdererAddresses +2018-01-18 09:29:44.205 UTC [common/config] initializeProtosStruct -> DEBU 7e4 Processing field: Consortium +2018-01-18 09:29:44.205 UTC [common/configtx] addToMap -> DEBU 7e5 Adding to config map: [Groups] /Channel +2018-01-18 09:29:44.205 UTC [common/configtx] addToMap -> DEBU 7e6 Adding to config map: [Groups] /Channel/Orderer +2018-01-18 09:29:44.205 UTC [common/configtx] addToMap -> DEBU 7e7 Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +2018-01-18 09:29:44.206 UTC [common/configtx] addToMap -> DEBU 7e8 Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +2018-01-18 09:29:44.206 UTC [common/configtx] addToMap -> DEBU 7e9 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +2018-01-18 09:29:44.206 UTC [common/configtx] addToMap -> DEBU 7ea Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +2018-01-18 09:29:44.206 UTC [common/configtx] addToMap -> DEBU 7eb Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +2018-01-18 09:29:44.206 UTC [common/configtx] addToMap -> DEBU 7ec Adding to config map: [Values] /Channel/Orderer/ConsensusType +2018-01-18 09:29:44.206 UTC [common/configtx] addToMap -> DEBU 7ed Adding to config map: [Values] /Channel/Orderer/BatchSize +2018-01-18 09:29:44.206 UTC [common/configtx] addToMap -> DEBU 7ee Adding to config map: [Values] /Channel/Orderer/BatchTimeout +2018-01-18 09:29:44.207 UTC [common/configtx] addToMap -> DEBU 7ef Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +2018-01-18 09:29:44.207 UTC [common/configtx] addToMap -> DEBU 7f0 Adding to config map: [Policy] /Channel/Orderer/BlockValidation +2018-01-18 09:29:44.207 UTC [common/configtx] addToMap -> DEBU 7f1 Adding to config map: [Policy] /Channel/Orderer/Readers +2018-01-18 09:29:44.207 UTC [common/configtx] addToMap -> DEBU 7f2 Adding to config map: [Policy] /Channel/Orderer/Writers +2018-01-18 09:29:44.207 UTC [common/configtx] addToMap -> DEBU 7f3 Adding to config map: [Policy] /Channel/Orderer/Admins +2018-01-18 09:29:44.207 UTC [common/configtx] addToMap -> DEBU 7f4 Adding to config map: [Groups] /Channel/Application +2018-01-18 09:29:44.207 UTC [common/configtx] addToMap -> DEBU 7f5 Adding to config map: [Groups] /Channel/Application/Org1MSP +2018-01-18 09:29:44.207 UTC [common/configtx] addToMap -> DEBU 7f6 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +2018-01-18 09:29:44.207 UTC [common/configtx] addToMap -> DEBU 7f7 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +2018-01-18 09:29:44.208 UTC [common/configtx] addToMap -> DEBU 7f8 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +2018-01-18 09:29:44.208 UTC [common/configtx] addToMap -> DEBU 7f9 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +2018-01-18 09:29:44.208 UTC [common/configtx] addToMap -> DEBU 7fa Adding to config map: [Groups] /Channel/Application/Org2MSP +2018-01-18 09:29:44.208 UTC [common/configtx] addToMap -> DEBU 7fb Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +2018-01-18 09:29:44.208 UTC [common/configtx] addToMap -> DEBU 7fc Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +2018-01-18 09:29:44.209 UTC [common/configtx] addToMap -> DEBU 7fd Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +2018-01-18 09:29:44.209 UTC [common/configtx] addToMap -> DEBU 7fe Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +2018-01-18 09:29:44.209 UTC [common/configtx] addToMap -> DEBU 7ff Adding to config map: [Policy] /Channel/Application/Admins +2018-01-18 09:29:44.209 UTC [common/configtx] addToMap -> DEBU 800 Adding to config map: [Policy] /Channel/Application/Writers +2018-01-18 09:29:44.209 UTC [common/configtx] addToMap -> DEBU 801 Adding to config map: [Policy] /Channel/Application/Readers +2018-01-18 09:29:44.209 UTC [common/configtx] addToMap -> DEBU 802 Adding to config map: [Values] /Channel/Consortium +2018-01-18 09:29:44.209 UTC [common/configtx] addToMap -> DEBU 803 Adding to config map: [Values] /Channel/BlockDataHashingStructure +2018-01-18 09:29:44.209 UTC [common/configtx] addToMap -> DEBU 804 Adding to config map: [Values] /Channel/OrdererAddresses +2018-01-18 09:29:44.209 UTC [common/configtx] addToMap -> DEBU 805 Adding to config map: [Values] /Channel/HashingAlgorithm +2018-01-18 09:29:44.210 UTC [common/configtx] addToMap -> DEBU 806 Adding to config map: [Policy] /Channel/Writers +2018-01-18 09:29:44.210 UTC [common/configtx] addToMap -> DEBU 807 Adding to config map: [Policy] /Channel/Admins +2018-01-18 09:29:44.210 UTC [common/configtx] addToMap -> DEBU 808 Adding to config map: [Policy] /Channel/Readers +2018-01-18 09:29:44.210 UTC [common/configtx] processConfig -> DEBU 809 Beginning new config for channel businesschannel +2018-01-18 09:29:44.210 UTC [common/config] NewStandardValues -> DEBU 80a Initializing protos for *config.ChannelProtos +2018-01-18 09:29:44.210 UTC [common/config] initializeProtosStruct -> DEBU 80b Processing field: HashingAlgorithm +2018-01-18 09:29:44.210 UTC [common/config] initializeProtosStruct -> DEBU 80c Processing field: BlockDataHashingStructure +2018-01-18 09:29:44.210 UTC [common/config] initializeProtosStruct -> DEBU 80d Processing field: OrdererAddresses +2018-01-18 09:29:44.210 UTC [common/config] initializeProtosStruct -> DEBU 80e Processing field: Consortium +2018-01-18 09:29:44.210 UTC [policies] ProposePolicy -> DEBU 80f Proposed new policy Writers for Channel +2018-01-18 09:29:44.210 UTC [policies] ProposePolicy -> DEBU 810 Proposed new policy Admins for Channel +2018-01-18 09:29:44.210 UTC [policies] ProposePolicy -> DEBU 811 Proposed new policy Readers for Channel +2018-01-18 09:29:44.210 UTC [common/config] NewStandardValues -> DEBU 812 Initializing protos for *struct {} +2018-01-18 09:29:44.210 UTC [policies] ProposePolicy -> DEBU 813 Proposed new policy Admins for Application +2018-01-18 09:29:44.211 UTC [policies] ProposePolicy -> DEBU 814 Proposed new policy Writers for Application +2018-01-18 09:29:44.211 UTC [policies] ProposePolicy -> DEBU 815 Proposed new policy Readers for Application +2018-01-18 09:29:44.211 UTC [common/config] NewStandardValues -> DEBU 816 Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:44.211 UTC [common/config] initializeProtosStruct -> DEBU 817 Processing field: MSP +2018-01-18 09:29:44.211 UTC [common/config] NewStandardValues -> DEBU 818 Initializing protos for *config.ApplicationOrgProtos +2018-01-18 09:29:44.211 UTC [common/config] initializeProtosStruct -> DEBU 819 Processing field: AnchorPeers +2018-01-18 09:29:44.211 UTC [common/config] NewStandardValues -> DEBU 81a Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:44.211 UTC [common/config] initializeProtosStruct -> DEBU 81b Processing field: MSP +2018-01-18 09:29:44.211 UTC [policies] ProposePolicy -> DEBU 81c Proposed new policy Admins for Org1MSP +2018-01-18 09:29:44.211 UTC [policies] ProposePolicy -> DEBU 81d Proposed new policy Readers for Org1MSP +2018-01-18 09:29:44.211 UTC [policies] ProposePolicy -> DEBU 81e Proposed new policy Writers for Org1MSP +2018-01-18 09:29:44.211 UTC [common/config] NewStandardValues -> DEBU 81f Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:44.212 UTC [common/config] initializeProtosStruct -> DEBU 820 Processing field: MSP +2018-01-18 09:29:44.212 UTC [common/config] NewStandardValues -> DEBU 821 Initializing protos for *config.ApplicationOrgProtos +2018-01-18 09:29:44.212 UTC [common/config] initializeProtosStruct -> DEBU 822 Processing field: AnchorPeers +2018-01-18 09:29:44.212 UTC [common/config] NewStandardValues -> DEBU 823 Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:44.212 UTC [common/config] initializeProtosStruct -> DEBU 824 Processing field: MSP +2018-01-18 09:29:44.212 UTC [policies] ProposePolicy -> DEBU 825 Proposed new policy Writers for Org2MSP +2018-01-18 09:29:44.212 UTC [policies] ProposePolicy -> DEBU 826 Proposed new policy Admins for Org2MSP +2018-01-18 09:29:44.213 UTC [policies] ProposePolicy -> DEBU 827 Proposed new policy Readers for Org2MSP +2018-01-18 09:29:44.213 UTC [common/config] NewStandardValues -> DEBU 828 Initializing protos for *config.OrdererProtos +2018-01-18 09:29:44.213 UTC [common/config] initializeProtosStruct -> DEBU 829 Processing field: ConsensusType +2018-01-18 09:29:44.213 UTC [common/config] initializeProtosStruct -> DEBU 82a Processing field: BatchSize +2018-01-18 09:29:44.213 UTC [common/config] initializeProtosStruct -> DEBU 82b Processing field: BatchTimeout +2018-01-18 09:29:44.213 UTC [common/config] initializeProtosStruct -> DEBU 82c Processing field: KafkaBrokers +2018-01-18 09:29:44.213 UTC [common/config] initializeProtosStruct -> DEBU 82d Processing field: ChannelRestrictions +2018-01-18 09:29:44.213 UTC [policies] ProposePolicy -> DEBU 82e Proposed new policy BlockValidation for Orderer +2018-01-18 09:29:44.213 UTC [policies] ProposePolicy -> DEBU 82f Proposed new policy Readers for Orderer +2018-01-18 09:29:44.213 UTC [policies] ProposePolicy -> DEBU 830 Proposed new policy Writers for Orderer +2018-01-18 09:29:44.213 UTC [policies] ProposePolicy -> DEBU 831 Proposed new policy Admins for Orderer +2018-01-18 09:29:44.213 UTC [common/config] NewStandardValues -> DEBU 832 Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:44.213 UTC [common/config] initializeProtosStruct -> DEBU 833 Processing field: MSP +2018-01-18 09:29:44.213 UTC [policies] ProposePolicy -> DEBU 834 Proposed new policy Admins for OrdererOrg +2018-01-18 09:29:44.213 UTC [policies] ProposePolicy -> DEBU 835 Proposed new policy Readers for OrdererOrg +2018-01-18 09:29:44.214 UTC [policies] ProposePolicy -> DEBU 836 Proposed new policy Writers for OrdererOrg +2018-01-18 09:29:44.214 UTC [common/config] Validate -> DEBU 837 Anchor peers for org Org1MSP are +2018-01-18 09:29:44.214 UTC [common/config] validateMSP -> DEBU 838 Setting up MSP for org Org1MSP +2018-01-18 09:29:44.214 UTC [msp] NewBccspMsp -> DEBU 839 Creating BCCSP-based MSP instance +2018-01-18 09:29:44.214 UTC [msp] Setup -> DEBU 83a Setting up MSP instance Org1MSP +2018-01-18 09:29:44.215 UTC [msp/identity] newIdentity -> DEBU 83b Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf +db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx +JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi +/IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ +H7n8z1pj5w== +-----END CERTIFICATE----- +2018-01-18 09:29:44.216 UTC [msp/identity] newIdentity -> DEBU 83c Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +xHTBvxfK6mAzmUitFmY= +-----END CERTIFICATE----- +2018-01-18 09:29:44.216 UTC [msp/identity] newIdentity -> DEBU 83d Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +xHTBvxfK6mAzmUitFmY= +-----END CERTIFICATE----- +2018-01-18 09:29:44.217 UTC [msp] Validate -> DEBU 83e MSP Org1MSP validating identity +2018-01-18 09:29:44.218 UTC [common/config] Validate -> DEBU 83f Anchor peers for org Org2MSP are +2018-01-18 09:29:44.218 UTC [common/config] validateMSP -> DEBU 840 Setting up MSP for org Org2MSP +2018-01-18 09:29:44.218 UTC [msp] NewBccspMsp -> DEBU 841 Creating BCCSP-based MSP instance +2018-01-18 09:29:44.218 UTC [msp] Setup -> DEBU 842 Setting up MSP instance Org2MSP +2018-01-18 09:29:44.218 UTC [msp/identity] newIdentity -> DEBU 843 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -3636,7 +3696,7 @@ xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk SCjyRdD3aQ== -----END CERTIFICATE----- -2018-01-18 01:58:52.104 UTC [msp/identity] newIdentity -> DEBU 82f Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:44.219 UTC [msp/identity] newIdentity -> DEBU 844 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -3650,7 +3710,7 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS AXYxULZpXYDQXt1KaLI= -----END CERTIFICATE----- -2018-01-18 01:58:52.104 UTC [msp/identity] newIdentity -> DEBU 830 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:44.222 UTC [msp/identity] newIdentity -> DEBU 845 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -3664,11 +3724,11 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS AXYxULZpXYDQXt1KaLI= -----END CERTIFICATE----- -2018-01-18 01:58:52.105 UTC [msp] Validate -> DEBU 831 MSP Org2MSP validating identity -2018-01-18 01:58:52.105 UTC [common/config] validateMSP -> DEBU 832 Setting up MSP for org OrdererOrg -2018-01-18 01:58:52.105 UTC [msp] NewBccspMsp -> DEBU 833 Creating BCCSP-based MSP instance -2018-01-18 01:58:52.105 UTC [msp] Setup -> DEBU 834 Setting up MSP instance OrdererMSP -2018-01-18 01:58:52.105 UTC [msp/identity] newIdentity -> DEBU 835 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:44.223 UTC [msp] Validate -> DEBU 846 MSP Org2MSP validating identity +2018-01-18 09:29:44.224 UTC [common/config] validateMSP -> DEBU 847 Setting up MSP for org OrdererOrg +2018-01-18 09:29:44.224 UTC [msp] NewBccspMsp -> DEBU 848 Creating BCCSP-based MSP instance +2018-01-18 09:29:44.224 UTC [msp] Setup -> DEBU 849 Setting up MSP instance OrdererMSP +2018-01-18 09:29:44.224 UTC [msp/identity] newIdentity -> DEBU 84a Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -3682,7 +3742,7 @@ AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= -----END CERTIFICATE----- -2018-01-18 01:58:52.106 UTC [msp/identity] newIdentity -> DEBU 836 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:44.225 UTC [msp/identity] newIdentity -> DEBU 84b Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -3695,7 +3755,7 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -----END CERTIFICATE----- -2018-01-18 01:58:52.106 UTC [msp/identity] newIdentity -> DEBU 837 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:44.226 UTC [msp/identity] newIdentity -> DEBU 84c Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -3708,132 +3768,132 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -----END CERTIFICATE----- -2018-01-18 01:58:52.106 UTC [msp] Validate -> DEBU 838 MSP OrdererMSP validating identity -2018-01-18 01:58:52.106 UTC [msp] Setup -> DEBU 839 Setting up the MSP manager (3 msps) -2018-01-18 01:58:52.106 UTC [msp] Setup -> DEBU 83a MSP manager setup complete, setup 3 msps -2018-01-18 01:58:52.106 UTC [policies] GetPolicy -> DEBU 83b Returning policy Admins for evaluation -2018-01-18 01:58:52.106 UTC [policies] CommitProposals -> DEBU 83c In commit adding relative sub-policy Org1MSP/Admins to Application -2018-01-18 01:58:52.106 UTC [policies] GetPolicy -> DEBU 83d Returning policy Readers for evaluation -2018-01-18 01:58:52.106 UTC [policies] CommitProposals -> DEBU 83e In commit adding relative sub-policy Org1MSP/Readers to Application -2018-01-18 01:58:52.106 UTC [policies] GetPolicy -> DEBU 83f Returning policy Writers for evaluation -2018-01-18 01:58:52.106 UTC [policies] CommitProposals -> DEBU 840 In commit adding relative sub-policy Org1MSP/Writers to Application -2018-01-18 01:58:52.106 UTC [policies] GetPolicy -> DEBU 841 Returning policy Admins for evaluation -2018-01-18 01:58:52.107 UTC [policies] CommitProposals -> DEBU 842 In commit adding relative sub-policy Org2MSP/Admins to Application -2018-01-18 01:58:52.107 UTC [policies] GetPolicy -> DEBU 843 Returning policy Readers for evaluation -2018-01-18 01:58:52.107 UTC [policies] CommitProposals -> DEBU 844 In commit adding relative sub-policy Org2MSP/Readers to Application -2018-01-18 01:58:52.107 UTC [policies] GetPolicy -> DEBU 845 Returning policy Writers for evaluation -2018-01-18 01:58:52.107 UTC [policies] CommitProposals -> DEBU 846 In commit adding relative sub-policy Org2MSP/Writers to Application -2018-01-18 01:58:52.107 UTC [policies] GetPolicy -> DEBU 847 Returning policy Admins for evaluation -2018-01-18 01:58:52.107 UTC [policies] GetPolicy -> DEBU 848 Returning policy Admins for evaluation -2018-01-18 01:58:52.107 UTC [policies] GetPolicy -> DEBU 849 Returning policy Writers for evaluation -2018-01-18 01:58:52.107 UTC [policies] GetPolicy -> DEBU 84a Returning policy Writers for evaluation -2018-01-18 01:58:52.107 UTC [policies] GetPolicy -> DEBU 84b Returning policy Readers for evaluation -2018-01-18 01:58:52.107 UTC [policies] GetPolicy -> DEBU 84c Returning policy Readers for evaluation -2018-01-18 01:58:52.107 UTC [policies] GetPolicy -> DEBU 84d Returning policy Admins for evaluation -2018-01-18 01:58:52.107 UTC [policies] CommitProposals -> DEBU 84e In commit adding relative sub-policy OrdererOrg/Admins to Orderer -2018-01-18 01:58:52.107 UTC [policies] GetPolicy -> DEBU 84f Returning policy Readers for evaluation -2018-01-18 01:58:52.107 UTC [policies] CommitProposals -> DEBU 850 In commit adding relative sub-policy OrdererOrg/Readers to Orderer -2018-01-18 01:58:52.107 UTC [policies] GetPolicy -> DEBU 851 Returning policy Writers for evaluation -2018-01-18 01:58:52.107 UTC [policies] CommitProposals -> DEBU 852 In commit adding relative sub-policy OrdererOrg/Writers to Orderer -2018-01-18 01:58:52.107 UTC [policies] GetPolicy -> DEBU 853 Returning policy Writers for evaluation -2018-01-18 01:58:52.107 UTC [policies] GetPolicy -> DEBU 854 Returning policy Admins for evaluation -2018-01-18 01:58:52.107 UTC [policies] GetPolicy -> DEBU 855 Returning policy Writers for evaluation -2018-01-18 01:58:52.107 UTC [policies] GetPolicy -> DEBU 856 Returning policy Readers for evaluation -2018-01-18 01:58:52.107 UTC [policies] GetPolicy -> DEBU 857 Returning policy Org1MSP/Admins for evaluation -2018-01-18 01:58:52.107 UTC [policies] CommitProposals -> DEBU 858 In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -2018-01-18 01:58:52.107 UTC [policies] GetPolicy -> DEBU 859 Returning policy Org1MSP/Readers for evaluation -2018-01-18 01:58:52.107 UTC [policies] CommitProposals -> DEBU 85a In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -2018-01-18 01:58:52.107 UTC [policies] GetPolicy -> DEBU 85b Returning policy Org2MSP/Admins for evaluation -2018-01-18 01:58:52.107 UTC [policies] CommitProposals -> DEBU 85c In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -2018-01-18 01:58:52.108 UTC [policies] GetPolicy -> DEBU 85d Returning policy Org2MSP/Readers for evaluation -2018-01-18 01:58:52.108 UTC [policies] CommitProposals -> DEBU 85e In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -2018-01-18 01:58:52.108 UTC [policies] GetPolicy -> DEBU 85f Returning policy Org2MSP/Writers for evaluation -2018-01-18 01:58:52.108 UTC [policies] CommitProposals -> DEBU 860 In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -2018-01-18 01:58:52.108 UTC [policies] GetPolicy -> DEBU 861 Returning policy Writers for evaluation -2018-01-18 01:58:52.108 UTC [policies] CommitProposals -> DEBU 862 In commit adding relative sub-policy Application/Writers to Channel -2018-01-18 01:58:52.108 UTC [policies] GetPolicy -> DEBU 863 Returning policy Readers for evaluation -2018-01-18 01:58:52.108 UTC [policies] CommitProposals -> DEBU 864 In commit adding relative sub-policy Application/Readers to Channel -2018-01-18 01:58:52.108 UTC [policies] GetPolicy -> DEBU 865 Returning policy Org1MSP/Writers for evaluation -2018-01-18 01:58:52.108 UTC [policies] CommitProposals -> DEBU 866 In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -2018-01-18 01:58:52.108 UTC [policies] GetPolicy -> DEBU 867 Returning policy Admins for evaluation -2018-01-18 01:58:52.108 UTC [policies] CommitProposals -> DEBU 868 In commit adding relative sub-policy Application/Admins to Channel -2018-01-18 01:58:52.108 UTC [policies] GetPolicy -> DEBU 869 Returning policy Admins for evaluation -2018-01-18 01:58:52.108 UTC [policies] CommitProposals -> DEBU 86a In commit adding relative sub-policy Orderer/Admins to Channel -2018-01-18 01:58:52.108 UTC [policies] GetPolicy -> DEBU 86b Returning policy BlockValidation for evaluation -2018-01-18 01:58:52.108 UTC [policies] CommitProposals -> DEBU 86c In commit adding relative sub-policy Orderer/BlockValidation to Channel -2018-01-18 01:58:52.108 UTC [policies] GetPolicy -> DEBU 86d Returning policy Readers for evaluation -2018-01-18 01:58:52.108 UTC [policies] CommitProposals -> DEBU 86e In commit adding relative sub-policy Orderer/Readers to Channel -2018-01-18 01:58:52.108 UTC [policies] GetPolicy -> DEBU 86f Returning policy OrdererOrg/Admins for evaluation -2018-01-18 01:58:52.108 UTC [policies] CommitProposals -> DEBU 870 In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -2018-01-18 01:58:52.108 UTC [policies] GetPolicy -> DEBU 871 Returning policy OrdererOrg/Readers for evaluation -2018-01-18 01:58:52.108 UTC [policies] CommitProposals -> DEBU 872 In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -2018-01-18 01:58:52.108 UTC [policies] GetPolicy -> DEBU 873 Returning policy OrdererOrg/Writers for evaluation -2018-01-18 01:58:52.108 UTC [policies] CommitProposals -> DEBU 874 In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -2018-01-18 01:58:52.108 UTC [policies] GetPolicy -> DEBU 875 Returning policy Writers for evaluation -2018-01-18 01:58:52.108 UTC [policies] CommitProposals -> DEBU 876 In commit adding relative sub-policy Orderer/Writers to Channel -2018-01-18 01:58:52.108 UTC [policies] GetPolicy -> DEBU 877 Returning policy Readers for evaluation -2018-01-18 01:58:52.108 UTC [policies] GetPolicy -> DEBU 878 Returning policy Readers for evaluation -2018-01-18 01:58:52.108 UTC [policies] GetPolicy -> DEBU 879 Returning policy Writers for evaluation -2018-01-18 01:58:52.108 UTC [policies] GetPolicy -> DEBU 87a Returning policy Writers for evaluation -2018-01-18 01:58:52.108 UTC [policies] GetPolicy -> DEBU 87b Returning policy Admins for evaluation -2018-01-18 01:58:52.108 UTC [policies] GetPolicy -> DEBU 87c Returning policy Admins for evaluation -2018-01-18 01:58:52.108 UTC [policies] GetPolicy -> DEBU 87d Returning policy Readers for evaluation -2018-01-18 01:58:52.108 UTC [policies] CommitProposals -> DEBU 87e As expected, current configuration has policy '/Channel/Readers' -2018-01-18 01:58:52.108 UTC [policies] GetPolicy -> DEBU 87f Returning policy Writers for evaluation -2018-01-18 01:58:52.108 UTC [policies] CommitProposals -> DEBU 880 As expected, current configuration has policy '/Channel/Writers' -2018-01-18 01:58:52.108 UTC [policies] GetPolicy -> DEBU 881 Returning policy Application/Readers for evaluation -2018-01-18 01:58:52.108 UTC [policies] CommitProposals -> DEBU 882 As expected, current configuration has policy '/Channel/Application/Readers' -2018-01-18 01:58:52.108 UTC [policies] GetPolicy -> DEBU 883 Returning policy Application/Writers for evaluation -2018-01-18 01:58:52.108 UTC [policies] CommitProposals -> DEBU 884 As expected, current configuration has policy '/Channel/Application/Writers' -2018-01-18 01:58:52.108 UTC [policies] GetPolicy -> DEBU 885 Returning policy Application/Admins for evaluation -2018-01-18 01:58:52.109 UTC [policies] CommitProposals -> DEBU 886 As expected, current configuration has policy '/Channel/Application/Admins' -2018-01-18 01:58:52.109 UTC [policies] GetPolicy -> DEBU 887 Returning policy Orderer/BlockValidation for evaluation -2018-01-18 01:58:52.109 UTC [policies] CommitProposals -> DEBU 888 As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -2018-01-18 01:58:52.109 UTC [fsblkstorage] newBlockfileMgr -> DEBU 889 newBlockfileMgr() initializing file-based block storage for ledger: businesschannel -2018-01-18 01:58:52.109 UTC [kvledger.util] CreateDirIfMissing -> DEBU 88a CreateDirIfMissing [/var/hyperledger/production/orderer/chains/businesschannel/] -2018-01-18 01:58:52.109 UTC [kvledger.util] logDirStatus -> DEBU 88b Before creating dir - [/var/hyperledger/production/orderer/chains/businesschannel/] does not exist -2018-01-18 01:58:52.109 UTC [kvledger.util] logDirStatus -> DEBU 88c After creating dir - [/var/hyperledger/production/orderer/chains/businesschannel/] exists -2018-01-18 01:58:52.111 UTC [fsblkstorage] syncCPInfoFromFS -> DEBU 88d Starting checkpoint=latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0] -2018-01-18 01:58:52.111 UTC [fsblkstorage] syncCPInfoFromFS -> DEBU 88e status of file [/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000]: exists=[false], size=[0] -2018-01-18 01:58:52.111 UTC [fsblkstorage] newBlockIndex -> DEBU 88f newBlockIndex() - indexItems:[[BlockNum]] -2018-01-18 01:58:52.111 UTC [fsblkstorage] newBlockfileStream -> DEBU 890 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] -2018-01-18 01:58:52.111 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 891 Finished reading file number [0] -2018-01-18 01:58:52.111 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 892 blockbytes [0] read from file [0] -2018-01-18 01:58:52.113 UTC [fsblkstorage] indexBlock -> DEBU 893 Indexing block [blockNum=0, blockHash=[]byte{0xe1, 0x44, 0x7d, 0x23, 0xdf, 0xa2, 0x20, 0x82, 0xd4, 0xe4, 0x74, 0x4d, 0x77, 0xfd, 0x41, 0x93, 0xb7, 0xdb, 0xc6, 0xb0, 0x34, 0x30, 0xc2, 0xa7, 0xc6, 0x50, 0xfb, 0x2b, 0x1c, 0x26, 0xcf, 0x43} txOffsets= +2018-01-18 09:29:44.227 UTC [msp] Validate -> DEBU 84d MSP OrdererMSP validating identity +2018-01-18 09:29:44.227 UTC [msp] Setup -> DEBU 84e Setting up the MSP manager (3 msps) +2018-01-18 09:29:44.227 UTC [msp] Setup -> DEBU 84f MSP manager setup complete, setup 3 msps +2018-01-18 09:29:44.227 UTC [policies] GetPolicy -> DEBU 850 Returning policy Admins for evaluation +2018-01-18 09:29:44.227 UTC [policies] CommitProposals -> DEBU 851 In commit adding relative sub-policy Org1MSP/Admins to Application +2018-01-18 09:29:44.227 UTC [policies] GetPolicy -> DEBU 852 Returning policy Readers for evaluation +2018-01-18 09:29:44.227 UTC [policies] CommitProposals -> DEBU 853 In commit adding relative sub-policy Org1MSP/Readers to Application +2018-01-18 09:29:44.227 UTC [policies] GetPolicy -> DEBU 854 Returning policy Writers for evaluation +2018-01-18 09:29:44.227 UTC [policies] CommitProposals -> DEBU 855 In commit adding relative sub-policy Org1MSP/Writers to Application +2018-01-18 09:29:44.228 UTC [policies] GetPolicy -> DEBU 856 Returning policy Writers for evaluation +2018-01-18 09:29:44.228 UTC [policies] CommitProposals -> DEBU 857 In commit adding relative sub-policy Org2MSP/Writers to Application +2018-01-18 09:29:44.228 UTC [policies] GetPolicy -> DEBU 858 Returning policy Admins for evaluation +2018-01-18 09:29:44.228 UTC [policies] CommitProposals -> DEBU 859 In commit adding relative sub-policy Org2MSP/Admins to Application +2018-01-18 09:29:44.228 UTC [policies] GetPolicy -> DEBU 85a Returning policy Readers for evaluation +2018-01-18 09:29:44.228 UTC [policies] CommitProposals -> DEBU 85b In commit adding relative sub-policy Org2MSP/Readers to Application +2018-01-18 09:29:44.228 UTC [policies] GetPolicy -> DEBU 85c Returning policy Admins for evaluation +2018-01-18 09:29:44.228 UTC [policies] GetPolicy -> DEBU 85d Returning policy Admins for evaluation +2018-01-18 09:29:44.228 UTC [policies] GetPolicy -> DEBU 85e Returning policy Writers for evaluation +2018-01-18 09:29:44.228 UTC [policies] GetPolicy -> DEBU 85f Returning policy Writers for evaluation +2018-01-18 09:29:44.228 UTC [policies] GetPolicy -> DEBU 860 Returning policy Readers for evaluation +2018-01-18 09:29:44.228 UTC [policies] GetPolicy -> DEBU 861 Returning policy Readers for evaluation +2018-01-18 09:29:44.228 UTC [policies] GetPolicy -> DEBU 862 Returning policy Admins for evaluation +2018-01-18 09:29:44.228 UTC [policies] CommitProposals -> DEBU 863 In commit adding relative sub-policy OrdererOrg/Admins to Orderer +2018-01-18 09:29:44.228 UTC [policies] GetPolicy -> DEBU 864 Returning policy Readers for evaluation +2018-01-18 09:29:44.228 UTC [policies] CommitProposals -> DEBU 865 In commit adding relative sub-policy OrdererOrg/Readers to Orderer +2018-01-18 09:29:44.228 UTC [policies] GetPolicy -> DEBU 866 Returning policy Writers for evaluation +2018-01-18 09:29:44.229 UTC [policies] CommitProposals -> DEBU 867 In commit adding relative sub-policy OrdererOrg/Writers to Orderer +2018-01-18 09:29:44.229 UTC [policies] GetPolicy -> DEBU 868 Returning policy Writers for evaluation +2018-01-18 09:29:44.229 UTC [policies] GetPolicy -> DEBU 869 Returning policy Readers for evaluation +2018-01-18 09:29:44.229 UTC [policies] GetPolicy -> DEBU 86a Returning policy Writers for evaluation +2018-01-18 09:29:44.229 UTC [policies] GetPolicy -> DEBU 86b Returning policy Admins for evaluation +2018-01-18 09:29:44.229 UTC [policies] GetPolicy -> DEBU 86c Returning policy OrdererOrg/Readers for evaluation +2018-01-18 09:29:44.229 UTC [policies] CommitProposals -> DEBU 86d In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +2018-01-18 09:29:44.229 UTC [policies] GetPolicy -> DEBU 86e Returning policy OrdererOrg/Writers for evaluation +2018-01-18 09:29:44.229 UTC [policies] CommitProposals -> DEBU 86f In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +2018-01-18 09:29:44.229 UTC [policies] GetPolicy -> DEBU 870 Returning policy BlockValidation for evaluation +2018-01-18 09:29:44.229 UTC [policies] CommitProposals -> DEBU 871 In commit adding relative sub-policy Orderer/BlockValidation to Channel +2018-01-18 09:29:44.229 UTC [policies] GetPolicy -> DEBU 872 Returning policy Readers for evaluation +2018-01-18 09:29:44.229 UTC [policies] CommitProposals -> DEBU 873 In commit adding relative sub-policy Orderer/Readers to Channel +2018-01-18 09:29:44.229 UTC [policies] GetPolicy -> DEBU 874 Returning policy Writers for evaluation +2018-01-18 09:29:44.229 UTC [policies] CommitProposals -> DEBU 875 In commit adding relative sub-policy Orderer/Writers to Channel +2018-01-18 09:29:44.229 UTC [policies] GetPolicy -> DEBU 876 Returning policy Admins for evaluation +2018-01-18 09:29:44.229 UTC [policies] CommitProposals -> DEBU 877 In commit adding relative sub-policy Orderer/Admins to Channel +2018-01-18 09:29:44.229 UTC [policies] GetPolicy -> DEBU 878 Returning policy OrdererOrg/Admins for evaluation +2018-01-18 09:29:44.229 UTC [policies] CommitProposals -> DEBU 879 In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +2018-01-18 09:29:44.229 UTC [policies] GetPolicy -> DEBU 87a Returning policy Org1MSP/Admins for evaluation +2018-01-18 09:29:44.229 UTC [policies] CommitProposals -> DEBU 87b In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +2018-01-18 09:29:44.229 UTC [policies] GetPolicy -> DEBU 87c Returning policy Org1MSP/Readers for evaluation +2018-01-18 09:29:44.229 UTC [policies] CommitProposals -> DEBU 87d In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +2018-01-18 09:29:44.230 UTC [policies] GetPolicy -> DEBU 87e Returning policy Org1MSP/Writers for evaluation +2018-01-18 09:29:44.230 UTC [policies] CommitProposals -> DEBU 87f In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +2018-01-18 09:29:44.230 UTC [policies] GetPolicy -> DEBU 880 Returning policy Org2MSP/Admins for evaluation +2018-01-18 09:29:44.230 UTC [policies] CommitProposals -> DEBU 881 In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +2018-01-18 09:29:44.230 UTC [policies] GetPolicy -> DEBU 882 Returning policy Writers for evaluation +2018-01-18 09:29:44.230 UTC [policies] CommitProposals -> DEBU 883 In commit adding relative sub-policy Application/Writers to Channel +2018-01-18 09:29:44.230 UTC [policies] GetPolicy -> DEBU 884 Returning policy Readers for evaluation +2018-01-18 09:29:44.230 UTC [policies] CommitProposals -> DEBU 885 In commit adding relative sub-policy Application/Readers to Channel +2018-01-18 09:29:44.230 UTC [policies] GetPolicy -> DEBU 886 Returning policy Org2MSP/Readers for evaluation +2018-01-18 09:29:44.230 UTC [policies] CommitProposals -> DEBU 887 In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +2018-01-18 09:29:44.230 UTC [policies] GetPolicy -> DEBU 888 Returning policy Admins for evaluation +2018-01-18 09:29:44.230 UTC [policies] CommitProposals -> DEBU 889 In commit adding relative sub-policy Application/Admins to Channel +2018-01-18 09:29:44.230 UTC [policies] GetPolicy -> DEBU 88a Returning policy Org2MSP/Writers for evaluation +2018-01-18 09:29:44.230 UTC [policies] CommitProposals -> DEBU 88b In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +2018-01-18 09:29:44.230 UTC [policies] GetPolicy -> DEBU 88c Returning policy Writers for evaluation +2018-01-18 09:29:44.230 UTC [policies] GetPolicy -> DEBU 88d Returning policy Writers for evaluation +2018-01-18 09:29:44.230 UTC [policies] GetPolicy -> DEBU 88e Returning policy Admins for evaluation +2018-01-18 09:29:44.230 UTC [policies] GetPolicy -> DEBU 88f Returning policy Admins for evaluation +2018-01-18 09:29:44.230 UTC [policies] GetPolicy -> DEBU 890 Returning policy Readers for evaluation +2018-01-18 09:29:44.230 UTC [policies] GetPolicy -> DEBU 891 Returning policy Readers for evaluation +2018-01-18 09:29:44.230 UTC [policies] GetPolicy -> DEBU 892 Returning policy Readers for evaluation +2018-01-18 09:29:44.230 UTC [policies] CommitProposals -> DEBU 893 As expected, current configuration has policy '/Channel/Readers' +2018-01-18 09:29:44.230 UTC [policies] GetPolicy -> DEBU 894 Returning policy Writers for evaluation +2018-01-18 09:29:44.231 UTC [policies] CommitProposals -> DEBU 895 As expected, current configuration has policy '/Channel/Writers' +2018-01-18 09:29:44.231 UTC [policies] GetPolicy -> DEBU 896 Returning policy Application/Readers for evaluation +2018-01-18 09:29:44.231 UTC [policies] CommitProposals -> DEBU 897 As expected, current configuration has policy '/Channel/Application/Readers' +2018-01-18 09:29:44.231 UTC [policies] GetPolicy -> DEBU 898 Returning policy Application/Writers for evaluation +2018-01-18 09:29:44.231 UTC [policies] CommitProposals -> DEBU 899 As expected, current configuration has policy '/Channel/Application/Writers' +2018-01-18 09:29:44.231 UTC [policies] GetPolicy -> DEBU 89a Returning policy Application/Admins for evaluation +2018-01-18 09:29:44.231 UTC [policies] CommitProposals -> DEBU 89b As expected, current configuration has policy '/Channel/Application/Admins' +2018-01-18 09:29:44.231 UTC [policies] GetPolicy -> DEBU 89c Returning policy Orderer/BlockValidation for evaluation +2018-01-18 09:29:44.231 UTC [policies] CommitProposals -> DEBU 89d As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +2018-01-18 09:29:44.231 UTC [fsblkstorage] newBlockfileMgr -> DEBU 89e newBlockfileMgr() initializing file-based block storage for ledger: businesschannel +2018-01-18 09:29:44.232 UTC [kvledger.util] CreateDirIfMissing -> DEBU 89f CreateDirIfMissing [/var/hyperledger/production/orderer/chains/businesschannel/] +2018-01-18 09:29:44.232 UTC [kvledger.util] logDirStatus -> DEBU 8a0 Before creating dir - [/var/hyperledger/production/orderer/chains/businesschannel/] does not exist +2018-01-18 09:29:44.232 UTC [kvledger.util] logDirStatus -> DEBU 8a1 After creating dir - [/var/hyperledger/production/orderer/chains/businesschannel/] exists +2018-01-18 09:29:44.235 UTC [fsblkstorage] syncCPInfoFromFS -> DEBU 8a2 Starting checkpoint=latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0] +2018-01-18 09:29:44.235 UTC [fsblkstorage] syncCPInfoFromFS -> DEBU 8a3 status of file [/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000]: exists=[false], size=[0] +2018-01-18 09:29:44.235 UTC [fsblkstorage] newBlockIndex -> DEBU 8a4 newBlockIndex() - indexItems:[[BlockNum]] +2018-01-18 09:29:44.235 UTC [fsblkstorage] newBlockfileStream -> DEBU 8a5 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] +2018-01-18 09:29:44.235 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 8a6 Finished reading file number [0] +2018-01-18 09:29:44.235 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 8a7 blockbytes [0] read from file [0] +2018-01-18 09:29:44.238 UTC [fsblkstorage] indexBlock -> DEBU 8a8 Indexing block [blockNum=0, blockHash=[]byte{0xbf, 0xac, 0x7a, 0x9c, 0x41, 0x40, 0xd9, 0x48, 0x88, 0x7, 0x81, 0xf5, 0x7b, 0xed, 0xd0, 0x38, 0xe1, 0x79, 0xd0, 0xac, 0x73, 0x8c, 0xd3, 0x69, 0xb5, 0x49, 0x90, 0xfb, 0x97, 0x6a, 0x22, 0xf5} txOffsets= txId= locPointer=offset=38, bytesLength=11891 ] -2018-01-18 01:58:52.113 UTC [fsblkstorage] updateCheckpoint -> DEBU 894 Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[11934], isChainEmpty=[false], lastBlockNumber=[0] -2018-01-18 01:58:52.113 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 895 retrieveBlockByNumber() - blockNum = [0] -2018-01-18 01:58:52.113 UTC [fsblkstorage] newBlockfileStream -> DEBU 896 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] -2018-01-18 01:58:52.113 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 897 Remaining bytes=[11934], Going to peek [8] bytes -2018-01-18 01:58:52.113 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 898 Returning blockbytes - length=[11932], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -2018-01-18 01:58:52.113 UTC [orderer/multichain] newChainSupport -> DEBU 899 [channel: businesschannel] Retrieved metadata for tip of chain (blockNumber=0, lastConfig=0, lastConfigSeq=1): -2018-01-18 01:58:52.114 UTC [orderer/multichain] newChain -> INFO 89a Created and starting new chain businesschannel -2018-01-18 01:58:52.114 UTC [orderer/multichain] addBlockSignature -> DEBU 89b &{ledgerResources:0xc4201e4840 chain:0xc4201e4c60 cutter:0xc4201552c0 filters:0xc4201e48a0 signer:0x1274e88 lastConfig:0 lastConfigSeq:0} -2018-01-18 01:58:52.114 UTC [orderer/multichain] addBlockSignature -> DEBU 89c &{} -2018-01-18 01:58:52.114 UTC [msp] GetLocalMSP -> DEBU 89d Returning existing local MSP -2018-01-18 01:58:52.114 UTC [msp] GetDefaultSigningIdentity -> DEBU 89e Obtaining default signing identity -2018-01-18 01:58:52.114 UTC [msp] GetLocalMSP -> DEBU 89f Returning existing local MSP -2018-01-18 01:58:52.114 UTC [msp] GetDefaultSigningIdentity -> DEBU 8a0 Obtaining default signing identity -2018-01-18 01:58:52.114 UTC [msp/identity] Sign -> DEBU 8a1 Sign: plaintext: 0AFA050A0A4F7264657265724D535012...11C1543A4BB5CABB852456A9329EFA44 -2018-01-18 01:58:52.114 UTC [msp/identity] Sign -> DEBU 8a2 Sign: digest: D65437852D5AAB5A10C170AA03C20FDC59C187AC37989047F521C4F3C195D2D1 -2018-01-18 01:58:52.114 UTC [msp] GetLocalMSP -> DEBU 8a3 Returning existing local MSP -2018-01-18 01:58:52.114 UTC [msp] GetDefaultSigningIdentity -> DEBU 8a4 Obtaining default signing identity -2018-01-18 01:58:52.114 UTC [orderer/multichain] addLastConfigSignature -> DEBU 8a5 [channel: testchainid] About to write block, setting its LAST_CONFIG to 0 -2018-01-18 01:58:52.114 UTC [msp] GetLocalMSP -> DEBU 8a6 Returning existing local MSP -2018-01-18 01:58:52.114 UTC [msp] GetDefaultSigningIdentity -> DEBU 8a7 Obtaining default signing identity -2018-01-18 01:58:52.114 UTC [msp/identity] Sign -> DEBU 8a8 Sign: plaintext: 0AFA050A0A4F7264657265724D535012...11C1543A4BB5CABB852456A9329EFA44 -2018-01-18 01:58:52.114 UTC [msp/identity] Sign -> DEBU 8a9 Sign: digest: B64A3A33F2A08CAE910464B9AC680B88171D595BB231472830977868458CAF55 -2018-01-18 01:58:52.116 UTC [fsblkstorage] indexBlock -> DEBU 8aa Indexing block [blockNum=1, blockHash=[]byte{0xb4, 0x10, 0xcc, 0x24, 0x6c, 0x30, 0xbd, 0xe8, 0xb8, 0x1b, 0x9f, 0x2e, 0xe8, 0x1, 0x61, 0x8d, 0x3b, 0xa2, 0x7e, 0xd4, 0x39, 0xe, 0xae, 0x93, 0xc0, 0x43, 0xfe, 0x2b, 0x65, 0xf6, 0x33, 0x76} txOffsets= +2018-01-18 09:29:44.238 UTC [fsblkstorage] updateCheckpoint -> DEBU 8a9 Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[11934], isChainEmpty=[false], lastBlockNumber=[0] +2018-01-18 09:29:44.238 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 8aa retrieveBlockByNumber() - blockNum = [0] +2018-01-18 09:29:44.238 UTC [fsblkstorage] newBlockfileStream -> DEBU 8ab newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] +2018-01-18 09:29:44.238 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 8ac Remaining bytes=[11934], Going to peek [8] bytes +2018-01-18 09:29:44.238 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 8ad Returning blockbytes - length=[11932], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +2018-01-18 09:29:44.239 UTC [orderer/multichain] newChainSupport -> DEBU 8ae [channel: businesschannel] Retrieved metadata for tip of chain (blockNumber=0, lastConfig=0, lastConfigSeq=1): +2018-01-18 09:29:44.239 UTC [orderer/multichain] newChain -> INFO 8af Created and starting new chain businesschannel +2018-01-18 09:29:44.239 UTC [orderer/multichain] addBlockSignature -> DEBU 8b0 &{ledgerResources:0xc4202e47e0 chain:0xc4202e4c00 cutter:0xc4202cf400 filters:0xc4202e4840 signer:0x1274e88 lastConfig:0 lastConfigSeq:0} +2018-01-18 09:29:44.239 UTC [orderer/multichain] addBlockSignature -> DEBU 8b1 &{} +2018-01-18 09:29:44.239 UTC [msp] GetLocalMSP -> DEBU 8b2 Returning existing local MSP +2018-01-18 09:29:44.240 UTC [msp] GetDefaultSigningIdentity -> DEBU 8b3 Obtaining default signing identity +2018-01-18 09:29:44.240 UTC [msp] GetLocalMSP -> DEBU 8b4 Returning existing local MSP +2018-01-18 09:29:44.240 UTC [msp] GetDefaultSigningIdentity -> DEBU 8b5 Obtaining default signing identity +2018-01-18 09:29:44.240 UTC [msp/identity] Sign -> DEBU 8b6 Sign: plaintext: 0AFA050A0A4F7264657265724D535012...B07368481DF5660A6AAD579A8ECB1281 +2018-01-18 09:29:44.240 UTC [msp/identity] Sign -> DEBU 8b7 Sign: digest: A362A981E15990BFEBC0E82AECBE7A4160D0A2826C599B99D0D196A6A85E12B9 +2018-01-18 09:29:44.240 UTC [msp] GetLocalMSP -> DEBU 8b8 Returning existing local MSP +2018-01-18 09:29:44.240 UTC [msp] GetDefaultSigningIdentity -> DEBU 8b9 Obtaining default signing identity +2018-01-18 09:29:44.241 UTC [orderer/multichain] addLastConfigSignature -> DEBU 8ba [channel: testchainid] About to write block, setting its LAST_CONFIG to 0 +2018-01-18 09:29:44.241 UTC [msp] GetLocalMSP -> DEBU 8bb Returning existing local MSP +2018-01-18 09:29:44.241 UTC [msp] GetDefaultSigningIdentity -> DEBU 8bc Obtaining default signing identity +2018-01-18 09:29:44.241 UTC [msp/identity] Sign -> DEBU 8bd Sign: plaintext: 0AFA050A0A4F7264657265724D535012...B07368481DF5660A6AAD579A8ECB1281 +2018-01-18 09:29:44.241 UTC [msp/identity] Sign -> DEBU 8be Sign: digest: 7D7BECEA17316E1C914E3B087D022E543ADD69A55F56B07088611110CECC222E +2018-01-18 09:29:44.244 UTC [fsblkstorage] indexBlock -> DEBU 8bf Indexing block [blockNum=1, blockHash=[]byte{0xe2, 0x4b, 0x86, 0x9f, 0x49, 0xb0, 0xc9, 0x14, 0xf4, 0x29, 0xb2, 0xd2, 0x5c, 0xde, 0x66, 0xf8, 0x6d, 0x37, 0x2d, 0x8b, 0x63, 0xb8, 0x9d, 0x52, 0x3f, 0x76, 0xb0, 0xfb, 0xaa, 0x7d, 0x95, 0xa6} txOffsets= txId= locPointer=offset=70, bytesLength=12792 ] -2018-01-18 01:58:52.116 UTC [fsblkstorage] updateCheckpoint -> DEBU 8ab Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[23690], isChainEmpty=[false], lastBlockNumber=[1] -2018-01-18 01:58:52.116 UTC [orderer/multichain] WriteBlock -> DEBU 8ac [channel: testchainid] Wrote block 1 -2018-01-18 01:58:52.242 UTC [policies] GetPolicy -> DEBU 8ad Returning policy Readers for evaluation -2018-01-18 01:58:52.243 UTC [cauthdsl] func1 -> DEBU 8ae 0xc42014b5f0 gate 1516240732243135796 evaluation starts -2018-01-18 01:58:52.243 UTC [cauthdsl] func2 -> DEBU 8af 0xc42014b5f0 signed by 0 principal evaluation starts (used [false]) -2018-01-18 01:58:52.243 UTC [cauthdsl] func2 -> DEBU 8b0 0xc42014b5f0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-18 01:58:52.244 UTC [msp/identity] newIdentity -> DEBU 8b1 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:44.245 UTC [fsblkstorage] updateCheckpoint -> DEBU 8c0 Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[23691], isChainEmpty=[false], lastBlockNumber=[1] +2018-01-18 09:29:44.245 UTC [orderer/multichain] WriteBlock -> DEBU 8c1 [channel: testchainid] Wrote block 1 +2018-01-18 09:29:44.269 UTC [policies] GetPolicy -> DEBU 8c2 Returning policy Readers for evaluation +2018-01-18 09:29:44.269 UTC [cauthdsl] func1 -> DEBU 8c3 0xc4200274f0 gate 1516267784269315753 evaluation starts +2018-01-18 09:29:44.269 UTC [cauthdsl] func2 -> DEBU 8c4 0xc4200274f0 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:29:44.269 UTC [cauthdsl] func2 -> DEBU 8c5 0xc4200274f0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:29:44.270 UTC [msp/identity] newIdentity -> DEBU 8c6 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -3847,56 +3907,13 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-18 01:58:52.244 UTC [msp] SatisfiesPrincipal -> DEBU 8b2 Checking if identity satisfies MEMBER role for Org1MSP -2018-01-18 01:58:52.244 UTC [msp] Validate -> DEBU 8b3 MSP Org1MSP validating identity -2018-01-18 01:58:52.244 UTC [cauthdsl] func2 -> DEBU 8b4 0xc42014b5f0 principal matched by identity 0 -2018-01-18 01:58:52.244 UTC [msp/identity] Verify -> DEBU 8b5 Verify: digest = 00000000 e4 ba 00 08 37 34 5e 46 a0 72 72 55 b9 df 77 1f |....74^F.rrU..w.| -00000010 8e 2b 2b 4e f5 97 0f f9 96 6f 7f 32 c2 8a 4c ef |.++N.....o.2..L.| -2018-01-18 01:58:52.244 UTC [msp/identity] Verify -> DEBU 8b6 Verify: sig = 00000000 30 44 02 20 14 80 57 fc 86 f8 a9 9d 3c e0 e3 21 |0D. ..W.....<..!| -00000010 48 61 10 96 ba 97 60 74 f9 61 25 17 80 3c b8 6f |Ha....`t.a%..<.o| -00000020 1c 64 70 54 02 20 58 fa 8b c5 79 95 a2 ab ca be |.dpT. X...y.....| -00000030 17 4c 08 27 36 d5 dc 38 eb d0 05 06 c5 01 e4 b3 |.L.'6..8........| -00000040 dd eb fb 07 43 b3 |....C.| -2018-01-18 01:58:52.244 UTC [cauthdsl] func2 -> DEBU 8b7 0xc42014b5f0 principal evaluation succeeds for identity 0 -2018-01-18 01:58:52.244 UTC [cauthdsl] func1 -> DEBU 8b8 0xc42014b5f0 gate 1516240732243135796 evaluation succeeds -2018-01-18 01:58:52.244 UTC [orderer/common/sigfilter] Apply -> DEBU 8b9 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420a216c0 1 [0xc42014b368 0xc42014b408]}) %!s(*policies.implicitMetaPolicy=&{0xc420a384c0 1 [0xc42014b4a8]})]} -2018-01-18 01:58:52.245 UTC [orderer/common/deliver] Handle -> DEBU 8ba [channel: businesschannel] Received seekInfo (0xc420148c00) start: > stop: > -2018-01-18 01:58:52.245 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 8bb retrieveBlockByNumber() - blockNum = [0] -2018-01-18 01:58:52.245 UTC [fsblkstorage] newBlockfileStream -> DEBU 8bc newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] -2018-01-18 01:58:52.245 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 8bd Remaining bytes=[11934], Going to peek [8] bytes -2018-01-18 01:58:52.245 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 8be Returning blockbytes - length=[11932], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -2018-01-18 01:58:52.245 UTC [orderer/common/deliver] Handle -> DEBU 8bf [channel: businesschannel] Delivering block for (0xc420148c00) -2018-01-18 01:58:52.245 UTC [orderer/common/deliver] Handle -> DEBU 8c0 [channel: businesschannel] Done delivering for (0xc420148c00), waiting for new SeekInfo -2018-01-18 01:58:52.245 UTC [orderer/common/deliver] Handle -> DEBU 8c1 Attempting to read seek info message -2018-01-18 01:58:52.248 UTC [orderer/common/deliver] Handle -> WARN 8c2 Error reading from stream: rpc error: code = Canceled desc = context canceled -2018-01-18 01:58:52.248 UTC [orderer/main] func1 -> DEBU 8c3 Closing Deliver stream -2018-01-18 01:58:53.547 UTC [orderer/main] Deliver -> DEBU 8c4 Starting new Deliver handler -2018-01-18 01:58:53.547 UTC [orderer/common/deliver] Handle -> DEBU 8c5 Starting new deliver loop -2018-01-18 01:58:53.547 UTC [orderer/common/deliver] Handle -> DEBU 8c6 Attempting to read seek info message -2018-01-18 01:58:53.563 UTC [orderer/main] Broadcast -> DEBU 8c7 Starting new Broadcast handler -2018-01-18 01:58:53.563 UTC [orderer/common/broadcast] Handle -> DEBU 8c8 Starting new broadcast loop -2018-01-18 01:58:53.563 UTC [orderer/common/broadcast] Handle -> DEBU 8c9 Preprocessing CONFIG_UPDATE -2018-01-18 01:58:53.563 UTC [orderer/configupdate] Process -> DEBU 8ca Processing channel reconfiguration request for channel businesschannel -2018-01-18 01:58:53.564 UTC [common/configtx] addToMap -> DEBU 8cb Adding to config map: [Groups] /Channel -2018-01-18 01:58:53.564 UTC [common/configtx] addToMap -> DEBU 8cc Adding to config map: [Groups] /Channel/Application -2018-01-18 01:58:53.564 UTC [common/configtx] addToMap -> DEBU 8cd Adding to config map: [Groups] /Channel/Application/Org1MSP -2018-01-18 01:58:53.566 UTC [common/configtx] addToMap -> DEBU 8ce Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -2018-01-18 01:58:53.566 UTC [common/configtx] addToMap -> DEBU 8cf Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -2018-01-18 01:58:53.567 UTC [common/configtx] addToMap -> DEBU 8d0 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -2018-01-18 01:58:53.567 UTC [common/configtx] addToMap -> DEBU 8d1 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -2018-01-18 01:58:53.567 UTC [common/configtx] addToMap -> DEBU 8d2 Adding to config map: [Groups] /Channel -2018-01-18 01:58:53.568 UTC [common/configtx] addToMap -> DEBU 8d3 Adding to config map: [Groups] /Channel/Application -2018-01-18 01:58:53.568 UTC [common/configtx] addToMap -> DEBU 8d4 Adding to config map: [Groups] /Channel/Application/Org1MSP -2018-01-18 01:58:53.568 UTC [common/configtx] addToMap -> DEBU 8d5 Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -2018-01-18 01:58:53.568 UTC [common/configtx] addToMap -> DEBU 8d6 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -2018-01-18 01:58:53.568 UTC [common/configtx] addToMap -> DEBU 8d7 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -2018-01-18 01:58:53.568 UTC [common/configtx] addToMap -> DEBU 8d8 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -2018-01-18 01:58:53.569 UTC [common/configtx] addToMap -> DEBU 8d9 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -2018-01-18 01:58:53.570 UTC [policies] GetPolicy -> DEBU 8da Returning policy Admins for evaluation -2018-01-18 01:58:53.570 UTC [cauthdsl] func1 -> DEBU 8db 0xc420026250 gate 1516240733570959052 evaluation starts -2018-01-18 01:58:53.571 UTC [cauthdsl] func2 -> DEBU 8dc 0xc420026250 signed by 0 principal evaluation starts (used [false]) -2018-01-18 01:58:53.571 UTC [cauthdsl] func2 -> DEBU 8dd 0xc420026250 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-18 01:58:53.573 UTC [msp/identity] newIdentity -> DEBU 8de Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:44.271 UTC [cauthdsl] func2 -> DEBU 8c7 0xc4200274f0 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) +2018-01-18 09:29:44.271 UTC [cauthdsl] func2 -> DEBU 8c8 0xc4200274f0 principal evaluation fails +2018-01-18 09:29:44.271 UTC [cauthdsl] func1 -> DEBU 8c9 0xc4200274f0 gate 1516267784269315753 evaluation fails +2018-01-18 09:29:44.271 UTC [cauthdsl] func1 -> DEBU 8ca 0xc420027500 gate 1516267784271692264 evaluation starts +2018-01-18 09:29:44.271 UTC [cauthdsl] func2 -> DEBU 8cb 0xc420027500 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:29:44.271 UTC [cauthdsl] func2 -> DEBU 8cc 0xc420027500 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:29:44.272 UTC [msp/identity] newIdentity -> DEBU 8cd Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -3910,86 +3927,149 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-18 01:58:53.574 UTC [msp] SatisfiesPrincipal -> DEBU 8df Checking if identity satisfies ADMIN role for Org1MSP -2018-01-18 01:58:53.574 UTC [cauthdsl] func2 -> DEBU 8e0 0xc420026250 principal matched by identity 0 -2018-01-18 01:58:53.574 UTC [msp/identity] Verify -> DEBU 8e1 Verify: digest = 00000000 94 4b 2c 71 ac 2b 83 1b 4e 1d 86 f1 f5 d3 9d 8e |.K,q.+..N.......| -00000010 f3 8e f6 70 4f 34 16 19 7d a9 02 4b 28 a4 53 a3 |...pO4..}..K(.S.| -2018-01-18 01:58:53.574 UTC [msp/identity] Verify -> DEBU 8e2 Verify: sig = 00000000 30 45 02 21 00 f6 c9 e9 b2 4c f2 f4 55 c4 e1 92 |0E.!.....L..U...| -00000010 61 2c 96 22 89 62 9c a3 6f 50 99 f0 ec e3 84 45 |a,.".b..oP.....E| -00000020 1e 9e d9 14 9b 02 20 00 f6 19 bb af 27 1f 30 22 |...... .....'.0"| -00000030 1c 27 43 69 31 bc bd 8c 67 7d 60 ef ed 09 30 ec |.'Ci1...g}`...0.| -00000040 92 99 08 c1 23 97 cd |....#..| -2018-01-18 01:58:53.575 UTC [cauthdsl] func2 -> DEBU 8e3 0xc420026250 principal evaluation succeeds for identity 0 -2018-01-18 01:58:53.575 UTC [cauthdsl] func1 -> DEBU 8e4 0xc420026250 gate 1516240733570959052 evaluation succeeds -2018-01-18 01:58:53.576 UTC [common/configtx] recurseConfigMap -> DEBU 8e5 Setting policy for key Readers to -2018-01-18 01:58:53.576 UTC [common/configtx] recurseConfigMap -> DEBU 8e6 Setting policy for key Writers to -2018-01-18 01:58:53.576 UTC [common/configtx] recurseConfigMap -> DEBU 8e7 Setting policy for key Admins to -2018-01-18 01:58:53.576 UTC [common/configtx] recurseConfigMap -> DEBU 8e8 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-18 01:58:53.576 UTC [common/configtx] recurseConfigMap -> DEBU 8e9 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-18 01:58:53.577 UTC [common/configtx] recurseConfigMap -> DEBU 8ea Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-18 01:58:53.577 UTC [common/configtx] recurseConfigMap -> DEBU 8eb Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-18 01:58:53.578 UTC [common/configtx] recurseConfigMap -> DEBU 8ec Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-18 01:58:53.578 UTC [common/configtx] recurseConfigMap -> DEBU 8ed Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-18 01:58:53.578 UTC [common/configtx] recurseConfigMap -> DEBU 8ee Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-18 01:58:53.578 UTC [common/configtx] recurseConfigMap -> DEBU 8ef Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-18 01:58:53.579 UTC [common/configtx] recurseConfigMap -> DEBU 8f0 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-18 01:58:53.579 UTC [common/configtx] recurseConfigMap -> DEBU 8f1 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-18 01:58:53.579 UTC [common/configtx] recurseConfigMap -> DEBU 8f2 Setting policy for key BlockValidation to policy: mod_policy:"Admins" -2018-01-18 01:58:53.579 UTC [common/configtx] recurseConfigMap -> DEBU 8f3 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-18 01:58:53.579 UTC [common/configtx] recurseConfigMap -> DEBU 8f4 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-18 01:58:53.579 UTC [common/configtx] recurseConfigMap -> DEBU 8f5 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-18 01:58:53.580 UTC [common/configtx] recurseConfigMap -> DEBU 8f6 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-18 01:58:53.580 UTC [common/configtx] recurseConfigMap -> DEBU 8f7 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-18 01:58:53.580 UTC [common/configtx] processConfig -> DEBU 8f8 Beginning new config for channel businesschannel -2018-01-18 01:58:53.580 UTC [common/config] NewStandardValues -> DEBU 8f9 Initializing protos for *config.ChannelProtos -2018-01-18 01:58:53.580 UTC [common/config] initializeProtosStruct -> DEBU 8fa Processing field: HashingAlgorithm -2018-01-18 01:58:53.581 UTC [common/config] initializeProtosStruct -> DEBU 8fb Processing field: BlockDataHashingStructure -2018-01-18 01:58:53.581 UTC [common/config] initializeProtosStruct -> DEBU 8fc Processing field: OrdererAddresses -2018-01-18 01:58:53.581 UTC [common/config] initializeProtosStruct -> DEBU 8fd Processing field: Consortium -2018-01-18 01:58:53.581 UTC [policies] ProposePolicy -> DEBU 8fe Proposed new policy Readers for Channel -2018-01-18 01:58:53.581 UTC [policies] ProposePolicy -> DEBU 8ff Proposed new policy Writers for Channel -2018-01-18 01:58:53.581 UTC [policies] ProposePolicy -> DEBU 900 Proposed new policy Admins for Channel -2018-01-18 01:58:53.581 UTC [common/config] NewStandardValues -> DEBU 901 Initializing protos for *config.OrdererProtos -2018-01-18 01:58:53.581 UTC [common/config] initializeProtosStruct -> DEBU 902 Processing field: ConsensusType -2018-01-18 01:58:53.581 UTC [common/config] initializeProtosStruct -> DEBU 903 Processing field: BatchSize -2018-01-18 01:58:53.581 UTC [common/config] initializeProtosStruct -> DEBU 904 Processing field: BatchTimeout -2018-01-18 01:58:53.581 UTC [common/config] initializeProtosStruct -> DEBU 905 Processing field: KafkaBrokers -2018-01-18 01:58:53.582 UTC [common/config] initializeProtosStruct -> DEBU 906 Processing field: ChannelRestrictions -2018-01-18 01:58:53.582 UTC [policies] ProposePolicy -> DEBU 907 Proposed new policy BlockValidation for Orderer -2018-01-18 01:58:53.582 UTC [policies] ProposePolicy -> DEBU 908 Proposed new policy Readers for Orderer -2018-01-18 01:58:53.582 UTC [policies] ProposePolicy -> DEBU 909 Proposed new policy Writers for Orderer -2018-01-18 01:58:53.582 UTC [policies] ProposePolicy -> DEBU 90a Proposed new policy Admins for Orderer -2018-01-18 01:58:53.582 UTC [common/config] NewStandardValues -> DEBU 90b Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:53.582 UTC [common/config] initializeProtosStruct -> DEBU 90c Processing field: MSP -2018-01-18 01:58:53.582 UTC [policies] ProposePolicy -> DEBU 90d Proposed new policy Admins for OrdererOrg -2018-01-18 01:58:53.582 UTC [policies] ProposePolicy -> DEBU 90e Proposed new policy Readers for OrdererOrg -2018-01-18 01:58:53.582 UTC [policies] ProposePolicy -> DEBU 90f Proposed new policy Writers for OrdererOrg -2018-01-18 01:58:53.582 UTC [common/config] NewStandardValues -> DEBU 910 Initializing protos for *struct {} -2018-01-18 01:58:53.582 UTC [policies] ProposePolicy -> DEBU 911 Proposed new policy Admins for Application -2018-01-18 01:58:53.583 UTC [policies] ProposePolicy -> DEBU 912 Proposed new policy Writers for Application -2018-01-18 01:58:53.583 UTC [policies] ProposePolicy -> DEBU 913 Proposed new policy Readers for Application -2018-01-18 01:58:53.583 UTC [common/config] NewStandardValues -> DEBU 914 Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:53.583 UTC [common/config] initializeProtosStruct -> DEBU 915 Processing field: MSP -2018-01-18 01:58:53.583 UTC [common/config] NewStandardValues -> DEBU 916 Initializing protos for *config.ApplicationOrgProtos -2018-01-18 01:58:53.583 UTC [common/config] initializeProtosStruct -> DEBU 917 Processing field: AnchorPeers -2018-01-18 01:58:53.583 UTC [common/config] NewStandardValues -> DEBU 918 Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:53.583 UTC [common/config] initializeProtosStruct -> DEBU 919 Processing field: MSP -2018-01-18 01:58:53.583 UTC [policies] ProposePolicy -> DEBU 91a Proposed new policy Writers for Org2MSP -2018-01-18 01:58:53.583 UTC [policies] ProposePolicy -> DEBU 91b Proposed new policy Admins for Org2MSP -2018-01-18 01:58:53.583 UTC [policies] ProposePolicy -> DEBU 91c Proposed new policy Readers for Org2MSP -2018-01-18 01:58:53.584 UTC [common/config] NewStandardValues -> DEBU 91d Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:53.584 UTC [common/config] initializeProtosStruct -> DEBU 91e Processing field: MSP -2018-01-18 01:58:53.584 UTC [common/config] NewStandardValues -> DEBU 91f Initializing protos for *config.ApplicationOrgProtos -2018-01-18 01:58:53.584 UTC [common/config] initializeProtosStruct -> DEBU 920 Processing field: AnchorPeers -2018-01-18 01:58:53.584 UTC [common/config] NewStandardValues -> DEBU 921 Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:53.584 UTC [common/config] initializeProtosStruct -> DEBU 922 Processing field: MSP -2018-01-18 01:58:53.584 UTC [policies] ProposePolicy -> DEBU 923 Proposed new policy Writers for Org1MSP -2018-01-18 01:58:53.584 UTC [policies] ProposePolicy -> DEBU 924 Proposed new policy Admins for Org1MSP -2018-01-18 01:58:53.585 UTC [policies] ProposePolicy -> DEBU 925 Proposed new policy Readers for Org1MSP -2018-01-18 01:58:53.585 UTC [common/config] validateMSP -> DEBU 926 Setting up MSP for org OrdererOrg -2018-01-18 01:58:53.585 UTC [msp] NewBccspMsp -> DEBU 927 Creating BCCSP-based MSP instance -2018-01-18 01:58:53.585 UTC [msp] Setup -> DEBU 928 Setting up MSP instance OrdererMSP -2018-01-18 01:58:53.585 UTC [msp/identity] newIdentity -> DEBU 929 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:44.272 UTC [msp] SatisfiesPrincipal -> DEBU 8ce Checking if identity satisfies MEMBER role for Org1MSP +2018-01-18 09:29:44.272 UTC [msp] Validate -> DEBU 8cf MSP Org1MSP validating identity +2018-01-18 09:29:44.273 UTC [cauthdsl] func2 -> DEBU 8d0 0xc420027500 principal matched by identity 0 +2018-01-18 09:29:44.273 UTC [msp/identity] Verify -> DEBU 8d1 Verify: digest = 00000000 f4 77 21 e5 f6 86 90 5a 70 8c 3a 68 81 c1 32 5e |.w!....Zp.:h..2^| +00000010 00 5b 9b 6e 94 e2 6d 5c b5 9d a9 66 ce a1 f5 ca |.[.n..m\...f....| +2018-01-18 09:29:44.273 UTC [msp/identity] Verify -> DEBU 8d2 Verify: sig = 00000000 30 45 02 21 00 f3 ab 15 0e 0f 4c e1 f5 93 76 48 |0E.!......L...vH| +00000010 45 3f 86 83 43 92 2b 44 64 be b4 46 a8 ce 8d f2 |E?..C.+Dd..F....| +00000020 71 1c 7f 41 f4 02 20 58 d8 fa 43 fe 65 60 a3 8e |q..A.. X..C.e`..| +00000030 37 39 62 7c 50 bf cd 06 d3 3a f4 9e e5 12 85 1e |79b|P....:......| +00000040 a6 36 93 09 b8 0e c1 |.6.....| +2018-01-18 09:29:44.273 UTC [cauthdsl] func2 -> DEBU 8d3 0xc420027500 principal evaluation succeeds for identity 0 +2018-01-18 09:29:44.274 UTC [cauthdsl] func1 -> DEBU 8d4 0xc420027500 gate 1516267784271692264 evaluation succeeds +2018-01-18 09:29:44.274 UTC [orderer/common/sigfilter] Apply -> DEBU 8d5 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42083f8e0 1 [0xc4200273a8]}) %!s(*policies.implicitMetaPolicy=&{0xc42083ec60 1 [0xc420027270 0xc420027330]})]} +2018-01-18 09:29:44.274 UTC [orderer/common/deliver] Handle -> DEBU 8d6 [channel: businesschannel] Received seekInfo (0xc420a94b80) start: > stop: > +2018-01-18 09:29:44.274 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 8d7 retrieveBlockByNumber() - blockNum = [0] +2018-01-18 09:29:44.275 UTC [fsblkstorage] newBlockfileStream -> DEBU 8d8 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] +2018-01-18 09:29:44.276 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 8d9 Remaining bytes=[11934], Going to peek [8] bytes +2018-01-18 09:29:44.276 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 8da Returning blockbytes - length=[11932], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +2018-01-18 09:29:44.276 UTC [orderer/common/deliver] Handle -> DEBU 8db [channel: businesschannel] Delivering block for (0xc420a94b80) +2018-01-18 09:29:44.277 UTC [orderer/common/deliver] Handle -> DEBU 8dc [channel: businesschannel] Done delivering for (0xc420a94b80), waiting for new SeekInfo +2018-01-18 09:29:44.277 UTC [orderer/common/deliver] Handle -> DEBU 8dd Attempting to read seek info message +2018-01-18 09:29:44.278 UTC [orderer/common/deliver] Handle -> WARN 8de Error reading from stream: rpc error: code = Canceled desc = context canceled +2018-01-18 09:29:44.278 UTC [orderer/main] func1 -> DEBU 8df Closing Deliver stream +2018-01-18 09:29:46.912 UTC [orderer/main] Deliver -> DEBU 8e0 Starting new Deliver handler +2018-01-18 09:29:46.913 UTC [orderer/common/deliver] Handle -> DEBU 8e1 Starting new deliver loop +2018-01-18 09:29:46.913 UTC [orderer/common/deliver] Handle -> DEBU 8e2 Attempting to read seek info message +2018-01-18 09:29:46.930 UTC [orderer/main] Broadcast -> DEBU 8e3 Starting new Broadcast handler +2018-01-18 09:29:46.930 UTC [orderer/common/broadcast] Handle -> DEBU 8e4 Starting new broadcast loop +2018-01-18 09:29:46.931 UTC [orderer/common/broadcast] Handle -> DEBU 8e5 Preprocessing CONFIG_UPDATE +2018-01-18 09:29:46.932 UTC [orderer/configupdate] Process -> DEBU 8e6 Processing channel reconfiguration request for channel businesschannel +2018-01-18 09:29:46.933 UTC [common/configtx] addToMap -> DEBU 8e7 Adding to config map: [Groups] /Channel +2018-01-18 09:29:46.933 UTC [common/configtx] addToMap -> DEBU 8e8 Adding to config map: [Groups] /Channel/Application +2018-01-18 09:29:46.934 UTC [common/configtx] addToMap -> DEBU 8e9 Adding to config map: [Groups] /Channel/Application/Org1MSP +2018-01-18 09:29:46.934 UTC [common/configtx] addToMap -> DEBU 8ea Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +2018-01-18 09:29:46.934 UTC [common/configtx] addToMap -> DEBU 8eb Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +2018-01-18 09:29:46.934 UTC [common/configtx] addToMap -> DEBU 8ec Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +2018-01-18 09:29:46.934 UTC [common/configtx] addToMap -> DEBU 8ed Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +2018-01-18 09:29:46.934 UTC [common/configtx] addToMap -> DEBU 8ee Adding to config map: [Groups] /Channel +2018-01-18 09:29:46.935 UTC [common/configtx] addToMap -> DEBU 8ef Adding to config map: [Groups] /Channel/Application +2018-01-18 09:29:46.935 UTC [common/configtx] addToMap -> DEBU 8f0 Adding to config map: [Groups] /Channel/Application/Org1MSP +2018-01-18 09:29:46.935 UTC [common/configtx] addToMap -> DEBU 8f1 Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +2018-01-18 09:29:46.935 UTC [common/configtx] addToMap -> DEBU 8f2 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +2018-01-18 09:29:46.936 UTC [common/configtx] addToMap -> DEBU 8f3 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +2018-01-18 09:29:46.936 UTC [common/configtx] addToMap -> DEBU 8f4 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +2018-01-18 09:29:46.936 UTC [common/configtx] addToMap -> DEBU 8f5 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +2018-01-18 09:29:46.936 UTC [policies] GetPolicy -> DEBU 8f6 Returning policy Admins for evaluation +2018-01-18 09:29:46.936 UTC [cauthdsl] func1 -> DEBU 8f7 0xc420026598 gate 1516267786936912687 evaluation starts +2018-01-18 09:29:46.937 UTC [cauthdsl] func2 -> DEBU 8f8 0xc420026598 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:29:46.937 UTC [cauthdsl] func2 -> DEBU 8f9 0xc420026598 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:29:46.938 UTC [msp/identity] newIdentity -> DEBU 8fa Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +xHTBvxfK6mAzmUitFmY= +-----END CERTIFICATE----- +2018-01-18 09:29:46.938 UTC [msp] SatisfiesPrincipal -> DEBU 8fb Checking if identity satisfies ADMIN role for Org1MSP +2018-01-18 09:29:46.939 UTC [cauthdsl] func2 -> DEBU 8fc 0xc420026598 principal matched by identity 0 +2018-01-18 09:29:46.939 UTC [msp/identity] Verify -> DEBU 8fd Verify: digest = 00000000 4d be a9 c4 54 6d 00 c1 09 ed 0f 97 df 98 d3 b4 |M...Tm..........| +00000010 3f 7e 4c 7b 14 2e 85 95 dd e8 fa 88 85 14 1c a4 |?~L{............| +2018-01-18 09:29:46.939 UTC [msp/identity] Verify -> DEBU 8fe Verify: sig = 00000000 30 44 02 20 55 16 a0 b6 71 60 a7 f6 6c 09 21 48 |0D. U...q`..l.!H| +00000010 5f e7 b9 36 eb 3a fc 25 9e ca 91 a5 21 1b 9d 0d |_..6.:.%....!...| +00000020 d3 3a a3 0c 02 20 5b 2b 93 ce de c4 63 57 76 14 |.:... [+....cWv.| +00000030 88 2e 5c c0 fa 75 1d 6b 5d 34 ee 1a c9 f9 9a ea |..\..u.k]4......| +00000040 c6 d4 a3 0c a6 3a |.....:| +2018-01-18 09:29:46.939 UTC [cauthdsl] func2 -> DEBU 8ff 0xc420026598 principal evaluation succeeds for identity 0 +2018-01-18 09:29:46.939 UTC [cauthdsl] func1 -> DEBU 900 0xc420026598 gate 1516267786936912687 evaluation succeeds +2018-01-18 09:29:46.940 UTC [common/configtx] recurseConfigMap -> DEBU 901 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-18 09:29:46.940 UTC [common/configtx] recurseConfigMap -> DEBU 902 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-18 09:29:46.940 UTC [common/configtx] recurseConfigMap -> DEBU 903 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-18 09:29:46.940 UTC [common/configtx] recurseConfigMap -> DEBU 904 Setting policy for key BlockValidation to policy: mod_policy:"Admins" +2018-01-18 09:29:46.940 UTC [common/configtx] recurseConfigMap -> DEBU 905 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-18 09:29:46.940 UTC [common/configtx] recurseConfigMap -> DEBU 906 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-18 09:29:46.940 UTC [common/configtx] recurseConfigMap -> DEBU 907 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-18 09:29:46.941 UTC [common/configtx] recurseConfigMap -> DEBU 908 Setting policy for key Readers to +2018-01-18 09:29:46.941 UTC [common/configtx] recurseConfigMap -> DEBU 909 Setting policy for key Writers to +2018-01-18 09:29:46.941 UTC [common/configtx] recurseConfigMap -> DEBU 90a Setting policy for key Admins to +2018-01-18 09:29:46.941 UTC [common/configtx] recurseConfigMap -> DEBU 90b Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-18 09:29:46.942 UTC [common/configtx] recurseConfigMap -> DEBU 90c Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-18 09:29:46.942 UTC [common/configtx] recurseConfigMap -> DEBU 90d Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-18 09:29:46.942 UTC [common/configtx] recurseConfigMap -> DEBU 90e Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-18 09:29:46.942 UTC [common/configtx] recurseConfigMap -> DEBU 90f Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-18 09:29:46.942 UTC [common/configtx] recurseConfigMap -> DEBU 910 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-18 09:29:46.943 UTC [common/configtx] recurseConfigMap -> DEBU 911 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-18 09:29:46.943 UTC [common/configtx] recurseConfigMap -> DEBU 912 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-18 09:29:46.943 UTC [common/configtx] recurseConfigMap -> DEBU 913 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-18 09:29:46.943 UTC [common/configtx] processConfig -> DEBU 914 Beginning new config for channel businesschannel +2018-01-18 09:29:46.944 UTC [common/config] NewStandardValues -> DEBU 915 Initializing protos for *config.ChannelProtos +2018-01-18 09:29:46.944 UTC [common/config] initializeProtosStruct -> DEBU 916 Processing field: HashingAlgorithm +2018-01-18 09:29:46.944 UTC [common/config] initializeProtosStruct -> DEBU 917 Processing field: BlockDataHashingStructure +2018-01-18 09:29:46.944 UTC [common/config] initializeProtosStruct -> DEBU 918 Processing field: OrdererAddresses +2018-01-18 09:29:46.944 UTC [common/config] initializeProtosStruct -> DEBU 919 Processing field: Consortium +2018-01-18 09:29:46.945 UTC [policies] ProposePolicy -> DEBU 91a Proposed new policy Writers for Channel +2018-01-18 09:29:46.945 UTC [policies] ProposePolicy -> DEBU 91b Proposed new policy Admins for Channel +2018-01-18 09:29:46.945 UTC [policies] ProposePolicy -> DEBU 91c Proposed new policy Readers for Channel +2018-01-18 09:29:46.945 UTC [common/config] NewStandardValues -> DEBU 91d Initializing protos for *config.OrdererProtos +2018-01-18 09:29:46.945 UTC [common/config] initializeProtosStruct -> DEBU 91e Processing field: ConsensusType +2018-01-18 09:29:46.945 UTC [common/config] initializeProtosStruct -> DEBU 91f Processing field: BatchSize +2018-01-18 09:29:46.945 UTC [common/config] initializeProtosStruct -> DEBU 920 Processing field: BatchTimeout +2018-01-18 09:29:46.946 UTC [common/config] initializeProtosStruct -> DEBU 921 Processing field: KafkaBrokers +2018-01-18 09:29:46.946 UTC [common/config] initializeProtosStruct -> DEBU 922 Processing field: ChannelRestrictions +2018-01-18 09:29:46.946 UTC [policies] ProposePolicy -> DEBU 923 Proposed new policy BlockValidation for Orderer +2018-01-18 09:29:46.946 UTC [policies] ProposePolicy -> DEBU 924 Proposed new policy Readers for Orderer +2018-01-18 09:29:46.946 UTC [policies] ProposePolicy -> DEBU 925 Proposed new policy Writers for Orderer +2018-01-18 09:29:46.946 UTC [policies] ProposePolicy -> DEBU 926 Proposed new policy Admins for Orderer +2018-01-18 09:29:46.946 UTC [common/config] NewStandardValues -> DEBU 927 Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:46.946 UTC [common/config] initializeProtosStruct -> DEBU 928 Processing field: MSP +2018-01-18 09:29:46.946 UTC [policies] ProposePolicy -> DEBU 929 Proposed new policy Writers for OrdererOrg +2018-01-18 09:29:46.947 UTC [policies] ProposePolicy -> DEBU 92a Proposed new policy Admins for OrdererOrg +2018-01-18 09:29:46.947 UTC [policies] ProposePolicy -> DEBU 92b Proposed new policy Readers for OrdererOrg +2018-01-18 09:29:46.947 UTC [common/config] NewStandardValues -> DEBU 92c Initializing protos for *struct {} +2018-01-18 09:29:46.947 UTC [policies] ProposePolicy -> DEBU 92d Proposed new policy Writers for Application +2018-01-18 09:29:46.947 UTC [policies] ProposePolicy -> DEBU 92e Proposed new policy Readers for Application +2018-01-18 09:29:46.947 UTC [policies] ProposePolicy -> DEBU 92f Proposed new policy Admins for Application +2018-01-18 09:29:46.948 UTC [common/config] NewStandardValues -> DEBU 930 Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:46.948 UTC [common/config] initializeProtosStruct -> DEBU 931 Processing field: MSP +2018-01-18 09:29:46.948 UTC [common/config] NewStandardValues -> DEBU 932 Initializing protos for *config.ApplicationOrgProtos +2018-01-18 09:29:46.948 UTC [common/config] initializeProtosStruct -> DEBU 933 Processing field: AnchorPeers +2018-01-18 09:29:46.948 UTC [common/config] NewStandardValues -> DEBU 934 Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:46.948 UTC [common/config] initializeProtosStruct -> DEBU 935 Processing field: MSP +2018-01-18 09:29:46.948 UTC [policies] ProposePolicy -> DEBU 936 Proposed new policy Readers for Org1MSP +2018-01-18 09:29:46.948 UTC [policies] ProposePolicy -> DEBU 937 Proposed new policy Writers for Org1MSP +2018-01-18 09:29:46.948 UTC [policies] ProposePolicy -> DEBU 938 Proposed new policy Admins for Org1MSP +2018-01-18 09:29:46.949 UTC [common/config] NewStandardValues -> DEBU 939 Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:46.949 UTC [common/config] initializeProtosStruct -> DEBU 93a Processing field: MSP +2018-01-18 09:29:46.949 UTC [common/config] NewStandardValues -> DEBU 93b Initializing protos for *config.ApplicationOrgProtos +2018-01-18 09:29:46.949 UTC [common/config] initializeProtosStruct -> DEBU 93c Processing field: AnchorPeers +2018-01-18 09:29:46.949 UTC [common/config] NewStandardValues -> DEBU 93d Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:46.949 UTC [common/config] initializeProtosStruct -> DEBU 93e Processing field: MSP +2018-01-18 09:29:46.949 UTC [policies] ProposePolicy -> DEBU 93f Proposed new policy Readers for Org2MSP +2018-01-18 09:29:46.949 UTC [policies] ProposePolicy -> DEBU 940 Proposed new policy Writers for Org2MSP +2018-01-18 09:29:46.949 UTC [policies] ProposePolicy -> DEBU 941 Proposed new policy Admins for Org2MSP +2018-01-18 09:29:46.950 UTC [common/config] validateMSP -> DEBU 942 Setting up MSP for org OrdererOrg +2018-01-18 09:29:46.950 UTC [msp] NewBccspMsp -> DEBU 943 Creating BCCSP-based MSP instance +2018-01-18 09:29:46.950 UTC [msp] Setup -> DEBU 944 Setting up MSP instance OrdererMSP +2018-01-18 09:29:46.950 UTC [msp/identity] newIdentity -> DEBU 945 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -4003,7 +4083,7 @@ AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= -----END CERTIFICATE----- -2018-01-18 01:58:53.586 UTC [msp/identity] newIdentity -> DEBU 92a Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:46.952 UTC [msp/identity] newIdentity -> DEBU 946 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -4016,7 +4096,7 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -----END CERTIFICATE----- -2018-01-18 01:58:53.586 UTC [msp/identity] newIdentity -> DEBU 92b Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:46.953 UTC [msp/identity] newIdentity -> DEBU 947 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -4029,60 +4109,12 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -----END CERTIFICATE----- -2018-01-18 01:58:53.587 UTC [msp] Validate -> DEBU 92c MSP OrdererMSP validating identity -2018-01-18 01:58:53.587 UTC [common/config] Validate -> DEBU 92d Anchor peers for org Org2MSP are -2018-01-18 01:58:53.587 UTC [common/config] validateMSP -> DEBU 92e Setting up MSP for org Org2MSP -2018-01-18 01:58:53.587 UTC [msp] NewBccspMsp -> DEBU 92f Creating BCCSP-based MSP instance -2018-01-18 01:58:53.588 UTC [msp] Setup -> DEBU 930 Setting up MSP instance Org2MSP -2018-01-18 01:58:53.588 UTC [msp/identity] newIdentity -> DEBU 931 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa -MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 -sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ -xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv -WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk -SCjyRdD3aQ== ------END CERTIFICATE----- -2018-01-18 01:58:53.589 UTC [msp/identity] newIdentity -> DEBU 932 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -AXYxULZpXYDQXt1KaLI= ------END CERTIFICATE----- -2018-01-18 01:58:53.590 UTC [msp/identity] newIdentity -> DEBU 933 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -AXYxULZpXYDQXt1KaLI= ------END CERTIFICATE----- -2018-01-18 01:58:53.591 UTC [msp] Validate -> DEBU 934 MSP Org2MSP validating identity -2018-01-18 01:58:53.591 UTC [common/config] Validate -> DEBU 935 Anchor peers for org Org1MSP are anchor_peers: -2018-01-18 01:58:53.591 UTC [common/config] validateMSP -> DEBU 936 Setting up MSP for org Org1MSP -2018-01-18 01:58:53.591 UTC [msp] NewBccspMsp -> DEBU 937 Creating BCCSP-based MSP instance -2018-01-18 01:58:53.591 UTC [msp] Setup -> DEBU 938 Setting up MSP instance Org1MSP -2018-01-18 01:58:53.591 UTC [msp/identity] newIdentity -> DEBU 939 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:46.954 UTC [msp] Validate -> DEBU 948 MSP OrdererMSP validating identity +2018-01-18 09:29:46.954 UTC [common/config] Validate -> DEBU 949 Anchor peers for org Org1MSP are anchor_peers: +2018-01-18 09:29:46.954 UTC [common/config] validateMSP -> DEBU 94a Setting up MSP for org Org1MSP +2018-01-18 09:29:46.954 UTC [msp] NewBccspMsp -> DEBU 94b Creating BCCSP-based MSP instance +2018-01-18 09:29:46.954 UTC [msp] Setup -> DEBU 94c Setting up MSP instance Org1MSP +2018-01-18 09:29:46.955 UTC [msp/identity] newIdentity -> DEBU 94d Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -4097,7 +4129,7 @@ JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ H7n8z1pj5w== -----END CERTIFICATE----- -2018-01-18 01:58:53.592 UTC [msp/identity] newIdentity -> DEBU 93a Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:46.956 UTC [msp/identity] newIdentity -> DEBU 94e Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -4111,7 +4143,7 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-18 01:58:53.592 UTC [msp/identity] newIdentity -> DEBU 93b Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:46.958 UTC [msp/identity] newIdentity -> DEBU 94f Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -4125,290 +4157,12 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-18 01:58:53.593 UTC [msp] Validate -> DEBU 93c MSP Org1MSP validating identity -2018-01-18 01:58:53.593 UTC [msp] Setup -> DEBU 93d Setting up the MSP manager (3 msps) -2018-01-18 01:58:53.593 UTC [msp] Setup -> DEBU 93e MSP manager setup complete, setup 3 msps -2018-01-18 01:58:53.593 UTC [msp] GetLocalMSP -> DEBU 93f Returning existing local MSP -2018-01-18 01:58:53.593 UTC [msp] GetDefaultSigningIdentity -> DEBU 940 Obtaining default signing identity -2018-01-18 01:58:53.594 UTC [msp] GetLocalMSP -> DEBU 941 Returning existing local MSP -2018-01-18 01:58:53.594 UTC [msp] GetDefaultSigningIdentity -> DEBU 942 Obtaining default signing identity -2018-01-18 01:58:53.594 UTC [msp/identity] Sign -> DEBU 943 Sign: plaintext: 0AB7060A1B08011A0608DDFEFFD20522...F9C96328AE86ED8EA7FAC2A100F9799A -2018-01-18 01:58:53.595 UTC [msp/identity] Sign -> DEBU 944 Sign: digest: C2128F92D4425D8D71E5C6BD84CDE40AB1A9B39928D653AE8B20779A5401D793 -2018-01-18 01:58:53.595 UTC [orderer/common/broadcast] Handle -> DEBU 945 [channel: businesschannel] Broadcast is filtering message of type CONFIG -2018-01-18 01:58:53.595 UTC [policies] GetPolicy -> DEBU 946 Returning policy Writers for evaluation -2018-01-18 01:58:53.595 UTC [cauthdsl] func1 -> DEBU 947 0xc420026620 gate 1516240733595544553 evaluation starts -2018-01-18 01:58:53.595 UTC [cauthdsl] func2 -> DEBU 948 0xc420026620 signed by 0 principal evaluation starts (used [false]) -2018-01-18 01:58:53.595 UTC [cauthdsl] func2 -> DEBU 949 0xc420026620 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-18 01:58:53.596 UTC [msp/identity] newIdentity -> DEBU 94a Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq -hkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz -MKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw -DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN -RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH -/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl ------END CERTIFICATE----- -2018-01-18 01:58:53.596 UTC [cauthdsl] func2 -> DEBU 94b 0xc420026620 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -2018-01-18 01:58:53.596 UTC [cauthdsl] func2 -> DEBU 94c 0xc420026620 principal evaluation fails -2018-01-18 01:58:53.596 UTC [cauthdsl] func1 -> DEBU 94d 0xc420026620 gate 1516240733595544553 evaluation fails -2018-01-18 01:58:53.596 UTC [cauthdsl] func1 -> DEBU 94e 0xc420026630 gate 1516240733596836807 evaluation starts -2018-01-18 01:58:53.596 UTC [cauthdsl] func2 -> DEBU 94f 0xc420026630 signed by 0 principal evaluation starts (used [false]) -2018-01-18 01:58:53.597 UTC [cauthdsl] func2 -> DEBU 950 0xc420026630 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-18 01:58:53.597 UTC [msp/identity] newIdentity -> DEBU 951 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq -hkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz -MKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw -DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN -RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH -/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl ------END CERTIFICATE----- -2018-01-18 01:58:53.598 UTC [cauthdsl] func2 -> DEBU 952 0xc420026630 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -2018-01-18 01:58:53.598 UTC [cauthdsl] func2 -> DEBU 953 0xc420026630 principal evaluation fails -2018-01-18 01:58:53.598 UTC [cauthdsl] func1 -> DEBU 954 0xc420026630 gate 1516240733596836807 evaluation fails -2018-01-18 01:58:53.598 UTC [cauthdsl] func1 -> DEBU 955 0xc420026640 gate 1516240733598860195 evaluation starts -2018-01-18 01:58:53.599 UTC [cauthdsl] func2 -> DEBU 956 0xc420026640 signed by 0 principal evaluation starts (used [false]) -2018-01-18 01:58:53.599 UTC [cauthdsl] func2 -> DEBU 957 0xc420026640 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-18 01:58:53.600 UTC [msp/identity] newIdentity -> DEBU 958 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq -hkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz -MKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw -DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN -RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH -/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl ------END CERTIFICATE----- -2018-01-18 01:58:53.601 UTC [msp] SatisfiesPrincipal -> DEBU 959 Checking if identity satisfies MEMBER role for OrdererMSP -2018-01-18 01:58:53.601 UTC [msp] Validate -> DEBU 95a MSP OrdererMSP validating identity -2018-01-18 01:58:53.602 UTC [cauthdsl] func2 -> DEBU 95b 0xc420026640 principal matched by identity 0 -2018-01-18 01:58:53.602 UTC [msp/identity] Verify -> DEBU 95c Verify: digest = 00000000 c2 12 8f 92 d4 42 5d 8d 71 e5 c6 bd 84 cd e4 0a |.....B].q.......| -00000010 b1 a9 b3 99 28 d6 53 ae 8b 20 77 9a 54 01 d7 93 |....(.S.. w.T...| -2018-01-18 01:58:53.603 UTC [msp/identity] Verify -> DEBU 95d Verify: sig = 00000000 30 44 02 20 73 e0 37 54 28 34 cb 4d 63 55 bc 73 |0D. s.7T(4.McU.s| -00000010 42 97 3e db 4c 3a 70 35 48 7d 71 f3 b8 fc 7f bc |B.>.L:p5H}q.....| -00000020 c9 ef d1 62 02 20 5d 50 3b a6 d5 27 c6 b8 95 39 |...b. ]P;..'...9| -00000030 6a 86 f0 32 df 93 91 a9 3f ef 42 86 a2 0a 7f 4f |j..2....?.B....O| -00000040 12 cf e5 cd b9 91 |......| -2018-01-18 01:58:53.603 UTC [cauthdsl] func2 -> DEBU 95e 0xc420026640 principal evaluation succeeds for identity 0 -2018-01-18 01:58:53.603 UTC [cauthdsl] func1 -> DEBU 95f 0xc420026640 gate 1516240733598860195 evaluation succeeds -2018-01-18 01:58:53.603 UTC [orderer/common/sigfilter] Apply -> DEBU 960 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420a21640 1 [0xc42014b398 0xc42014b430]}) %!s(*policies.implicitMetaPolicy=&{0xc420a38320 1 [0xc42014b4d0]})]} -2018-01-18 01:58:53.604 UTC [common/configtx] addToMap -> DEBU 961 Adding to config map: [Groups] /Channel -2018-01-18 01:58:53.604 UTC [common/configtx] addToMap -> DEBU 962 Adding to config map: [Groups] /Channel/Application -2018-01-18 01:58:53.604 UTC [common/configtx] addToMap -> DEBU 963 Adding to config map: [Groups] /Channel/Application/Org1MSP -2018-01-18 01:58:53.604 UTC [common/configtx] addToMap -> DEBU 964 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -2018-01-18 01:58:53.605 UTC [common/configtx] addToMap -> DEBU 965 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -2018-01-18 01:58:53.605 UTC [common/configtx] addToMap -> DEBU 966 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -2018-01-18 01:58:53.605 UTC [common/configtx] addToMap -> DEBU 967 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -2018-01-18 01:58:53.605 UTC [common/configtx] addToMap -> DEBU 968 Adding to config map: [Groups] /Channel -2018-01-18 01:58:53.605 UTC [common/configtx] addToMap -> DEBU 969 Adding to config map: [Groups] /Channel/Application -2018-01-18 01:58:53.606 UTC [common/configtx] addToMap -> DEBU 96a Adding to config map: [Groups] /Channel/Application/Org1MSP -2018-01-18 01:58:53.606 UTC [common/configtx] addToMap -> DEBU 96b Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -2018-01-18 01:58:53.606 UTC [common/configtx] addToMap -> DEBU 96c Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -2018-01-18 01:58:53.606 UTC [common/configtx] addToMap -> DEBU 96d Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -2018-01-18 01:58:53.606 UTC [common/configtx] addToMap -> DEBU 96e Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -2018-01-18 01:58:53.606 UTC [common/configtx] addToMap -> DEBU 96f Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -2018-01-18 01:58:53.606 UTC [policies] GetPolicy -> DEBU 970 Returning policy Admins for evaluation -2018-01-18 01:58:53.606 UTC [cauthdsl] func1 -> DEBU 971 0xc420026c08 gate 1516240733606881882 evaluation starts -2018-01-18 01:58:53.607 UTC [cauthdsl] func2 -> DEBU 972 0xc420026c08 signed by 0 principal evaluation starts (used [false]) -2018-01-18 01:58:53.607 UTC [cauthdsl] func2 -> DEBU 973 0xc420026c08 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-18 01:58:53.607 UTC [msp/identity] newIdentity -> DEBU 974 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -xHTBvxfK6mAzmUitFmY= ------END CERTIFICATE----- -2018-01-18 01:58:53.607 UTC [msp] SatisfiesPrincipal -> DEBU 975 Checking if identity satisfies ADMIN role for Org1MSP -2018-01-18 01:58:53.607 UTC [cauthdsl] func2 -> DEBU 976 0xc420026c08 principal matched by identity 0 -2018-01-18 01:58:53.607 UTC [msp/identity] Verify -> DEBU 977 Verify: digest = 00000000 94 4b 2c 71 ac 2b 83 1b 4e 1d 86 f1 f5 d3 9d 8e |.K,q.+..N.......| -00000010 f3 8e f6 70 4f 34 16 19 7d a9 02 4b 28 a4 53 a3 |...pO4..}..K(.S.| -2018-01-18 01:58:53.607 UTC [msp/identity] Verify -> DEBU 978 Verify: sig = 00000000 30 45 02 21 00 f6 c9 e9 b2 4c f2 f4 55 c4 e1 92 |0E.!.....L..U...| -00000010 61 2c 96 22 89 62 9c a3 6f 50 99 f0 ec e3 84 45 |a,.".b..oP.....E| -00000020 1e 9e d9 14 9b 02 20 00 f6 19 bb af 27 1f 30 22 |...... .....'.0"| -00000030 1c 27 43 69 31 bc bd 8c 67 7d 60 ef ed 09 30 ec |.'Ci1...g}`...0.| -00000040 92 99 08 c1 23 97 cd |....#..| -2018-01-18 01:58:53.608 UTC [cauthdsl] func2 -> DEBU 979 0xc420026c08 principal evaluation succeeds for identity 0 -2018-01-18 01:58:53.608 UTC [cauthdsl] func1 -> DEBU 97a 0xc420026c08 gate 1516240733606881882 evaluation succeeds -2018-01-18 01:58:53.608 UTC [common/configtx] recurseConfigMap -> DEBU 97b Setting policy for key Readers to -2018-01-18 01:58:53.608 UTC [common/configtx] recurseConfigMap -> DEBU 97c Setting policy for key Writers to -2018-01-18 01:58:53.608 UTC [common/configtx] recurseConfigMap -> DEBU 97d Setting policy for key Admins to -2018-01-18 01:58:53.608 UTC [common/configtx] recurseConfigMap -> DEBU 97e Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-18 01:58:53.608 UTC [common/configtx] recurseConfigMap -> DEBU 97f Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-18 01:58:53.608 UTC [common/configtx] recurseConfigMap -> DEBU 980 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-18 01:58:53.609 UTC [common/configtx] recurseConfigMap -> DEBU 981 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-18 01:58:53.609 UTC [common/configtx] recurseConfigMap -> DEBU 982 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-18 01:58:53.609 UTC [common/configtx] recurseConfigMap -> DEBU 983 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-18 01:58:53.609 UTC [common/configtx] recurseConfigMap -> DEBU 984 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-18 01:58:53.609 UTC [common/configtx] recurseConfigMap -> DEBU 985 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-18 01:58:53.609 UTC [common/configtx] recurseConfigMap -> DEBU 986 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-18 01:58:53.609 UTC [common/configtx] recurseConfigMap -> DEBU 987 Setting policy for key BlockValidation to policy: mod_policy:"Admins" -2018-01-18 01:58:53.609 UTC [common/configtx] recurseConfigMap -> DEBU 988 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-18 01:58:53.609 UTC [common/configtx] recurseConfigMap -> DEBU 989 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-18 01:58:53.609 UTC [common/configtx] recurseConfigMap -> DEBU 98a Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-18 01:58:53.609 UTC [common/configtx] recurseConfigMap -> DEBU 98b Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-18 01:58:53.609 UTC [common/configtx] recurseConfigMap -> DEBU 98c Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-18 01:58:53.609 UTC [common/configtx] recurseConfigMap -> DEBU 98d Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-18 01:58:53.609 UTC [common/configtx] processConfig -> DEBU 98e Beginning new config for channel businesschannel -2018-01-18 01:58:53.609 UTC [common/config] NewStandardValues -> DEBU 98f Initializing protos for *config.ChannelProtos -2018-01-18 01:58:53.610 UTC [common/config] initializeProtosStruct -> DEBU 990 Processing field: HashingAlgorithm -2018-01-18 01:58:53.610 UTC [common/config] initializeProtosStruct -> DEBU 991 Processing field: BlockDataHashingStructure -2018-01-18 01:58:53.610 UTC [common/config] initializeProtosStruct -> DEBU 992 Processing field: OrdererAddresses -2018-01-18 01:58:53.610 UTC [common/config] initializeProtosStruct -> DEBU 993 Processing field: Consortium -2018-01-18 01:58:53.610 UTC [policies] ProposePolicy -> DEBU 994 Proposed new policy Readers for Channel -2018-01-18 01:58:53.610 UTC [policies] ProposePolicy -> DEBU 995 Proposed new policy Writers for Channel -2018-01-18 01:58:53.611 UTC [policies] ProposePolicy -> DEBU 996 Proposed new policy Admins for Channel -2018-01-18 01:58:53.611 UTC [common/config] NewStandardValues -> DEBU 997 Initializing protos for *config.OrdererProtos -2018-01-18 01:58:53.611 UTC [common/config] initializeProtosStruct -> DEBU 998 Processing field: ConsensusType -2018-01-18 01:58:53.611 UTC [common/config] initializeProtosStruct -> DEBU 999 Processing field: BatchSize -2018-01-18 01:58:53.611 UTC [common/config] initializeProtosStruct -> DEBU 99a Processing field: BatchTimeout -2018-01-18 01:58:53.612 UTC [common/config] initializeProtosStruct -> DEBU 99b Processing field: KafkaBrokers -2018-01-18 01:58:53.612 UTC [common/config] initializeProtosStruct -> DEBU 99c Processing field: ChannelRestrictions -2018-01-18 01:58:53.612 UTC [policies] ProposePolicy -> DEBU 99d Proposed new policy Readers for Orderer -2018-01-18 01:58:53.612 UTC [policies] ProposePolicy -> DEBU 99e Proposed new policy Writers for Orderer -2018-01-18 01:58:53.612 UTC [policies] ProposePolicy -> DEBU 99f Proposed new policy Admins for Orderer -2018-01-18 01:58:53.612 UTC [policies] ProposePolicy -> DEBU 9a0 Proposed new policy BlockValidation for Orderer -2018-01-18 01:58:53.612 UTC [common/config] NewStandardValues -> DEBU 9a1 Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:53.612 UTC [common/config] initializeProtosStruct -> DEBU 9a2 Processing field: MSP -2018-01-18 01:58:53.612 UTC [policies] ProposePolicy -> DEBU 9a3 Proposed new policy Admins for OrdererOrg -2018-01-18 01:58:53.612 UTC [policies] ProposePolicy -> DEBU 9a4 Proposed new policy Readers for OrdererOrg -2018-01-18 01:58:53.613 UTC [policies] ProposePolicy -> DEBU 9a5 Proposed new policy Writers for OrdererOrg -2018-01-18 01:58:53.613 UTC [common/config] NewStandardValues -> DEBU 9a6 Initializing protos for *struct {} -2018-01-18 01:58:53.613 UTC [policies] ProposePolicy -> DEBU 9a7 Proposed new policy Admins for Application -2018-01-18 01:58:53.613 UTC [policies] ProposePolicy -> DEBU 9a8 Proposed new policy Writers for Application -2018-01-18 01:58:53.613 UTC [policies] ProposePolicy -> DEBU 9a9 Proposed new policy Readers for Application -2018-01-18 01:58:53.613 UTC [common/config] NewStandardValues -> DEBU 9aa Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:53.613 UTC [common/config] initializeProtosStruct -> DEBU 9ab Processing field: MSP -2018-01-18 01:58:53.613 UTC [common/config] NewStandardValues -> DEBU 9ac Initializing protos for *config.ApplicationOrgProtos -2018-01-18 01:58:53.613 UTC [common/config] initializeProtosStruct -> DEBU 9ad Processing field: AnchorPeers -2018-01-18 01:58:53.613 UTC [common/config] NewStandardValues -> DEBU 9ae Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:53.613 UTC [common/config] initializeProtosStruct -> DEBU 9af Processing field: MSP -2018-01-18 01:58:53.613 UTC [policies] ProposePolicy -> DEBU 9b0 Proposed new policy Writers for Org1MSP -2018-01-18 01:58:53.614 UTC [policies] ProposePolicy -> DEBU 9b1 Proposed new policy Admins for Org1MSP -2018-01-18 01:58:53.614 UTC [policies] ProposePolicy -> DEBU 9b2 Proposed new policy Readers for Org1MSP -2018-01-18 01:58:53.614 UTC [common/config] NewStandardValues -> DEBU 9b3 Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:53.614 UTC [common/config] initializeProtosStruct -> DEBU 9b4 Processing field: MSP -2018-01-18 01:58:53.614 UTC [common/config] NewStandardValues -> DEBU 9b5 Initializing protos for *config.ApplicationOrgProtos -2018-01-18 01:58:53.614 UTC [common/config] initializeProtosStruct -> DEBU 9b6 Processing field: AnchorPeers -2018-01-18 01:58:53.614 UTC [common/config] NewStandardValues -> DEBU 9b7 Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:53.614 UTC [common/config] initializeProtosStruct -> DEBU 9b8 Processing field: MSP -2018-01-18 01:58:53.614 UTC [policies] ProposePolicy -> DEBU 9b9 Proposed new policy Writers for Org2MSP -2018-01-18 01:58:53.614 UTC [policies] ProposePolicy -> DEBU 9ba Proposed new policy Admins for Org2MSP -2018-01-18 01:58:53.615 UTC [policies] ProposePolicy -> DEBU 9bb Proposed new policy Readers for Org2MSP -2018-01-18 01:58:53.615 UTC [common/config] validateMSP -> DEBU 9bc Setting up MSP for org OrdererOrg -2018-01-18 01:58:53.615 UTC [msp] NewBccspMsp -> DEBU 9bd Creating BCCSP-based MSP instance -2018-01-18 01:58:53.615 UTC [msp] Setup -> DEBU 9be Setting up MSP instance OrdererMSP -2018-01-18 01:58:53.615 UTC [msp/identity] newIdentity -> DEBU 9bf Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW -gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w -XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK -BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs -KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= ------END CERTIFICATE----- -2018-01-18 01:58:53.616 UTC [msp/identity] newIdentity -> DEBU 9c0 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 ------END CERTIFICATE----- -2018-01-18 01:58:53.616 UTC [msp/identity] newIdentity -> DEBU 9c1 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 ------END CERTIFICATE----- -2018-01-18 01:58:53.617 UTC [msp] Validate -> DEBU 9c2 MSP OrdererMSP validating identity -2018-01-18 01:58:53.617 UTC [common/config] Validate -> DEBU 9c3 Anchor peers for org Org1MSP are anchor_peers: -2018-01-18 01:58:53.617 UTC [common/config] validateMSP -> DEBU 9c4 Setting up MSP for org Org1MSP -2018-01-18 01:58:53.617 UTC [msp] NewBccspMsp -> DEBU 9c5 Creating BCCSP-based MSP instance -2018-01-18 01:58:53.617 UTC [msp] Setup -> DEBU 9c6 Setting up MSP instance Org1MSP -2018-01-18 01:58:53.617 UTC [msp/identity] newIdentity -> DEBU 9c7 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf -db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx -JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi -/IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ -H7n8z1pj5w== ------END CERTIFICATE----- -2018-01-18 01:58:53.618 UTC [msp/identity] newIdentity -> DEBU 9c8 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -xHTBvxfK6mAzmUitFmY= ------END CERTIFICATE----- -2018-01-18 01:58:53.619 UTC [msp/identity] newIdentity -> DEBU 9c9 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -xHTBvxfK6mAzmUitFmY= ------END CERTIFICATE----- -2018-01-18 01:58:53.619 UTC [msp] Validate -> DEBU 9ca MSP Org1MSP validating identity -2018-01-18 01:58:53.620 UTC [common/config] Validate -> DEBU 9cb Anchor peers for org Org2MSP are -2018-01-18 01:58:53.620 UTC [common/config] validateMSP -> DEBU 9cc Setting up MSP for org Org2MSP -2018-01-18 01:58:53.620 UTC [msp] NewBccspMsp -> DEBU 9cd Creating BCCSP-based MSP instance -2018-01-18 01:58:53.620 UTC [msp] Setup -> DEBU 9ce Setting up MSP instance Org2MSP -2018-01-18 01:58:53.620 UTC [msp/identity] newIdentity -> DEBU 9cf Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:46.959 UTC [msp] Validate -> DEBU 950 MSP Org1MSP validating identity +2018-01-18 09:29:46.960 UTC [common/config] Validate -> DEBU 951 Anchor peers for org Org2MSP are +2018-01-18 09:29:46.960 UTC [common/config] validateMSP -> DEBU 952 Setting up MSP for org Org2MSP +2018-01-18 09:29:46.960 UTC [msp] NewBccspMsp -> DEBU 953 Creating BCCSP-based MSP instance +2018-01-18 09:29:46.960 UTC [msp] Setup -> DEBU 954 Setting up MSP instance Org2MSP +2018-01-18 09:29:46.960 UTC [msp/identity] newIdentity -> DEBU 955 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -4423,7 +4177,7 @@ xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk SCjyRdD3aQ== -----END CERTIFICATE----- -2018-01-18 01:58:53.621 UTC [msp/identity] newIdentity -> DEBU 9d0 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:46.961 UTC [msp/identity] newIdentity -> DEBU 956 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -4437,7 +4191,7 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS AXYxULZpXYDQXt1KaLI= -----END CERTIFICATE----- -2018-01-18 01:58:53.622 UTC [msp/identity] newIdentity -> DEBU 9d1 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:46.962 UTC [msp/identity] newIdentity -> DEBU 957 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -4451,14 +4205,21 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS AXYxULZpXYDQXt1KaLI= -----END CERTIFICATE----- -2018-01-18 01:58:53.624 UTC [msp] Validate -> DEBU 9d2 MSP Org2MSP validating identity -2018-01-18 01:58:53.624 UTC [msp] Setup -> DEBU 9d3 Setting up the MSP manager (3 msps) -2018-01-18 01:58:53.625 UTC [msp] Setup -> DEBU 9d4 MSP manager setup complete, setup 3 msps -2018-01-18 01:58:53.626 UTC [policies] GetPolicy -> DEBU 9d5 Returning policy Writers for evaluation -2018-01-18 01:58:53.626 UTC [cauthdsl] func1 -> DEBU 9d6 0xc42014a020 gate 1516240733626823106 evaluation starts -2018-01-18 01:58:53.626 UTC [cauthdsl] func2 -> DEBU 9d7 0xc42014a020 signed by 0 principal evaluation starts (used [false]) -2018-01-18 01:58:53.626 UTC [cauthdsl] func2 -> DEBU 9d8 0xc42014a020 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-18 01:58:53.627 UTC [msp/identity] newIdentity -> DEBU 9d9 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:46.962 UTC [msp] Validate -> DEBU 958 MSP Org2MSP validating identity +2018-01-18 09:29:46.963 UTC [msp] Setup -> DEBU 959 Setting up the MSP manager (3 msps) +2018-01-18 09:29:46.963 UTC [msp] Setup -> DEBU 95a MSP manager setup complete, setup 3 msps +2018-01-18 09:29:46.963 UTC [msp] GetLocalMSP -> DEBU 95b Returning existing local MSP +2018-01-18 09:29:46.963 UTC [msp] GetDefaultSigningIdentity -> DEBU 95c Obtaining default signing identity +2018-01-18 09:29:46.963 UTC [msp] GetLocalMSP -> DEBU 95d Returning existing local MSP +2018-01-18 09:29:46.963 UTC [msp] GetDefaultSigningIdentity -> DEBU 95e Obtaining default signing identity +2018-01-18 09:29:46.963 UTC [msp/identity] Sign -> DEBU 95f Sign: plaintext: 0AB7060A1B08011A06088AD281D30522...ED68B8ECA9CA5CB023BBC6E366827389 +2018-01-18 09:29:46.963 UTC [msp/identity] Sign -> DEBU 960 Sign: digest: B45BA64445EF0BE867B42AEA0FB03C99F170F48CC1C820E6011371A70DBA6FD5 +2018-01-18 09:29:46.963 UTC [orderer/common/broadcast] Handle -> DEBU 961 [channel: businesschannel] Broadcast is filtering message of type CONFIG +2018-01-18 09:29:46.963 UTC [policies] GetPolicy -> DEBU 962 Returning policy Writers for evaluation +2018-01-18 09:29:46.963 UTC [cauthdsl] func1 -> DEBU 963 0xc420026968 gate 1516267786963957258 evaluation starts +2018-01-18 09:29:46.964 UTC [cauthdsl] func2 -> DEBU 964 0xc420026968 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:29:46.964 UTC [cauthdsl] func2 -> DEBU 965 0xc420026968 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:29:46.964 UTC [msp/identity] newIdentity -> DEBU 966 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -4471,13 +4232,13 @@ DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH /4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl -----END CERTIFICATE----- -2018-01-18 01:58:53.628 UTC [cauthdsl] func2 -> DEBU 9da 0xc42014a020 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -2018-01-18 01:58:53.628 UTC [cauthdsl] func2 -> DEBU 9db 0xc42014a020 principal evaluation fails -2018-01-18 01:58:53.628 UTC [cauthdsl] func1 -> DEBU 9dc 0xc42014a020 gate 1516240733626823106 evaluation fails -2018-01-18 01:58:53.628 UTC [cauthdsl] func1 -> DEBU 9dd 0xc42014a100 gate 1516240733628398018 evaluation starts -2018-01-18 01:58:53.628 UTC [cauthdsl] func2 -> DEBU 9de 0xc42014a100 signed by 0 principal evaluation starts (used [false]) -2018-01-18 01:58:53.628 UTC [cauthdsl] func2 -> DEBU 9df 0xc42014a100 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-18 01:58:53.629 UTC [msp/identity] newIdentity -> DEBU 9e0 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:46.964 UTC [cauthdsl] func2 -> DEBU 967 0xc420026968 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +2018-01-18 09:29:46.964 UTC [cauthdsl] func2 -> DEBU 968 0xc420026968 principal evaluation fails +2018-01-18 09:29:46.964 UTC [cauthdsl] func1 -> DEBU 969 0xc420026968 gate 1516267786963957258 evaluation fails +2018-01-18 09:29:46.965 UTC [cauthdsl] func1 -> DEBU 96a 0xc420026978 gate 1516267786965020126 evaluation starts +2018-01-18 09:29:46.965 UTC [cauthdsl] func2 -> DEBU 96b 0xc420026978 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:29:46.965 UTC [cauthdsl] func2 -> DEBU 96c 0xc420026978 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:29:46.965 UTC [msp/identity] newIdentity -> DEBU 96d Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -4490,13 +4251,13 @@ DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH /4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl -----END CERTIFICATE----- -2018-01-18 01:58:53.629 UTC [cauthdsl] func2 -> DEBU 9e1 0xc42014a100 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -2018-01-18 01:58:53.629 UTC [cauthdsl] func2 -> DEBU 9e2 0xc42014a100 principal evaluation fails -2018-01-18 01:58:53.629 UTC [cauthdsl] func1 -> DEBU 9e3 0xc42014a100 gate 1516240733628398018 evaluation fails -2018-01-18 01:58:53.629 UTC [cauthdsl] func1 -> DEBU 9e4 0xc42014a350 gate 1516240733629677079 evaluation starts -2018-01-18 01:58:53.629 UTC [cauthdsl] func2 -> DEBU 9e5 0xc42014a350 signed by 0 principal evaluation starts (used [false]) -2018-01-18 01:58:53.629 UTC [cauthdsl] func2 -> DEBU 9e6 0xc42014a350 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-18 01:58:53.630 UTC [msp/identity] newIdentity -> DEBU 9e7 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:46.965 UTC [cauthdsl] func2 -> DEBU 96e 0xc420026978 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +2018-01-18 09:29:46.965 UTC [cauthdsl] func2 -> DEBU 96f 0xc420026978 principal evaluation fails +2018-01-18 09:29:46.965 UTC [cauthdsl] func1 -> DEBU 970 0xc420026978 gate 1516267786965020126 evaluation fails +2018-01-18 09:29:46.965 UTC [cauthdsl] func1 -> DEBU 971 0xc420026988 gate 1516267786965762854 evaluation starts +2018-01-18 09:29:46.965 UTC [cauthdsl] func2 -> DEBU 972 0xc420026988 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:29:46.965 UTC [cauthdsl] func2 -> DEBU 973 0xc420026988 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:29:46.966 UTC [msp/identity] newIdentity -> DEBU 974 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -4509,39 +4270,39 @@ DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH /4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl -----END CERTIFICATE----- -2018-01-18 01:58:53.630 UTC [msp] SatisfiesPrincipal -> DEBU 9e8 Checking if identity satisfies MEMBER role for OrdererMSP -2018-01-18 01:58:53.630 UTC [msp] Validate -> DEBU 9e9 MSP OrdererMSP validating identity -2018-01-18 01:58:53.630 UTC [cauthdsl] func2 -> DEBU 9ea 0xc42014a350 principal matched by identity 0 -2018-01-18 01:58:53.630 UTC [msp/identity] Verify -> DEBU 9eb Verify: digest = 00000000 c2 12 8f 92 d4 42 5d 8d 71 e5 c6 bd 84 cd e4 0a |.....B].q.......| -00000010 b1 a9 b3 99 28 d6 53 ae 8b 20 77 9a 54 01 d7 93 |....(.S.. w.T...| -2018-01-18 01:58:53.630 UTC [msp/identity] Verify -> DEBU 9ec Verify: sig = 00000000 30 44 02 20 73 e0 37 54 28 34 cb 4d 63 55 bc 73 |0D. s.7T(4.McU.s| -00000010 42 97 3e db 4c 3a 70 35 48 7d 71 f3 b8 fc 7f bc |B.>.L:p5H}q.....| -00000020 c9 ef d1 62 02 20 5d 50 3b a6 d5 27 c6 b8 95 39 |...b. ]P;..'...9| -00000030 6a 86 f0 32 df 93 91 a9 3f ef 42 86 a2 0a 7f 4f |j..2....?.B....O| -00000040 12 cf e5 cd b9 91 |......| -2018-01-18 01:58:53.631 UTC [cauthdsl] func2 -> DEBU 9ed 0xc42014a350 principal evaluation succeeds for identity 0 -2018-01-18 01:58:53.631 UTC [cauthdsl] func1 -> DEBU 9ee 0xc42014a350 gate 1516240733629677079 evaluation succeeds -2018-01-18 01:58:53.631 UTC [orderer/common/sigfilter] Apply -> DEBU 9ef Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420a21640 1 [0xc42014b398 0xc42014b430]}) %!s(*policies.implicitMetaPolicy=&{0xc420a38320 1 [0xc42014b4d0]})]} -2018-01-18 01:58:53.631 UTC [common/configtx] addToMap -> DEBU 9f0 Adding to config map: [Groups] /Channel -2018-01-18 01:58:53.631 UTC [common/configtx] addToMap -> DEBU 9f1 Adding to config map: [Groups] /Channel/Application -2018-01-18 01:58:53.631 UTC [common/configtx] addToMap -> DEBU 9f2 Adding to config map: [Groups] /Channel/Application/Org1MSP -2018-01-18 01:58:53.631 UTC [common/configtx] addToMap -> DEBU 9f3 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -2018-01-18 01:58:53.631 UTC [common/configtx] addToMap -> DEBU 9f4 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -2018-01-18 01:58:53.632 UTC [common/configtx] addToMap -> DEBU 9f5 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -2018-01-18 01:58:53.632 UTC [common/configtx] addToMap -> DEBU 9f6 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -2018-01-18 01:58:53.632 UTC [common/configtx] addToMap -> DEBU 9f7 Adding to config map: [Groups] /Channel -2018-01-18 01:58:53.632 UTC [common/configtx] addToMap -> DEBU 9f8 Adding to config map: [Groups] /Channel/Application -2018-01-18 01:58:53.632 UTC [common/configtx] addToMap -> DEBU 9f9 Adding to config map: [Groups] /Channel/Application/Org1MSP -2018-01-18 01:58:53.632 UTC [common/configtx] addToMap -> DEBU 9fa Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -2018-01-18 01:58:53.633 UTC [common/configtx] addToMap -> DEBU 9fb Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -2018-01-18 01:58:53.633 UTC [common/configtx] addToMap -> DEBU 9fc Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -2018-01-18 01:58:53.633 UTC [common/configtx] addToMap -> DEBU 9fd Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -2018-01-18 01:58:53.633 UTC [common/configtx] addToMap -> DEBU 9fe Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -2018-01-18 01:58:53.633 UTC [policies] GetPolicy -> DEBU 9ff Returning policy Admins for evaluation -2018-01-18 01:58:53.633 UTC [cauthdsl] func1 -> DEBU a00 0xc42014aca8 gate 1516240733633741845 evaluation starts -2018-01-18 01:58:53.633 UTC [cauthdsl] func2 -> DEBU a01 0xc42014aca8 signed by 0 principal evaluation starts (used [false]) -2018-01-18 01:58:53.634 UTC [cauthdsl] func2 -> DEBU a02 0xc42014aca8 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-18 01:58:53.634 UTC [msp/identity] newIdentity -> DEBU a03 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:46.967 UTC [msp] SatisfiesPrincipal -> DEBU 975 Checking if identity satisfies MEMBER role for OrdererMSP +2018-01-18 09:29:46.967 UTC [msp] Validate -> DEBU 976 MSP OrdererMSP validating identity +2018-01-18 09:29:46.967 UTC [cauthdsl] func2 -> DEBU 977 0xc420026988 principal matched by identity 0 +2018-01-18 09:29:46.967 UTC [msp/identity] Verify -> DEBU 978 Verify: digest = 00000000 b4 5b a6 44 45 ef 0b e8 67 b4 2a ea 0f b0 3c 99 |.[.DE...g.*...<.| +00000010 f1 70 f4 8c c1 c8 20 e6 01 13 71 a7 0d ba 6f d5 |.p.... ...q...o.| +2018-01-18 09:29:46.969 UTC [msp/identity] Verify -> DEBU 979 Verify: sig = 00000000 30 45 02 21 00 ab 8d b0 ca 20 4a 7a ac 19 da ef |0E.!..... Jz....| +00000010 06 d7 b0 9c 39 1d d3 9f 0f c3 cb ae b6 64 4a 1b |....9........dJ.| +00000020 a8 9b 6e 52 d6 02 20 63 32 79 2a 81 45 81 ae ea |..nR.. c2y*.E...| +00000030 40 e8 92 95 7c d4 ae 5e 6f 8b ed 9e 91 a3 1f 3c |@...|..^o......<| +00000040 d6 14 08 ec ce d8 91 |.......| +2018-01-18 09:29:46.969 UTC [cauthdsl] func2 -> DEBU 97a 0xc420026988 principal evaluation succeeds for identity 0 +2018-01-18 09:29:46.969 UTC [cauthdsl] func1 -> DEBU 97b 0xc420026988 gate 1516267786965762854 evaluation succeeds +2018-01-18 09:29:46.969 UTC [orderer/common/sigfilter] Apply -> DEBU 97c Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42083ebe0 1 [0xc4200272e0 0xc420027298]}) %!s(*policies.implicitMetaPolicy=&{0xc42083f960 1 [0xc4200273d0]})]} +2018-01-18 09:29:46.969 UTC [common/configtx] addToMap -> DEBU 97d Adding to config map: [Groups] /Channel +2018-01-18 09:29:46.970 UTC [common/configtx] addToMap -> DEBU 97e Adding to config map: [Groups] /Channel/Application +2018-01-18 09:29:46.970 UTC [common/configtx] addToMap -> DEBU 97f Adding to config map: [Groups] /Channel/Application/Org1MSP +2018-01-18 09:29:46.970 UTC [common/configtx] addToMap -> DEBU 980 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +2018-01-18 09:29:46.970 UTC [common/configtx] addToMap -> DEBU 981 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +2018-01-18 09:29:46.970 UTC [common/configtx] addToMap -> DEBU 982 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +2018-01-18 09:29:46.970 UTC [common/configtx] addToMap -> DEBU 983 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +2018-01-18 09:29:46.970 UTC [common/configtx] addToMap -> DEBU 984 Adding to config map: [Groups] /Channel +2018-01-18 09:29:46.970 UTC [common/configtx] addToMap -> DEBU 985 Adding to config map: [Groups] /Channel/Application +2018-01-18 09:29:46.970 UTC [common/configtx] addToMap -> DEBU 986 Adding to config map: [Groups] /Channel/Application/Org1MSP +2018-01-18 09:29:46.970 UTC [common/configtx] addToMap -> DEBU 987 Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +2018-01-18 09:29:46.971 UTC [common/configtx] addToMap -> DEBU 988 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +2018-01-18 09:29:46.971 UTC [common/configtx] addToMap -> DEBU 989 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +2018-01-18 09:29:46.971 UTC [common/configtx] addToMap -> DEBU 98a Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +2018-01-18 09:29:46.971 UTC [common/configtx] addToMap -> DEBU 98b Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +2018-01-18 09:29:46.971 UTC [policies] GetPolicy -> DEBU 98c Returning policy Admins for evaluation +2018-01-18 09:29:46.971 UTC [cauthdsl] func1 -> DEBU 98d 0xc420026f40 gate 1516267786971645711 evaluation starts +2018-01-18 09:29:46.971 UTC [cauthdsl] func2 -> DEBU 98e 0xc420026f40 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:29:46.971 UTC [cauthdsl] func2 -> DEBU 98f 0xc420026f40 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:29:46.972 UTC [msp/identity] newIdentity -> DEBU 990 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -4555,140 +4316,131 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-18 01:58:53.634 UTC [msp] SatisfiesPrincipal -> DEBU a04 Checking if identity satisfies ADMIN role for Org1MSP -2018-01-18 01:58:53.634 UTC [cauthdsl] func2 -> DEBU a05 0xc42014aca8 principal matched by identity 0 -2018-01-18 01:58:53.635 UTC [msp/identity] Verify -> DEBU a06 Verify: digest = 00000000 94 4b 2c 71 ac 2b 83 1b 4e 1d 86 f1 f5 d3 9d 8e |.K,q.+..N.......| -00000010 f3 8e f6 70 4f 34 16 19 7d a9 02 4b 28 a4 53 a3 |...pO4..}..K(.S.| -2018-01-18 01:58:53.635 UTC [msp/identity] Verify -> DEBU a07 Verify: sig = 00000000 30 45 02 21 00 f6 c9 e9 b2 4c f2 f4 55 c4 e1 92 |0E.!.....L..U...| -00000010 61 2c 96 22 89 62 9c a3 6f 50 99 f0 ec e3 84 45 |a,.".b..oP.....E| -00000020 1e 9e d9 14 9b 02 20 00 f6 19 bb af 27 1f 30 22 |...... .....'.0"| -00000030 1c 27 43 69 31 bc bd 8c 67 7d 60 ef ed 09 30 ec |.'Ci1...g}`...0.| -00000040 92 99 08 c1 23 97 cd |....#..| -2018-01-18 01:58:53.636 UTC [cauthdsl] func2 -> DEBU a08 0xc42014aca8 principal evaluation succeeds for identity 0 -2018-01-18 01:58:53.636 UTC [cauthdsl] func1 -> DEBU a09 0xc42014aca8 gate 1516240733633741845 evaluation succeeds -2018-01-18 01:58:53.637 UTC [common/configtx] recurseConfigMap -> DEBU a0a Setting policy for key Readers to -2018-01-18 01:58:53.637 UTC [common/configtx] recurseConfigMap -> DEBU a0b Setting policy for key Writers to -2018-01-18 01:58:53.637 UTC [common/configtx] recurseConfigMap -> DEBU a0c Setting policy for key Admins to -2018-01-18 01:58:53.637 UTC [common/configtx] recurseConfigMap -> DEBU a0d Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-18 01:58:53.637 UTC [common/configtx] recurseConfigMap -> DEBU a0e Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-18 01:58:53.637 UTC [common/configtx] recurseConfigMap -> DEBU a0f Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-18 01:58:53.638 UTC [common/configtx] recurseConfigMap -> DEBU a10 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-18 01:58:53.638 UTC [common/configtx] recurseConfigMap -> DEBU a12 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-18 01:58:53.638 UTC [common/configtx] recurseConfigMap -> DEBU a13 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-18 01:58:53.638 UTC [common/configtx] recurseConfigMap -> DEBU a14 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-18 01:58:53.638 UTC [orderer/common/broadcast] Handle -> DEBU a11 [channel: businesschannel] Broadcast has successfully enqueued message of type CONFIG -2018-01-18 01:58:53.639 UTC [common/configtx] recurseConfigMap -> DEBU a15 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-18 01:58:53.639 UTC [common/configtx] recurseConfigMap -> DEBU a16 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-18 01:58:53.639 UTC [common/configtx] recurseConfigMap -> DEBU a17 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-18 01:58:53.639 UTC [common/configtx] recurseConfigMap -> DEBU a18 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-18 01:58:53.654 UTC [common/configtx] recurseConfigMap -> DEBU a1b Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-18 01:58:53.653 UTC [orderer/common/deliver] Handle -> WARN a19 Error reading from stream: rpc error: code = Canceled desc = context canceled -2018-01-18 01:58:53.659 UTC [orderer/main] func1 -> DEBU a1d Closing Deliver stream -2018-01-18 01:58:53.654 UTC [orderer/common/broadcast] Handle -> WARN a1a Error reading from stream: rpc error: code = Canceled desc = context canceled -2018-01-18 01:58:53.659 UTC [common/configtx] recurseConfigMap -> DEBU a1c Setting policy for key BlockValidation to policy: mod_policy:"Admins" -2018-01-18 01:58:53.660 UTC [orderer/main] func1 -> DEBU a1e Closing Broadcast stream -2018-01-18 01:58:53.660 UTC [common/configtx] recurseConfigMap -> DEBU a1f Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-18 01:58:53.660 UTC [common/configtx] recurseConfigMap -> DEBU a20 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-18 01:58:53.661 UTC [common/configtx] recurseConfigMap -> DEBU a21 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-18 01:58:53.661 UTC [common/configtx] processConfig -> DEBU a22 Beginning new config for channel businesschannel -2018-01-18 01:58:53.661 UTC [common/config] NewStandardValues -> DEBU a23 Initializing protos for *config.ChannelProtos -2018-01-18 01:58:53.661 UTC [common/config] initializeProtosStruct -> DEBU a24 Processing field: HashingAlgorithm -2018-01-18 01:58:53.661 UTC [common/config] initializeProtosStruct -> DEBU a25 Processing field: BlockDataHashingStructure -2018-01-18 01:58:53.661 UTC [common/config] initializeProtosStruct -> DEBU a26 Processing field: OrdererAddresses -2018-01-18 01:58:53.661 UTC [common/config] initializeProtosStruct -> DEBU a27 Processing field: Consortium -2018-01-18 01:58:53.661 UTC [policies] ProposePolicy -> DEBU a28 Proposed new policy Admins for Channel -2018-01-18 01:58:53.661 UTC [policies] ProposePolicy -> DEBU a29 Proposed new policy Readers for Channel -2018-01-18 01:58:53.661 UTC [policies] ProposePolicy -> DEBU a2a Proposed new policy Writers for Channel -2018-01-18 01:58:53.661 UTC [common/config] NewStandardValues -> DEBU a2b Initializing protos for *struct {} -2018-01-18 01:58:53.662 UTC [policies] ProposePolicy -> DEBU a2c Proposed new policy Writers for Application -2018-01-18 01:58:53.662 UTC [policies] ProposePolicy -> DEBU a2d Proposed new policy Readers for Application -2018-01-18 01:58:53.662 UTC [policies] ProposePolicy -> DEBU a2e Proposed new policy Admins for Application -2018-01-18 01:58:53.662 UTC [common/config] NewStandardValues -> DEBU a2f Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:53.662 UTC [common/config] initializeProtosStruct -> DEBU a30 Processing field: MSP -2018-01-18 01:58:53.662 UTC [common/config] NewStandardValues -> DEBU a31 Initializing protos for *config.ApplicationOrgProtos -2018-01-18 01:58:53.662 UTC [common/config] initializeProtosStruct -> DEBU a32 Processing field: AnchorPeers -2018-01-18 01:58:53.662 UTC [common/config] NewStandardValues -> DEBU a33 Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:53.662 UTC [common/config] initializeProtosStruct -> DEBU a34 Processing field: MSP -2018-01-18 01:58:53.662 UTC [policies] ProposePolicy -> DEBU a35 Proposed new policy Writers for Org2MSP -2018-01-18 01:58:53.663 UTC [policies] ProposePolicy -> DEBU a36 Proposed new policy Admins for Org2MSP -2018-01-18 01:58:53.663 UTC [policies] ProposePolicy -> DEBU a37 Proposed new policy Readers for Org2MSP -2018-01-18 01:58:53.663 UTC [common/config] NewStandardValues -> DEBU a38 Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:53.663 UTC [common/config] initializeProtosStruct -> DEBU a39 Processing field: MSP -2018-01-18 01:58:53.663 UTC [common/config] NewStandardValues -> DEBU a3a Initializing protos for *config.ApplicationOrgProtos -2018-01-18 01:58:53.663 UTC [common/config] initializeProtosStruct -> DEBU a3b Processing field: AnchorPeers -2018-01-18 01:58:53.663 UTC [common/config] NewStandardValues -> DEBU a3c Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:53.663 UTC [common/config] initializeProtosStruct -> DEBU a3d Processing field: MSP -2018-01-18 01:58:53.663 UTC [policies] ProposePolicy -> DEBU a3e Proposed new policy Admins for Org1MSP -2018-01-18 01:58:53.664 UTC [policies] ProposePolicy -> DEBU a3f Proposed new policy Readers for Org1MSP -2018-01-18 01:58:53.664 UTC [policies] ProposePolicy -> DEBU a40 Proposed new policy Writers for Org1MSP -2018-01-18 01:58:53.664 UTC [common/config] NewStandardValues -> DEBU a41 Initializing protos for *config.OrdererProtos -2018-01-18 01:58:53.664 UTC [common/config] initializeProtosStruct -> DEBU a42 Processing field: ConsensusType -2018-01-18 01:58:53.665 UTC [common/config] initializeProtosStruct -> DEBU a43 Processing field: BatchSize -2018-01-18 01:58:53.665 UTC [common/config] initializeProtosStruct -> DEBU a44 Processing field: BatchTimeout -2018-01-18 01:58:53.665 UTC [common/config] initializeProtosStruct -> DEBU a45 Processing field: KafkaBrokers -2018-01-18 01:58:53.665 UTC [common/config] initializeProtosStruct -> DEBU a46 Processing field: ChannelRestrictions -2018-01-18 01:58:53.665 UTC [policies] ProposePolicy -> DEBU a47 Proposed new policy Admins for Orderer -2018-01-18 01:58:53.665 UTC [policies] ProposePolicy -> DEBU a48 Proposed new policy BlockValidation for Orderer -2018-01-18 01:58:53.665 UTC [policies] ProposePolicy -> DEBU a49 Proposed new policy Readers for Orderer -2018-01-18 01:58:53.665 UTC [policies] ProposePolicy -> DEBU a4a Proposed new policy Writers for Orderer -2018-01-18 01:58:53.666 UTC [common/config] NewStandardValues -> DEBU a4b Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:53.666 UTC [common/config] initializeProtosStruct -> DEBU a4c Processing field: MSP -2018-01-18 01:58:53.666 UTC [policies] ProposePolicy -> DEBU a4d Proposed new policy Writers for OrdererOrg -2018-01-18 01:58:53.666 UTC [policies] ProposePolicy -> DEBU a4e Proposed new policy Admins for OrdererOrg -2018-01-18 01:58:53.666 UTC [policies] ProposePolicy -> DEBU a4f Proposed new policy Readers for OrdererOrg -2018-01-18 01:58:53.667 UTC [common/config] Validate -> DEBU a50 Anchor peers for org Org2MSP are -2018-01-18 01:58:53.667 UTC [common/config] validateMSP -> DEBU a51 Setting up MSP for org Org2MSP -2018-01-18 01:58:53.667 UTC [msp] NewBccspMsp -> DEBU a52 Creating BCCSP-based MSP instance -2018-01-18 01:58:53.667 UTC [msp] Setup -> DEBU a53 Setting up MSP instance Org2MSP -2018-01-18 01:58:53.675 UTC [msp/identity] newIdentity -> DEBU a54 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw +2018-01-18 09:29:46.972 UTC [msp] SatisfiesPrincipal -> DEBU 991 Checking if identity satisfies ADMIN role for Org1MSP +2018-01-18 09:29:46.973 UTC [cauthdsl] func2 -> DEBU 992 0xc420026f40 principal matched by identity 0 +2018-01-18 09:29:46.973 UTC [msp/identity] Verify -> DEBU 993 Verify: digest = 00000000 4d be a9 c4 54 6d 00 c1 09 ed 0f 97 df 98 d3 b4 |M...Tm..........| +00000010 3f 7e 4c 7b 14 2e 85 95 dd e8 fa 88 85 14 1c a4 |?~L{............| +2018-01-18 09:29:46.973 UTC [msp/identity] Verify -> DEBU 994 Verify: sig = 00000000 30 44 02 20 55 16 a0 b6 71 60 a7 f6 6c 09 21 48 |0D. U...q`..l.!H| +00000010 5f e7 b9 36 eb 3a fc 25 9e ca 91 a5 21 1b 9d 0d |_..6.:.%....!...| +00000020 d3 3a a3 0c 02 20 5b 2b 93 ce de c4 63 57 76 14 |.:... [+....cWv.| +00000030 88 2e 5c c0 fa 75 1d 6b 5d 34 ee 1a c9 f9 9a ea |..\..u.k]4......| +00000040 c6 d4 a3 0c a6 3a |.....:| +2018-01-18 09:29:46.973 UTC [cauthdsl] func2 -> DEBU 995 0xc420026f40 principal evaluation succeeds for identity 0 +2018-01-18 09:29:46.973 UTC [cauthdsl] func1 -> DEBU 996 0xc420026f40 gate 1516267786971645711 evaluation succeeds +2018-01-18 09:29:46.974 UTC [common/configtx] recurseConfigMap -> DEBU 997 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-18 09:29:46.974 UTC [common/configtx] recurseConfigMap -> DEBU 998 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-18 09:29:46.974 UTC [common/configtx] recurseConfigMap -> DEBU 999 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-18 09:29:46.974 UTC [common/configtx] recurseConfigMap -> DEBU 99a Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-18 09:29:46.974 UTC [common/configtx] recurseConfigMap -> DEBU 99b Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-18 09:29:46.974 UTC [common/configtx] recurseConfigMap -> DEBU 99c Setting policy for key BlockValidation to policy: mod_policy:"Admins" +2018-01-18 09:29:46.974 UTC [common/configtx] recurseConfigMap -> DEBU 99d Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-18 09:29:46.974 UTC [common/configtx] recurseConfigMap -> DEBU 99e Setting policy for key Readers to +2018-01-18 09:29:46.974 UTC [common/configtx] recurseConfigMap -> DEBU 99f Setting policy for key Writers to +2018-01-18 09:29:46.974 UTC [common/configtx] recurseConfigMap -> DEBU 9a0 Setting policy for key Admins to +2018-01-18 09:29:46.974 UTC [common/configtx] recurseConfigMap -> DEBU 9a1 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-18 09:29:46.974 UTC [common/configtx] recurseConfigMap -> DEBU 9a2 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-18 09:29:46.975 UTC [common/configtx] recurseConfigMap -> DEBU 9a3 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-18 09:29:46.975 UTC [common/configtx] recurseConfigMap -> DEBU 9a4 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-18 09:29:46.975 UTC [common/configtx] recurseConfigMap -> DEBU 9a5 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-18 09:29:46.975 UTC [common/configtx] recurseConfigMap -> DEBU 9a6 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-18 09:29:46.975 UTC [common/configtx] recurseConfigMap -> DEBU 9a7 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-18 09:29:46.975 UTC [common/configtx] recurseConfigMap -> DEBU 9a8 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-18 09:29:46.975 UTC [common/configtx] recurseConfigMap -> DEBU 9a9 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-18 09:29:46.975 UTC [common/configtx] processConfig -> DEBU 9aa Beginning new config for channel businesschannel +2018-01-18 09:29:46.975 UTC [common/config] NewStandardValues -> DEBU 9ab Initializing protos for *config.ChannelProtos +2018-01-18 09:29:46.975 UTC [common/config] initializeProtosStruct -> DEBU 9ac Processing field: HashingAlgorithm +2018-01-18 09:29:46.975 UTC [common/config] initializeProtosStruct -> DEBU 9ad Processing field: BlockDataHashingStructure +2018-01-18 09:29:46.975 UTC [common/config] initializeProtosStruct -> DEBU 9ae Processing field: OrdererAddresses +2018-01-18 09:29:46.976 UTC [common/config] initializeProtosStruct -> DEBU 9af Processing field: Consortium +2018-01-18 09:29:46.976 UTC [policies] ProposePolicy -> DEBU 9b0 Proposed new policy Writers for Channel +2018-01-18 09:29:46.976 UTC [policies] ProposePolicy -> DEBU 9b1 Proposed new policy Admins for Channel +2018-01-18 09:29:46.976 UTC [policies] ProposePolicy -> DEBU 9b2 Proposed new policy Readers for Channel +2018-01-18 09:29:46.976 UTC [common/config] NewStandardValues -> DEBU 9b3 Initializing protos for *config.OrdererProtos +2018-01-18 09:29:46.976 UTC [common/config] initializeProtosStruct -> DEBU 9b4 Processing field: ConsensusType +2018-01-18 09:29:46.976 UTC [common/config] initializeProtosStruct -> DEBU 9b5 Processing field: BatchSize +2018-01-18 09:29:46.976 UTC [common/config] initializeProtosStruct -> DEBU 9b6 Processing field: BatchTimeout +2018-01-18 09:29:46.976 UTC [common/config] initializeProtosStruct -> DEBU 9b7 Processing field: KafkaBrokers +2018-01-18 09:29:46.976 UTC [common/config] initializeProtosStruct -> DEBU 9b8 Processing field: ChannelRestrictions +2018-01-18 09:29:46.976 UTC [policies] ProposePolicy -> DEBU 9b9 Proposed new policy Writers for Orderer +2018-01-18 09:29:46.976 UTC [policies] ProposePolicy -> DEBU 9ba Proposed new policy Admins for Orderer +2018-01-18 09:29:46.982 UTC [policies] ProposePolicy -> DEBU 9bb Proposed new policy BlockValidation for Orderer +2018-01-18 09:29:46.982 UTC [policies] ProposePolicy -> DEBU 9bc Proposed new policy Readers for Orderer +2018-01-18 09:29:46.982 UTC [common/config] NewStandardValues -> DEBU 9bd Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:46.982 UTC [common/config] initializeProtosStruct -> DEBU 9be Processing field: MSP +2018-01-18 09:29:46.982 UTC [policies] ProposePolicy -> DEBU 9bf Proposed new policy Readers for OrdererOrg +2018-01-18 09:29:46.982 UTC [policies] ProposePolicy -> DEBU 9c0 Proposed new policy Writers for OrdererOrg +2018-01-18 09:29:46.982 UTC [policies] ProposePolicy -> DEBU 9c1 Proposed new policy Admins for OrdererOrg +2018-01-18 09:29:46.982 UTC [common/config] NewStandardValues -> DEBU 9c2 Initializing protos for *struct {} +2018-01-18 09:29:46.982 UTC [policies] ProposePolicy -> DEBU 9c3 Proposed new policy Readers for Application +2018-01-18 09:29:46.982 UTC [policies] ProposePolicy -> DEBU 9c4 Proposed new policy Admins for Application +2018-01-18 09:29:46.982 UTC [policies] ProposePolicy -> DEBU 9c5 Proposed new policy Writers for Application +2018-01-18 09:29:46.983 UTC [common/config] NewStandardValues -> DEBU 9c6 Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:46.988 UTC [common/config] initializeProtosStruct -> DEBU 9c7 Processing field: MSP +2018-01-18 09:29:46.992 UTC [common/config] NewStandardValues -> DEBU 9c8 Initializing protos for *config.ApplicationOrgProtos +2018-01-18 09:29:46.993 UTC [common/config] initializeProtosStruct -> DEBU 9c9 Processing field: AnchorPeers +2018-01-18 09:29:46.993 UTC [common/config] NewStandardValues -> DEBU 9ca Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:46.993 UTC [common/config] initializeProtosStruct -> DEBU 9cb Processing field: MSP +2018-01-18 09:29:46.993 UTC [policies] ProposePolicy -> DEBU 9cc Proposed new policy Readers for Org1MSP +2018-01-18 09:29:46.993 UTC [policies] ProposePolicy -> DEBU 9cd Proposed new policy Writers for Org1MSP +2018-01-18 09:29:46.993 UTC [policies] ProposePolicy -> DEBU 9ce Proposed new policy Admins for Org1MSP +2018-01-18 09:29:46.993 UTC [common/config] NewStandardValues -> DEBU 9cf Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:46.993 UTC [common/config] initializeProtosStruct -> DEBU 9d0 Processing field: MSP +2018-01-18 09:29:46.993 UTC [common/config] NewStandardValues -> DEBU 9d1 Initializing protos for *config.ApplicationOrgProtos +2018-01-18 09:29:46.993 UTC [common/config] initializeProtosStruct -> DEBU 9d2 Processing field: AnchorPeers +2018-01-18 09:29:46.993 UTC [common/config] NewStandardValues -> DEBU 9d3 Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:46.993 UTC [common/config] initializeProtosStruct -> DEBU 9d4 Processing field: MSP +2018-01-18 09:29:46.993 UTC [policies] ProposePolicy -> DEBU 9d5 Proposed new policy Readers for Org2MSP +2018-01-18 09:29:46.993 UTC [policies] ProposePolicy -> DEBU 9d6 Proposed new policy Writers for Org2MSP +2018-01-18 09:29:46.993 UTC [policies] ProposePolicy -> DEBU 9d7 Proposed new policy Admins for Org2MSP +2018-01-18 09:29:46.993 UTC [common/config] validateMSP -> DEBU 9d8 Setting up MSP for org OrdererOrg +2018-01-18 09:29:46.993 UTC [msp] NewBccspMsp -> DEBU 9d9 Creating BCCSP-based MSP instance +2018-01-18 09:29:46.993 UTC [msp] Setup -> DEBU 9da Setting up MSP instance OrdererMSP +2018-01-18 09:29:46.994 UTC [msp/identity] newIdentity -> DEBU 9db Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW +gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w +XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK +BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs +KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= +-----END CERTIFICATE----- +2018-01-18 09:29:46.996 UTC [msp/identity] newIdentity -> DEBU 9dc Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa -MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 -sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ -xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv -WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk -SCjyRdD3aQ== +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -----END CERTIFICATE----- -2018-01-18 01:58:53.679 UTC [msp/identity] newIdentity -> DEBU a55 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -AXYxULZpXYDQXt1KaLI= +2018-01-18 09:29:46.996 UTC [msp/identity] newIdentity -> DEBU 9dd Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -----END CERTIFICATE----- -2018-01-18 01:58:53.681 UTC [msp/identity] newIdentity -> DEBU a56 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -AXYxULZpXYDQXt1KaLI= ------END CERTIFICATE----- -2018-01-18 01:58:53.683 UTC [msp] Validate -> DEBU a57 MSP Org2MSP validating identity -2018-01-18 01:58:53.684 UTC [common/config] Validate -> DEBU a58 Anchor peers for org Org1MSP are anchor_peers: -2018-01-18 01:58:53.685 UTC [common/config] validateMSP -> DEBU a59 Setting up MSP for org Org1MSP -2018-01-18 01:58:53.685 UTC [msp] NewBccspMsp -> DEBU a5a Creating BCCSP-based MSP instance -2018-01-18 01:58:53.685 UTC [msp] Setup -> DEBU a5b Setting up MSP instance Org1MSP -2018-01-18 01:58:53.687 UTC [msp/identity] newIdentity -> DEBU a5c Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:46.997 UTC [msp] Validate -> DEBU 9de MSP OrdererMSP validating identity +2018-01-18 09:29:46.998 UTC [common/config] Validate -> DEBU 9df Anchor peers for org Org1MSP are anchor_peers: +2018-01-18 09:29:46.998 UTC [common/config] validateMSP -> DEBU 9e0 Setting up MSP for org Org1MSP +2018-01-18 09:29:46.998 UTC [msp] NewBccspMsp -> DEBU 9e1 Creating BCCSP-based MSP instance +2018-01-18 09:29:46.998 UTC [msp] Setup -> DEBU 9e2 Setting up MSP instance Org1MSP +2018-01-18 09:29:46.998 UTC [msp/identity] newIdentity -> DEBU 9e3 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -4703,7 +4455,7 @@ JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ H7n8z1pj5w== -----END CERTIFICATE----- -2018-01-18 01:58:53.690 UTC [msp/identity] newIdentity -> DEBU a5d Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:46.999 UTC [msp/identity] newIdentity -> DEBU 9e4 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -4717,7 +4469,7 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-18 01:58:53.694 UTC [msp/identity] newIdentity -> DEBU a5e Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:47.000 UTC [msp/identity] newIdentity -> DEBU 9e5 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -4731,209 +4483,12 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-18 01:58:53.700 UTC [msp] Validate -> DEBU a5f MSP Org1MSP validating identity -2018-01-18 01:58:53.701 UTC [common/config] validateMSP -> DEBU a60 Setting up MSP for org OrdererOrg -2018-01-18 01:58:53.701 UTC [msp] NewBccspMsp -> DEBU a61 Creating BCCSP-based MSP instance -2018-01-18 01:58:53.701 UTC [msp] Setup -> DEBU a62 Setting up MSP instance OrdererMSP -2018-01-18 01:58:53.702 UTC [msp/identity] newIdentity -> DEBU a63 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW -gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w -XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK -BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs -KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= ------END CERTIFICATE----- -2018-01-18 01:58:53.703 UTC [msp/identity] newIdentity -> DEBU a64 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 ------END CERTIFICATE----- -2018-01-18 01:58:53.703 UTC [msp/identity] newIdentity -> DEBU a65 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 ------END CERTIFICATE----- -2018-01-18 01:58:53.704 UTC [msp] Validate -> DEBU a66 MSP OrdererMSP validating identity -2018-01-18 01:58:53.705 UTC [msp] Setup -> DEBU a67 Setting up the MSP manager (3 msps) -2018-01-18 01:58:53.706 UTC [msp] Setup -> DEBU a68 MSP manager setup complete, setup 3 msps -2018-01-18 01:58:53.706 UTC [orderer/common/blockcutter] Ordered -> DEBU a69 Found message which requested to be isolated, cutting into its own batch -2018-01-18 01:58:53.707 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU a6a retrieveBlockByNumber() - blockNum = [0] -2018-01-18 01:58:53.711 UTC [fsblkstorage] newBlockfileStream -> DEBU a6b newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] -2018-01-18 01:58:53.711 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU a6c Remaining bytes=[11934], Going to peek [8] bytes -2018-01-18 01:58:53.711 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU a6d Returning blockbytes - length=[11932], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -2018-01-18 01:58:53.712 UTC [common/configtx] addToMap -> DEBU a6e Adding to config map: [Groups] /Channel -2018-01-18 01:58:53.712 UTC [common/configtx] addToMap -> DEBU a6f Adding to config map: [Groups] /Channel/Application -2018-01-18 01:58:53.713 UTC [common/configtx] addToMap -> DEBU a70 Adding to config map: [Groups] /Channel/Application/Org1MSP -2018-01-18 01:58:53.713 UTC [common/configtx] addToMap -> DEBU a71 Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -2018-01-18 01:58:53.713 UTC [common/configtx] addToMap -> DEBU a72 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -2018-01-18 01:58:53.714 UTC [common/configtx] addToMap -> DEBU a73 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -2018-01-18 01:58:53.716 UTC [common/configtx] addToMap -> DEBU a74 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -2018-01-18 01:58:53.716 UTC [common/configtx] addToMap -> DEBU a75 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -2018-01-18 01:58:53.716 UTC [common/configtx] addToMap -> DEBU a76 Adding to config map: [Groups] /Channel/Application/Org2MSP -2018-01-18 01:58:53.716 UTC [common/configtx] addToMap -> DEBU a77 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -2018-01-18 01:58:53.716 UTC [common/configtx] addToMap -> DEBU a78 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -2018-01-18 01:58:53.716 UTC [common/configtx] addToMap -> DEBU a79 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -2018-01-18 01:58:53.716 UTC [common/configtx] addToMap -> DEBU a7a Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -2018-01-18 01:58:53.717 UTC [common/configtx] addToMap -> DEBU a7b Adding to config map: [Policy] /Channel/Application/Admins -2018-01-18 01:58:53.717 UTC [common/configtx] addToMap -> DEBU a7c Adding to config map: [Policy] /Channel/Application/Writers -2018-01-18 01:58:53.717 UTC [common/configtx] addToMap -> DEBU a7d Adding to config map: [Policy] /Channel/Application/Readers -2018-01-18 01:58:53.717 UTC [common/configtx] addToMap -> DEBU a7e Adding to config map: [Groups] /Channel/Orderer -2018-01-18 01:58:53.718 UTC [common/configtx] addToMap -> DEBU a7f Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -2018-01-18 01:58:53.718 UTC [common/configtx] addToMap -> DEBU a80 Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -2018-01-18 01:58:53.719 UTC [common/configtx] addToMap -> DEBU a81 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -2018-01-18 01:58:53.719 UTC [common/configtx] addToMap -> DEBU a82 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -2018-01-18 01:58:53.720 UTC [common/configtx] addToMap -> DEBU a83 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -2018-01-18 01:58:53.720 UTC [common/configtx] addToMap -> DEBU a84 Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -2018-01-18 01:58:53.720 UTC [common/configtx] addToMap -> DEBU a85 Adding to config map: [Values] /Channel/Orderer/ConsensusType -2018-01-18 01:58:53.720 UTC [common/configtx] addToMap -> DEBU a86 Adding to config map: [Values] /Channel/Orderer/BatchSize -2018-01-18 01:58:53.720 UTC [common/configtx] addToMap -> DEBU a87 Adding to config map: [Values] /Channel/Orderer/BatchTimeout -2018-01-18 01:58:53.720 UTC [common/configtx] addToMap -> DEBU a88 Adding to config map: [Policy] /Channel/Orderer/Readers -2018-01-18 01:58:53.720 UTC [common/configtx] addToMap -> DEBU a89 Adding to config map: [Policy] /Channel/Orderer/Writers -2018-01-18 01:58:53.720 UTC [common/configtx] addToMap -> DEBU a8a Adding to config map: [Policy] /Channel/Orderer/Admins -2018-01-18 01:58:53.720 UTC [common/configtx] addToMap -> DEBU a8b Adding to config map: [Policy] /Channel/Orderer/BlockValidation -2018-01-18 01:58:53.721 UTC [common/configtx] addToMap -> DEBU a8c Adding to config map: [Values] /Channel/Consortium -2018-01-18 01:58:53.721 UTC [common/configtx] addToMap -> DEBU a8d Adding to config map: [Values] /Channel/OrdererAddresses -2018-01-18 01:58:53.721 UTC [common/configtx] addToMap -> DEBU a8e Adding to config map: [Values] /Channel/HashingAlgorithm -2018-01-18 01:58:53.721 UTC [common/configtx] addToMap -> DEBU a8f Adding to config map: [Values] /Channel/BlockDataHashingStructure -2018-01-18 01:58:53.721 UTC [common/configtx] addToMap -> DEBU a90 Adding to config map: [Policy] /Channel/Readers -2018-01-18 01:58:53.721 UTC [common/configtx] addToMap -> DEBU a91 Adding to config map: [Policy] /Channel/Writers -2018-01-18 01:58:53.721 UTC [common/configtx] addToMap -> DEBU a92 Adding to config map: [Policy] /Channel/Admins -2018-01-18 01:58:53.721 UTC [common/configtx] addToMap -> DEBU a93 Adding to config map: [Groups] /Channel -2018-01-18 01:58:53.722 UTC [common/configtx] addToMap -> DEBU a94 Adding to config map: [Groups] /Channel/Application -2018-01-18 01:58:53.722 UTC [common/configtx] addToMap -> DEBU a95 Adding to config map: [Groups] /Channel/Application/Org1MSP -2018-01-18 01:58:53.722 UTC [common/configtx] addToMap -> DEBU a96 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -2018-01-18 01:58:53.722 UTC [common/configtx] addToMap -> DEBU a97 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -2018-01-18 01:58:53.722 UTC [common/configtx] addToMap -> DEBU a98 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -2018-01-18 01:58:53.722 UTC [common/configtx] addToMap -> DEBU a99 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -2018-01-18 01:58:53.722 UTC [common/configtx] addToMap -> DEBU a9a Adding to config map: [Groups] /Channel -2018-01-18 01:58:53.722 UTC [common/configtx] addToMap -> DEBU a9b Adding to config map: [Groups] /Channel/Application -2018-01-18 01:58:53.722 UTC [common/configtx] addToMap -> DEBU a9c Adding to config map: [Groups] /Channel/Application/Org1MSP -2018-01-18 01:58:53.723 UTC [common/configtx] addToMap -> DEBU a9d Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -2018-01-18 01:58:53.723 UTC [common/configtx] addToMap -> DEBU a9e Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -2018-01-18 01:58:53.723 UTC [common/configtx] addToMap -> DEBU a9f Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -2018-01-18 01:58:53.723 UTC [common/configtx] addToMap -> DEBU aa0 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -2018-01-18 01:58:53.723 UTC [common/configtx] addToMap -> DEBU aa1 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -2018-01-18 01:58:53.723 UTC [policies] GetPolicy -> DEBU aa2 Returning policy Admins for evaluation -2018-01-18 01:58:53.723 UTC [cauthdsl] func1 -> DEBU aa3 0xc4200265b0 gate 1516240733723574007 evaluation starts -2018-01-18 01:58:53.723 UTC [cauthdsl] func2 -> DEBU aa4 0xc4200265b0 signed by 0 principal evaluation starts (used [false]) -2018-01-18 01:58:53.723 UTC [cauthdsl] func2 -> DEBU aa5 0xc4200265b0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-18 01:58:53.724 UTC [msp/identity] newIdentity -> DEBU aa6 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -xHTBvxfK6mAzmUitFmY= ------END CERTIFICATE----- -2018-01-18 01:58:53.724 UTC [msp] SatisfiesPrincipal -> DEBU aa7 Checking if identity satisfies ADMIN role for Org1MSP -2018-01-18 01:58:53.724 UTC [cauthdsl] func2 -> DEBU aa8 0xc4200265b0 principal matched by identity 0 -2018-01-18 01:58:53.724 UTC [msp/identity] Verify -> DEBU aa9 Verify: digest = 00000000 94 4b 2c 71 ac 2b 83 1b 4e 1d 86 f1 f5 d3 9d 8e |.K,q.+..N.......| -00000010 f3 8e f6 70 4f 34 16 19 7d a9 02 4b 28 a4 53 a3 |...pO4..}..K(.S.| -2018-01-18 01:58:53.724 UTC [msp/identity] Verify -> DEBU aaa Verify: sig = 00000000 30 45 02 21 00 f6 c9 e9 b2 4c f2 f4 55 c4 e1 92 |0E.!.....L..U...| -00000010 61 2c 96 22 89 62 9c a3 6f 50 99 f0 ec e3 84 45 |a,.".b..oP.....E| -00000020 1e 9e d9 14 9b 02 20 00 f6 19 bb af 27 1f 30 22 |...... .....'.0"| -00000030 1c 27 43 69 31 bc bd 8c 67 7d 60 ef ed 09 30 ec |.'Ci1...g}`...0.| -00000040 92 99 08 c1 23 97 cd |....#..| -2018-01-18 01:58:53.724 UTC [cauthdsl] func2 -> DEBU aab 0xc4200265b0 principal evaluation succeeds for identity 0 -2018-01-18 01:58:53.724 UTC [cauthdsl] func1 -> DEBU aac 0xc4200265b0 gate 1516240733723574007 evaluation succeeds -2018-01-18 01:58:53.725 UTC [common/configtx] recurseConfigMap -> DEBU aad Setting policy for key Readers to -2018-01-18 01:58:53.725 UTC [common/configtx] recurseConfigMap -> DEBU aae Setting policy for key Writers to -2018-01-18 01:58:53.725 UTC [common/configtx] recurseConfigMap -> DEBU aaf Setting policy for key Admins to -2018-01-18 01:58:53.725 UTC [common/configtx] recurseConfigMap -> DEBU ab0 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-18 01:58:53.725 UTC [common/configtx] recurseConfigMap -> DEBU ab1 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-18 01:58:53.725 UTC [common/configtx] recurseConfigMap -> DEBU ab2 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-18 01:58:53.725 UTC [common/configtx] recurseConfigMap -> DEBU ab3 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-18 01:58:53.725 UTC [common/configtx] recurseConfigMap -> DEBU ab4 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-18 01:58:53.726 UTC [common/configtx] recurseConfigMap -> DEBU ab5 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-18 01:58:53.726 UTC [common/configtx] recurseConfigMap -> DEBU ab6 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-18 01:58:53.726 UTC [common/configtx] recurseConfigMap -> DEBU ab7 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-18 01:58:53.726 UTC [common/configtx] recurseConfigMap -> DEBU ab8 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-18 01:58:53.726 UTC [common/configtx] recurseConfigMap -> DEBU ab9 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-18 01:58:53.727 UTC [common/configtx] recurseConfigMap -> DEBU aba Setting policy for key BlockValidation to policy: mod_policy:"Admins" -2018-01-18 01:58:53.727 UTC [common/configtx] recurseConfigMap -> DEBU abb Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-18 01:58:53.727 UTC [common/configtx] recurseConfigMap -> DEBU abc Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-18 01:58:53.727 UTC [common/configtx] recurseConfigMap -> DEBU abd Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-18 01:58:53.727 UTC [common/configtx] recurseConfigMap -> DEBU abe Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-18 01:58:53.727 UTC [common/configtx] recurseConfigMap -> DEBU abf Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-18 01:58:53.728 UTC [common/configtx] processConfig -> DEBU ac0 Beginning new config for channel businesschannel -2018-01-18 01:58:53.728 UTC [common/config] NewStandardValues -> DEBU ac1 Initializing protos for *config.ChannelProtos -2018-01-18 01:58:53.728 UTC [common/config] initializeProtosStruct -> DEBU ac2 Processing field: HashingAlgorithm -2018-01-18 01:58:53.728 UTC [common/config] initializeProtosStruct -> DEBU ac3 Processing field: BlockDataHashingStructure -2018-01-18 01:58:53.728 UTC [common/config] initializeProtosStruct -> DEBU ac4 Processing field: OrdererAddresses -2018-01-18 01:58:53.728 UTC [common/config] initializeProtosStruct -> DEBU ac5 Processing field: Consortium -2018-01-18 01:58:53.728 UTC [policies] ProposePolicy -> DEBU ac6 Proposed new policy Admins for Channel -2018-01-18 01:58:53.729 UTC [policies] ProposePolicy -> DEBU ac7 Proposed new policy Readers for Channel -2018-01-18 01:58:53.729 UTC [policies] ProposePolicy -> DEBU ac8 Proposed new policy Writers for Channel -2018-01-18 01:58:53.729 UTC [common/config] NewStandardValues -> DEBU ac9 Initializing protos for *struct {} -2018-01-18 01:58:53.729 UTC [policies] ProposePolicy -> DEBU aca Proposed new policy Admins for Application -2018-01-18 01:58:53.729 UTC [policies] ProposePolicy -> DEBU acb Proposed new policy Writers for Application -2018-01-18 01:58:53.729 UTC [policies] ProposePolicy -> DEBU acc Proposed new policy Readers for Application -2018-01-18 01:58:53.729 UTC [common/config] NewStandardValues -> DEBU acd Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:53.730 UTC [common/config] initializeProtosStruct -> DEBU ace Processing field: MSP -2018-01-18 01:58:53.730 UTC [common/config] NewStandardValues -> DEBU acf Initializing protos for *config.ApplicationOrgProtos -2018-01-18 01:58:53.730 UTC [common/config] initializeProtosStruct -> DEBU ad0 Processing field: AnchorPeers -2018-01-18 01:58:53.730 UTC [common/config] NewStandardValues -> DEBU ad1 Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:53.730 UTC [common/config] initializeProtosStruct -> DEBU ad2 Processing field: MSP -2018-01-18 01:58:53.730 UTC [policies] ProposePolicy -> DEBU ad3 Proposed new policy Writers for Org2MSP -2018-01-18 01:58:53.730 UTC [policies] ProposePolicy -> DEBU ad4 Proposed new policy Admins for Org2MSP -2018-01-18 01:58:53.730 UTC [policies] ProposePolicy -> DEBU ad5 Proposed new policy Readers for Org2MSP -2018-01-18 01:58:53.730 UTC [common/config] NewStandardValues -> DEBU ad6 Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:53.731 UTC [common/config] initializeProtosStruct -> DEBU ad7 Processing field: MSP -2018-01-18 01:58:53.731 UTC [common/config] NewStandardValues -> DEBU ad8 Initializing protos for *config.ApplicationOrgProtos -2018-01-18 01:58:53.731 UTC [common/config] initializeProtosStruct -> DEBU ad9 Processing field: AnchorPeers -2018-01-18 01:58:53.731 UTC [common/config] NewStandardValues -> DEBU ada Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:53.731 UTC [common/config] initializeProtosStruct -> DEBU adb Processing field: MSP -2018-01-18 01:58:53.731 UTC [policies] ProposePolicy -> DEBU adc Proposed new policy Readers for Org1MSP -2018-01-18 01:58:53.731 UTC [policies] ProposePolicy -> DEBU add Proposed new policy Writers for Org1MSP -2018-01-18 01:58:53.731 UTC [policies] ProposePolicy -> DEBU ade Proposed new policy Admins for Org1MSP -2018-01-18 01:58:53.731 UTC [common/config] NewStandardValues -> DEBU adf Initializing protos for *config.OrdererProtos -2018-01-18 01:58:53.731 UTC [common/config] initializeProtosStruct -> DEBU ae0 Processing field: ConsensusType -2018-01-18 01:58:53.731 UTC [common/config] initializeProtosStruct -> DEBU ae1 Processing field: BatchSize -2018-01-18 01:58:53.731 UTC [common/config] initializeProtosStruct -> DEBU ae2 Processing field: BatchTimeout -2018-01-18 01:58:53.732 UTC [common/config] initializeProtosStruct -> DEBU ae3 Processing field: KafkaBrokers -2018-01-18 01:58:53.732 UTC [common/config] initializeProtosStruct -> DEBU ae4 Processing field: ChannelRestrictions -2018-01-18 01:58:53.732 UTC [policies] ProposePolicy -> DEBU ae5 Proposed new policy BlockValidation for Orderer -2018-01-18 01:58:53.732 UTC [policies] ProposePolicy -> DEBU ae6 Proposed new policy Readers for Orderer -2018-01-18 01:58:53.732 UTC [policies] ProposePolicy -> DEBU ae7 Proposed new policy Writers for Orderer -2018-01-18 01:58:53.732 UTC [policies] ProposePolicy -> DEBU ae8 Proposed new policy Admins for Orderer -2018-01-18 01:58:53.732 UTC [common/config] NewStandardValues -> DEBU ae9 Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:53.732 UTC [common/config] initializeProtosStruct -> DEBU aea Processing field: MSP -2018-01-18 01:58:53.732 UTC [policies] ProposePolicy -> DEBU aeb Proposed new policy Admins for OrdererOrg -2018-01-18 01:58:53.732 UTC [policies] ProposePolicy -> DEBU aec Proposed new policy Readers for OrdererOrg -2018-01-18 01:58:53.732 UTC [policies] ProposePolicy -> DEBU aed Proposed new policy Writers for OrdererOrg -2018-01-18 01:58:53.733 UTC [common/config] Validate -> DEBU aee Anchor peers for org Org2MSP are -2018-01-18 01:58:53.733 UTC [common/config] validateMSP -> DEBU aef Setting up MSP for org Org2MSP -2018-01-18 01:58:53.733 UTC [msp] NewBccspMsp -> DEBU af0 Creating BCCSP-based MSP instance -2018-01-18 01:58:53.733 UTC [msp] Setup -> DEBU af1 Setting up MSP instance Org2MSP -2018-01-18 01:58:53.733 UTC [msp/identity] newIdentity -> DEBU af2 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:47.001 UTC [msp] Validate -> DEBU 9e6 MSP Org1MSP validating identity +2018-01-18 09:29:47.002 UTC [common/config] Validate -> DEBU 9e7 Anchor peers for org Org2MSP are +2018-01-18 09:29:47.002 UTC [common/config] validateMSP -> DEBU 9e8 Setting up MSP for org Org2MSP +2018-01-18 09:29:47.002 UTC [msp] NewBccspMsp -> DEBU 9e9 Creating BCCSP-based MSP instance +2018-01-18 09:29:47.002 UTC [msp] Setup -> DEBU 9ea Setting up MSP instance Org2MSP +2018-01-18 09:29:47.002 UTC [msp/identity] newIdentity -> DEBU 9eb Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -4948,7 +4503,7 @@ xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk SCjyRdD3aQ== -----END CERTIFICATE----- -2018-01-18 01:58:53.734 UTC [msp/identity] newIdentity -> DEBU af3 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:47.004 UTC [msp/identity] newIdentity -> DEBU 9ec Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -4962,7 +4517,7 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS AXYxULZpXYDQXt1KaLI= -----END CERTIFICATE----- -2018-01-18 01:58:53.734 UTC [msp/identity] newIdentity -> DEBU af4 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:47.005 UTC [msp/identity] newIdentity -> DEBU 9ed Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -4976,12 +4531,196 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS AXYxULZpXYDQXt1KaLI= -----END CERTIFICATE----- -2018-01-18 01:58:53.735 UTC [msp] Validate -> DEBU af5 MSP Org2MSP validating identity -2018-01-18 01:58:53.735 UTC [common/config] Validate -> DEBU af6 Anchor peers for org Org1MSP are anchor_peers: -2018-01-18 01:58:53.735 UTC [common/config] validateMSP -> DEBU af7 Setting up MSP for org Org1MSP -2018-01-18 01:58:53.735 UTC [msp] NewBccspMsp -> DEBU af8 Creating BCCSP-based MSP instance -2018-01-18 01:58:53.735 UTC [msp] Setup -> DEBU af9 Setting up MSP instance Org1MSP -2018-01-18 01:58:53.735 UTC [msp/identity] newIdentity -> DEBU afa Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:47.006 UTC [msp] Validate -> DEBU 9ee MSP Org2MSP validating identity +2018-01-18 09:29:47.006 UTC [msp] Setup -> DEBU 9ef Setting up the MSP manager (3 msps) +2018-01-18 09:29:47.006 UTC [msp] Setup -> DEBU 9f0 MSP manager setup complete, setup 3 msps +2018-01-18 09:29:47.006 UTC [orderer/common/broadcast] Handle -> DEBU 9f1 [channel: businesschannel] Broadcast has successfully enqueued message of type CONFIG +2018-01-18 09:29:47.007 UTC [policies] GetPolicy -> DEBU 9f2 Returning policy Writers for evaluation +2018-01-18 09:29:47.007 UTC [cauthdsl] func1 -> DEBU 9f3 0xc420027340 gate 1516267787007258996 evaluation starts +2018-01-18 09:29:47.007 UTC [cauthdsl] func2 -> DEBU 9f4 0xc420027340 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:29:47.007 UTC [cauthdsl] func2 -> DEBU 9f5 0xc420027340 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:29:47.007 UTC [msp/identity] newIdentity -> DEBU 9f6 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq +hkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz +MKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw +DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN +RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH +/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl +-----END CERTIFICATE----- +2018-01-18 09:29:47.007 UTC [orderer/common/broadcast] Handle -> WARN 9f7 Error reading from stream: rpc error: code = Canceled desc = context canceled +2018-01-18 09:29:47.008 UTC [orderer/main] func1 -> DEBU 9f8 Closing Broadcast stream +2018-01-18 09:29:47.008 UTC [cauthdsl] func2 -> DEBU 9f9 0xc420027340 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +2018-01-18 09:29:47.008 UTC [cauthdsl] func2 -> DEBU 9fa 0xc420027340 principal evaluation fails +2018-01-18 09:29:47.009 UTC [cauthdsl] func1 -> DEBU 9fb 0xc420027340 gate 1516267787007258996 evaluation fails +2018-01-18 09:29:47.009 UTC [cauthdsl] func1 -> DEBU 9fc 0xc420027370 gate 1516267787009191329 evaluation starts +2018-01-18 09:29:47.009 UTC [cauthdsl] func2 -> DEBU 9fd 0xc420027370 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:29:47.009 UTC [cauthdsl] func2 -> DEBU 9fe 0xc420027370 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:29:47.009 UTC [msp/identity] newIdentity -> DEBU 9ff Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq +hkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz +MKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw +DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN +RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH +/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl +-----END CERTIFICATE----- +2018-01-18 09:29:47.010 UTC [cauthdsl] func2 -> DEBU a00 0xc420027370 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +2018-01-18 09:29:47.010 UTC [cauthdsl] func2 -> DEBU a01 0xc420027370 principal evaluation fails +2018-01-18 09:29:47.010 UTC [cauthdsl] func1 -> DEBU a02 0xc420027370 gate 1516267787009191329 evaluation fails +2018-01-18 09:29:47.010 UTC [cauthdsl] func1 -> DEBU a03 0xc4200273c0 gate 1516267787010561644 evaluation starts +2018-01-18 09:29:47.010 UTC [cauthdsl] func2 -> DEBU a04 0xc4200273c0 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:29:47.010 UTC [cauthdsl] func2 -> DEBU a05 0xc4200273c0 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:29:47.010 UTC [orderer/common/deliver] Handle -> WARN a06 Error reading from stream: rpc error: code = Canceled desc = context canceled +2018-01-18 09:29:47.010 UTC [orderer/main] func1 -> DEBU a07 Closing Deliver stream +2018-01-18 09:29:47.011 UTC [msp/identity] newIdentity -> DEBU a08 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq +hkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz +MKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw +DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN +RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH +/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl +-----END CERTIFICATE----- +2018-01-18 09:29:47.012 UTC [msp] SatisfiesPrincipal -> DEBU a09 Checking if identity satisfies MEMBER role for OrdererMSP +2018-01-18 09:29:47.012 UTC [msp] Validate -> DEBU a0a MSP OrdererMSP validating identity +2018-01-18 09:29:47.013 UTC [cauthdsl] func2 -> DEBU a0b 0xc4200273c0 principal matched by identity 0 +2018-01-18 09:29:47.015 UTC [msp/identity] Verify -> DEBU a0c Verify: digest = 00000000 b4 5b a6 44 45 ef 0b e8 67 b4 2a ea 0f b0 3c 99 |.[.DE...g.*...<.| +00000010 f1 70 f4 8c c1 c8 20 e6 01 13 71 a7 0d ba 6f d5 |.p.... ...q...o.| +2018-01-18 09:29:47.015 UTC [msp/identity] Verify -> DEBU a0d Verify: sig = 00000000 30 45 02 21 00 ab 8d b0 ca 20 4a 7a ac 19 da ef |0E.!..... Jz....| +00000010 06 d7 b0 9c 39 1d d3 9f 0f c3 cb ae b6 64 4a 1b |....9........dJ.| +00000020 a8 9b 6e 52 d6 02 20 63 32 79 2a 81 45 81 ae ea |..nR.. c2y*.E...| +00000030 40 e8 92 95 7c d4 ae 5e 6f 8b ed 9e 91 a3 1f 3c |@...|..^o......<| +00000040 d6 14 08 ec ce d8 91 |.......| +2018-01-18 09:29:47.015 UTC [cauthdsl] func2 -> DEBU a0e 0xc4200273c0 principal evaluation succeeds for identity 0 +2018-01-18 09:29:47.015 UTC [cauthdsl] func1 -> DEBU a0f 0xc4200273c0 gate 1516267787010561644 evaluation succeeds +2018-01-18 09:29:47.015 UTC [orderer/common/sigfilter] Apply -> DEBU a10 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc42083ebe0 1 [0xc4200272e0 0xc420027298]}) %!s(*policies.implicitMetaPolicy=&{0xc42083f960 1 [0xc4200273d0]})]} +2018-01-18 09:29:47.016 UTC [common/configtx] addToMap -> DEBU a11 Adding to config map: [Groups] /Channel +2018-01-18 09:29:47.016 UTC [common/configtx] addToMap -> DEBU a12 Adding to config map: [Groups] /Channel/Application +2018-01-18 09:29:47.016 UTC [common/configtx] addToMap -> DEBU a13 Adding to config map: [Groups] /Channel/Application/Org1MSP +2018-01-18 09:29:47.016 UTC [common/configtx] addToMap -> DEBU a14 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +2018-01-18 09:29:47.016 UTC [common/configtx] addToMap -> DEBU a15 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +2018-01-18 09:29:47.016 UTC [common/configtx] addToMap -> DEBU a16 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +2018-01-18 09:29:47.016 UTC [common/configtx] addToMap -> DEBU a17 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +2018-01-18 09:29:47.017 UTC [common/configtx] addToMap -> DEBU a18 Adding to config map: [Groups] /Channel +2018-01-18 09:29:47.017 UTC [common/configtx] addToMap -> DEBU a19 Adding to config map: [Groups] /Channel/Application +2018-01-18 09:29:47.017 UTC [common/configtx] addToMap -> DEBU a1a Adding to config map: [Groups] /Channel/Application/Org1MSP +2018-01-18 09:29:47.017 UTC [common/configtx] addToMap -> DEBU a1b Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +2018-01-18 09:29:47.017 UTC [common/configtx] addToMap -> DEBU a1c Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +2018-01-18 09:29:47.017 UTC [common/configtx] addToMap -> DEBU a1d Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +2018-01-18 09:29:47.017 UTC [common/configtx] addToMap -> DEBU a1e Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +2018-01-18 09:29:47.017 UTC [common/configtx] addToMap -> DEBU a1f Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +2018-01-18 09:29:47.017 UTC [policies] GetPolicy -> DEBU a20 Returning policy Admins for evaluation +2018-01-18 09:29:47.017 UTC [cauthdsl] func1 -> DEBU a21 0xc4200279f8 gate 1516267787017627609 evaluation starts +2018-01-18 09:29:47.017 UTC [cauthdsl] func2 -> DEBU a22 0xc4200279f8 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:29:47.017 UTC [cauthdsl] func2 -> DEBU a23 0xc4200279f8 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:29:47.018 UTC [msp/identity] newIdentity -> DEBU a24 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +xHTBvxfK6mAzmUitFmY= +-----END CERTIFICATE----- +2018-01-18 09:29:47.018 UTC [msp] SatisfiesPrincipal -> DEBU a25 Checking if identity satisfies ADMIN role for Org1MSP +2018-01-18 09:29:47.018 UTC [cauthdsl] func2 -> DEBU a26 0xc4200279f8 principal matched by identity 0 +2018-01-18 09:29:47.018 UTC [msp/identity] Verify -> DEBU a27 Verify: digest = 00000000 4d be a9 c4 54 6d 00 c1 09 ed 0f 97 df 98 d3 b4 |M...Tm..........| +00000010 3f 7e 4c 7b 14 2e 85 95 dd e8 fa 88 85 14 1c a4 |?~L{............| +2018-01-18 09:29:47.019 UTC [msp/identity] Verify -> DEBU a28 Verify: sig = 00000000 30 44 02 20 55 16 a0 b6 71 60 a7 f6 6c 09 21 48 |0D. U...q`..l.!H| +00000010 5f e7 b9 36 eb 3a fc 25 9e ca 91 a5 21 1b 9d 0d |_..6.:.%....!...| +00000020 d3 3a a3 0c 02 20 5b 2b 93 ce de c4 63 57 76 14 |.:... [+....cWv.| +00000030 88 2e 5c c0 fa 75 1d 6b 5d 34 ee 1a c9 f9 9a ea |..\..u.k]4......| +00000040 c6 d4 a3 0c a6 3a |.....:| +2018-01-18 09:29:47.019 UTC [cauthdsl] func2 -> DEBU a29 0xc4200279f8 principal evaluation succeeds for identity 0 +2018-01-18 09:29:47.019 UTC [cauthdsl] func1 -> DEBU a2a 0xc4200279f8 gate 1516267787017627609 evaluation succeeds +2018-01-18 09:29:47.019 UTC [common/configtx] recurseConfigMap -> DEBU a2b Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-18 09:29:47.019 UTC [common/configtx] recurseConfigMap -> DEBU a2c Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-18 09:29:47.019 UTC [common/configtx] recurseConfigMap -> DEBU a2d Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-18 09:29:47.020 UTC [common/configtx] recurseConfigMap -> DEBU a2e Setting policy for key BlockValidation to policy: mod_policy:"Admins" +2018-01-18 09:29:47.020 UTC [common/configtx] recurseConfigMap -> DEBU a2f Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-18 09:29:47.020 UTC [common/configtx] recurseConfigMap -> DEBU a30 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-18 09:29:47.020 UTC [common/configtx] recurseConfigMap -> DEBU a31 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-18 09:29:47.020 UTC [common/configtx] recurseConfigMap -> DEBU a32 Setting policy for key Readers to +2018-01-18 09:29:47.020 UTC [common/configtx] recurseConfigMap -> DEBU a33 Setting policy for key Writers to +2018-01-18 09:29:47.020 UTC [common/configtx] recurseConfigMap -> DEBU a34 Setting policy for key Admins to +2018-01-18 09:29:47.020 UTC [common/configtx] recurseConfigMap -> DEBU a35 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-18 09:29:47.021 UTC [common/configtx] recurseConfigMap -> DEBU a36 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-18 09:29:47.021 UTC [common/configtx] recurseConfigMap -> DEBU a37 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-18 09:29:47.021 UTC [common/configtx] recurseConfigMap -> DEBU a38 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-18 09:29:47.021 UTC [common/configtx] recurseConfigMap -> DEBU a39 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-18 09:29:47.021 UTC [common/configtx] recurseConfigMap -> DEBU a3a Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-18 09:29:47.021 UTC [common/configtx] recurseConfigMap -> DEBU a3b Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-18 09:29:47.021 UTC [common/configtx] recurseConfigMap -> DEBU a3c Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-18 09:29:47.021 UTC [common/configtx] recurseConfigMap -> DEBU a3d Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-18 09:29:47.021 UTC [common/configtx] processConfig -> DEBU a3e Beginning new config for channel businesschannel +2018-01-18 09:29:47.022 UTC [common/config] NewStandardValues -> DEBU a3f Initializing protos for *config.ChannelProtos +2018-01-18 09:29:47.022 UTC [common/config] initializeProtosStruct -> DEBU a40 Processing field: HashingAlgorithm +2018-01-18 09:29:47.022 UTC [common/config] initializeProtosStruct -> DEBU a41 Processing field: BlockDataHashingStructure +2018-01-18 09:29:47.022 UTC [common/config] initializeProtosStruct -> DEBU a42 Processing field: OrdererAddresses +2018-01-18 09:29:47.022 UTC [common/config] initializeProtosStruct -> DEBU a43 Processing field: Consortium +2018-01-18 09:29:47.022 UTC [policies] ProposePolicy -> DEBU a44 Proposed new policy Writers for Channel +2018-01-18 09:29:47.022 UTC [policies] ProposePolicy -> DEBU a45 Proposed new policy Admins for Channel +2018-01-18 09:29:47.022 UTC [policies] ProposePolicy -> DEBU a46 Proposed new policy Readers for Channel +2018-01-18 09:29:47.022 UTC [common/config] NewStandardValues -> DEBU a47 Initializing protos for *struct {} +2018-01-18 09:29:47.022 UTC [policies] ProposePolicy -> DEBU a48 Proposed new policy Readers for Application +2018-01-18 09:29:47.022 UTC [policies] ProposePolicy -> DEBU a49 Proposed new policy Admins for Application +2018-01-18 09:29:47.022 UTC [policies] ProposePolicy -> DEBU a4a Proposed new policy Writers for Application +2018-01-18 09:29:47.022 UTC [common/config] NewStandardValues -> DEBU a4b Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:47.022 UTC [common/config] initializeProtosStruct -> DEBU a4c Processing field: MSP +2018-01-18 09:29:47.022 UTC [common/config] NewStandardValues -> DEBU a4d Initializing protos for *config.ApplicationOrgProtos +2018-01-18 09:29:47.023 UTC [common/config] initializeProtosStruct -> DEBU a4e Processing field: AnchorPeers +2018-01-18 09:29:47.023 UTC [common/config] NewStandardValues -> DEBU a4f Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:47.023 UTC [common/config] initializeProtosStruct -> DEBU a50 Processing field: MSP +2018-01-18 09:29:47.023 UTC [policies] ProposePolicy -> DEBU a51 Proposed new policy Readers for Org1MSP +2018-01-18 09:29:47.023 UTC [policies] ProposePolicy -> DEBU a52 Proposed new policy Writers for Org1MSP +2018-01-18 09:29:47.023 UTC [policies] ProposePolicy -> DEBU a53 Proposed new policy Admins for Org1MSP +2018-01-18 09:29:47.023 UTC [common/config] NewStandardValues -> DEBU a54 Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:47.023 UTC [common/config] initializeProtosStruct -> DEBU a55 Processing field: MSP +2018-01-18 09:29:47.024 UTC [common/config] NewStandardValues -> DEBU a56 Initializing protos for *config.ApplicationOrgProtos +2018-01-18 09:29:47.024 UTC [common/config] initializeProtosStruct -> DEBU a57 Processing field: AnchorPeers +2018-01-18 09:29:47.024 UTC [common/config] NewStandardValues -> DEBU a58 Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:47.024 UTC [common/config] initializeProtosStruct -> DEBU a59 Processing field: MSP +2018-01-18 09:29:47.024 UTC [policies] ProposePolicy -> DEBU a5a Proposed new policy Writers for Org2MSP +2018-01-18 09:29:47.024 UTC [policies] ProposePolicy -> DEBU a5b Proposed new policy Admins for Org2MSP +2018-01-18 09:29:47.024 UTC [policies] ProposePolicy -> DEBU a5c Proposed new policy Readers for Org2MSP +2018-01-18 09:29:47.024 UTC [common/config] NewStandardValues -> DEBU a5d Initializing protos for *config.OrdererProtos +2018-01-18 09:29:47.024 UTC [common/config] initializeProtosStruct -> DEBU a5e Processing field: ConsensusType +2018-01-18 09:29:47.024 UTC [common/config] initializeProtosStruct -> DEBU a5f Processing field: BatchSize +2018-01-18 09:29:47.024 UTC [common/config] initializeProtosStruct -> DEBU a60 Processing field: BatchTimeout +2018-01-18 09:29:47.024 UTC [common/config] initializeProtosStruct -> DEBU a61 Processing field: KafkaBrokers +2018-01-18 09:29:47.025 UTC [common/config] initializeProtosStruct -> DEBU a62 Processing field: ChannelRestrictions +2018-01-18 09:29:47.025 UTC [policies] ProposePolicy -> DEBU a63 Proposed new policy BlockValidation for Orderer +2018-01-18 09:29:47.025 UTC [policies] ProposePolicy -> DEBU a64 Proposed new policy Readers for Orderer +2018-01-18 09:29:47.025 UTC [policies] ProposePolicy -> DEBU a65 Proposed new policy Writers for Orderer +2018-01-18 09:29:47.025 UTC [policies] ProposePolicy -> DEBU a66 Proposed new policy Admins for Orderer +2018-01-18 09:29:47.026 UTC [common/config] NewStandardValues -> DEBU a67 Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:47.026 UTC [common/config] initializeProtosStruct -> DEBU a68 Processing field: MSP +2018-01-18 09:29:47.026 UTC [policies] ProposePolicy -> DEBU a69 Proposed new policy Admins for OrdererOrg +2018-01-18 09:29:47.026 UTC [policies] ProposePolicy -> DEBU a6a Proposed new policy Readers for OrdererOrg +2018-01-18 09:29:47.026 UTC [policies] ProposePolicy -> DEBU a6b Proposed new policy Writers for OrdererOrg +2018-01-18 09:29:47.026 UTC [common/config] Validate -> DEBU a6c Anchor peers for org Org1MSP are anchor_peers: +2018-01-18 09:29:47.026 UTC [common/config] validateMSP -> DEBU a6d Setting up MSP for org Org1MSP +2018-01-18 09:29:47.026 UTC [msp] NewBccspMsp -> DEBU a6e Creating BCCSP-based MSP instance +2018-01-18 09:29:47.026 UTC [msp] Setup -> DEBU a6f Setting up MSP instance Org1MSP +2018-01-18 09:29:47.027 UTC [msp/identity] newIdentity -> DEBU a70 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -4996,7 +4735,7 @@ JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ H7n8z1pj5w== -----END CERTIFICATE----- -2018-01-18 01:58:53.736 UTC [msp/identity] newIdentity -> DEBU afb Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:47.027 UTC [msp/identity] newIdentity -> DEBU a71 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -5010,7 +4749,7 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-18 01:58:53.736 UTC [msp/identity] newIdentity -> DEBU afc Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:47.028 UTC [msp/identity] newIdentity -> DEBU a72 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -5024,11 +4763,59 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-18 01:58:53.737 UTC [msp] Validate -> DEBU afd MSP Org1MSP validating identity -2018-01-18 01:58:53.737 UTC [common/config] validateMSP -> DEBU afe Setting up MSP for org OrdererOrg -2018-01-18 01:58:53.737 UTC [msp] NewBccspMsp -> DEBU aff Creating BCCSP-based MSP instance -2018-01-18 01:58:53.737 UTC [msp] Setup -> DEBU b00 Setting up MSP instance OrdererMSP -2018-01-18 01:58:53.738 UTC [msp/identity] newIdentity -> DEBU b01 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:47.028 UTC [msp] Validate -> DEBU a73 MSP Org1MSP validating identity +2018-01-18 09:29:47.029 UTC [common/config] Validate -> DEBU a74 Anchor peers for org Org2MSP are +2018-01-18 09:29:47.029 UTC [common/config] validateMSP -> DEBU a75 Setting up MSP for org Org2MSP +2018-01-18 09:29:47.029 UTC [msp] NewBccspMsp -> DEBU a76 Creating BCCSP-based MSP instance +2018-01-18 09:29:47.029 UTC [msp] Setup -> DEBU a77 Setting up MSP instance Org2MSP +2018-01-18 09:29:47.031 UTC [msp/identity] newIdentity -> DEBU a78 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 +sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ +xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv +WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk +SCjyRdD3aQ== +-----END CERTIFICATE----- +2018-01-18 09:29:47.032 UTC [msp/identity] newIdentity -> DEBU a79 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +AXYxULZpXYDQXt1KaLI= +-----END CERTIFICATE----- +2018-01-18 09:29:47.032 UTC [msp/identity] newIdentity -> DEBU a7a Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +AXYxULZpXYDQXt1KaLI= +-----END CERTIFICATE----- +2018-01-18 09:29:47.033 UTC [msp] Validate -> DEBU a7b MSP Org2MSP validating identity +2018-01-18 09:29:47.037 UTC [common/config] validateMSP -> DEBU a7c Setting up MSP for org OrdererOrg +2018-01-18 09:29:47.037 UTC [msp] NewBccspMsp -> DEBU a7d Creating BCCSP-based MSP instance +2018-01-18 09:29:47.037 UTC [msp] Setup -> DEBU a7e Setting up MSP instance OrdererMSP +2018-01-18 09:29:47.038 UTC [msp/identity] newIdentity -> DEBU a7f Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -5042,7 +4829,7 @@ AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= -----END CERTIFICATE----- -2018-01-18 01:58:53.738 UTC [msp/identity] newIdentity -> DEBU b02 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:47.039 UTC [msp/identity] newIdentity -> DEBU a80 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -5055,7 +4842,7 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -----END CERTIFICATE----- -2018-01-18 01:58:53.739 UTC [msp/identity] newIdentity -> DEBU b03 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:47.039 UTC [msp/identity] newIdentity -> DEBU a81 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -5068,135 +4855,428 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -----END CERTIFICATE----- -2018-01-18 01:58:53.740 UTC [msp] Validate -> DEBU b04 MSP OrdererMSP validating identity -2018-01-18 01:58:53.740 UTC [msp] Setup -> DEBU b05 Setting up the MSP manager (3 msps) -2018-01-18 01:58:53.741 UTC [msp] Setup -> DEBU b06 MSP manager setup complete, setup 3 msps -2018-01-18 01:58:53.741 UTC [policies] GetPolicy -> DEBU b07 Returning policy Writers for evaluation -2018-01-18 01:58:53.741 UTC [policies] CommitProposals -> DEBU b08 In commit adding relative sub-policy Org2MSP/Writers to Application -2018-01-18 01:58:53.741 UTC [policies] GetPolicy -> DEBU b09 Returning policy Admins for evaluation -2018-01-18 01:58:53.741 UTC [policies] CommitProposals -> DEBU b0a In commit adding relative sub-policy Org2MSP/Admins to Application -2018-01-18 01:58:53.741 UTC [policies] GetPolicy -> DEBU b0b Returning policy Readers for evaluation -2018-01-18 01:58:53.741 UTC [policies] CommitProposals -> DEBU b0c In commit adding relative sub-policy Org2MSP/Readers to Application -2018-01-18 01:58:53.741 UTC [policies] GetPolicy -> DEBU b0d Returning policy Readers for evaluation -2018-01-18 01:58:53.742 UTC [policies] CommitProposals -> DEBU b0e In commit adding relative sub-policy Org1MSP/Readers to Application -2018-01-18 01:58:53.742 UTC [policies] GetPolicy -> DEBU b0f Returning policy Writers for evaluation -2018-01-18 01:58:53.742 UTC [policies] CommitProposals -> DEBU b10 In commit adding relative sub-policy Org1MSP/Writers to Application -2018-01-18 01:58:53.742 UTC [policies] GetPolicy -> DEBU b11 Returning policy Admins for evaluation -2018-01-18 01:58:53.742 UTC [policies] CommitProposals -> DEBU b12 In commit adding relative sub-policy Org1MSP/Admins to Application -2018-01-18 01:58:53.742 UTC [policies] GetPolicy -> DEBU b13 Returning policy Admins for evaluation -2018-01-18 01:58:53.742 UTC [policies] GetPolicy -> DEBU b14 Returning policy Admins for evaluation -2018-01-18 01:58:53.742 UTC [policies] GetPolicy -> DEBU b15 Returning policy Writers for evaluation -2018-01-18 01:58:53.742 UTC [policies] GetPolicy -> DEBU b16 Returning policy Writers for evaluation -2018-01-18 01:58:53.742 UTC [policies] GetPolicy -> DEBU b17 Returning policy Readers for evaluation -2018-01-18 01:58:53.742 UTC [policies] GetPolicy -> DEBU b18 Returning policy Readers for evaluation -2018-01-18 01:58:53.742 UTC [policies] GetPolicy -> DEBU b19 Returning policy Admins for evaluation -2018-01-18 01:58:53.742 UTC [policies] CommitProposals -> DEBU b1a In commit adding relative sub-policy OrdererOrg/Admins to Orderer -2018-01-18 01:58:53.742 UTC [policies] GetPolicy -> DEBU b1b Returning policy Readers for evaluation -2018-01-18 01:58:53.743 UTC [policies] CommitProposals -> DEBU b1c In commit adding relative sub-policy OrdererOrg/Readers to Orderer -2018-01-18 01:58:53.743 UTC [policies] GetPolicy -> DEBU b1d Returning policy Writers for evaluation -2018-01-18 01:58:53.743 UTC [policies] CommitProposals -> DEBU b1e In commit adding relative sub-policy OrdererOrg/Writers to Orderer -2018-01-18 01:58:53.743 UTC [policies] GetPolicy -> DEBU b1f Returning policy Writers for evaluation -2018-01-18 01:58:53.743 UTC [policies] GetPolicy -> DEBU b20 Returning policy Readers for evaluation -2018-01-18 01:58:53.743 UTC [policies] GetPolicy -> DEBU b21 Returning policy Writers for evaluation -2018-01-18 01:58:53.743 UTC [policies] GetPolicy -> DEBU b22 Returning policy Admins for evaluation -2018-01-18 01:58:53.743 UTC [policies] GetPolicy -> DEBU b23 Returning policy Org1MSP/Readers for evaluation -2018-01-18 01:58:53.743 UTC [policies] CommitProposals -> DEBU b24 In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -2018-01-18 01:58:53.744 UTC [policies] GetPolicy -> DEBU b25 Returning policy Org1MSP/Writers for evaluation -2018-01-18 01:58:53.744 UTC [policies] CommitProposals -> DEBU b26 In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -2018-01-18 01:58:53.744 UTC [policies] GetPolicy -> DEBU b27 Returning policy Org1MSP/Admins for evaluation -2018-01-18 01:58:53.744 UTC [policies] CommitProposals -> DEBU b28 In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -2018-01-18 01:58:53.745 UTC [policies] GetPolicy -> DEBU b29 Returning policy Admins for evaluation -2018-01-18 01:58:53.745 UTC [policies] CommitProposals -> DEBU b2a In commit adding relative sub-policy Application/Admins to Channel -2018-01-18 01:58:53.745 UTC [policies] GetPolicy -> DEBU b2b Returning policy Writers for evaluation -2018-01-18 01:58:53.745 UTC [policies] CommitProposals -> DEBU b2c In commit adding relative sub-policy Application/Writers to Channel -2018-01-18 01:58:53.745 UTC [policies] GetPolicy -> DEBU b2d Returning policy Org2MSP/Admins for evaluation -2018-01-18 01:58:53.745 UTC [policies] CommitProposals -> DEBU b2e In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -2018-01-18 01:58:53.745 UTC [policies] GetPolicy -> DEBU b2f Returning policy Readers for evaluation -2018-01-18 01:58:53.745 UTC [policies] CommitProposals -> DEBU b30 In commit adding relative sub-policy Application/Readers to Channel -2018-01-18 01:58:53.745 UTC [policies] GetPolicy -> DEBU b31 Returning policy Org2MSP/Writers for evaluation -2018-01-18 01:58:53.746 UTC [policies] CommitProposals -> DEBU b32 In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -2018-01-18 01:58:53.746 UTC [policies] GetPolicy -> DEBU b33 Returning policy Org2MSP/Readers for evaluation -2018-01-18 01:58:53.746 UTC [policies] CommitProposals -> DEBU b34 In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -2018-01-18 01:58:53.746 UTC [policies] GetPolicy -> DEBU b35 Returning policy BlockValidation for evaluation -2018-01-18 01:58:53.746 UTC [policies] CommitProposals -> DEBU b36 In commit adding relative sub-policy Orderer/BlockValidation to Channel -2018-01-18 01:58:53.746 UTC [policies] GetPolicy -> DEBU b37 Returning policy Readers for evaluation -2018-01-18 01:58:53.746 UTC [policies] CommitProposals -> DEBU b38 In commit adding relative sub-policy Orderer/Readers to Channel -2018-01-18 01:58:53.746 UTC [policies] GetPolicy -> DEBU b39 Returning policy Writers for evaluation -2018-01-18 01:58:53.746 UTC [policies] CommitProposals -> DEBU b3a In commit adding relative sub-policy Orderer/Writers to Channel -2018-01-18 01:58:53.746 UTC [policies] GetPolicy -> DEBU b3b Returning policy Admins for evaluation -2018-01-18 01:58:53.746 UTC [policies] CommitProposals -> DEBU b3c In commit adding relative sub-policy Orderer/Admins to Channel -2018-01-18 01:58:53.747 UTC [policies] GetPolicy -> DEBU b3d Returning policy OrdererOrg/Admins for evaluation -2018-01-18 01:58:53.747 UTC [policies] CommitProposals -> DEBU b3e In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -2018-01-18 01:58:53.747 UTC [policies] GetPolicy -> DEBU b3f Returning policy OrdererOrg/Readers for evaluation -2018-01-18 01:58:53.747 UTC [policies] CommitProposals -> DEBU b40 In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -2018-01-18 01:58:53.747 UTC [policies] GetPolicy -> DEBU b41 Returning policy OrdererOrg/Writers for evaluation -2018-01-18 01:58:53.747 UTC [policies] CommitProposals -> DEBU b42 In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -2018-01-18 01:58:53.748 UTC [policies] GetPolicy -> DEBU b43 Returning policy Admins for evaluation -2018-01-18 01:58:53.748 UTC [policies] GetPolicy -> DEBU b44 Returning policy Admins for evaluation -2018-01-18 01:58:53.748 UTC [policies] GetPolicy -> DEBU b45 Returning policy Readers for evaluation -2018-01-18 01:58:53.749 UTC [policies] GetPolicy -> DEBU b46 Returning policy Readers for evaluation -2018-01-18 01:58:53.749 UTC [policies] GetPolicy -> DEBU b47 Returning policy Writers for evaluation -2018-01-18 01:58:53.749 UTC [policies] GetPolicy -> DEBU b48 Returning policy Writers for evaluation -2018-01-18 01:58:53.749 UTC [policies] GetPolicy -> DEBU b49 Returning policy Readers for evaluation -2018-01-18 01:58:53.749 UTC [policies] CommitProposals -> DEBU b4a As expected, current configuration has policy '/Channel/Readers' -2018-01-18 01:58:53.749 UTC [policies] GetPolicy -> DEBU b4b Returning policy Writers for evaluation -2018-01-18 01:58:53.750 UTC [policies] CommitProposals -> DEBU b4c As expected, current configuration has policy '/Channel/Writers' -2018-01-18 01:58:53.750 UTC [policies] GetPolicy -> DEBU b4d Returning policy Application/Readers for evaluation -2018-01-18 01:58:53.750 UTC [policies] CommitProposals -> DEBU b4e As expected, current configuration has policy '/Channel/Application/Readers' -2018-01-18 01:58:53.750 UTC [policies] GetPolicy -> DEBU b4f Returning policy Application/Writers for evaluation -2018-01-18 01:58:53.750 UTC [policies] CommitProposals -> DEBU b50 As expected, current configuration has policy '/Channel/Application/Writers' -2018-01-18 01:58:53.750 UTC [policies] GetPolicy -> DEBU b51 Returning policy Application/Admins for evaluation -2018-01-18 01:58:53.750 UTC [policies] CommitProposals -> DEBU b52 As expected, current configuration has policy '/Channel/Application/Admins' -2018-01-18 01:58:53.750 UTC [policies] GetPolicy -> DEBU b53 Returning policy Orderer/BlockValidation for evaluation -2018-01-18 01:58:53.751 UTC [policies] CommitProposals -> DEBU b54 As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -2018-01-18 01:58:53.751 UTC [orderer/multichain] addBlockSignature -> DEBU b55 &{ledgerResources:0xc420208040 chain:0xc420208da0 cutter:0xc420a51270 filters:0xc4202089e0 signer:0x1274e88 lastConfig:0 lastConfigSeq:1} -2018-01-18 01:58:53.751 UTC [orderer/multichain] addBlockSignature -> DEBU b56 &{} -2018-01-18 01:58:53.751 UTC [msp] GetLocalMSP -> DEBU b57 Returning existing local MSP -2018-01-18 01:58:53.751 UTC [msp] GetDefaultSigningIdentity -> DEBU b58 Obtaining default signing identity -2018-01-18 01:58:53.751 UTC [msp] GetLocalMSP -> DEBU b59 Returning existing local MSP -2018-01-18 01:58:53.751 UTC [msp] GetDefaultSigningIdentity -> DEBU b5a Obtaining default signing identity -2018-01-18 01:58:53.751 UTC [msp/identity] Sign -> DEBU b5b Sign: plaintext: 0AFA050A0A4F7264657265724D535012...693608D493F69064AEB14668166D9DAC -2018-01-18 01:58:53.752 UTC [msp/identity] Sign -> DEBU b5c Sign: digest: D78965F7E24FBC9512660C0E0A429E69F5E26D89599B7FC2A9F7EFA9B27F6E2C -2018-01-18 01:58:53.752 UTC [orderer/multichain] addLastConfigSignature -> DEBU b5d [channel: businesschannel] Detected lastConfigSeq transitioning from 1 to 2, setting lastConfig from 0 to 1 -2018-01-18 01:58:53.752 UTC [msp] GetLocalMSP -> DEBU b5e Returning existing local MSP -2018-01-18 01:58:53.752 UTC [msp] GetDefaultSigningIdentity -> DEBU b5f Obtaining default signing identity -2018-01-18 01:58:53.752 UTC [orderer/multichain] addLastConfigSignature -> DEBU b60 [channel: businesschannel] About to write block, setting its LAST_CONFIG to 1 -2018-01-18 01:58:53.752 UTC [msp] GetLocalMSP -> DEBU b61 Returning existing local MSP -2018-01-18 01:58:53.752 UTC [msp] GetDefaultSigningIdentity -> DEBU b62 Obtaining default signing identity -2018-01-18 01:58:53.752 UTC [msp/identity] Sign -> DEBU b63 Sign: plaintext: 08010AFA050A0A4F7264657265724D53...693608D493F69064AEB14668166D9DAC -2018-01-18 01:58:53.752 UTC [msp/identity] Sign -> DEBU b64 Sign: digest: 3CDA1D1525B950A78AA7DF0F660E0C00285903A0BBBB4A8C35BB4BBE301390E0 -2018-01-18 01:58:53.755 UTC [fsblkstorage] indexBlock -> DEBU b65 Indexing block [blockNum=1, blockHash=[]byte{0xc3, 0xab, 0xaa, 0xb3, 0xa5, 0x22, 0xad, 0x43, 0xc, 0xa3, 0xc5, 0x33, 0x33, 0xd, 0x4f, 0xc2, 0xaa, 0x7, 0xee, 0xbc, 0xcd, 0x3b, 0xac, 0x1a, 0x3, 0xe2, 0x17, 0xb3, 0x1b, 0x87, 0x6d, 0x94} txOffsets= -txId= locPointer=offset=70, bytesLength=11913 +2018-01-18 09:29:47.048 UTC [msp] Validate -> DEBU a82 MSP OrdererMSP validating identity +2018-01-18 09:29:47.048 UTC [msp] Setup -> DEBU a83 Setting up the MSP manager (3 msps) +2018-01-18 09:29:47.048 UTC [msp] Setup -> DEBU a84 MSP manager setup complete, setup 3 msps +2018-01-18 09:29:47.048 UTC [orderer/common/blockcutter] Ordered -> DEBU a85 Found message which requested to be isolated, cutting into its own batch +2018-01-18 09:29:47.048 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU a86 retrieveBlockByNumber() - blockNum = [0] +2018-01-18 09:29:47.049 UTC [fsblkstorage] newBlockfileStream -> DEBU a87 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] +2018-01-18 09:29:47.050 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU a88 Remaining bytes=[11934], Going to peek [8] bytes +2018-01-18 09:29:47.050 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU a89 Returning blockbytes - length=[11932], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +2018-01-18 09:29:47.050 UTC [common/configtx] addToMap -> DEBU a8a Adding to config map: [Groups] /Channel +2018-01-18 09:29:47.050 UTC [common/configtx] addToMap -> DEBU a8b Adding to config map: [Groups] /Channel/Orderer +2018-01-18 09:29:47.052 UTC [common/configtx] addToMap -> DEBU a8c Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +2018-01-18 09:29:47.053 UTC [common/configtx] addToMap -> DEBU a8d Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +2018-01-18 09:29:47.053 UTC [common/configtx] addToMap -> DEBU a8e Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +2018-01-18 09:29:47.053 UTC [common/configtx] addToMap -> DEBU a8f Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +2018-01-18 09:29:47.053 UTC [common/configtx] addToMap -> DEBU a90 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +2018-01-18 09:29:47.053 UTC [common/configtx] addToMap -> DEBU a91 Adding to config map: [Values] /Channel/Orderer/BatchSize +2018-01-18 09:29:47.053 UTC [common/configtx] addToMap -> DEBU a92 Adding to config map: [Values] /Channel/Orderer/BatchTimeout +2018-01-18 09:29:47.053 UTC [common/configtx] addToMap -> DEBU a93 Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +2018-01-18 09:29:47.053 UTC [common/configtx] addToMap -> DEBU a94 Adding to config map: [Values] /Channel/Orderer/ConsensusType +2018-01-18 09:29:47.054 UTC [common/configtx] addToMap -> DEBU a95 Adding to config map: [Policy] /Channel/Orderer/BlockValidation +2018-01-18 09:29:47.054 UTC [common/configtx] addToMap -> DEBU a96 Adding to config map: [Policy] /Channel/Orderer/Readers +2018-01-18 09:29:47.054 UTC [common/configtx] addToMap -> DEBU a97 Adding to config map: [Policy] /Channel/Orderer/Writers +2018-01-18 09:29:47.054 UTC [common/configtx] addToMap -> DEBU a98 Adding to config map: [Policy] /Channel/Orderer/Admins +2018-01-18 09:29:47.059 UTC [common/configtx] addToMap -> DEBU a99 Adding to config map: [Groups] /Channel/Application +2018-01-18 09:29:47.060 UTC [common/configtx] addToMap -> DEBU a9a Adding to config map: [Groups] /Channel/Application/Org1MSP +2018-01-18 09:29:47.060 UTC [common/configtx] addToMap -> DEBU a9b Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +2018-01-18 09:29:47.060 UTC [common/configtx] addToMap -> DEBU a9c Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +2018-01-18 09:29:47.061 UTC [common/configtx] addToMap -> DEBU a9d Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +2018-01-18 09:29:47.061 UTC [common/configtx] addToMap -> DEBU a9e Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +2018-01-18 09:29:47.061 UTC [common/configtx] addToMap -> DEBU a9f Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +2018-01-18 09:29:47.062 UTC [common/configtx] addToMap -> DEBU aa0 Adding to config map: [Groups] /Channel/Application/Org2MSP +2018-01-18 09:29:47.062 UTC [common/configtx] addToMap -> DEBU aa1 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +2018-01-18 09:29:47.062 UTC [common/configtx] addToMap -> DEBU aa2 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +2018-01-18 09:29:47.062 UTC [common/configtx] addToMap -> DEBU aa3 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +2018-01-18 09:29:47.062 UTC [common/configtx] addToMap -> DEBU aa4 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +2018-01-18 09:29:47.062 UTC [common/configtx] addToMap -> DEBU aa5 Adding to config map: [Policy] /Channel/Application/Writers +2018-01-18 09:29:47.062 UTC [common/configtx] addToMap -> DEBU aa6 Adding to config map: [Policy] /Channel/Application/Readers +2018-01-18 09:29:47.063 UTC [common/configtx] addToMap -> DEBU aa7 Adding to config map: [Policy] /Channel/Application/Admins +2018-01-18 09:29:47.063 UTC [common/configtx] addToMap -> DEBU aa8 Adding to config map: [Values] /Channel/BlockDataHashingStructure +2018-01-18 09:29:47.063 UTC [common/configtx] addToMap -> DEBU aa9 Adding to config map: [Values] /Channel/OrdererAddresses +2018-01-18 09:29:47.063 UTC [common/configtx] addToMap -> DEBU aaa Adding to config map: [Values] /Channel/HashingAlgorithm +2018-01-18 09:29:47.063 UTC [common/configtx] addToMap -> DEBU aab Adding to config map: [Values] /Channel/Consortium +2018-01-18 09:29:47.064 UTC [common/configtx] addToMap -> DEBU aac Adding to config map: [Policy] /Channel/Admins +2018-01-18 09:29:47.064 UTC [common/configtx] addToMap -> DEBU aad Adding to config map: [Policy] /Channel/Readers +2018-01-18 09:29:47.064 UTC [common/configtx] addToMap -> DEBU aae Adding to config map: [Policy] /Channel/Writers +2018-01-18 09:29:47.064 UTC [common/configtx] addToMap -> DEBU aaf Adding to config map: [Groups] /Channel +2018-01-18 09:29:47.064 UTC [common/configtx] addToMap -> DEBU ab0 Adding to config map: [Groups] /Channel/Application +2018-01-18 09:29:47.064 UTC [common/configtx] addToMap -> DEBU ab1 Adding to config map: [Groups] /Channel/Application/Org1MSP +2018-01-18 09:29:47.064 UTC [common/configtx] addToMap -> DEBU ab2 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +2018-01-18 09:29:47.064 UTC [common/configtx] addToMap -> DEBU ab3 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +2018-01-18 09:29:47.065 UTC [common/configtx] addToMap -> DEBU ab4 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +2018-01-18 09:29:47.065 UTC [common/configtx] addToMap -> DEBU ab5 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +2018-01-18 09:29:47.065 UTC [common/configtx] addToMap -> DEBU ab6 Adding to config map: [Groups] /Channel +2018-01-18 09:29:47.065 UTC [common/configtx] addToMap -> DEBU ab7 Adding to config map: [Groups] /Channel/Application +2018-01-18 09:29:47.065 UTC [common/configtx] addToMap -> DEBU ab8 Adding to config map: [Groups] /Channel/Application/Org1MSP +2018-01-18 09:29:47.065 UTC [common/configtx] addToMap -> DEBU ab9 Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +2018-01-18 09:29:47.065 UTC [common/configtx] addToMap -> DEBU aba Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +2018-01-18 09:29:47.065 UTC [common/configtx] addToMap -> DEBU abb Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +2018-01-18 09:29:47.065 UTC [common/configtx] addToMap -> DEBU abc Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +2018-01-18 09:29:47.066 UTC [common/configtx] addToMap -> DEBU abd Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +2018-01-18 09:29:47.066 UTC [policies] GetPolicy -> DEBU abe Returning policy Admins for evaluation +2018-01-18 09:29:47.066 UTC [cauthdsl] func1 -> DEBU abf 0xc420026850 gate 1516267787066298361 evaluation starts +2018-01-18 09:29:47.066 UTC [cauthdsl] func2 -> DEBU ac0 0xc420026850 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:29:47.066 UTC [cauthdsl] func2 -> DEBU ac1 0xc420026850 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:29:47.066 UTC [msp/identity] newIdentity -> DEBU ac2 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +xHTBvxfK6mAzmUitFmY= +-----END CERTIFICATE----- +2018-01-18 09:29:47.067 UTC [msp] SatisfiesPrincipal -> DEBU ac3 Checking if identity satisfies ADMIN role for Org1MSP +2018-01-18 09:29:47.067 UTC [cauthdsl] func2 -> DEBU ac4 0xc420026850 principal matched by identity 0 +2018-01-18 09:29:47.067 UTC [msp/identity] Verify -> DEBU ac5 Verify: digest = 00000000 4d be a9 c4 54 6d 00 c1 09 ed 0f 97 df 98 d3 b4 |M...Tm..........| +00000010 3f 7e 4c 7b 14 2e 85 95 dd e8 fa 88 85 14 1c a4 |?~L{............| +2018-01-18 09:29:47.067 UTC [msp/identity] Verify -> DEBU ac6 Verify: sig = 00000000 30 44 02 20 55 16 a0 b6 71 60 a7 f6 6c 09 21 48 |0D. U...q`..l.!H| +00000010 5f e7 b9 36 eb 3a fc 25 9e ca 91 a5 21 1b 9d 0d |_..6.:.%....!...| +00000020 d3 3a a3 0c 02 20 5b 2b 93 ce de c4 63 57 76 14 |.:... [+....cWv.| +00000030 88 2e 5c c0 fa 75 1d 6b 5d 34 ee 1a c9 f9 9a ea |..\..u.k]4......| +00000040 c6 d4 a3 0c a6 3a |.....:| +2018-01-18 09:29:47.068 UTC [cauthdsl] func2 -> DEBU ac7 0xc420026850 principal evaluation succeeds for identity 0 +2018-01-18 09:29:47.068 UTC [cauthdsl] func1 -> DEBU ac8 0xc420026850 gate 1516267787066298361 evaluation succeeds +2018-01-18 09:29:47.068 UTC [common/configtx] recurseConfigMap -> DEBU ac9 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-18 09:29:47.069 UTC [common/configtx] recurseConfigMap -> DEBU aca Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-18 09:29:47.069 UTC [common/configtx] recurseConfigMap -> DEBU acb Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-18 09:29:47.069 UTC [common/configtx] recurseConfigMap -> DEBU acc Setting policy for key Readers to +2018-01-18 09:29:47.069 UTC [common/configtx] recurseConfigMap -> DEBU acd Setting policy for key Writers to +2018-01-18 09:29:47.069 UTC [common/configtx] recurseConfigMap -> DEBU ace Setting policy for key Admins to +2018-01-18 09:29:47.069 UTC [common/configtx] recurseConfigMap -> DEBU acf Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-18 09:29:47.069 UTC [common/configtx] recurseConfigMap -> DEBU ad0 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-18 09:29:47.069 UTC [common/configtx] recurseConfigMap -> DEBU ad1 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-18 09:29:47.069 UTC [common/configtx] recurseConfigMap -> DEBU ad2 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-18 09:29:47.069 UTC [common/configtx] recurseConfigMap -> DEBU ad3 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-18 09:29:47.069 UTC [common/configtx] recurseConfigMap -> DEBU ad4 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-18 09:29:47.069 UTC [common/configtx] recurseConfigMap -> DEBU ad5 Setting policy for key BlockValidation to policy: mod_policy:"Admins" +2018-01-18 09:29:47.069 UTC [common/configtx] recurseConfigMap -> DEBU ad6 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-18 09:29:47.070 UTC [common/configtx] recurseConfigMap -> DEBU ad7 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-18 09:29:47.070 UTC [common/configtx] recurseConfigMap -> DEBU ad8 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-18 09:29:47.070 UTC [common/configtx] recurseConfigMap -> DEBU ad9 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-18 09:29:47.070 UTC [common/configtx] recurseConfigMap -> DEBU ada Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-18 09:29:47.070 UTC [common/configtx] recurseConfigMap -> DEBU adb Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-18 09:29:47.071 UTC [common/configtx] processConfig -> DEBU adc Beginning new config for channel businesschannel +2018-01-18 09:29:47.071 UTC [common/config] NewStandardValues -> DEBU add Initializing protos for *config.ChannelProtos +2018-01-18 09:29:47.071 UTC [common/config] initializeProtosStruct -> DEBU ade Processing field: HashingAlgorithm +2018-01-18 09:29:47.071 UTC [common/config] initializeProtosStruct -> DEBU adf Processing field: BlockDataHashingStructure +2018-01-18 09:29:47.071 UTC [common/config] initializeProtosStruct -> DEBU ae0 Processing field: OrdererAddresses +2018-01-18 09:29:47.071 UTC [common/config] initializeProtosStruct -> DEBU ae1 Processing field: Consortium +2018-01-18 09:29:47.071 UTC [policies] ProposePolicy -> DEBU ae2 Proposed new policy Readers for Channel +2018-01-18 09:29:47.071 UTC [policies] ProposePolicy -> DEBU ae3 Proposed new policy Writers for Channel +2018-01-18 09:29:47.072 UTC [policies] ProposePolicy -> DEBU ae4 Proposed new policy Admins for Channel +2018-01-18 09:29:47.072 UTC [common/config] NewStandardValues -> DEBU ae5 Initializing protos for *struct {} +2018-01-18 09:29:47.072 UTC [policies] ProposePolicy -> DEBU ae6 Proposed new policy Admins for Application +2018-01-18 09:29:47.072 UTC [policies] ProposePolicy -> DEBU ae7 Proposed new policy Writers for Application +2018-01-18 09:29:47.072 UTC [policies] ProposePolicy -> DEBU ae8 Proposed new policy Readers for Application +2018-01-18 09:29:47.072 UTC [common/config] NewStandardValues -> DEBU ae9 Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:47.072 UTC [common/config] initializeProtosStruct -> DEBU aea Processing field: MSP +2018-01-18 09:29:47.072 UTC [common/config] NewStandardValues -> DEBU aeb Initializing protos for *config.ApplicationOrgProtos +2018-01-18 09:29:47.073 UTC [common/config] initializeProtosStruct -> DEBU aec Processing field: AnchorPeers +2018-01-18 09:29:47.073 UTC [common/config] NewStandardValues -> DEBU aed Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:47.073 UTC [common/config] initializeProtosStruct -> DEBU aee Processing field: MSP +2018-01-18 09:29:47.073 UTC [policies] ProposePolicy -> DEBU aef Proposed new policy Readers for Org1MSP +2018-01-18 09:29:47.073 UTC [policies] ProposePolicy -> DEBU af0 Proposed new policy Writers for Org1MSP +2018-01-18 09:29:47.074 UTC [policies] ProposePolicy -> DEBU af1 Proposed new policy Admins for Org1MSP +2018-01-18 09:29:47.074 UTC [common/config] NewStandardValues -> DEBU af2 Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:47.074 UTC [common/config] initializeProtosStruct -> DEBU af3 Processing field: MSP +2018-01-18 09:29:47.074 UTC [common/config] NewStandardValues -> DEBU af4 Initializing protos for *config.ApplicationOrgProtos +2018-01-18 09:29:47.074 UTC [common/config] initializeProtosStruct -> DEBU af5 Processing field: AnchorPeers +2018-01-18 09:29:47.074 UTC [common/config] NewStandardValues -> DEBU af6 Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:47.074 UTC [common/config] initializeProtosStruct -> DEBU af7 Processing field: MSP +2018-01-18 09:29:47.075 UTC [policies] ProposePolicy -> DEBU af8 Proposed new policy Admins for Org2MSP +2018-01-18 09:29:47.075 UTC [policies] ProposePolicy -> DEBU af9 Proposed new policy Readers for Org2MSP +2018-01-18 09:29:47.075 UTC [policies] ProposePolicy -> DEBU afa Proposed new policy Writers for Org2MSP +2018-01-18 09:29:47.075 UTC [common/config] NewStandardValues -> DEBU afb Initializing protos for *config.OrdererProtos +2018-01-18 09:29:47.075 UTC [common/config] initializeProtosStruct -> DEBU afc Processing field: ConsensusType +2018-01-18 09:29:47.075 UTC [common/config] initializeProtosStruct -> DEBU afd Processing field: BatchSize +2018-01-18 09:29:47.075 UTC [common/config] initializeProtosStruct -> DEBU afe Processing field: BatchTimeout +2018-01-18 09:29:47.075 UTC [common/config] initializeProtosStruct -> DEBU aff Processing field: KafkaBrokers +2018-01-18 09:29:47.075 UTC [common/config] initializeProtosStruct -> DEBU b00 Processing field: ChannelRestrictions +2018-01-18 09:29:47.076 UTC [policies] ProposePolicy -> DEBU b01 Proposed new policy Readers for Orderer +2018-01-18 09:29:47.076 UTC [policies] ProposePolicy -> DEBU b02 Proposed new policy Writers for Orderer +2018-01-18 09:29:47.076 UTC [policies] ProposePolicy -> DEBU b03 Proposed new policy Admins for Orderer +2018-01-18 09:29:47.076 UTC [policies] ProposePolicy -> DEBU b04 Proposed new policy BlockValidation for Orderer +2018-01-18 09:29:47.076 UTC [common/config] NewStandardValues -> DEBU b05 Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:47.076 UTC [common/config] initializeProtosStruct -> DEBU b06 Processing field: MSP +2018-01-18 09:29:47.076 UTC [policies] ProposePolicy -> DEBU b07 Proposed new policy Admins for OrdererOrg +2018-01-18 09:29:47.076 UTC [policies] ProposePolicy -> DEBU b08 Proposed new policy Readers for OrdererOrg +2018-01-18 09:29:47.076 UTC [policies] ProposePolicy -> DEBU b09 Proposed new policy Writers for OrdererOrg +2018-01-18 09:29:47.076 UTC [common/config] Validate -> DEBU b0a Anchor peers for org Org1MSP are anchor_peers: +2018-01-18 09:29:47.077 UTC [common/config] validateMSP -> DEBU b0b Setting up MSP for org Org1MSP +2018-01-18 09:29:47.077 UTC [msp] NewBccspMsp -> DEBU b0c Creating BCCSP-based MSP instance +2018-01-18 09:29:47.078 UTC [msp] Setup -> DEBU b0d Setting up MSP instance Org1MSP +2018-01-18 09:29:47.084 UTC [msp/identity] newIdentity -> DEBU b0e Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf +db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx +JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi +/IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ +H7n8z1pj5w== +-----END CERTIFICATE----- +2018-01-18 09:29:47.087 UTC [msp/identity] newIdentity -> DEBU b0f Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +xHTBvxfK6mAzmUitFmY= +-----END CERTIFICATE----- +2018-01-18 09:29:47.088 UTC [msp/identity] newIdentity -> DEBU b10 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +xHTBvxfK6mAzmUitFmY= +-----END CERTIFICATE----- +2018-01-18 09:29:47.088 UTC [msp] Validate -> DEBU b11 MSP Org1MSP validating identity +2018-01-18 09:29:47.090 UTC [common/config] Validate -> DEBU b12 Anchor peers for org Org2MSP are +2018-01-18 09:29:47.091 UTC [common/config] validateMSP -> DEBU b13 Setting up MSP for org Org2MSP +2018-01-18 09:29:47.091 UTC [msp] NewBccspMsp -> DEBU b14 Creating BCCSP-based MSP instance +2018-01-18 09:29:47.091 UTC [msp] Setup -> DEBU b15 Setting up MSP instance Org2MSP +2018-01-18 09:29:47.091 UTC [msp/identity] newIdentity -> DEBU b16 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 +sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ +xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv +WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk +SCjyRdD3aQ== +-----END CERTIFICATE----- +2018-01-18 09:29:47.092 UTC [msp/identity] newIdentity -> DEBU b17 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +AXYxULZpXYDQXt1KaLI= +-----END CERTIFICATE----- +2018-01-18 09:29:47.094 UTC [msp/identity] newIdentity -> DEBU b18 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +AXYxULZpXYDQXt1KaLI= +-----END CERTIFICATE----- +2018-01-18 09:29:47.095 UTC [msp] Validate -> DEBU b19 MSP Org2MSP validating identity +2018-01-18 09:29:47.096 UTC [common/config] validateMSP -> DEBU b1a Setting up MSP for org OrdererOrg +2018-01-18 09:29:47.096 UTC [msp] NewBccspMsp -> DEBU b1b Creating BCCSP-based MSP instance +2018-01-18 09:29:47.096 UTC [msp] Setup -> DEBU b1c Setting up MSP instance OrdererMSP +2018-01-18 09:29:47.097 UTC [msp/identity] newIdentity -> DEBU b1d Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW +gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w +XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK +BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs +KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= +-----END CERTIFICATE----- +2018-01-18 09:29:47.099 UTC [msp/identity] newIdentity -> DEBU b1e Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-18 09:29:47.100 UTC [msp/identity] newIdentity -> DEBU b1f Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-18 09:29:47.103 UTC [msp] Validate -> DEBU b20 MSP OrdererMSP validating identity +2018-01-18 09:29:47.106 UTC [msp] Setup -> DEBU b21 Setting up the MSP manager (3 msps) +2018-01-18 09:29:47.106 UTC [msp] Setup -> DEBU b22 MSP manager setup complete, setup 3 msps +2018-01-18 09:29:47.107 UTC [policies] GetPolicy -> DEBU b23 Returning policy Readers for evaluation +2018-01-18 09:29:47.107 UTC [policies] CommitProposals -> DEBU b24 In commit adding relative sub-policy Org1MSP/Readers to Application +2018-01-18 09:29:47.108 UTC [policies] GetPolicy -> DEBU b25 Returning policy Writers for evaluation +2018-01-18 09:29:47.108 UTC [policies] CommitProposals -> DEBU b26 In commit adding relative sub-policy Org1MSP/Writers to Application +2018-01-18 09:29:47.108 UTC [policies] GetPolicy -> DEBU b27 Returning policy Admins for evaluation +2018-01-18 09:29:47.108 UTC [policies] CommitProposals -> DEBU b28 In commit adding relative sub-policy Org1MSP/Admins to Application +2018-01-18 09:29:47.108 UTC [policies] GetPolicy -> DEBU b29 Returning policy Admins for evaluation +2018-01-18 09:29:47.108 UTC [policies] CommitProposals -> DEBU b2a In commit adding relative sub-policy Org2MSP/Admins to Application +2018-01-18 09:29:47.108 UTC [policies] GetPolicy -> DEBU b2b Returning policy Readers for evaluation +2018-01-18 09:29:47.108 UTC [policies] CommitProposals -> DEBU b2c In commit adding relative sub-policy Org2MSP/Readers to Application +2018-01-18 09:29:47.108 UTC [policies] GetPolicy -> DEBU b2d Returning policy Writers for evaluation +2018-01-18 09:29:47.108 UTC [policies] CommitProposals -> DEBU b2e In commit adding relative sub-policy Org2MSP/Writers to Application +2018-01-18 09:29:47.108 UTC [policies] GetPolicy -> DEBU b2f Returning policy Admins for evaluation +2018-01-18 09:29:47.108 UTC [policies] GetPolicy -> DEBU b30 Returning policy Admins for evaluation +2018-01-18 09:29:47.108 UTC [policies] GetPolicy -> DEBU b31 Returning policy Writers for evaluation +2018-01-18 09:29:47.109 UTC [policies] GetPolicy -> DEBU b32 Returning policy Writers for evaluation +2018-01-18 09:29:47.109 UTC [policies] GetPolicy -> DEBU b33 Returning policy Readers for evaluation +2018-01-18 09:29:47.109 UTC [policies] GetPolicy -> DEBU b34 Returning policy Readers for evaluation +2018-01-18 09:29:47.110 UTC [policies] GetPolicy -> DEBU b35 Returning policy Admins for evaluation +2018-01-18 09:29:47.110 UTC [policies] CommitProposals -> DEBU b36 In commit adding relative sub-policy OrdererOrg/Admins to Orderer +2018-01-18 09:29:47.110 UTC [policies] GetPolicy -> DEBU b37 Returning policy Readers for evaluation +2018-01-18 09:29:47.110 UTC [policies] CommitProposals -> DEBU b38 In commit adding relative sub-policy OrdererOrg/Readers to Orderer +2018-01-18 09:29:47.111 UTC [policies] GetPolicy -> DEBU b39 Returning policy Writers for evaluation +2018-01-18 09:29:47.112 UTC [policies] CommitProposals -> DEBU b3a In commit adding relative sub-policy OrdererOrg/Writers to Orderer +2018-01-18 09:29:47.112 UTC [policies] GetPolicy -> DEBU b3b Returning policy Readers for evaluation +2018-01-18 09:29:47.112 UTC [policies] GetPolicy -> DEBU b3c Returning policy Writers for evaluation +2018-01-18 09:29:47.112 UTC [policies] GetPolicy -> DEBU b3d Returning policy Admins for evaluation +2018-01-18 09:29:47.113 UTC [policies] GetPolicy -> DEBU b3e Returning policy Writers for evaluation +2018-01-18 09:29:47.113 UTC [policies] GetPolicy -> DEBU b3f Returning policy OrdererOrg/Readers for evaluation +2018-01-18 09:29:47.113 UTC [policies] CommitProposals -> DEBU b40 In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +2018-01-18 09:29:47.113 UTC [policies] GetPolicy -> DEBU b41 Returning policy OrdererOrg/Writers for evaluation +2018-01-18 09:29:47.113 UTC [policies] CommitProposals -> DEBU b42 In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +2018-01-18 09:29:47.113 UTC [policies] GetPolicy -> DEBU b43 Returning policy Readers for evaluation +2018-01-18 09:29:47.113 UTC [policies] CommitProposals -> DEBU b44 In commit adding relative sub-policy Orderer/Readers to Channel +2018-01-18 09:29:47.113 UTC [policies] GetPolicy -> DEBU b45 Returning policy Writers for evaluation +2018-01-18 09:29:47.113 UTC [policies] CommitProposals -> DEBU b46 In commit adding relative sub-policy Orderer/Writers to Channel +2018-01-18 09:29:47.113 UTC [policies] GetPolicy -> DEBU b47 Returning policy Admins for evaluation +2018-01-18 09:29:47.114 UTC [policies] CommitProposals -> DEBU b48 In commit adding relative sub-policy Orderer/Admins to Channel +2018-01-18 09:29:47.114 UTC [policies] GetPolicy -> DEBU b49 Returning policy BlockValidation for evaluation +2018-01-18 09:29:47.114 UTC [policies] CommitProposals -> DEBU b4a In commit adding relative sub-policy Orderer/BlockValidation to Channel +2018-01-18 09:29:47.114 UTC [policies] GetPolicy -> DEBU b4b Returning policy OrdererOrg/Admins for evaluation +2018-01-18 09:29:47.114 UTC [policies] CommitProposals -> DEBU b4c In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +2018-01-18 09:29:47.114 UTC [policies] GetPolicy -> DEBU b4d Returning policy Writers for evaluation +2018-01-18 09:29:47.114 UTC [policies] CommitProposals -> DEBU b4e In commit adding relative sub-policy Application/Writers to Channel +2018-01-18 09:29:47.114 UTC [policies] GetPolicy -> DEBU b4f Returning policy Org1MSP/Readers for evaluation +2018-01-18 09:29:47.114 UTC [policies] CommitProposals -> DEBU b50 In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +2018-01-18 09:29:47.114 UTC [policies] GetPolicy -> DEBU b51 Returning policy Org1MSP/Admins for evaluation +2018-01-18 09:29:47.114 UTC [policies] CommitProposals -> DEBU b52 In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +2018-01-18 09:29:47.114 UTC [policies] GetPolicy -> DEBU b53 Returning policy Org2MSP/Admins for evaluation +2018-01-18 09:29:47.114 UTC [policies] CommitProposals -> DEBU b54 In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +2018-01-18 09:29:47.114 UTC [policies] GetPolicy -> DEBU b55 Returning policy Org2MSP/Readers for evaluation +2018-01-18 09:29:47.114 UTC [policies] CommitProposals -> DEBU b56 In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +2018-01-18 09:29:47.114 UTC [policies] GetPolicy -> DEBU b57 Returning policy Admins for evaluation +2018-01-18 09:29:47.114 UTC [policies] CommitProposals -> DEBU b58 In commit adding relative sub-policy Application/Admins to Channel +2018-01-18 09:29:47.115 UTC [policies] GetPolicy -> DEBU b59 Returning policy Readers for evaluation +2018-01-18 09:29:47.115 UTC [policies] CommitProposals -> DEBU b5a In commit adding relative sub-policy Application/Readers to Channel +2018-01-18 09:29:47.115 UTC [policies] GetPolicy -> DEBU b5b Returning policy Org1MSP/Writers for evaluation +2018-01-18 09:29:47.115 UTC [policies] CommitProposals -> DEBU b5c In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +2018-01-18 09:29:47.115 UTC [policies] GetPolicy -> DEBU b5d Returning policy Org2MSP/Writers for evaluation +2018-01-18 09:29:47.115 UTC [policies] CommitProposals -> DEBU b5e In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +2018-01-18 09:29:47.115 UTC [policies] GetPolicy -> DEBU b5f Returning policy Readers for evaluation +2018-01-18 09:29:47.115 UTC [policies] GetPolicy -> DEBU b60 Returning policy Readers for evaluation +2018-01-18 09:29:47.115 UTC [policies] GetPolicy -> DEBU b61 Returning policy Writers for evaluation +2018-01-18 09:29:47.115 UTC [policies] GetPolicy -> DEBU b62 Returning policy Writers for evaluation +2018-01-18 09:29:47.115 UTC [policies] GetPolicy -> DEBU b63 Returning policy Admins for evaluation +2018-01-18 09:29:47.116 UTC [policies] GetPolicy -> DEBU b64 Returning policy Admins for evaluation +2018-01-18 09:29:47.116 UTC [policies] GetPolicy -> DEBU b65 Returning policy Readers for evaluation +2018-01-18 09:29:47.116 UTC [policies] CommitProposals -> DEBU b66 As expected, current configuration has policy '/Channel/Readers' +2018-01-18 09:29:47.116 UTC [policies] GetPolicy -> DEBU b67 Returning policy Writers for evaluation +2018-01-18 09:29:47.116 UTC [policies] CommitProposals -> DEBU b68 As expected, current configuration has policy '/Channel/Writers' +2018-01-18 09:29:47.116 UTC [policies] GetPolicy -> DEBU b69 Returning policy Application/Readers for evaluation +2018-01-18 09:29:47.116 UTC [policies] CommitProposals -> DEBU b6a As expected, current configuration has policy '/Channel/Application/Readers' +2018-01-18 09:29:47.116 UTC [policies] GetPolicy -> DEBU b6b Returning policy Application/Writers for evaluation +2018-01-18 09:29:47.116 UTC [policies] CommitProposals -> DEBU b6c As expected, current configuration has policy '/Channel/Application/Writers' +2018-01-18 09:29:47.116 UTC [policies] GetPolicy -> DEBU b6d Returning policy Application/Admins for evaluation +2018-01-18 09:29:47.116 UTC [policies] CommitProposals -> DEBU b6e As expected, current configuration has policy '/Channel/Application/Admins' +2018-01-18 09:29:47.117 UTC [policies] GetPolicy -> DEBU b6f Returning policy Orderer/BlockValidation for evaluation +2018-01-18 09:29:47.117 UTC [policies] CommitProposals -> DEBU b70 As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +2018-01-18 09:29:47.117 UTC [orderer/multichain] addBlockSignature -> DEBU b71 &{ledgerResources:0xc4209b5140 chain:0xc4209b5a00 cutter:0xc420863b80 filters:0xc4209b5640 signer:0x1274e88 lastConfig:0 lastConfigSeq:1} +2018-01-18 09:29:47.117 UTC [orderer/multichain] addBlockSignature -> DEBU b72 &{} +2018-01-18 09:29:47.117 UTC [msp] GetLocalMSP -> DEBU b73 Returning existing local MSP +2018-01-18 09:29:47.117 UTC [msp] GetDefaultSigningIdentity -> DEBU b74 Obtaining default signing identity +2018-01-18 09:29:47.117 UTC [msp] GetLocalMSP -> DEBU b75 Returning existing local MSP +2018-01-18 09:29:47.117 UTC [msp] GetDefaultSigningIdentity -> DEBU b76 Obtaining default signing identity +2018-01-18 09:29:47.119 UTC [msp/identity] Sign -> DEBU b77 Sign: plaintext: 0AFA050A0A4F7264657265724D535012...A3585F5C508E0476F6E95F625F578B7F +2018-01-18 09:29:47.119 UTC [msp/identity] Sign -> DEBU b78 Sign: digest: F18CC38E1F7A062CB1998C50351CFF4E73D058C1155E1CEDE91DDD944D9C1778 +2018-01-18 09:29:47.120 UTC [orderer/multichain] addLastConfigSignature -> DEBU b79 [channel: businesschannel] Detected lastConfigSeq transitioning from 1 to 2, setting lastConfig from 0 to 1 +2018-01-18 09:29:47.120 UTC [msp] GetLocalMSP -> DEBU b7a Returning existing local MSP +2018-01-18 09:29:47.120 UTC [msp] GetDefaultSigningIdentity -> DEBU b7b Obtaining default signing identity +2018-01-18 09:29:47.120 UTC [orderer/multichain] addLastConfigSignature -> DEBU b7c [channel: businesschannel] About to write block, setting its LAST_CONFIG to 1 +2018-01-18 09:29:47.121 UTC [msp] GetLocalMSP -> DEBU b7d Returning existing local MSP +2018-01-18 09:29:47.121 UTC [msp] GetDefaultSigningIdentity -> DEBU b7e Obtaining default signing identity +2018-01-18 09:29:47.121 UTC [msp/identity] Sign -> DEBU b7f Sign: plaintext: 08010AFA050A0A4F7264657265724D53...A3585F5C508E0476F6E95F625F578B7F +2018-01-18 09:29:47.121 UTC [msp/identity] Sign -> DEBU b80 Sign: digest: 76C8F5BF93FAB6311D82D1333221A0059DA198770C3598A9398CFF4F8B2C983B +2018-01-18 09:29:47.124 UTC [fsblkstorage] indexBlock -> DEBU b81 Indexing block [blockNum=1, blockHash=[]byte{0x6c, 0xef, 0x8, 0x85, 0xb1, 0xd, 0xe7, 0xda, 0xc6, 0xd0, 0x92, 0x80, 0xa6, 0x9f, 0x76, 0x95, 0xfa, 0x31, 0xc3, 0x51, 0x60, 0x86, 0x44, 0xcf, 0xf7, 0xdc, 0x39, 0xba, 0xf0, 0x8, 0xf8, 0x13} txOffsets= +txId= locPointer=offset=70, bytesLength=11914 ] -2018-01-18 01:58:53.755 UTC [fsblkstorage] updateCheckpoint -> DEBU b66 Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[25666], isChainEmpty=[false], lastBlockNumber=[1] -2018-01-18 01:58:53.755 UTC [orderer/multichain] WriteBlock -> DEBU b67 [channel: businesschannel] Wrote block 1 -2018-01-18 01:58:55.781 UTC [orderer/main] Deliver -> DEBU b68 Starting new Deliver handler -2018-01-18 01:58:55.781 UTC [orderer/common/deliver] Handle -> DEBU b69 Starting new deliver loop -2018-01-18 01:58:55.781 UTC [orderer/common/deliver] Handle -> DEBU b6a Attempting to read seek info message -2018-01-18 01:58:55.792 UTC [orderer/main] Broadcast -> DEBU b6b Starting new Broadcast handler -2018-01-18 01:58:55.792 UTC [orderer/common/broadcast] Handle -> DEBU b6c Starting new broadcast loop -2018-01-18 01:58:55.793 UTC [orderer/common/broadcast] Handle -> DEBU b6d Preprocessing CONFIG_UPDATE -2018-01-18 01:58:55.793 UTC [orderer/configupdate] Process -> DEBU b6e Processing channel reconfiguration request for channel businesschannel -2018-01-18 01:58:55.794 UTC [common/configtx] addToMap -> DEBU b6f Adding to config map: [Groups] /Channel -2018-01-18 01:58:55.794 UTC [common/configtx] addToMap -> DEBU b70 Adding to config map: [Groups] /Channel/Application -2018-01-18 01:58:55.794 UTC [common/configtx] addToMap -> DEBU b71 Adding to config map: [Groups] /Channel/Application/Org2MSP -2018-01-18 01:58:55.794 UTC [common/configtx] addToMap -> DEBU b72 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -2018-01-18 01:58:55.794 UTC [common/configtx] addToMap -> DEBU b73 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -2018-01-18 01:58:55.795 UTC [common/configtx] addToMap -> DEBU b74 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -2018-01-18 01:58:55.795 UTC [common/configtx] addToMap -> DEBU b75 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -2018-01-18 01:58:55.795 UTC [common/configtx] addToMap -> DEBU b76 Adding to config map: [Groups] /Channel -2018-01-18 01:58:55.795 UTC [common/configtx] addToMap -> DEBU b77 Adding to config map: [Groups] /Channel/Application -2018-01-18 01:58:55.796 UTC [common/configtx] addToMap -> DEBU b78 Adding to config map: [Groups] /Channel/Application/Org2MSP -2018-01-18 01:58:55.796 UTC [common/configtx] addToMap -> DEBU b79 Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers -2018-01-18 01:58:55.796 UTC [common/configtx] addToMap -> DEBU b7a Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -2018-01-18 01:58:55.796 UTC [common/configtx] addToMap -> DEBU b7b Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -2018-01-18 01:58:55.796 UTC [common/configtx] addToMap -> DEBU b7c Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -2018-01-18 01:58:55.796 UTC [common/configtx] addToMap -> DEBU b7d Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -2018-01-18 01:58:55.797 UTC [policies] GetPolicy -> DEBU b7e Returning policy Admins for evaluation -2018-01-18 01:58:55.797 UTC [cauthdsl] func1 -> DEBU b7f 0xc420026af8 gate 1516240735797217166 evaluation starts -2018-01-18 01:58:55.797 UTC [cauthdsl] func2 -> DEBU b80 0xc420026af8 signed by 0 principal evaluation starts (used [false]) -2018-01-18 01:58:55.797 UTC [cauthdsl] func2 -> DEBU b81 0xc420026af8 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-18 01:58:55.798 UTC [msp/identity] newIdentity -> DEBU b82 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:47.124 UTC [fsblkstorage] updateCheckpoint -> DEBU b82 Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[25667], isChainEmpty=[false], lastBlockNumber=[1] +2018-01-18 09:29:47.124 UTC [orderer/multichain] WriteBlock -> DEBU b83 [channel: businesschannel] Wrote block 1 +2018-01-18 09:29:49.185 UTC [orderer/main] Deliver -> DEBU b84 Starting new Deliver handler +2018-01-18 09:29:49.185 UTC [orderer/common/deliver] Handle -> DEBU b85 Starting new deliver loop +2018-01-18 09:29:49.186 UTC [orderer/common/deliver] Handle -> DEBU b86 Attempting to read seek info message +2018-01-18 09:29:49.204 UTC [orderer/main] Broadcast -> DEBU b87 Starting new Broadcast handler +2018-01-18 09:29:49.204 UTC [orderer/common/broadcast] Handle -> DEBU b88 Starting new broadcast loop +2018-01-18 09:29:49.204 UTC [orderer/common/broadcast] Handle -> DEBU b89 Preprocessing CONFIG_UPDATE +2018-01-18 09:29:49.205 UTC [orderer/configupdate] Process -> DEBU b8a Processing channel reconfiguration request for channel businesschannel +2018-01-18 09:29:49.206 UTC [common/configtx] addToMap -> DEBU b8b Adding to config map: [Groups] /Channel +2018-01-18 09:29:49.207 UTC [common/configtx] addToMap -> DEBU b8c Adding to config map: [Groups] /Channel/Application +2018-01-18 09:29:49.207 UTC [common/configtx] addToMap -> DEBU b8d Adding to config map: [Groups] /Channel/Application/Org2MSP +2018-01-18 09:29:49.207 UTC [common/configtx] addToMap -> DEBU b8e Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +2018-01-18 09:29:49.207 UTC [common/configtx] addToMap -> DEBU b8f Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +2018-01-18 09:29:49.208 UTC [common/configtx] addToMap -> DEBU b90 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +2018-01-18 09:29:49.208 UTC [common/configtx] addToMap -> DEBU b91 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +2018-01-18 09:29:49.208 UTC [common/configtx] addToMap -> DEBU b92 Adding to config map: [Groups] /Channel +2018-01-18 09:29:49.208 UTC [common/configtx] addToMap -> DEBU b93 Adding to config map: [Groups] /Channel/Application +2018-01-18 09:29:49.208 UTC [common/configtx] addToMap -> DEBU b94 Adding to config map: [Groups] /Channel/Application/Org2MSP +2018-01-18 09:29:49.209 UTC [common/configtx] addToMap -> DEBU b95 Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers +2018-01-18 09:29:49.209 UTC [common/configtx] addToMap -> DEBU b96 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +2018-01-18 09:29:49.209 UTC [common/configtx] addToMap -> DEBU b97 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +2018-01-18 09:29:49.210 UTC [common/configtx] addToMap -> DEBU b98 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +2018-01-18 09:29:49.210 UTC [common/configtx] addToMap -> DEBU b99 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +2018-01-18 09:29:49.210 UTC [policies] GetPolicy -> DEBU b9a Returning policy Admins for evaluation +2018-01-18 09:29:49.210 UTC [cauthdsl] func1 -> DEBU b9b 0xc420026d80 gate 1516267789210870639 evaluation starts +2018-01-18 09:29:49.211 UTC [cauthdsl] func2 -> DEBU b9c 0xc420026d80 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:29:49.211 UTC [cauthdsl] func2 -> DEBU b9d 0xc420026d80 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:29:49.211 UTC [msp/identity] newIdentity -> DEBU b9e Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -5210,86 +5290,86 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS AXYxULZpXYDQXt1KaLI= -----END CERTIFICATE----- -2018-01-18 01:58:55.798 UTC [msp] SatisfiesPrincipal -> DEBU b83 Checking if identity satisfies ADMIN role for Org2MSP -2018-01-18 01:58:55.798 UTC [cauthdsl] func2 -> DEBU b84 0xc420026af8 principal matched by identity 0 -2018-01-18 01:58:55.799 UTC [msp/identity] Verify -> DEBU b85 Verify: digest = 00000000 9d 72 b7 0e 95 b2 86 89 3a d9 b1 85 95 8f bb d7 |.r......:.......| -00000010 01 5c 09 c4 93 48 4e 4e 33 65 ec 0d 5f d5 63 3d |.\...HNN3e.._.c=| -2018-01-18 01:58:55.799 UTC [msp/identity] Verify -> DEBU b86 Verify: sig = 00000000 30 44 02 20 7b 5b dd e2 f4 f1 0a 0b d0 d4 b9 93 |0D. {[..........| -00000010 d4 7f 21 c4 a4 ad 70 70 9f f3 5c e5 34 49 d3 8f |..!...pp..\.4I..| -00000020 80 7e 20 4b 02 20 47 1a ed e4 2b 82 43 82 8a b4 |.~ K. G...+.C...| -00000030 7e 02 4b 68 89 0c c3 b8 da ec 5f 89 9c 63 95 a2 |~.Kh......_..c..| -00000040 8d 10 f4 ce 7a 7f |....z.| -2018-01-18 01:58:55.800 UTC [cauthdsl] func2 -> DEBU b87 0xc420026af8 principal evaluation succeeds for identity 0 -2018-01-18 01:58:55.800 UTC [cauthdsl] func1 -> DEBU b88 0xc420026af8 gate 1516240735797217166 evaluation succeeds -2018-01-18 01:58:55.801 UTC [common/configtx] recurseConfigMap -> DEBU b89 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-18 01:58:55.802 UTC [common/configtx] recurseConfigMap -> DEBU b8a Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-18 01:58:55.802 UTC [common/configtx] recurseConfigMap -> DEBU b8b Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-18 01:58:55.802 UTC [common/configtx] recurseConfigMap -> DEBU b8c Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-18 01:58:55.802 UTC [common/configtx] recurseConfigMap -> DEBU b8d Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-18 01:58:55.802 UTC [common/configtx] recurseConfigMap -> DEBU b8e Setting policy for key BlockValidation to policy: mod_policy:"Admins" -2018-01-18 01:58:55.802 UTC [common/configtx] recurseConfigMap -> DEBU b8f Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-18 01:58:55.803 UTC [common/configtx] recurseConfigMap -> DEBU b90 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-18 01:58:55.803 UTC [common/configtx] recurseConfigMap -> DEBU b91 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-18 01:58:55.803 UTC [common/configtx] recurseConfigMap -> DEBU b92 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-18 01:58:55.803 UTC [common/configtx] recurseConfigMap -> DEBU b93 Setting policy for key Writers to -2018-01-18 01:58:55.803 UTC [common/configtx] recurseConfigMap -> DEBU b94 Setting policy for key Admins to -2018-01-18 01:58:55.803 UTC [common/configtx] recurseConfigMap -> DEBU b95 Setting policy for key Readers to -2018-01-18 01:58:55.803 UTC [common/configtx] recurseConfigMap -> DEBU b96 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-18 01:58:55.804 UTC [common/configtx] recurseConfigMap -> DEBU b97 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-18 01:58:55.804 UTC [common/configtx] recurseConfigMap -> DEBU b98 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-18 01:58:55.804 UTC [common/configtx] recurseConfigMap -> DEBU b99 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-18 01:58:55.804 UTC [common/configtx] recurseConfigMap -> DEBU b9a Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-18 01:58:55.804 UTC [common/configtx] recurseConfigMap -> DEBU b9b Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-18 01:58:55.804 UTC [common/configtx] processConfig -> DEBU b9c Beginning new config for channel businesschannel -2018-01-18 01:58:55.804 UTC [common/config] NewStandardValues -> DEBU b9d Initializing protos for *config.ChannelProtos -2018-01-18 01:58:55.804 UTC [common/config] initializeProtosStruct -> DEBU b9e Processing field: HashingAlgorithm -2018-01-18 01:58:55.804 UTC [common/config] initializeProtosStruct -> DEBU b9f Processing field: BlockDataHashingStructure -2018-01-18 01:58:55.805 UTC [common/config] initializeProtosStruct -> DEBU ba0 Processing field: OrdererAddresses -2018-01-18 01:58:55.805 UTC [common/config] initializeProtosStruct -> DEBU ba1 Processing field: Consortium -2018-01-18 01:58:55.805 UTC [policies] ProposePolicy -> DEBU ba2 Proposed new policy Writers for Channel -2018-01-18 01:58:55.805 UTC [policies] ProposePolicy -> DEBU ba3 Proposed new policy Admins for Channel -2018-01-18 01:58:55.805 UTC [policies] ProposePolicy -> DEBU ba4 Proposed new policy Readers for Channel -2018-01-18 01:58:55.805 UTC [common/config] NewStandardValues -> DEBU ba5 Initializing protos for *config.OrdererProtos -2018-01-18 01:58:55.805 UTC [common/config] initializeProtosStruct -> DEBU ba6 Processing field: ConsensusType -2018-01-18 01:58:55.805 UTC [common/config] initializeProtosStruct -> DEBU ba7 Processing field: BatchSize -2018-01-18 01:58:55.805 UTC [common/config] initializeProtosStruct -> DEBU ba8 Processing field: BatchTimeout -2018-01-18 01:58:55.805 UTC [common/config] initializeProtosStruct -> DEBU ba9 Processing field: KafkaBrokers -2018-01-18 01:58:55.806 UTC [common/config] initializeProtosStruct -> DEBU baa Processing field: ChannelRestrictions -2018-01-18 01:58:55.806 UTC [policies] ProposePolicy -> DEBU bab Proposed new policy BlockValidation for Orderer -2018-01-18 01:58:55.806 UTC [policies] ProposePolicy -> DEBU bac Proposed new policy Readers for Orderer -2018-01-18 01:58:55.806 UTC [policies] ProposePolicy -> DEBU bad Proposed new policy Writers for Orderer -2018-01-18 01:58:55.806 UTC [policies] ProposePolicy -> DEBU bae Proposed new policy Admins for Orderer -2018-01-18 01:58:55.806 UTC [common/config] NewStandardValues -> DEBU baf Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:55.806 UTC [common/config] initializeProtosStruct -> DEBU bb0 Processing field: MSP -2018-01-18 01:58:55.806 UTC [policies] ProposePolicy -> DEBU bb1 Proposed new policy Writers for OrdererOrg -2018-01-18 01:58:55.806 UTC [policies] ProposePolicy -> DEBU bb2 Proposed new policy Admins for OrdererOrg -2018-01-18 01:58:55.807 UTC [policies] ProposePolicy -> DEBU bb3 Proposed new policy Readers for OrdererOrg -2018-01-18 01:58:55.807 UTC [common/config] NewStandardValues -> DEBU bb4 Initializing protos for *struct {} -2018-01-18 01:58:55.807 UTC [policies] ProposePolicy -> DEBU bb5 Proposed new policy Readers for Application -2018-01-18 01:58:55.807 UTC [policies] ProposePolicy -> DEBU bb6 Proposed new policy Admins for Application -2018-01-18 01:58:55.807 UTC [policies] ProposePolicy -> DEBU bb7 Proposed new policy Writers for Application -2018-01-18 01:58:55.807 UTC [common/config] NewStandardValues -> DEBU bb8 Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:55.808 UTC [common/config] initializeProtosStruct -> DEBU bb9 Processing field: MSP -2018-01-18 01:58:55.808 UTC [common/config] NewStandardValues -> DEBU bba Initializing protos for *config.ApplicationOrgProtos -2018-01-18 01:58:55.808 UTC [common/config] initializeProtosStruct -> DEBU bbb Processing field: AnchorPeers -2018-01-18 01:58:55.808 UTC [common/config] NewStandardValues -> DEBU bbc Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:55.808 UTC [common/config] initializeProtosStruct -> DEBU bbd Processing field: MSP -2018-01-18 01:58:55.808 UTC [policies] ProposePolicy -> DEBU bbe Proposed new policy Readers for Org2MSP -2018-01-18 01:58:55.808 UTC [policies] ProposePolicy -> DEBU bbf Proposed new policy Writers for Org2MSP -2018-01-18 01:58:55.808 UTC [policies] ProposePolicy -> DEBU bc0 Proposed new policy Admins for Org2MSP -2018-01-18 01:58:55.808 UTC [common/config] NewStandardValues -> DEBU bc1 Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:55.808 UTC [common/config] initializeProtosStruct -> DEBU bc2 Processing field: MSP -2018-01-18 01:58:55.808 UTC [common/config] NewStandardValues -> DEBU bc3 Initializing protos for *config.ApplicationOrgProtos -2018-01-18 01:58:55.809 UTC [common/config] initializeProtosStruct -> DEBU bc4 Processing field: AnchorPeers -2018-01-18 01:58:55.809 UTC [common/config] NewStandardValues -> DEBU bc5 Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:55.809 UTC [common/config] initializeProtosStruct -> DEBU bc6 Processing field: MSP -2018-01-18 01:58:55.809 UTC [policies] ProposePolicy -> DEBU bc7 Proposed new policy Readers for Org1MSP -2018-01-18 01:58:55.809 UTC [policies] ProposePolicy -> DEBU bc8 Proposed new policy Writers for Org1MSP -2018-01-18 01:58:55.809 UTC [policies] ProposePolicy -> DEBU bc9 Proposed new policy Admins for Org1MSP -2018-01-18 01:58:55.809 UTC [common/config] validateMSP -> DEBU bca Setting up MSP for org OrdererOrg -2018-01-18 01:58:55.809 UTC [msp] NewBccspMsp -> DEBU bcb Creating BCCSP-based MSP instance -2018-01-18 01:58:55.809 UTC [msp] Setup -> DEBU bcc Setting up MSP instance OrdererMSP -2018-01-18 01:58:55.810 UTC [msp/identity] newIdentity -> DEBU bcd Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:49.212 UTC [msp] SatisfiesPrincipal -> DEBU b9f Checking if identity satisfies ADMIN role for Org2MSP +2018-01-18 09:29:49.212 UTC [cauthdsl] func2 -> DEBU ba0 0xc420026d80 principal matched by identity 0 +2018-01-18 09:29:49.213 UTC [msp/identity] Verify -> DEBU ba1 Verify: digest = 00000000 e3 2e bc 09 2e aa 2c ee 2d d8 57 24 a8 da 75 26 |......,.-.W$..u&| +00000010 76 f4 64 21 f8 97 85 b8 3e 1d 7e 6e 42 62 03 14 |v.d!....>.~nBb..| +2018-01-18 09:29:49.213 UTC [msp/identity] Verify -> DEBU ba2 Verify: sig = 00000000 30 44 02 20 48 e1 84 3e 07 f3 e5 77 3f 0a 13 70 |0D. H..>...w?..p| +00000010 88 13 09 23 43 ec 85 b3 36 94 70 17 22 ce 11 47 |...#C...6.p."..G| +00000020 bb 3f dc 05 02 20 54 76 42 4a a3 19 16 da fe 43 |.?... TvBJ.....C| +00000030 28 50 a5 02 b8 00 63 81 75 68 de 48 c5 86 e0 ee |(P....c.uh.H....| +00000040 7c 87 76 59 5d 71 ||.vY]q| +2018-01-18 09:29:49.214 UTC [cauthdsl] func2 -> DEBU ba3 0xc420026d80 principal evaluation succeeds for identity 0 +2018-01-18 09:29:49.214 UTC [cauthdsl] func1 -> DEBU ba4 0xc420026d80 gate 1516267789210870639 evaluation succeeds +2018-01-18 09:29:49.214 UTC [common/configtx] recurseConfigMap -> DEBU ba5 Setting policy for key Writers to +2018-01-18 09:29:49.215 UTC [common/configtx] recurseConfigMap -> DEBU ba6 Setting policy for key Admins to +2018-01-18 09:29:49.217 UTC [common/configtx] recurseConfigMap -> DEBU ba7 Setting policy for key Readers to +2018-01-18 09:29:49.218 UTC [common/configtx] recurseConfigMap -> DEBU ba8 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-18 09:29:49.218 UTC [common/configtx] recurseConfigMap -> DEBU ba9 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-18 09:29:49.218 UTC [common/configtx] recurseConfigMap -> DEBU baa Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-18 09:29:49.218 UTC [common/configtx] recurseConfigMap -> DEBU bab Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-18 09:29:49.218 UTC [common/configtx] recurseConfigMap -> DEBU bac Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-18 09:29:49.218 UTC [common/configtx] recurseConfigMap -> DEBU bad Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-18 09:29:49.219 UTC [common/configtx] recurseConfigMap -> DEBU bae Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-18 09:29:49.221 UTC [common/configtx] recurseConfigMap -> DEBU baf Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-18 09:29:49.221 UTC [common/configtx] recurseConfigMap -> DEBU bb0 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-18 09:29:49.221 UTC [common/configtx] recurseConfigMap -> DEBU bb1 Setting policy for key BlockValidation to policy: mod_policy:"Admins" +2018-01-18 09:29:49.221 UTC [common/configtx] recurseConfigMap -> DEBU bb2 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-18 09:29:49.221 UTC [common/configtx] recurseConfigMap -> DEBU bb3 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-18 09:29:49.222 UTC [common/configtx] recurseConfigMap -> DEBU bb4 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-18 09:29:49.222 UTC [common/configtx] recurseConfigMap -> DEBU bb5 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-18 09:29:49.222 UTC [common/configtx] recurseConfigMap -> DEBU bb6 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-18 09:29:49.222 UTC [common/configtx] recurseConfigMap -> DEBU bb7 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-18 09:29:49.222 UTC [common/configtx] processConfig -> DEBU bb8 Beginning new config for channel businesschannel +2018-01-18 09:29:49.222 UTC [common/config] NewStandardValues -> DEBU bb9 Initializing protos for *config.ChannelProtos +2018-01-18 09:29:49.222 UTC [common/config] initializeProtosStruct -> DEBU bba Processing field: HashingAlgorithm +2018-01-18 09:29:49.222 UTC [common/config] initializeProtosStruct -> DEBU bbb Processing field: BlockDataHashingStructure +2018-01-18 09:29:49.222 UTC [common/config] initializeProtosStruct -> DEBU bbc Processing field: OrdererAddresses +2018-01-18 09:29:49.223 UTC [common/config] initializeProtosStruct -> DEBU bbd Processing field: Consortium +2018-01-18 09:29:49.223 UTC [policies] ProposePolicy -> DEBU bbe Proposed new policy Admins for Channel +2018-01-18 09:29:49.223 UTC [policies] ProposePolicy -> DEBU bbf Proposed new policy Readers for Channel +2018-01-18 09:29:49.223 UTC [policies] ProposePolicy -> DEBU bc0 Proposed new policy Writers for Channel +2018-01-18 09:29:49.223 UTC [common/config] NewStandardValues -> DEBU bc1 Initializing protos for *config.OrdererProtos +2018-01-18 09:29:49.223 UTC [common/config] initializeProtosStruct -> DEBU bc2 Processing field: ConsensusType +2018-01-18 09:29:49.223 UTC [common/config] initializeProtosStruct -> DEBU bc3 Processing field: BatchSize +2018-01-18 09:29:49.224 UTC [common/config] initializeProtosStruct -> DEBU bc4 Processing field: BatchTimeout +2018-01-18 09:29:49.224 UTC [common/config] initializeProtosStruct -> DEBU bc5 Processing field: KafkaBrokers +2018-01-18 09:29:49.224 UTC [common/config] initializeProtosStruct -> DEBU bc6 Processing field: ChannelRestrictions +2018-01-18 09:29:49.224 UTC [policies] ProposePolicy -> DEBU bc7 Proposed new policy BlockValidation for Orderer +2018-01-18 09:29:49.224 UTC [policies] ProposePolicy -> DEBU bc8 Proposed new policy Readers for Orderer +2018-01-18 09:29:49.224 UTC [policies] ProposePolicy -> DEBU bc9 Proposed new policy Writers for Orderer +2018-01-18 09:29:49.224 UTC [policies] ProposePolicy -> DEBU bca Proposed new policy Admins for Orderer +2018-01-18 09:29:49.224 UTC [common/config] NewStandardValues -> DEBU bcb Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:49.224 UTC [common/config] initializeProtosStruct -> DEBU bcc Processing field: MSP +2018-01-18 09:29:49.225 UTC [policies] ProposePolicy -> DEBU bcd Proposed new policy Admins for OrdererOrg +2018-01-18 09:29:49.225 UTC [policies] ProposePolicy -> DEBU bce Proposed new policy Readers for OrdererOrg +2018-01-18 09:29:49.225 UTC [policies] ProposePolicy -> DEBU bcf Proposed new policy Writers for OrdererOrg +2018-01-18 09:29:49.225 UTC [common/config] NewStandardValues -> DEBU bd0 Initializing protos for *struct {} +2018-01-18 09:29:49.225 UTC [policies] ProposePolicy -> DEBU bd1 Proposed new policy Writers for Application +2018-01-18 09:29:49.225 UTC [policies] ProposePolicy -> DEBU bd2 Proposed new policy Readers for Application +2018-01-18 09:29:49.225 UTC [policies] ProposePolicy -> DEBU bd3 Proposed new policy Admins for Application +2018-01-18 09:29:49.225 UTC [common/config] NewStandardValues -> DEBU bd4 Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:49.225 UTC [common/config] initializeProtosStruct -> DEBU bd5 Processing field: MSP +2018-01-18 09:29:49.225 UTC [common/config] NewStandardValues -> DEBU bd6 Initializing protos for *config.ApplicationOrgProtos +2018-01-18 09:29:49.226 UTC [common/config] initializeProtosStruct -> DEBU bd7 Processing field: AnchorPeers +2018-01-18 09:29:49.226 UTC [common/config] NewStandardValues -> DEBU bd8 Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:49.226 UTC [common/config] initializeProtosStruct -> DEBU bd9 Processing field: MSP +2018-01-18 09:29:49.226 UTC [policies] ProposePolicy -> DEBU bda Proposed new policy Readers for Org1MSP +2018-01-18 09:29:49.226 UTC [policies] ProposePolicy -> DEBU bdb Proposed new policy Writers for Org1MSP +2018-01-18 09:29:49.226 UTC [policies] ProposePolicy -> DEBU bdc Proposed new policy Admins for Org1MSP +2018-01-18 09:29:49.226 UTC [common/config] NewStandardValues -> DEBU bdd Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:49.226 UTC [common/config] initializeProtosStruct -> DEBU bde Processing field: MSP +2018-01-18 09:29:49.226 UTC [common/config] NewStandardValues -> DEBU bdf Initializing protos for *config.ApplicationOrgProtos +2018-01-18 09:29:49.227 UTC [common/config] initializeProtosStruct -> DEBU be0 Processing field: AnchorPeers +2018-01-18 09:29:49.227 UTC [common/config] NewStandardValues -> DEBU be1 Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:49.227 UTC [common/config] initializeProtosStruct -> DEBU be2 Processing field: MSP +2018-01-18 09:29:49.227 UTC [policies] ProposePolicy -> DEBU be3 Proposed new policy Admins for Org2MSP +2018-01-18 09:29:49.228 UTC [policies] ProposePolicy -> DEBU be4 Proposed new policy Readers for Org2MSP +2018-01-18 09:29:49.228 UTC [policies] ProposePolicy -> DEBU be5 Proposed new policy Writers for Org2MSP +2018-01-18 09:29:49.228 UTC [common/config] validateMSP -> DEBU be6 Setting up MSP for org OrdererOrg +2018-01-18 09:29:49.228 UTC [msp] NewBccspMsp -> DEBU be7 Creating BCCSP-based MSP instance +2018-01-18 09:29:49.228 UTC [msp] Setup -> DEBU be8 Setting up MSP instance OrdererMSP +2018-01-18 09:29:49.228 UTC [msp/identity] newIdentity -> DEBU be9 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -5303,7 +5383,7 @@ AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= -----END CERTIFICATE----- -2018-01-18 01:58:55.811 UTC [msp/identity] newIdentity -> DEBU bce Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:49.229 UTC [msp/identity] newIdentity -> DEBU bea Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -5316,7 +5396,7 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -----END CERTIFICATE----- -2018-01-18 01:58:55.811 UTC [msp/identity] newIdentity -> DEBU bcf Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:49.230 UTC [msp/identity] newIdentity -> DEBU beb Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -5329,60 +5409,12 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -----END CERTIFICATE----- -2018-01-18 01:58:55.812 UTC [msp] Validate -> DEBU bd0 MSP OrdererMSP validating identity -2018-01-18 01:58:55.812 UTC [common/config] Validate -> DEBU bd1 Anchor peers for org Org2MSP are anchor_peers: -2018-01-18 01:58:55.812 UTC [common/config] validateMSP -> DEBU bd2 Setting up MSP for org Org2MSP -2018-01-18 01:58:55.812 UTC [msp] NewBccspMsp -> DEBU bd3 Creating BCCSP-based MSP instance -2018-01-18 01:58:55.813 UTC [msp] Setup -> DEBU bd4 Setting up MSP instance Org2MSP -2018-01-18 01:58:55.813 UTC [msp/identity] newIdentity -> DEBU bd5 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa -MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 -sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ -xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv -WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk -SCjyRdD3aQ== ------END CERTIFICATE----- -2018-01-18 01:58:55.814 UTC [msp/identity] newIdentity -> DEBU bd6 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -AXYxULZpXYDQXt1KaLI= ------END CERTIFICATE----- -2018-01-18 01:58:55.814 UTC [msp/identity] newIdentity -> DEBU bd7 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -AXYxULZpXYDQXt1KaLI= ------END CERTIFICATE----- -2018-01-18 01:58:55.815 UTC [msp] Validate -> DEBU bd8 MSP Org2MSP validating identity -2018-01-18 01:58:55.815 UTC [common/config] Validate -> DEBU bd9 Anchor peers for org Org1MSP are anchor_peers: -2018-01-18 01:58:55.815 UTC [common/config] validateMSP -> DEBU bda Setting up MSP for org Org1MSP -2018-01-18 01:58:55.815 UTC [msp] NewBccspMsp -> DEBU bdb Creating BCCSP-based MSP instance -2018-01-18 01:58:55.815 UTC [msp] Setup -> DEBU bdc Setting up MSP instance Org1MSP -2018-01-18 01:58:55.816 UTC [msp/identity] newIdentity -> DEBU bdd Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:49.230 UTC [msp] Validate -> DEBU bec MSP OrdererMSP validating identity +2018-01-18 09:29:49.231 UTC [common/config] Validate -> DEBU bed Anchor peers for org Org1MSP are anchor_peers: +2018-01-18 09:29:49.231 UTC [common/config] validateMSP -> DEBU bee Setting up MSP for org Org1MSP +2018-01-18 09:29:49.231 UTC [msp] NewBccspMsp -> DEBU bef Creating BCCSP-based MSP instance +2018-01-18 09:29:49.231 UTC [msp] Setup -> DEBU bf0 Setting up MSP instance Org1MSP +2018-01-18 09:29:49.232 UTC [msp/identity] newIdentity -> DEBU bf1 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -5397,7 +5429,7 @@ JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ H7n8z1pj5w== -----END CERTIFICATE----- -2018-01-18 01:58:55.816 UTC [msp/identity] newIdentity -> DEBU bde Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:49.233 UTC [msp/identity] newIdentity -> DEBU bf2 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -5411,7 +5443,7 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-18 01:58:55.817 UTC [msp/identity] newIdentity -> DEBU bdf Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:49.233 UTC [msp/identity] newIdentity -> DEBU bf3 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -5425,246 +5457,12 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-18 01:58:55.817 UTC [msp] Validate -> DEBU be0 MSP Org1MSP validating identity -2018-01-18 01:58:55.817 UTC [msp] Setup -> DEBU be1 Setting up the MSP manager (3 msps) -2018-01-18 01:58:55.817 UTC [msp] Setup -> DEBU be2 MSP manager setup complete, setup 3 msps -2018-01-18 01:58:55.818 UTC [msp] GetLocalMSP -> DEBU be3 Returning existing local MSP -2018-01-18 01:58:55.818 UTC [msp] GetDefaultSigningIdentity -> DEBU be4 Obtaining default signing identity -2018-01-18 01:58:55.818 UTC [msp] GetLocalMSP -> DEBU be5 Returning existing local MSP -2018-01-18 01:58:55.818 UTC [msp] GetDefaultSigningIdentity -> DEBU be6 Obtaining default signing identity -2018-01-18 01:58:55.818 UTC [msp/identity] Sign -> DEBU be7 Sign: plaintext: 0AB7060A1B08011A0608DFFEFFD20522...F63A2AAF72906F5884BA6D9ECF71D6D4 -2018-01-18 01:58:55.818 UTC [msp/identity] Sign -> DEBU be8 Sign: digest: E9115A913330866EBC2F0F17DB1AADA97C1B54F87952E538A63CE8090B5CFA76 -2018-01-18 01:58:55.818 UTC [orderer/common/broadcast] Handle -> DEBU be9 [channel: businesschannel] Broadcast is filtering message of type CONFIG -2018-01-18 01:58:55.819 UTC [policies] GetPolicy -> DEBU bea Returning policy Writers for evaluation -2018-01-18 01:58:55.819 UTC [cauthdsl] func1 -> DEBU beb 0xc420026ec8 gate 1516240735819169285 evaluation starts -2018-01-18 01:58:55.819 UTC [cauthdsl] func2 -> DEBU bec 0xc420026ec8 signed by 0 principal evaluation starts (used [false]) -2018-01-18 01:58:55.819 UTC [cauthdsl] func2 -> DEBU bed 0xc420026ec8 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-18 01:58:55.819 UTC [msp/identity] newIdentity -> DEBU bee Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq -hkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz -MKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw -DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN -RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH -/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl ------END CERTIFICATE----- -2018-01-18 01:58:55.819 UTC [cauthdsl] func2 -> DEBU bef 0xc420026ec8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -2018-01-18 01:58:55.820 UTC [cauthdsl] func2 -> DEBU bf0 0xc420026ec8 principal evaluation fails -2018-01-18 01:58:55.820 UTC [cauthdsl] func1 -> DEBU bf1 0xc420026ec8 gate 1516240735819169285 evaluation fails -2018-01-18 01:58:55.820 UTC [cauthdsl] func1 -> DEBU bf2 0xc420026ed8 gate 1516240735820199170 evaluation starts -2018-01-18 01:58:55.820 UTC [cauthdsl] func2 -> DEBU bf3 0xc420026ed8 signed by 0 principal evaluation starts (used [false]) -2018-01-18 01:58:55.820 UTC [cauthdsl] func2 -> DEBU bf4 0xc420026ed8 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-18 01:58:55.820 UTC [msp/identity] newIdentity -> DEBU bf5 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq -hkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz -MKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw -DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN -RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH -/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl ------END CERTIFICATE----- -2018-01-18 01:58:55.820 UTC [cauthdsl] func2 -> DEBU bf6 0xc420026ed8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -2018-01-18 01:58:55.820 UTC [cauthdsl] func2 -> DEBU bf7 0xc420026ed8 principal evaluation fails -2018-01-18 01:58:55.821 UTC [cauthdsl] func1 -> DEBU bf8 0xc420026ed8 gate 1516240735820199170 evaluation fails -2018-01-18 01:58:55.821 UTC [cauthdsl] func1 -> DEBU bf9 0xc420026f30 gate 1516240735821181678 evaluation starts -2018-01-18 01:58:55.821 UTC [cauthdsl] func2 -> DEBU bfa 0xc420026f30 signed by 0 principal evaluation starts (used [false]) -2018-01-18 01:58:55.821 UTC [cauthdsl] func2 -> DEBU bfb 0xc420026f30 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-18 01:58:55.821 UTC [msp/identity] newIdentity -> DEBU bfc Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq -hkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz -MKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw -DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN -RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH -/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl ------END CERTIFICATE----- -2018-01-18 01:58:55.821 UTC [msp] SatisfiesPrincipal -> DEBU bfd Checking if identity satisfies MEMBER role for OrdererMSP -2018-01-18 01:58:55.822 UTC [msp] Validate -> DEBU bfe MSP OrdererMSP validating identity -2018-01-18 01:58:55.822 UTC [cauthdsl] func2 -> DEBU bff 0xc420026f30 principal matched by identity 0 -2018-01-18 01:58:55.822 UTC [msp/identity] Verify -> DEBU c00 Verify: digest = 00000000 e9 11 5a 91 33 30 86 6e bc 2f 0f 17 db 1a ad a9 |..Z.30.n./......| -00000010 7c 1b 54 f8 79 52 e5 38 a6 3c e8 09 0b 5c fa 76 ||.T.yR.8.<...\.v| -2018-01-18 01:58:55.822 UTC [msp/identity] Verify -> DEBU c01 Verify: sig = 00000000 30 44 02 20 1a 19 ff ce ef 87 b6 2e 8f 69 c8 c9 |0D. .........i..| -00000010 00 a2 99 2e 22 6c 79 bd 68 86 de 91 1e ce 02 ab |...."ly.h.......| -00000020 27 c2 e5 b1 02 20 17 f8 31 ca 60 39 1a 4b 63 e9 |'.... ..1.`9.Kc.| -00000030 70 cd ea 2e fb 71 84 be 00 59 ce e7 38 92 b1 c3 |p....q...Y..8...| -00000040 92 cf 85 2a d9 00 |...*..| -2018-01-18 01:58:55.822 UTC [cauthdsl] func2 -> DEBU c02 0xc420026f30 principal evaluation succeeds for identity 0 -2018-01-18 01:58:55.823 UTC [cauthdsl] func1 -> DEBU c03 0xc420026f30 gate 1516240735821181678 evaluation succeeds -2018-01-18 01:58:55.823 UTC [orderer/common/sigfilter] Apply -> DEBU c04 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420a394a0 1 [0xc420026638 0xc420026700]}) %!s(*policies.implicitMetaPolicy=&{0xc42039e3e0 1 [0xc4200267c8]})]} -2018-01-18 01:58:55.823 UTC [common/configtx] addToMap -> DEBU c05 Adding to config map: [Groups] /Channel -2018-01-18 01:58:55.825 UTC [common/configtx] addToMap -> DEBU c06 Adding to config map: [Groups] /Channel/Application -2018-01-18 01:58:55.825 UTC [common/configtx] addToMap -> DEBU c07 Adding to config map: [Groups] /Channel/Application/Org2MSP -2018-01-18 01:58:55.826 UTC [common/configtx] addToMap -> DEBU c08 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -2018-01-18 01:58:55.826 UTC [common/configtx] addToMap -> DEBU c09 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -2018-01-18 01:58:55.826 UTC [common/configtx] addToMap -> DEBU c0a Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -2018-01-18 01:58:55.827 UTC [common/configtx] addToMap -> DEBU c0b Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -2018-01-18 01:58:55.827 UTC [common/configtx] addToMap -> DEBU c0c Adding to config map: [Groups] /Channel -2018-01-18 01:58:55.828 UTC [common/configtx] addToMap -> DEBU c0d Adding to config map: [Groups] /Channel/Application -2018-01-18 01:58:55.828 UTC [common/configtx] addToMap -> DEBU c0e Adding to config map: [Groups] /Channel/Application/Org2MSP -2018-01-18 01:58:55.828 UTC [common/configtx] addToMap -> DEBU c0f Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -2018-01-18 01:58:55.828 UTC [common/configtx] addToMap -> DEBU c10 Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers -2018-01-18 01:58:55.829 UTC [common/configtx] addToMap -> DEBU c11 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -2018-01-18 01:58:55.829 UTC [common/configtx] addToMap -> DEBU c12 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -2018-01-18 01:58:55.829 UTC [common/configtx] addToMap -> DEBU c13 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -2018-01-18 01:58:55.830 UTC [policies] GetPolicy -> DEBU c14 Returning policy Admins for evaluation -2018-01-18 01:58:55.830 UTC [cauthdsl] func1 -> DEBU c15 0xc42014a508 gate 1516240735830233250 evaluation starts -2018-01-18 01:58:55.830 UTC [cauthdsl] func2 -> DEBU c16 0xc42014a508 signed by 0 principal evaluation starts (used [false]) -2018-01-18 01:58:55.830 UTC [cauthdsl] func2 -> DEBU c17 0xc42014a508 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-18 01:58:55.831 UTC [msp/identity] newIdentity -> DEBU c18 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -AXYxULZpXYDQXt1KaLI= ------END CERTIFICATE----- -2018-01-18 01:58:55.831 UTC [msp] SatisfiesPrincipal -> DEBU c19 Checking if identity satisfies ADMIN role for Org2MSP -2018-01-18 01:58:55.831 UTC [cauthdsl] func2 -> DEBU c1a 0xc42014a508 principal matched by identity 0 -2018-01-18 01:58:55.831 UTC [msp/identity] Verify -> DEBU c1b Verify: digest = 00000000 9d 72 b7 0e 95 b2 86 89 3a d9 b1 85 95 8f bb d7 |.r......:.......| -00000010 01 5c 09 c4 93 48 4e 4e 33 65 ec 0d 5f d5 63 3d |.\...HNN3e.._.c=| -2018-01-18 01:58:55.831 UTC [msp/identity] Verify -> DEBU c1c Verify: sig = 00000000 30 44 02 20 7b 5b dd e2 f4 f1 0a 0b d0 d4 b9 93 |0D. {[..........| -00000010 d4 7f 21 c4 a4 ad 70 70 9f f3 5c e5 34 49 d3 8f |..!...pp..\.4I..| -00000020 80 7e 20 4b 02 20 47 1a ed e4 2b 82 43 82 8a b4 |.~ K. G...+.C...| -00000030 7e 02 4b 68 89 0c c3 b8 da ec 5f 89 9c 63 95 a2 |~.Kh......_..c..| -00000040 8d 10 f4 ce 7a 7f |....z.| -2018-01-18 01:58:55.831 UTC [cauthdsl] func2 -> DEBU c1d 0xc42014a508 principal evaluation succeeds for identity 0 -2018-01-18 01:58:55.831 UTC [cauthdsl] func1 -> DEBU c1e 0xc42014a508 gate 1516240735830233250 evaluation succeeds -2018-01-18 01:58:55.832 UTC [common/configtx] recurseConfigMap -> DEBU c1f Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-18 01:58:55.832 UTC [common/configtx] recurseConfigMap -> DEBU c20 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-18 01:58:55.832 UTC [common/configtx] recurseConfigMap -> DEBU c21 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-18 01:58:55.832 UTC [common/configtx] recurseConfigMap -> DEBU c22 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-18 01:58:55.832 UTC [common/configtx] recurseConfigMap -> DEBU c23 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-18 01:58:55.832 UTC [common/configtx] recurseConfigMap -> DEBU c24 Setting policy for key BlockValidation to policy: mod_policy:"Admins" -2018-01-18 01:58:55.832 UTC [common/configtx] recurseConfigMap -> DEBU c25 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-18 01:58:55.833 UTC [common/configtx] recurseConfigMap -> DEBU c26 Setting policy for key Readers to -2018-01-18 01:58:55.833 UTC [common/configtx] recurseConfigMap -> DEBU c27 Setting policy for key Writers to -2018-01-18 01:58:55.833 UTC [common/configtx] recurseConfigMap -> DEBU c28 Setting policy for key Admins to -2018-01-18 01:58:55.833 UTC [common/configtx] recurseConfigMap -> DEBU c29 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-18 01:58:55.833 UTC [common/configtx] recurseConfigMap -> DEBU c2a Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-18 01:58:55.833 UTC [common/configtx] recurseConfigMap -> DEBU c2b Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-18 01:58:55.833 UTC [common/configtx] recurseConfigMap -> DEBU c2c Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-18 01:58:55.833 UTC [common/configtx] recurseConfigMap -> DEBU c2d Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-18 01:58:55.833 UTC [common/configtx] recurseConfigMap -> DEBU c2e Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-18 01:58:55.833 UTC [common/configtx] recurseConfigMap -> DEBU c2f Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-18 01:58:55.833 UTC [common/configtx] recurseConfigMap -> DEBU c30 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-18 01:58:55.833 UTC [common/configtx] recurseConfigMap -> DEBU c31 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-18 01:58:55.834 UTC [common/configtx] processConfig -> DEBU c32 Beginning new config for channel businesschannel -2018-01-18 01:58:55.834 UTC [common/config] NewStandardValues -> DEBU c33 Initializing protos for *config.ChannelProtos -2018-01-18 01:58:55.834 UTC [common/config] initializeProtosStruct -> DEBU c34 Processing field: HashingAlgorithm -2018-01-18 01:58:55.834 UTC [common/config] initializeProtosStruct -> DEBU c35 Processing field: BlockDataHashingStructure -2018-01-18 01:58:55.834 UTC [common/config] initializeProtosStruct -> DEBU c36 Processing field: OrdererAddresses -2018-01-18 01:58:55.834 UTC [common/config] initializeProtosStruct -> DEBU c37 Processing field: Consortium -2018-01-18 01:58:55.834 UTC [policies] ProposePolicy -> DEBU c38 Proposed new policy Admins for Channel -2018-01-18 01:58:55.834 UTC [policies] ProposePolicy -> DEBU c39 Proposed new policy Readers for Channel -2018-01-18 01:58:55.834 UTC [policies] ProposePolicy -> DEBU c3a Proposed new policy Writers for Channel -2018-01-18 01:58:55.834 UTC [common/config] NewStandardValues -> DEBU c3b Initializing protos for *struct {} -2018-01-18 01:58:55.834 UTC [policies] ProposePolicy -> DEBU c3c Proposed new policy Admins for Application -2018-01-18 01:58:55.834 UTC [policies] ProposePolicy -> DEBU c3d Proposed new policy Writers for Application -2018-01-18 01:58:55.834 UTC [policies] ProposePolicy -> DEBU c3e Proposed new policy Readers for Application -2018-01-18 01:58:55.834 UTC [common/config] NewStandardValues -> DEBU c3f Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:55.834 UTC [common/config] initializeProtosStruct -> DEBU c40 Processing field: MSP -2018-01-18 01:58:55.834 UTC [common/config] NewStandardValues -> DEBU c41 Initializing protos for *config.ApplicationOrgProtos -2018-01-18 01:58:55.834 UTC [common/config] initializeProtosStruct -> DEBU c42 Processing field: AnchorPeers -2018-01-18 01:58:55.834 UTC [common/config] NewStandardValues -> DEBU c43 Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:55.834 UTC [common/config] initializeProtosStruct -> DEBU c44 Processing field: MSP -2018-01-18 01:58:55.834 UTC [policies] ProposePolicy -> DEBU c45 Proposed new policy Readers for Org1MSP -2018-01-18 01:58:55.835 UTC [policies] ProposePolicy -> DEBU c46 Proposed new policy Writers for Org1MSP -2018-01-18 01:58:55.835 UTC [policies] ProposePolicy -> DEBU c47 Proposed new policy Admins for Org1MSP -2018-01-18 01:58:55.835 UTC [common/config] NewStandardValues -> DEBU c48 Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:55.835 UTC [common/config] initializeProtosStruct -> DEBU c49 Processing field: MSP -2018-01-18 01:58:55.835 UTC [common/config] NewStandardValues -> DEBU c4a Initializing protos for *config.ApplicationOrgProtos -2018-01-18 01:58:55.835 UTC [common/config] initializeProtosStruct -> DEBU c4b Processing field: AnchorPeers -2018-01-18 01:58:55.835 UTC [common/config] NewStandardValues -> DEBU c4c Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:55.835 UTC [common/config] initializeProtosStruct -> DEBU c4d Processing field: MSP -2018-01-18 01:58:55.835 UTC [policies] ProposePolicy -> DEBU c4e Proposed new policy Readers for Org2MSP -2018-01-18 01:58:55.835 UTC [policies] ProposePolicy -> DEBU c4f Proposed new policy Writers for Org2MSP -2018-01-18 01:58:55.835 UTC [policies] ProposePolicy -> DEBU c50 Proposed new policy Admins for Org2MSP -2018-01-18 01:58:55.835 UTC [common/config] NewStandardValues -> DEBU c51 Initializing protos for *config.OrdererProtos -2018-01-18 01:58:55.835 UTC [common/config] initializeProtosStruct -> DEBU c52 Processing field: ConsensusType -2018-01-18 01:58:55.835 UTC [common/config] initializeProtosStruct -> DEBU c53 Processing field: BatchSize -2018-01-18 01:58:55.835 UTC [common/config] initializeProtosStruct -> DEBU c54 Processing field: BatchTimeout -2018-01-18 01:58:55.835 UTC [common/config] initializeProtosStruct -> DEBU c55 Processing field: KafkaBrokers -2018-01-18 01:58:55.835 UTC [common/config] initializeProtosStruct -> DEBU c56 Processing field: ChannelRestrictions -2018-01-18 01:58:55.835 UTC [policies] ProposePolicy -> DEBU c57 Proposed new policy Writers for Orderer -2018-01-18 01:58:55.835 UTC [policies] ProposePolicy -> DEBU c58 Proposed new policy Admins for Orderer -2018-01-18 01:58:55.835 UTC [policies] ProposePolicy -> DEBU c59 Proposed new policy BlockValidation for Orderer -2018-01-18 01:58:55.835 UTC [policies] ProposePolicy -> DEBU c5a Proposed new policy Readers for Orderer -2018-01-18 01:58:55.835 UTC [common/config] NewStandardValues -> DEBU c5b Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:55.835 UTC [common/config] initializeProtosStruct -> DEBU c5c Processing field: MSP -2018-01-18 01:58:55.835 UTC [policies] ProposePolicy -> DEBU c5d Proposed new policy Admins for OrdererOrg -2018-01-18 01:58:55.835 UTC [policies] ProposePolicy -> DEBU c5e Proposed new policy Readers for OrdererOrg -2018-01-18 01:58:55.835 UTC [policies] ProposePolicy -> DEBU c5f Proposed new policy Writers for OrdererOrg -2018-01-18 01:58:55.836 UTC [common/config] Validate -> DEBU c60 Anchor peers for org Org1MSP are anchor_peers: -2018-01-18 01:58:55.836 UTC [common/config] validateMSP -> DEBU c61 Setting up MSP for org Org1MSP -2018-01-18 01:58:55.836 UTC [msp] NewBccspMsp -> DEBU c62 Creating BCCSP-based MSP instance -2018-01-18 01:58:55.836 UTC [msp] Setup -> DEBU c63 Setting up MSP instance Org1MSP -2018-01-18 01:58:55.836 UTC [msp/identity] newIdentity -> DEBU c64 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf -db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx -JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi -/IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ -H7n8z1pj5w== ------END CERTIFICATE----- -2018-01-18 01:58:55.836 UTC [msp/identity] newIdentity -> DEBU c65 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -xHTBvxfK6mAzmUitFmY= ------END CERTIFICATE----- -2018-01-18 01:58:55.837 UTC [msp/identity] newIdentity -> DEBU c66 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -xHTBvxfK6mAzmUitFmY= ------END CERTIFICATE----- -2018-01-18 01:58:55.838 UTC [msp] Validate -> DEBU c67 MSP Org1MSP validating identity -2018-01-18 01:58:55.838 UTC [common/config] Validate -> DEBU c68 Anchor peers for org Org2MSP are anchor_peers: -2018-01-18 01:58:55.838 UTC [common/config] validateMSP -> DEBU c69 Setting up MSP for org Org2MSP -2018-01-18 01:58:55.838 UTC [msp] NewBccspMsp -> DEBU c6a Creating BCCSP-based MSP instance -2018-01-18 01:58:55.838 UTC [msp] Setup -> DEBU c6b Setting up MSP instance Org2MSP -2018-01-18 01:58:55.838 UTC [msp/identity] newIdentity -> DEBU c6c Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:49.234 UTC [msp] Validate -> DEBU bf4 MSP Org1MSP validating identity +2018-01-18 09:29:49.235 UTC [common/config] Validate -> DEBU bf5 Anchor peers for org Org2MSP are anchor_peers: +2018-01-18 09:29:49.235 UTC [common/config] validateMSP -> DEBU bf6 Setting up MSP for org Org2MSP +2018-01-18 09:29:49.235 UTC [msp] NewBccspMsp -> DEBU bf7 Creating BCCSP-based MSP instance +2018-01-18 09:29:49.235 UTC [msp] Setup -> DEBU bf8 Setting up MSP instance Org2MSP +2018-01-18 09:29:49.236 UTC [msp/identity] newIdentity -> DEBU bf9 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -5679,7 +5477,7 @@ xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk SCjyRdD3aQ== -----END CERTIFICATE----- -2018-01-18 01:58:55.839 UTC [msp/identity] newIdentity -> DEBU c6d Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:49.236 UTC [msp/identity] newIdentity -> DEBU bfa Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -5693,7 +5491,7 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS AXYxULZpXYDQXt1KaLI= -----END CERTIFICATE----- -2018-01-18 01:58:55.839 UTC [msp/identity] newIdentity -> DEBU c6e Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:49.238 UTC [msp/identity] newIdentity -> DEBU bfb Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -5707,11 +5505,197 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS AXYxULZpXYDQXt1KaLI= -----END CERTIFICATE----- -2018-01-18 01:58:55.840 UTC [msp] Validate -> DEBU c6f MSP Org2MSP validating identity -2018-01-18 01:58:55.840 UTC [common/config] validateMSP -> DEBU c70 Setting up MSP for org OrdererOrg -2018-01-18 01:58:55.840 UTC [msp] NewBccspMsp -> DEBU c71 Creating BCCSP-based MSP instance -2018-01-18 01:58:55.840 UTC [msp] Setup -> DEBU c72 Setting up MSP instance OrdererMSP -2018-01-18 01:58:55.840 UTC [msp/identity] newIdentity -> DEBU c73 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:49.239 UTC [msp] Validate -> DEBU bfc MSP Org2MSP validating identity +2018-01-18 09:29:49.239 UTC [msp] Setup -> DEBU bfd Setting up the MSP manager (3 msps) +2018-01-18 09:29:49.239 UTC [msp] Setup -> DEBU bfe MSP manager setup complete, setup 3 msps +2018-01-18 09:29:49.239 UTC [msp] GetLocalMSP -> DEBU bff Returning existing local MSP +2018-01-18 09:29:49.240 UTC [msp] GetDefaultSigningIdentity -> DEBU c00 Obtaining default signing identity +2018-01-18 09:29:49.241 UTC [msp] GetLocalMSP -> DEBU c01 Returning existing local MSP +2018-01-18 09:29:49.241 UTC [msp] GetDefaultSigningIdentity -> DEBU c02 Obtaining default signing identity +2018-01-18 09:29:49.241 UTC [msp/identity] Sign -> DEBU c03 Sign: plaintext: 0AB7060A1B08011A06088DD281D30522...409D6404C8A53C39F9ABDB46BE6954C4 +2018-01-18 09:29:49.241 UTC [msp/identity] Sign -> DEBU c04 Sign: digest: 3B37DBD02F07C00F099392A6C41F5C07A28C8DB5C74412436881CAF3D1720FE3 +2018-01-18 09:29:49.242 UTC [orderer/common/broadcast] Handle -> DEBU c05 [channel: businesschannel] Broadcast is filtering message of type CONFIG +2018-01-18 09:29:49.242 UTC [policies] GetPolicy -> DEBU c06 Returning policy Writers for evaluation +2018-01-18 09:29:49.242 UTC [cauthdsl] func1 -> DEBU c07 0xc42014a470 gate 1516267789242388472 evaluation starts +2018-01-18 09:29:49.242 UTC [cauthdsl] func2 -> DEBU c08 0xc42014a470 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:29:49.242 UTC [cauthdsl] func2 -> DEBU c09 0xc42014a470 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:29:49.243 UTC [msp/identity] newIdentity -> DEBU c0a Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq +hkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz +MKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw +DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN +RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH +/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl +-----END CERTIFICATE----- +2018-01-18 09:29:49.243 UTC [cauthdsl] func2 -> DEBU c0b 0xc42014a470 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +2018-01-18 09:29:49.243 UTC [cauthdsl] func2 -> DEBU c0c 0xc42014a470 principal evaluation fails +2018-01-18 09:29:49.243 UTC [cauthdsl] func1 -> DEBU c0d 0xc42014a470 gate 1516267789242388472 evaluation fails +2018-01-18 09:29:49.243 UTC [cauthdsl] func1 -> DEBU c0e 0xc42014a498 gate 1516267789243906812 evaluation starts +2018-01-18 09:29:49.244 UTC [cauthdsl] func2 -> DEBU c0f 0xc42014a498 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:29:49.244 UTC [cauthdsl] func2 -> DEBU c10 0xc42014a498 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:29:49.244 UTC [msp/identity] newIdentity -> DEBU c11 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq +hkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz +MKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw +DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN +RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH +/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl +-----END CERTIFICATE----- +2018-01-18 09:29:49.245 UTC [cauthdsl] func2 -> DEBU c12 0xc42014a498 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +2018-01-18 09:29:49.245 UTC [cauthdsl] func2 -> DEBU c13 0xc42014a498 principal evaluation fails +2018-01-18 09:29:49.245 UTC [cauthdsl] func1 -> DEBU c14 0xc42014a498 gate 1516267789243906812 evaluation fails +2018-01-18 09:29:49.245 UTC [cauthdsl] func1 -> DEBU c15 0xc42014a4a8 gate 1516267789245973578 evaluation starts +2018-01-18 09:29:49.246 UTC [cauthdsl] func2 -> DEBU c16 0xc42014a4a8 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:29:49.246 UTC [cauthdsl] func2 -> DEBU c17 0xc42014a4a8 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:29:49.246 UTC [msp/identity] newIdentity -> DEBU c18 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq +hkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz +MKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw +DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN +RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH +/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl +-----END CERTIFICATE----- +2018-01-18 09:29:49.246 UTC [msp] SatisfiesPrincipal -> DEBU c19 Checking if identity satisfies MEMBER role for OrdererMSP +2018-01-18 09:29:49.247 UTC [msp] Validate -> DEBU c1a MSP OrdererMSP validating identity +2018-01-18 09:29:49.247 UTC [cauthdsl] func2 -> DEBU c1b 0xc42014a4a8 principal matched by identity 0 +2018-01-18 09:29:49.247 UTC [msp/identity] Verify -> DEBU c1c Verify: digest = 00000000 3b 37 db d0 2f 07 c0 0f 09 93 92 a6 c4 1f 5c 07 |;7../.........\.| +00000010 a2 8c 8d b5 c7 44 12 43 68 81 ca f3 d1 72 0f e3 |.....D.Ch....r..| +2018-01-18 09:29:49.247 UTC [msp/identity] Verify -> DEBU c1d Verify: sig = 00000000 30 44 02 20 0e fc 11 50 96 25 9d a1 58 54 c7 37 |0D. ...P.%..XT.7| +00000010 8a 5d 29 62 ee fb 8f 0b 69 75 55 c3 fd 6d 07 15 |.])b....iuU..m..| +00000020 ac 3b 3f 26 02 20 29 91 da 52 6a da 16 74 8f cc |.;?&. )..Rj..t..| +00000030 20 dc 28 82 b9 5e 2f 2a 23 e2 60 1d 23 ba 4b dc | .(..^/*#.`.#.K.| +00000040 bd 92 c2 87 39 d0 |....9.| +2018-01-18 09:29:49.248 UTC [cauthdsl] func2 -> DEBU c1e 0xc42014a4a8 principal evaluation succeeds for identity 0 +2018-01-18 09:29:49.248 UTC [cauthdsl] func1 -> DEBU c1f 0xc42014a4a8 gate 1516267789245973578 evaluation succeeds +2018-01-18 09:29:49.248 UTC [orderer/common/sigfilter] Apply -> DEBU c20 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420ba0fc0 1 [0xc4200268f8 0xc4200269b8]}) %!s(*policies.implicitMetaPolicy=&{0xc420ba1d00 1 [0xc420026a58]})]} +2018-01-18 09:29:49.249 UTC [common/configtx] addToMap -> DEBU c21 Adding to config map: [Groups] /Channel +2018-01-18 09:29:49.249 UTC [common/configtx] addToMap -> DEBU c22 Adding to config map: [Groups] /Channel/Application +2018-01-18 09:29:49.249 UTC [common/configtx] addToMap -> DEBU c23 Adding to config map: [Groups] /Channel/Application/Org2MSP +2018-01-18 09:29:49.249 UTC [common/configtx] addToMap -> DEBU c24 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +2018-01-18 09:29:49.249 UTC [common/configtx] addToMap -> DEBU c25 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +2018-01-18 09:29:49.249 UTC [common/configtx] addToMap -> DEBU c26 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +2018-01-18 09:29:49.249 UTC [common/configtx] addToMap -> DEBU c27 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +2018-01-18 09:29:49.249 UTC [common/configtx] addToMap -> DEBU c28 Adding to config map: [Groups] /Channel +2018-01-18 09:29:49.249 UTC [common/configtx] addToMap -> DEBU c29 Adding to config map: [Groups] /Channel/Application +2018-01-18 09:29:49.249 UTC [common/configtx] addToMap -> DEBU c2a Adding to config map: [Groups] /Channel/Application/Org2MSP +2018-01-18 09:29:49.249 UTC [common/configtx] addToMap -> DEBU c2b Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers +2018-01-18 09:29:49.249 UTC [common/configtx] addToMap -> DEBU c2c Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +2018-01-18 09:29:49.249 UTC [common/configtx] addToMap -> DEBU c2d Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +2018-01-18 09:29:49.250 UTC [common/configtx] addToMap -> DEBU c2e Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +2018-01-18 09:29:49.250 UTC [common/configtx] addToMap -> DEBU c2f Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +2018-01-18 09:29:49.250 UTC [policies] GetPolicy -> DEBU c30 Returning policy Admins for evaluation +2018-01-18 09:29:49.251 UTC [cauthdsl] func1 -> DEBU c31 0xc42014ab48 gate 1516267789251298215 evaluation starts +2018-01-18 09:29:49.251 UTC [cauthdsl] func2 -> DEBU c32 0xc42014ab48 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:29:49.251 UTC [cauthdsl] func2 -> DEBU c33 0xc42014ab48 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:29:49.253 UTC [msp/identity] newIdentity -> DEBU c34 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +AXYxULZpXYDQXt1KaLI= +-----END CERTIFICATE----- +2018-01-18 09:29:49.253 UTC [msp] SatisfiesPrincipal -> DEBU c35 Checking if identity satisfies ADMIN role for Org2MSP +2018-01-18 09:29:49.253 UTC [cauthdsl] func2 -> DEBU c36 0xc42014ab48 principal matched by identity 0 +2018-01-18 09:29:49.253 UTC [msp/identity] Verify -> DEBU c37 Verify: digest = 00000000 e3 2e bc 09 2e aa 2c ee 2d d8 57 24 a8 da 75 26 |......,.-.W$..u&| +00000010 76 f4 64 21 f8 97 85 b8 3e 1d 7e 6e 42 62 03 14 |v.d!....>.~nBb..| +2018-01-18 09:29:49.253 UTC [msp/identity] Verify -> DEBU c38 Verify: sig = 00000000 30 44 02 20 48 e1 84 3e 07 f3 e5 77 3f 0a 13 70 |0D. H..>...w?..p| +00000010 88 13 09 23 43 ec 85 b3 36 94 70 17 22 ce 11 47 |...#C...6.p."..G| +00000020 bb 3f dc 05 02 20 54 76 42 4a a3 19 16 da fe 43 |.?... TvBJ.....C| +00000030 28 50 a5 02 b8 00 63 81 75 68 de 48 c5 86 e0 ee |(P....c.uh.H....| +00000040 7c 87 76 59 5d 71 ||.vY]q| +2018-01-18 09:29:49.254 UTC [cauthdsl] func2 -> DEBU c39 0xc42014ab48 principal evaluation succeeds for identity 0 +2018-01-18 09:29:49.254 UTC [cauthdsl] func1 -> DEBU c3a 0xc42014ab48 gate 1516267789251298215 evaluation succeeds +2018-01-18 09:29:49.254 UTC [common/configtx] recurseConfigMap -> DEBU c3b Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-18 09:29:49.255 UTC [common/configtx] recurseConfigMap -> DEBU c3c Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-18 09:29:49.255 UTC [common/configtx] recurseConfigMap -> DEBU c3d Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-18 09:29:49.255 UTC [common/configtx] recurseConfigMap -> DEBU c3e Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-18 09:29:49.255 UTC [common/configtx] recurseConfigMap -> DEBU c3f Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-18 09:29:49.255 UTC [common/configtx] recurseConfigMap -> DEBU c40 Setting policy for key BlockValidation to policy: mod_policy:"Admins" +2018-01-18 09:29:49.255 UTC [common/configtx] recurseConfigMap -> DEBU c41 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-18 09:29:49.256 UTC [common/configtx] recurseConfigMap -> DEBU c42 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-18 09:29:49.256 UTC [common/configtx] recurseConfigMap -> DEBU c43 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-18 09:29:49.256 UTC [common/configtx] recurseConfigMap -> DEBU c44 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-18 09:29:49.256 UTC [common/configtx] recurseConfigMap -> DEBU c45 Setting policy for key Admins to +2018-01-18 09:29:49.256 UTC [common/configtx] recurseConfigMap -> DEBU c46 Setting policy for key Readers to +2018-01-18 09:29:49.256 UTC [common/configtx] recurseConfigMap -> DEBU c47 Setting policy for key Writers to +2018-01-18 09:29:49.257 UTC [common/configtx] recurseConfigMap -> DEBU c48 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-18 09:29:49.257 UTC [common/configtx] recurseConfigMap -> DEBU c49 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-18 09:29:49.257 UTC [common/configtx] recurseConfigMap -> DEBU c4a Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-18 09:29:49.257 UTC [common/configtx] recurseConfigMap -> DEBU c4b Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-18 09:29:49.257 UTC [common/configtx] recurseConfigMap -> DEBU c4c Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-18 09:29:49.257 UTC [common/configtx] recurseConfigMap -> DEBU c4d Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-18 09:29:49.257 UTC [common/configtx] processConfig -> DEBU c4e Beginning new config for channel businesschannel +2018-01-18 09:29:49.257 UTC [common/config] NewStandardValues -> DEBU c4f Initializing protos for *config.ChannelProtos +2018-01-18 09:29:49.257 UTC [common/config] initializeProtosStruct -> DEBU c50 Processing field: HashingAlgorithm +2018-01-18 09:29:49.257 UTC [common/config] initializeProtosStruct -> DEBU c51 Processing field: BlockDataHashingStructure +2018-01-18 09:29:49.257 UTC [common/config] initializeProtosStruct -> DEBU c52 Processing field: OrdererAddresses +2018-01-18 09:29:49.257 UTC [common/config] initializeProtosStruct -> DEBU c53 Processing field: Consortium +2018-01-18 09:29:49.257 UTC [policies] ProposePolicy -> DEBU c54 Proposed new policy Admins for Channel +2018-01-18 09:29:49.257 UTC [policies] ProposePolicy -> DEBU c55 Proposed new policy Readers for Channel +2018-01-18 09:29:49.257 UTC [policies] ProposePolicy -> DEBU c56 Proposed new policy Writers for Channel +2018-01-18 09:29:49.257 UTC [common/config] NewStandardValues -> DEBU c57 Initializing protos for *config.OrdererProtos +2018-01-18 09:29:49.257 UTC [common/config] initializeProtosStruct -> DEBU c58 Processing field: ConsensusType +2018-01-18 09:29:49.257 UTC [common/config] initializeProtosStruct -> DEBU c59 Processing field: BatchSize +2018-01-18 09:29:49.257 UTC [common/config] initializeProtosStruct -> DEBU c5a Processing field: BatchTimeout +2018-01-18 09:29:49.257 UTC [common/config] initializeProtosStruct -> DEBU c5b Processing field: KafkaBrokers +2018-01-18 09:29:49.258 UTC [common/config] initializeProtosStruct -> DEBU c5c Processing field: ChannelRestrictions +2018-01-18 09:29:49.258 UTC [policies] ProposePolicy -> DEBU c5d Proposed new policy Readers for Orderer +2018-01-18 09:29:49.258 UTC [policies] ProposePolicy -> DEBU c5e Proposed new policy Writers for Orderer +2018-01-18 09:29:49.258 UTC [policies] ProposePolicy -> DEBU c5f Proposed new policy Admins for Orderer +2018-01-18 09:29:49.258 UTC [policies] ProposePolicy -> DEBU c60 Proposed new policy BlockValidation for Orderer +2018-01-18 09:29:49.258 UTC [common/config] NewStandardValues -> DEBU c61 Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:49.258 UTC [common/config] initializeProtosStruct -> DEBU c62 Processing field: MSP +2018-01-18 09:29:49.258 UTC [policies] ProposePolicy -> DEBU c63 Proposed new policy Admins for OrdererOrg +2018-01-18 09:29:49.258 UTC [policies] ProposePolicy -> DEBU c64 Proposed new policy Readers for OrdererOrg +2018-01-18 09:29:49.259 UTC [policies] ProposePolicy -> DEBU c65 Proposed new policy Writers for OrdererOrg +2018-01-18 09:29:49.259 UTC [common/config] NewStandardValues -> DEBU c66 Initializing protos for *struct {} +2018-01-18 09:29:49.259 UTC [policies] ProposePolicy -> DEBU c67 Proposed new policy Writers for Application +2018-01-18 09:29:49.259 UTC [policies] ProposePolicy -> DEBU c68 Proposed new policy Readers for Application +2018-01-18 09:29:49.260 UTC [policies] ProposePolicy -> DEBU c69 Proposed new policy Admins for Application +2018-01-18 09:29:49.260 UTC [common/config] NewStandardValues -> DEBU c6a Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:49.260 UTC [common/config] initializeProtosStruct -> DEBU c6b Processing field: MSP +2018-01-18 09:29:49.260 UTC [common/config] NewStandardValues -> DEBU c6c Initializing protos for *config.ApplicationOrgProtos +2018-01-18 09:29:49.260 UTC [common/config] initializeProtosStruct -> DEBU c6d Processing field: AnchorPeers +2018-01-18 09:29:49.260 UTC [common/config] NewStandardValues -> DEBU c6e Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:49.260 UTC [common/config] initializeProtosStruct -> DEBU c6f Processing field: MSP +2018-01-18 09:29:49.260 UTC [policies] ProposePolicy -> DEBU c70 Proposed new policy Readers for Org1MSP +2018-01-18 09:29:49.260 UTC [policies] ProposePolicy -> DEBU c71 Proposed new policy Writers for Org1MSP +2018-01-18 09:29:49.260 UTC [policies] ProposePolicy -> DEBU c72 Proposed new policy Admins for Org1MSP +2018-01-18 09:29:49.261 UTC [common/config] NewStandardValues -> DEBU c73 Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:49.261 UTC [common/config] initializeProtosStruct -> DEBU c74 Processing field: MSP +2018-01-18 09:29:49.261 UTC [common/config] NewStandardValues -> DEBU c75 Initializing protos for *config.ApplicationOrgProtos +2018-01-18 09:29:49.261 UTC [common/config] initializeProtosStruct -> DEBU c76 Processing field: AnchorPeers +2018-01-18 09:29:49.261 UTC [common/config] NewStandardValues -> DEBU c77 Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:49.261 UTC [common/config] initializeProtosStruct -> DEBU c78 Processing field: MSP +2018-01-18 09:29:49.261 UTC [policies] ProposePolicy -> DEBU c79 Proposed new policy Admins for Org2MSP +2018-01-18 09:29:49.261 UTC [policies] ProposePolicy -> DEBU c7a Proposed new policy Readers for Org2MSP +2018-01-18 09:29:49.261 UTC [policies] ProposePolicy -> DEBU c7b Proposed new policy Writers for Org2MSP +2018-01-18 09:29:49.261 UTC [common/config] validateMSP -> DEBU c7c Setting up MSP for org OrdererOrg +2018-01-18 09:29:49.261 UTC [msp] NewBccspMsp -> DEBU c7d Creating BCCSP-based MSP instance +2018-01-18 09:29:49.261 UTC [msp] Setup -> DEBU c7e Setting up MSP instance OrdererMSP +2018-01-18 09:29:49.262 UTC [msp/identity] newIdentity -> DEBU c7f Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -5725,7 +5709,7 @@ AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= -----END CERTIFICATE----- -2018-01-18 01:58:55.841 UTC [msp/identity] newIdentity -> DEBU c74 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:49.263 UTC [msp/identity] newIdentity -> DEBU c80 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -5738,7 +5722,7 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -----END CERTIFICATE----- -2018-01-18 01:58:55.841 UTC [msp/identity] newIdentity -> DEBU c75 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:49.263 UTC [msp/identity] newIdentity -> DEBU c81 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -5751,288 +5735,12 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -----END CERTIFICATE----- -2018-01-18 01:58:55.842 UTC [msp] Validate -> DEBU c76 MSP OrdererMSP validating identity -2018-01-18 01:58:55.842 UTC [msp] Setup -> DEBU c77 Setting up the MSP manager (3 msps) -2018-01-18 01:58:55.842 UTC [msp] Setup -> DEBU c78 MSP manager setup complete, setup 3 msps -2018-01-18 01:58:55.842 UTC [orderer/common/broadcast] Handle -> DEBU c79 [channel: businesschannel] Broadcast has successfully enqueued message of type CONFIG -2018-01-18 01:58:55.843 UTC [policies] GetPolicy -> DEBU c7a Returning policy Writers for evaluation -2018-01-18 01:58:55.843 UTC [cauthdsl] func1 -> DEBU c7b 0xc42014aab8 gate 1516240735843201962 evaluation starts -2018-01-18 01:58:55.843 UTC [cauthdsl] func2 -> DEBU c7c 0xc42014aab8 signed by 0 principal evaluation starts (used [false]) -2018-01-18 01:58:55.843 UTC [cauthdsl] func2 -> DEBU c7d 0xc42014aab8 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-18 01:58:55.843 UTC [msp/identity] newIdentity -> DEBU c7e Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq -hkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz -MKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw -DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN -RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH -/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl ------END CERTIFICATE----- -2018-01-18 01:58:55.844 UTC [cauthdsl] func2 -> DEBU c7f 0xc42014aab8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -2018-01-18 01:58:55.844 UTC [cauthdsl] func2 -> DEBU c80 0xc42014aab8 principal evaluation fails -2018-01-18 01:58:55.844 UTC [cauthdsl] func1 -> DEBU c81 0xc42014aab8 gate 1516240735843201962 evaluation fails -2018-01-18 01:58:55.844 UTC [cauthdsl] func1 -> DEBU c82 0xc42014aac8 gate 1516240735844536995 evaluation starts -2018-01-18 01:58:55.844 UTC [cauthdsl] func2 -> DEBU c83 0xc42014aac8 signed by 0 principal evaluation starts (used [false]) -2018-01-18 01:58:55.844 UTC [cauthdsl] func2 -> DEBU c84 0xc42014aac8 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-18 01:58:55.844 UTC [msp/identity] newIdentity -> DEBU c85 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq -hkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz -MKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw -DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN -RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH -/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl ------END CERTIFICATE----- -2018-01-18 01:58:55.845 UTC [cauthdsl] func2 -> DEBU c86 0xc42014aac8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -2018-01-18 01:58:55.845 UTC [cauthdsl] func2 -> DEBU c87 0xc42014aac8 principal evaluation fails -2018-01-18 01:58:55.845 UTC [cauthdsl] func1 -> DEBU c88 0xc42014aac8 gate 1516240735844536995 evaluation fails -2018-01-18 01:58:55.845 UTC [cauthdsl] func1 -> DEBU c89 0xc42014aad8 gate 1516240735845413356 evaluation starts -2018-01-18 01:58:55.845 UTC [cauthdsl] func2 -> DEBU c8a 0xc42014aad8 signed by 0 principal evaluation starts (used [false]) -2018-01-18 01:58:55.845 UTC [cauthdsl] func2 -> DEBU c8b 0xc42014aad8 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-18 01:58:55.845 UTC [msp/identity] newIdentity -> DEBU c8c Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq -hkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz -MKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw -DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN -RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH -/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl ------END CERTIFICATE----- -2018-01-18 01:58:55.845 UTC [msp] SatisfiesPrincipal -> DEBU c8d Checking if identity satisfies MEMBER role for OrdererMSP -2018-01-18 01:58:55.845 UTC [msp] Validate -> DEBU c8e MSP OrdererMSP validating identity -2018-01-18 01:58:55.845 UTC [cauthdsl] func2 -> DEBU c8f 0xc42014aad8 principal matched by identity 0 -2018-01-18 01:58:55.845 UTC [msp/identity] Verify -> DEBU c90 Verify: digest = 00000000 e9 11 5a 91 33 30 86 6e bc 2f 0f 17 db 1a ad a9 |..Z.30.n./......| -00000010 7c 1b 54 f8 79 52 e5 38 a6 3c e8 09 0b 5c fa 76 ||.T.yR.8.<...\.v| -2018-01-18 01:58:55.847 UTC [orderer/common/broadcast] Handle -> WARN c92 Error reading from stream: rpc error: code = Canceled desc = context canceled -2018-01-18 01:58:55.847 UTC [orderer/main] func1 -> DEBU c93 Closing Broadcast stream -2018-01-18 01:58:55.847 UTC [orderer/common/deliver] Handle -> WARN c94 Error reading from stream: rpc error: code = Canceled desc = context canceled -2018-01-18 01:58:55.845 UTC [msp/identity] Verify -> DEBU c91 Verify: sig = 00000000 30 44 02 20 1a 19 ff ce ef 87 b6 2e 8f 69 c8 c9 |0D. .........i..| -00000010 00 a2 99 2e 22 6c 79 bd 68 86 de 91 1e ce 02 ab |...."ly.h.......| -00000020 27 c2 e5 b1 02 20 17 f8 31 ca 60 39 1a 4b 63 e9 |'.... ..1.`9.Kc.| -00000030 70 cd ea 2e fb 71 84 be 00 59 ce e7 38 92 b1 c3 |p....q...Y..8...| -00000040 92 cf 85 2a d9 00 |...*..| -2018-01-18 01:58:55.848 UTC [orderer/main] func1 -> DEBU c95 Closing Deliver stream -2018-01-18 01:58:55.849 UTC [cauthdsl] func2 -> DEBU c96 0xc42014aad8 principal evaluation succeeds for identity 0 -2018-01-18 01:58:55.849 UTC [cauthdsl] func1 -> DEBU c97 0xc42014aad8 gate 1516240735845413356 evaluation succeeds -2018-01-18 01:58:55.849 UTC [orderer/common/sigfilter] Apply -> DEBU c98 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420a394a0 1 [0xc420026638 0xc420026700]}) %!s(*policies.implicitMetaPolicy=&{0xc42039e3e0 1 [0xc4200267c8]})]} -2018-01-18 01:58:55.850 UTC [common/configtx] addToMap -> DEBU c99 Adding to config map: [Groups] /Channel -2018-01-18 01:58:55.850 UTC [common/configtx] addToMap -> DEBU c9a Adding to config map: [Groups] /Channel/Application -2018-01-18 01:58:55.851 UTC [common/configtx] addToMap -> DEBU c9b Adding to config map: [Groups] /Channel/Application/Org2MSP -2018-01-18 01:58:55.851 UTC [common/configtx] addToMap -> DEBU c9c Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -2018-01-18 01:58:55.851 UTC [common/configtx] addToMap -> DEBU c9d Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -2018-01-18 01:58:55.851 UTC [common/configtx] addToMap -> DEBU c9e Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -2018-01-18 01:58:55.852 UTC [common/configtx] addToMap -> DEBU c9f Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -2018-01-18 01:58:55.852 UTC [common/configtx] addToMap -> DEBU ca0 Adding to config map: [Groups] /Channel -2018-01-18 01:58:55.852 UTC [common/configtx] addToMap -> DEBU ca1 Adding to config map: [Groups] /Channel/Application -2018-01-18 01:58:55.852 UTC [common/configtx] addToMap -> DEBU ca2 Adding to config map: [Groups] /Channel/Application/Org2MSP -2018-01-18 01:58:55.852 UTC [common/configtx] addToMap -> DEBU ca3 Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers -2018-01-18 01:58:55.853 UTC [common/configtx] addToMap -> DEBU ca4 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -2018-01-18 01:58:55.853 UTC [common/configtx] addToMap -> DEBU ca5 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -2018-01-18 01:58:55.853 UTC [common/configtx] addToMap -> DEBU ca6 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -2018-01-18 01:58:55.853 UTC [common/configtx] addToMap -> DEBU ca7 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -2018-01-18 01:58:55.854 UTC [policies] GetPolicy -> DEBU ca8 Returning policy Admins for evaluation -2018-01-18 01:58:55.854 UTC [cauthdsl] func1 -> DEBU ca9 0xc42014b0b8 gate 1516240735854297612 evaluation starts -2018-01-18 01:58:55.854 UTC [cauthdsl] func2 -> DEBU caa 0xc42014b0b8 signed by 0 principal evaluation starts (used [false]) -2018-01-18 01:58:55.854 UTC [cauthdsl] func2 -> DEBU cab 0xc42014b0b8 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-18 01:58:55.854 UTC [msp/identity] newIdentity -> DEBU cac Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -AXYxULZpXYDQXt1KaLI= ------END CERTIFICATE----- -2018-01-18 01:58:55.855 UTC [msp] SatisfiesPrincipal -> DEBU cad Checking if identity satisfies ADMIN role for Org2MSP -2018-01-18 01:58:55.855 UTC [cauthdsl] func2 -> DEBU cae 0xc42014b0b8 principal matched by identity 0 -2018-01-18 01:58:55.855 UTC [msp/identity] Verify -> DEBU caf Verify: digest = 00000000 9d 72 b7 0e 95 b2 86 89 3a d9 b1 85 95 8f bb d7 |.r......:.......| -00000010 01 5c 09 c4 93 48 4e 4e 33 65 ec 0d 5f d5 63 3d |.\...HNN3e.._.c=| -2018-01-18 01:58:55.855 UTC [msp/identity] Verify -> DEBU cb0 Verify: sig = 00000000 30 44 02 20 7b 5b dd e2 f4 f1 0a 0b d0 d4 b9 93 |0D. {[..........| -00000010 d4 7f 21 c4 a4 ad 70 70 9f f3 5c e5 34 49 d3 8f |..!...pp..\.4I..| -00000020 80 7e 20 4b 02 20 47 1a ed e4 2b 82 43 82 8a b4 |.~ K. G...+.C...| -00000030 7e 02 4b 68 89 0c c3 b8 da ec 5f 89 9c 63 95 a2 |~.Kh......_..c..| -00000040 8d 10 f4 ce 7a 7f |....z.| -2018-01-18 01:58:55.855 UTC [cauthdsl] func2 -> DEBU cb1 0xc42014b0b8 principal evaluation succeeds for identity 0 -2018-01-18 01:58:55.855 UTC [cauthdsl] func1 -> DEBU cb2 0xc42014b0b8 gate 1516240735854297612 evaluation succeeds -2018-01-18 01:58:55.856 UTC [common/configtx] recurseConfigMap -> DEBU cb3 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-18 01:58:55.856 UTC [common/configtx] recurseConfigMap -> DEBU cb4 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-18 01:58:55.856 UTC [common/configtx] recurseConfigMap -> DEBU cb5 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-18 01:58:55.856 UTC [common/configtx] recurseConfigMap -> DEBU cb6 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-18 01:58:55.856 UTC [common/configtx] recurseConfigMap -> DEBU cb7 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-18 01:58:55.856 UTC [common/configtx] recurseConfigMap -> DEBU cb8 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-18 01:58:55.856 UTC [common/configtx] recurseConfigMap -> DEBU cb9 Setting policy for key BlockValidation to policy: mod_policy:"Admins" -2018-01-18 01:58:55.856 UTC [common/configtx] recurseConfigMap -> DEBU cba Setting policy for key Writers to -2018-01-18 01:58:55.856 UTC [common/configtx] recurseConfigMap -> DEBU cbb Setting policy for key Admins to -2018-01-18 01:58:55.856 UTC [common/configtx] recurseConfigMap -> DEBU cbc Setting policy for key Readers to -2018-01-18 01:58:55.856 UTC [common/configtx] recurseConfigMap -> DEBU cbd Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-18 01:58:55.856 UTC [common/configtx] recurseConfigMap -> DEBU cbe Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-18 01:58:55.856 UTC [common/configtx] recurseConfigMap -> DEBU cbf Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-18 01:58:55.856 UTC [common/configtx] recurseConfigMap -> DEBU cc0 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-18 01:58:55.856 UTC [common/configtx] recurseConfigMap -> DEBU cc1 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-18 01:58:55.857 UTC [common/configtx] recurseConfigMap -> DEBU cc2 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-18 01:58:55.857 UTC [common/configtx] recurseConfigMap -> DEBU cc3 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-18 01:58:55.857 UTC [common/configtx] recurseConfigMap -> DEBU cc4 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-18 01:58:55.857 UTC [common/configtx] recurseConfigMap -> DEBU cc5 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-18 01:58:55.857 UTC [common/configtx] processConfig -> DEBU cc6 Beginning new config for channel businesschannel -2018-01-18 01:58:55.857 UTC [common/config] NewStandardValues -> DEBU cc7 Initializing protos for *config.ChannelProtos -2018-01-18 01:58:55.857 UTC [common/config] initializeProtosStruct -> DEBU cc8 Processing field: HashingAlgorithm -2018-01-18 01:58:55.857 UTC [common/config] initializeProtosStruct -> DEBU cc9 Processing field: BlockDataHashingStructure -2018-01-18 01:58:55.857 UTC [common/config] initializeProtosStruct -> DEBU cca Processing field: OrdererAddresses -2018-01-18 01:58:55.857 UTC [common/config] initializeProtosStruct -> DEBU ccb Processing field: Consortium -2018-01-18 01:58:55.857 UTC [policies] ProposePolicy -> DEBU ccc Proposed new policy Admins for Channel -2018-01-18 01:58:55.857 UTC [policies] ProposePolicy -> DEBU ccd Proposed new policy Readers for Channel -2018-01-18 01:58:55.857 UTC [policies] ProposePolicy -> DEBU cce Proposed new policy Writers for Channel -2018-01-18 01:58:55.858 UTC [common/config] NewStandardValues -> DEBU ccf Initializing protos for *config.OrdererProtos -2018-01-18 01:58:55.858 UTC [common/config] initializeProtosStruct -> DEBU cd0 Processing field: ConsensusType -2018-01-18 01:58:55.858 UTC [common/config] initializeProtosStruct -> DEBU cd1 Processing field: BatchSize -2018-01-18 01:58:55.858 UTC [common/config] initializeProtosStruct -> DEBU cd2 Processing field: BatchTimeout -2018-01-18 01:58:55.858 UTC [common/config] initializeProtosStruct -> DEBU cd3 Processing field: KafkaBrokers -2018-01-18 01:58:55.858 UTC [common/config] initializeProtosStruct -> DEBU cd4 Processing field: ChannelRestrictions -2018-01-18 01:58:55.858 UTC [policies] ProposePolicy -> DEBU cd5 Proposed new policy Admins for Orderer -2018-01-18 01:58:55.858 UTC [policies] ProposePolicy -> DEBU cd6 Proposed new policy BlockValidation for Orderer -2018-01-18 01:58:55.858 UTC [policies] ProposePolicy -> DEBU cd7 Proposed new policy Readers for Orderer -2018-01-18 01:58:55.858 UTC [policies] ProposePolicy -> DEBU cd8 Proposed new policy Writers for Orderer -2018-01-18 01:58:55.858 UTC [common/config] NewStandardValues -> DEBU cd9 Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:55.858 UTC [common/config] initializeProtosStruct -> DEBU cda Processing field: MSP -2018-01-18 01:58:55.858 UTC [policies] ProposePolicy -> DEBU cdb Proposed new policy Admins for OrdererOrg -2018-01-18 01:58:55.858 UTC [policies] ProposePolicy -> DEBU cdc Proposed new policy Readers for OrdererOrg -2018-01-18 01:58:55.858 UTC [policies] ProposePolicy -> DEBU cdd Proposed new policy Writers for OrdererOrg -2018-01-18 01:58:55.858 UTC [common/config] NewStandardValues -> DEBU cde Initializing protos for *struct {} -2018-01-18 01:58:55.858 UTC [policies] ProposePolicy -> DEBU cdf Proposed new policy Admins for Application -2018-01-18 01:58:55.858 UTC [policies] ProposePolicy -> DEBU ce0 Proposed new policy Writers for Application -2018-01-18 01:58:55.858 UTC [policies] ProposePolicy -> DEBU ce1 Proposed new policy Readers for Application -2018-01-18 01:58:55.858 UTC [common/config] NewStandardValues -> DEBU ce2 Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:55.859 UTC [common/config] initializeProtosStruct -> DEBU ce3 Processing field: MSP -2018-01-18 01:58:55.859 UTC [common/config] NewStandardValues -> DEBU ce4 Initializing protos for *config.ApplicationOrgProtos -2018-01-18 01:58:55.859 UTC [common/config] initializeProtosStruct -> DEBU ce5 Processing field: AnchorPeers -2018-01-18 01:58:55.859 UTC [common/config] NewStandardValues -> DEBU ce6 Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:55.859 UTC [common/config] initializeProtosStruct -> DEBU ce7 Processing field: MSP -2018-01-18 01:58:55.859 UTC [policies] ProposePolicy -> DEBU ce8 Proposed new policy Readers for Org2MSP -2018-01-18 01:58:55.859 UTC [policies] ProposePolicy -> DEBU ce9 Proposed new policy Writers for Org2MSP -2018-01-18 01:58:55.859 UTC [policies] ProposePolicy -> DEBU cea Proposed new policy Admins for Org2MSP -2018-01-18 01:58:55.859 UTC [common/config] NewStandardValues -> DEBU ceb Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:55.859 UTC [common/config] initializeProtosStruct -> DEBU cec Processing field: MSP -2018-01-18 01:58:55.859 UTC [common/config] NewStandardValues -> DEBU ced Initializing protos for *config.ApplicationOrgProtos -2018-01-18 01:58:55.859 UTC [common/config] initializeProtosStruct -> DEBU cee Processing field: AnchorPeers -2018-01-18 01:58:55.859 UTC [common/config] NewStandardValues -> DEBU cef Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:55.859 UTC [common/config] initializeProtosStruct -> DEBU cf0 Processing field: MSP -2018-01-18 01:58:55.859 UTC [policies] ProposePolicy -> DEBU cf1 Proposed new policy Admins for Org1MSP -2018-01-18 01:58:55.859 UTC [policies] ProposePolicy -> DEBU cf2 Proposed new policy Readers for Org1MSP -2018-01-18 01:58:55.859 UTC [policies] ProposePolicy -> DEBU cf3 Proposed new policy Writers for Org1MSP -2018-01-18 01:58:55.859 UTC [common/config] validateMSP -> DEBU cf4 Setting up MSP for org OrdererOrg -2018-01-18 01:58:55.859 UTC [msp] NewBccspMsp -> DEBU cf5 Creating BCCSP-based MSP instance -2018-01-18 01:58:55.859 UTC [msp] Setup -> DEBU cf6 Setting up MSP instance OrdererMSP -2018-01-18 01:58:55.860 UTC [msp/identity] newIdentity -> DEBU cf7 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW -gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w -XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK -BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs -KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= ------END CERTIFICATE----- -2018-01-18 01:58:55.860 UTC [msp/identity] newIdentity -> DEBU cf8 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 ------END CERTIFICATE----- -2018-01-18 01:58:55.860 UTC [msp/identity] newIdentity -> DEBU cf9 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 ------END CERTIFICATE----- -2018-01-18 01:58:55.861 UTC [msp] Validate -> DEBU cfa MSP OrdererMSP validating identity -2018-01-18 01:58:55.861 UTC [common/config] Validate -> DEBU cfb Anchor peers for org Org2MSP are anchor_peers: -2018-01-18 01:58:55.861 UTC [common/config] validateMSP -> DEBU cfc Setting up MSP for org Org2MSP -2018-01-18 01:58:55.861 UTC [msp] NewBccspMsp -> DEBU cfd Creating BCCSP-based MSP instance -2018-01-18 01:58:55.861 UTC [msp] Setup -> DEBU cfe Setting up MSP instance Org2MSP -2018-01-18 01:58:55.862 UTC [msp/identity] newIdentity -> DEBU cff Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa -MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 -sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ -xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv -WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk -SCjyRdD3aQ== ------END CERTIFICATE----- -2018-01-18 01:58:55.862 UTC [msp/identity] newIdentity -> DEBU d00 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -AXYxULZpXYDQXt1KaLI= ------END CERTIFICATE----- -2018-01-18 01:58:55.863 UTC [msp/identity] newIdentity -> DEBU d01 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -AXYxULZpXYDQXt1KaLI= ------END CERTIFICATE----- -2018-01-18 01:58:55.864 UTC [msp] Validate -> DEBU d02 MSP Org2MSP validating identity -2018-01-18 01:58:55.865 UTC [common/config] Validate -> DEBU d03 Anchor peers for org Org1MSP are anchor_peers: -2018-01-18 01:58:55.865 UTC [common/config] validateMSP -> DEBU d04 Setting up MSP for org Org1MSP -2018-01-18 01:58:55.865 UTC [msp] NewBccspMsp -> DEBU d05 Creating BCCSP-based MSP instance -2018-01-18 01:58:55.865 UTC [msp] Setup -> DEBU d06 Setting up MSP instance Org1MSP -2018-01-18 01:58:55.865 UTC [msp/identity] newIdentity -> DEBU d07 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:49.265 UTC [msp] Validate -> DEBU c82 MSP OrdererMSP validating identity +2018-01-18 09:29:49.266 UTC [common/config] Validate -> DEBU c83 Anchor peers for org Org1MSP are anchor_peers: +2018-01-18 09:29:49.266 UTC [common/config] validateMSP -> DEBU c84 Setting up MSP for org Org1MSP +2018-01-18 09:29:49.266 UTC [msp] NewBccspMsp -> DEBU c85 Creating BCCSP-based MSP instance +2018-01-18 09:29:49.266 UTC [msp] Setup -> DEBU c86 Setting up MSP instance Org1MSP +2018-01-18 09:29:49.267 UTC [msp/identity] newIdentity -> DEBU c87 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -6047,7 +5755,7 @@ JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ H7n8z1pj5w== -----END CERTIFICATE----- -2018-01-18 01:58:55.866 UTC [msp/identity] newIdentity -> DEBU d08 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:49.267 UTC [msp/identity] newIdentity -> DEBU c88 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -6061,7 +5769,7 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-18 01:58:55.866 UTC [msp/identity] newIdentity -> DEBU d09 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:49.271 UTC [msp/identity] newIdentity -> DEBU c89 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -6075,258 +5783,12 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-18 01:58:55.867 UTC [msp] Validate -> DEBU d0a MSP Org1MSP validating identity -2018-01-18 01:58:55.867 UTC [msp] Setup -> DEBU d0b Setting up the MSP manager (3 msps) -2018-01-18 01:58:55.867 UTC [msp] Setup -> DEBU d0c MSP manager setup complete, setup 3 msps -2018-01-18 01:58:55.868 UTC [orderer/common/blockcutter] Ordered -> DEBU d0d Found message which requested to be isolated, cutting into its own batch -2018-01-18 01:58:55.868 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU d0e retrieveBlockByNumber() - blockNum = [1] -2018-01-18 01:58:55.868 UTC [fsblkstorage] newBlockfileStream -> DEBU d0f newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[11934] -2018-01-18 01:58:55.868 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU d10 Remaining bytes=[13732], Going to peek [8] bytes -2018-01-18 01:58:55.868 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU d11 Returning blockbytes - length=[13730], placementInfo={fileNum=[0], startOffset=[11934], bytesOffset=[11936]} -2018-01-18 01:58:55.868 UTC [common/configtx] addToMap -> DEBU d12 Adding to config map: [Groups] /Channel -2018-01-18 01:58:55.868 UTC [common/configtx] addToMap -> DEBU d13 Adding to config map: [Groups] /Channel/Orderer -2018-01-18 01:58:55.868 UTC [common/configtx] addToMap -> DEBU d14 Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -2018-01-18 01:58:55.868 UTC [common/configtx] addToMap -> DEBU d15 Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -2018-01-18 01:58:55.868 UTC [common/configtx] addToMap -> DEBU d16 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -2018-01-18 01:58:55.869 UTC [common/configtx] addToMap -> DEBU d17 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -2018-01-18 01:58:55.869 UTC [common/configtx] addToMap -> DEBU d18 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -2018-01-18 01:58:55.869 UTC [common/configtx] addToMap -> DEBU d19 Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -2018-01-18 01:58:55.869 UTC [common/configtx] addToMap -> DEBU d1a Adding to config map: [Values] /Channel/Orderer/ConsensusType -2018-01-18 01:58:55.869 UTC [common/configtx] addToMap -> DEBU d1b Adding to config map: [Values] /Channel/Orderer/BatchSize -2018-01-18 01:58:55.869 UTC [common/configtx] addToMap -> DEBU d1c Adding to config map: [Values] /Channel/Orderer/BatchTimeout -2018-01-18 01:58:55.869 UTC [common/configtx] addToMap -> DEBU d1d Adding to config map: [Policy] /Channel/Orderer/Admins -2018-01-18 01:58:55.869 UTC [common/configtx] addToMap -> DEBU d1e Adding to config map: [Policy] /Channel/Orderer/BlockValidation -2018-01-18 01:58:55.869 UTC [common/configtx] addToMap -> DEBU d1f Adding to config map: [Policy] /Channel/Orderer/Readers -2018-01-18 01:58:55.869 UTC [common/configtx] addToMap -> DEBU d20 Adding to config map: [Policy] /Channel/Orderer/Writers -2018-01-18 01:58:55.869 UTC [common/configtx] addToMap -> DEBU d21 Adding to config map: [Groups] /Channel/Application -2018-01-18 01:58:55.869 UTC [common/configtx] addToMap -> DEBU d22 Adding to config map: [Groups] /Channel/Application/Org1MSP -2018-01-18 01:58:55.869 UTC [common/configtx] addToMap -> DEBU d23 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -2018-01-18 01:58:55.869 UTC [common/configtx] addToMap -> DEBU d24 Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -2018-01-18 01:58:55.869 UTC [common/configtx] addToMap -> DEBU d25 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -2018-01-18 01:58:55.869 UTC [common/configtx] addToMap -> DEBU d26 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -2018-01-18 01:58:55.870 UTC [common/configtx] addToMap -> DEBU d27 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -2018-01-18 01:58:55.870 UTC [common/configtx] addToMap -> DEBU d28 Adding to config map: [Groups] /Channel/Application/Org2MSP -2018-01-18 01:58:55.870 UTC [common/configtx] addToMap -> DEBU d29 Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers -2018-01-18 01:58:55.870 UTC [common/configtx] addToMap -> DEBU d2a Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -2018-01-18 01:58:55.870 UTC [common/configtx] addToMap -> DEBU d2b Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -2018-01-18 01:58:55.870 UTC [common/configtx] addToMap -> DEBU d2c Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -2018-01-18 01:58:55.870 UTC [common/configtx] addToMap -> DEBU d2d Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -2018-01-18 01:58:55.870 UTC [common/configtx] addToMap -> DEBU d2e Adding to config map: [Policy] /Channel/Application/Readers -2018-01-18 01:58:55.870 UTC [common/configtx] addToMap -> DEBU d2f Adding to config map: [Policy] /Channel/Application/Admins -2018-01-18 01:58:55.870 UTC [common/configtx] addToMap -> DEBU d30 Adding to config map: [Policy] /Channel/Application/Writers -2018-01-18 01:58:55.870 UTC [common/configtx] addToMap -> DEBU d31 Adding to config map: [Values] /Channel/OrdererAddresses -2018-01-18 01:58:55.870 UTC [common/configtx] addToMap -> DEBU d32 Adding to config map: [Values] /Channel/HashingAlgorithm -2018-01-18 01:58:55.871 UTC [common/configtx] addToMap -> DEBU d33 Adding to config map: [Values] /Channel/BlockDataHashingStructure -2018-01-18 01:58:55.871 UTC [common/configtx] addToMap -> DEBU d34 Adding to config map: [Values] /Channel/Consortium -2018-01-18 01:58:55.871 UTC [common/configtx] addToMap -> DEBU d35 Adding to config map: [Policy] /Channel/Writers -2018-01-18 01:58:55.871 UTC [common/configtx] addToMap -> DEBU d36 Adding to config map: [Policy] /Channel/Admins -2018-01-18 01:58:55.871 UTC [common/configtx] addToMap -> DEBU d37 Adding to config map: [Policy] /Channel/Readers -2018-01-18 01:58:55.871 UTC [common/configtx] addToMap -> DEBU d38 Adding to config map: [Groups] /Channel -2018-01-18 01:58:55.871 UTC [common/configtx] addToMap -> DEBU d39 Adding to config map: [Groups] /Channel/Application -2018-01-18 01:58:55.871 UTC [common/configtx] addToMap -> DEBU d3a Adding to config map: [Groups] /Channel/Application/Org2MSP -2018-01-18 01:58:55.871 UTC [common/configtx] addToMap -> DEBU d3b Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -2018-01-18 01:58:55.871 UTC [common/configtx] addToMap -> DEBU d3c Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -2018-01-18 01:58:55.871 UTC [common/configtx] addToMap -> DEBU d3d Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -2018-01-18 01:58:55.871 UTC [common/configtx] addToMap -> DEBU d3e Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -2018-01-18 01:58:55.871 UTC [common/configtx] addToMap -> DEBU d3f Adding to config map: [Groups] /Channel -2018-01-18 01:58:55.871 UTC [common/configtx] addToMap -> DEBU d40 Adding to config map: [Groups] /Channel/Application -2018-01-18 01:58:55.872 UTC [common/configtx] addToMap -> DEBU d41 Adding to config map: [Groups] /Channel/Application/Org2MSP -2018-01-18 01:58:55.872 UTC [common/configtx] addToMap -> DEBU d42 Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers -2018-01-18 01:58:55.878 UTC [common/configtx] addToMap -> DEBU d43 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -2018-01-18 01:58:55.878 UTC [common/configtx] addToMap -> DEBU d44 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -2018-01-18 01:58:55.878 UTC [common/configtx] addToMap -> DEBU d45 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -2018-01-18 01:58:55.878 UTC [common/configtx] addToMap -> DEBU d46 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -2018-01-18 01:58:55.879 UTC [policies] GetPolicy -> DEBU d47 Returning policy Admins for evaluation -2018-01-18 01:58:55.879 UTC [cauthdsl] func1 -> DEBU d48 0xc42014b890 gate 1516240735879598755 evaluation starts -2018-01-18 01:58:55.879 UTC [cauthdsl] func2 -> DEBU d49 0xc42014b890 signed by 0 principal evaluation starts (used [false]) -2018-01-18 01:58:55.879 UTC [cauthdsl] func2 -> DEBU d4a 0xc42014b890 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-18 01:58:55.880 UTC [msp/identity] newIdentity -> DEBU d4b Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -AXYxULZpXYDQXt1KaLI= ------END CERTIFICATE----- -2018-01-18 01:58:55.880 UTC [msp] SatisfiesPrincipal -> DEBU d4c Checking if identity satisfies ADMIN role for Org2MSP -2018-01-18 01:58:55.880 UTC [cauthdsl] func2 -> DEBU d4d 0xc42014b890 principal matched by identity 0 -2018-01-18 01:58:55.880 UTC [msp/identity] Verify -> DEBU d4e Verify: digest = 00000000 9d 72 b7 0e 95 b2 86 89 3a d9 b1 85 95 8f bb d7 |.r......:.......| -00000010 01 5c 09 c4 93 48 4e 4e 33 65 ec 0d 5f d5 63 3d |.\...HNN3e.._.c=| -2018-01-18 01:58:55.880 UTC [msp/identity] Verify -> DEBU d4f Verify: sig = 00000000 30 44 02 20 7b 5b dd e2 f4 f1 0a 0b d0 d4 b9 93 |0D. {[..........| -00000010 d4 7f 21 c4 a4 ad 70 70 9f f3 5c e5 34 49 d3 8f |..!...pp..\.4I..| -00000020 80 7e 20 4b 02 20 47 1a ed e4 2b 82 43 82 8a b4 |.~ K. G...+.C...| -00000030 7e 02 4b 68 89 0c c3 b8 da ec 5f 89 9c 63 95 a2 |~.Kh......_..c..| -00000040 8d 10 f4 ce 7a 7f |....z.| -2018-01-18 01:58:55.881 UTC [cauthdsl] func2 -> DEBU d50 0xc42014b890 principal evaluation succeeds for identity 0 -2018-01-18 01:58:55.881 UTC [cauthdsl] func1 -> DEBU d51 0xc42014b890 gate 1516240735879598755 evaluation succeeds -2018-01-18 01:58:55.885 UTC [common/configtx] recurseConfigMap -> DEBU d52 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-18 01:58:55.885 UTC [common/configtx] recurseConfigMap -> DEBU d53 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-18 01:58:55.894 UTC [common/configtx] recurseConfigMap -> DEBU d54 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-18 01:58:55.895 UTC [common/configtx] recurseConfigMap -> DEBU d55 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-18 01:58:55.895 UTC [common/configtx] recurseConfigMap -> DEBU d56 Setting policy for key BlockValidation to policy: mod_policy:"Admins" -2018-01-18 01:58:55.895 UTC [common/configtx] recurseConfigMap -> DEBU d57 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-18 01:58:55.895 UTC [common/configtx] recurseConfigMap -> DEBU d58 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-18 01:58:55.895 UTC [common/configtx] recurseConfigMap -> DEBU d59 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-18 01:58:55.896 UTC [common/configtx] recurseConfigMap -> DEBU d5a Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-18 01:58:55.896 UTC [common/configtx] recurseConfigMap -> DEBU d5b Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-18 01:58:55.897 UTC [common/configtx] recurseConfigMap -> DEBU d5c Setting policy for key Readers to -2018-01-18 01:58:55.898 UTC [common/configtx] recurseConfigMap -> DEBU d5d Setting policy for key Writers to -2018-01-18 01:58:55.901 UTC [common/configtx] recurseConfigMap -> DEBU d5e Setting policy for key Admins to -2018-01-18 01:58:55.901 UTC [common/configtx] recurseConfigMap -> DEBU d5f Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-18 01:58:55.902 UTC [common/configtx] recurseConfigMap -> DEBU d60 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-18 01:58:55.902 UTC [common/configtx] recurseConfigMap -> DEBU d61 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-18 01:58:55.902 UTC [common/configtx] recurseConfigMap -> DEBU d62 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-18 01:58:55.903 UTC [common/configtx] recurseConfigMap -> DEBU d63 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-18 01:58:55.903 UTC [common/configtx] recurseConfigMap -> DEBU d64 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-18 01:58:55.903 UTC [common/configtx] processConfig -> DEBU d65 Beginning new config for channel businesschannel -2018-01-18 01:58:55.903 UTC [common/config] NewStandardValues -> DEBU d66 Initializing protos for *config.ChannelProtos -2018-01-18 01:58:55.904 UTC [common/config] initializeProtosStruct -> DEBU d67 Processing field: HashingAlgorithm -2018-01-18 01:58:55.904 UTC [common/config] initializeProtosStruct -> DEBU d68 Processing field: BlockDataHashingStructure -2018-01-18 01:58:55.905 UTC [common/config] initializeProtosStruct -> DEBU d69 Processing field: OrdererAddresses -2018-01-18 01:58:55.905 UTC [common/config] initializeProtosStruct -> DEBU d6a Processing field: Consortium -2018-01-18 01:58:55.906 UTC [policies] ProposePolicy -> DEBU d6b Proposed new policy Admins for Channel -2018-01-18 01:58:55.906 UTC [policies] ProposePolicy -> DEBU d6c Proposed new policy Readers for Channel -2018-01-18 01:58:55.906 UTC [policies] ProposePolicy -> DEBU d6d Proposed new policy Writers for Channel -2018-01-18 01:58:55.906 UTC [common/config] NewStandardValues -> DEBU d6e Initializing protos for *config.OrdererProtos -2018-01-18 01:58:55.906 UTC [common/config] initializeProtosStruct -> DEBU d6f Processing field: ConsensusType -2018-01-18 01:58:55.906 UTC [common/config] initializeProtosStruct -> DEBU d70 Processing field: BatchSize -2018-01-18 01:58:55.906 UTC [common/config] initializeProtosStruct -> DEBU d71 Processing field: BatchTimeout -2018-01-18 01:58:55.907 UTC [common/config] initializeProtosStruct -> DEBU d72 Processing field: KafkaBrokers -2018-01-18 01:58:55.907 UTC [common/config] initializeProtosStruct -> DEBU d73 Processing field: ChannelRestrictions -2018-01-18 01:58:55.907 UTC [policies] ProposePolicy -> DEBU d74 Proposed new policy Writers for Orderer -2018-01-18 01:58:55.907 UTC [policies] ProposePolicy -> DEBU d75 Proposed new policy Admins for Orderer -2018-01-18 01:58:55.907 UTC [policies] ProposePolicy -> DEBU d76 Proposed new policy BlockValidation for Orderer -2018-01-18 01:58:55.907 UTC [policies] ProposePolicy -> DEBU d77 Proposed new policy Readers for Orderer -2018-01-18 01:58:55.907 UTC [common/config] NewStandardValues -> DEBU d78 Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:55.907 UTC [common/config] initializeProtosStruct -> DEBU d79 Processing field: MSP -2018-01-18 01:58:55.907 UTC [policies] ProposePolicy -> DEBU d7a Proposed new policy Writers for OrdererOrg -2018-01-18 01:58:55.907 UTC [policies] ProposePolicy -> DEBU d7b Proposed new policy Admins for OrdererOrg -2018-01-18 01:58:55.907 UTC [policies] ProposePolicy -> DEBU d7c Proposed new policy Readers for OrdererOrg -2018-01-18 01:58:55.907 UTC [common/config] NewStandardValues -> DEBU d7d Initializing protos for *struct {} -2018-01-18 01:58:55.907 UTC [policies] ProposePolicy -> DEBU d7e Proposed new policy Admins for Application -2018-01-18 01:58:55.908 UTC [policies] ProposePolicy -> DEBU d7f Proposed new policy Writers for Application -2018-01-18 01:58:55.908 UTC [policies] ProposePolicy -> DEBU d80 Proposed new policy Readers for Application -2018-01-18 01:58:55.908 UTC [common/config] NewStandardValues -> DEBU d81 Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:55.908 UTC [common/config] initializeProtosStruct -> DEBU d82 Processing field: MSP -2018-01-18 01:58:55.908 UTC [common/config] NewStandardValues -> DEBU d83 Initializing protos for *config.ApplicationOrgProtos -2018-01-18 01:58:55.908 UTC [common/config] initializeProtosStruct -> DEBU d84 Processing field: AnchorPeers -2018-01-18 01:58:55.908 UTC [common/config] NewStandardValues -> DEBU d85 Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:55.908 UTC [common/config] initializeProtosStruct -> DEBU d86 Processing field: MSP -2018-01-18 01:58:55.908 UTC [policies] ProposePolicy -> DEBU d87 Proposed new policy Admins for Org1MSP -2018-01-18 01:58:55.908 UTC [policies] ProposePolicy -> DEBU d88 Proposed new policy Readers for Org1MSP -2018-01-18 01:58:55.908 UTC [policies] ProposePolicy -> DEBU d89 Proposed new policy Writers for Org1MSP -2018-01-18 01:58:55.908 UTC [common/config] NewStandardValues -> DEBU d8a Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:55.908 UTC [common/config] initializeProtosStruct -> DEBU d8b Processing field: MSP -2018-01-18 01:58:55.908 UTC [common/config] NewStandardValues -> DEBU d8c Initializing protos for *config.ApplicationOrgProtos -2018-01-18 01:58:55.908 UTC [common/config] initializeProtosStruct -> DEBU d8d Processing field: AnchorPeers -2018-01-18 01:58:55.908 UTC [common/config] NewStandardValues -> DEBU d8e Initializing protos for *config.OrganizationProtos -2018-01-18 01:58:55.908 UTC [common/config] initializeProtosStruct -> DEBU d8f Processing field: MSP -2018-01-18 01:58:55.908 UTC [policies] ProposePolicy -> DEBU d90 Proposed new policy Readers for Org2MSP -2018-01-18 01:58:55.908 UTC [policies] ProposePolicy -> DEBU d91 Proposed new policy Writers for Org2MSP -2018-01-18 01:58:55.908 UTC [policies] ProposePolicy -> DEBU d92 Proposed new policy Admins for Org2MSP -2018-01-18 01:58:55.908 UTC [common/config] validateMSP -> DEBU d93 Setting up MSP for org OrdererOrg -2018-01-18 01:58:55.909 UTC [msp] NewBccspMsp -> DEBU d94 Creating BCCSP-based MSP instance -2018-01-18 01:58:55.909 UTC [msp] Setup -> DEBU d95 Setting up MSP instance OrdererMSP -2018-01-18 01:58:55.909 UTC [msp/identity] newIdentity -> DEBU d96 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW -gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w -XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK -BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs -KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= ------END CERTIFICATE----- -2018-01-18 01:58:55.909 UTC [msp/identity] newIdentity -> DEBU d97 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 ------END CERTIFICATE----- -2018-01-18 01:58:55.910 UTC [msp/identity] newIdentity -> DEBU d98 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 ------END CERTIFICATE----- -2018-01-18 01:58:55.911 UTC [msp] Validate -> DEBU d99 MSP OrdererMSP validating identity -2018-01-18 01:58:55.912 UTC [common/config] Validate -> DEBU d9a Anchor peers for org Org1MSP are anchor_peers: -2018-01-18 01:58:55.912 UTC [common/config] validateMSP -> DEBU d9b Setting up MSP for org Org1MSP -2018-01-18 01:58:55.912 UTC [msp] NewBccspMsp -> DEBU d9c Creating BCCSP-based MSP instance -2018-01-18 01:58:55.912 UTC [msp] Setup -> DEBU d9d Setting up MSP instance Org1MSP -2018-01-18 01:58:55.912 UTC [msp/identity] newIdentity -> DEBU d9e Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf -db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx -JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi -/IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ -H7n8z1pj5w== ------END CERTIFICATE----- -2018-01-18 01:58:55.913 UTC [msp/identity] newIdentity -> DEBU d9f Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -xHTBvxfK6mAzmUitFmY= ------END CERTIFICATE----- -2018-01-18 01:58:55.913 UTC [msp/identity] newIdentity -> DEBU da0 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -xHTBvxfK6mAzmUitFmY= ------END CERTIFICATE----- -2018-01-18 01:58:55.914 UTC [msp] Validate -> DEBU da1 MSP Org1MSP validating identity -2018-01-18 01:58:55.914 UTC [common/config] Validate -> DEBU da2 Anchor peers for org Org2MSP are anchor_peers: -2018-01-18 01:58:55.914 UTC [common/config] validateMSP -> DEBU da3 Setting up MSP for org Org2MSP -2018-01-18 01:58:55.914 UTC [msp] NewBccspMsp -> DEBU da4 Creating BCCSP-based MSP instance -2018-01-18 01:58:55.915 UTC [msp] Setup -> DEBU da5 Setting up MSP instance Org2MSP -2018-01-18 01:58:55.915 UTC [msp/identity] newIdentity -> DEBU da6 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:49.272 UTC [msp] Validate -> DEBU c8a MSP Org1MSP validating identity +2018-01-18 09:29:49.273 UTC [common/config] Validate -> DEBU c8b Anchor peers for org Org2MSP are anchor_peers: +2018-01-18 09:29:49.273 UTC [common/config] validateMSP -> DEBU c8c Setting up MSP for org Org2MSP +2018-01-18 09:29:49.273 UTC [msp] NewBccspMsp -> DEBU c8d Creating BCCSP-based MSP instance +2018-01-18 09:29:49.273 UTC [msp] Setup -> DEBU c8e Setting up MSP instance Org2MSP +2018-01-18 09:29:49.274 UTC [msp/identity] newIdentity -> DEBU c8f Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -6341,7 +5803,7 @@ xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk SCjyRdD3aQ== -----END CERTIFICATE----- -2018-01-18 01:58:55.916 UTC [msp/identity] newIdentity -> DEBU da7 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:49.275 UTC [msp/identity] newIdentity -> DEBU c90 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -6355,7 +5817,7 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS AXYxULZpXYDQXt1KaLI= -----END CERTIFICATE----- -2018-01-18 01:58:55.916 UTC [msp/identity] newIdentity -> DEBU da8 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:49.275 UTC [msp/identity] newIdentity -> DEBU c91 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -6369,116 +5831,734 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS AXYxULZpXYDQXt1KaLI= -----END CERTIFICATE----- -2018-01-18 01:58:55.917 UTC [msp] Validate -> DEBU da9 MSP Org2MSP validating identity -2018-01-18 01:58:55.917 UTC [msp] Setup -> DEBU daa Setting up the MSP manager (3 msps) -2018-01-18 01:58:55.917 UTC [msp] Setup -> DEBU dab MSP manager setup complete, setup 3 msps -2018-01-18 01:58:55.917 UTC [policies] GetPolicy -> DEBU dac Returning policy Writers for evaluation -2018-01-18 01:58:55.917 UTC [policies] CommitProposals -> DEBU dad In commit adding relative sub-policy OrdererOrg/Writers to Orderer -2018-01-18 01:58:55.917 UTC [policies] GetPolicy -> DEBU dae Returning policy Admins for evaluation -2018-01-18 01:58:55.917 UTC [policies] CommitProposals -> DEBU daf In commit adding relative sub-policy OrdererOrg/Admins to Orderer -2018-01-18 01:58:55.917 UTC [policies] GetPolicy -> DEBU db0 Returning policy Readers for evaluation -2018-01-18 01:58:55.917 UTC [policies] CommitProposals -> DEBU db1 In commit adding relative sub-policy OrdererOrg/Readers to Orderer -2018-01-18 01:58:55.917 UTC [policies] GetPolicy -> DEBU db2 Returning policy Writers for evaluation -2018-01-18 01:58:55.917 UTC [policies] GetPolicy -> DEBU db3 Returning policy Admins for evaluation -2018-01-18 01:58:55.917 UTC [policies] GetPolicy -> DEBU db4 Returning policy Writers for evaluation -2018-01-18 01:58:55.917 UTC [policies] GetPolicy -> DEBU db5 Returning policy Readers for evaluation -2018-01-18 01:58:55.917 UTC [policies] GetPolicy -> DEBU db6 Returning policy Writers for evaluation -2018-01-18 01:58:55.917 UTC [policies] CommitProposals -> DEBU db7 In commit adding relative sub-policy Org1MSP/Writers to Application -2018-01-18 01:58:55.918 UTC [policies] GetPolicy -> DEBU db8 Returning policy Admins for evaluation -2018-01-18 01:58:55.918 UTC [policies] CommitProposals -> DEBU db9 In commit adding relative sub-policy Org1MSP/Admins to Application -2018-01-18 01:58:55.918 UTC [policies] GetPolicy -> DEBU dba Returning policy Readers for evaluation -2018-01-18 01:58:55.918 UTC [policies] CommitProposals -> DEBU dbb In commit adding relative sub-policy Org1MSP/Readers to Application -2018-01-18 01:58:55.918 UTC [policies] GetPolicy -> DEBU dbc Returning policy Admins for evaluation -2018-01-18 01:58:55.918 UTC [policies] CommitProposals -> DEBU dbd In commit adding relative sub-policy Org2MSP/Admins to Application -2018-01-18 01:58:55.918 UTC [policies] GetPolicy -> DEBU dbe Returning policy Readers for evaluation -2018-01-18 01:58:55.918 UTC [policies] CommitProposals -> DEBU dbf In commit adding relative sub-policy Org2MSP/Readers to Application -2018-01-18 01:58:55.918 UTC [policies] GetPolicy -> DEBU dc0 Returning policy Writers for evaluation -2018-01-18 01:58:55.918 UTC [policies] CommitProposals -> DEBU dc1 In commit adding relative sub-policy Org2MSP/Writers to Application -2018-01-18 01:58:55.918 UTC [policies] GetPolicy -> DEBU dc2 Returning policy Admins for evaluation -2018-01-18 01:58:55.918 UTC [policies] GetPolicy -> DEBU dc3 Returning policy Admins for evaluation -2018-01-18 01:58:55.918 UTC [policies] GetPolicy -> DEBU dc4 Returning policy Writers for evaluation -2018-01-18 01:58:55.918 UTC [policies] GetPolicy -> DEBU dc5 Returning policy Writers for evaluation -2018-01-18 01:58:55.918 UTC [policies] GetPolicy -> DEBU dc6 Returning policy Readers for evaluation -2018-01-18 01:58:55.918 UTC [policies] GetPolicy -> DEBU dc7 Returning policy Readers for evaluation -2018-01-18 01:58:55.918 UTC [policies] GetPolicy -> DEBU dc8 Returning policy Writers for evaluation -2018-01-18 01:58:55.918 UTC [policies] CommitProposals -> DEBU dc9 In commit adding relative sub-policy Orderer/Writers to Channel -2018-01-18 01:58:55.918 UTC [policies] GetPolicy -> DEBU dca Returning policy Admins for evaluation -2018-01-18 01:58:55.918 UTC [policies] CommitProposals -> DEBU dcb In commit adding relative sub-policy Orderer/Admins to Channel -2018-01-18 01:58:55.918 UTC [policies] GetPolicy -> DEBU dcc Returning policy BlockValidation for evaluation -2018-01-18 01:58:55.918 UTC [policies] CommitProposals -> DEBU dcd In commit adding relative sub-policy Orderer/BlockValidation to Channel -2018-01-18 01:58:55.918 UTC [policies] GetPolicy -> DEBU dce Returning policy Readers for evaluation -2018-01-18 01:58:55.918 UTC [policies] CommitProposals -> DEBU dcf In commit adding relative sub-policy Orderer/Readers to Channel -2018-01-18 01:58:55.919 UTC [policies] GetPolicy -> DEBU dd0 Returning policy OrdererOrg/Writers for evaluation -2018-01-18 01:58:55.919 UTC [policies] CommitProposals -> DEBU dd1 In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -2018-01-18 01:58:55.919 UTC [policies] GetPolicy -> DEBU dd2 Returning policy OrdererOrg/Admins for evaluation -2018-01-18 01:58:55.919 UTC [policies] CommitProposals -> DEBU dd3 In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -2018-01-18 01:58:55.919 UTC [policies] GetPolicy -> DEBU dd4 Returning policy OrdererOrg/Readers for evaluation -2018-01-18 01:58:55.919 UTC [policies] CommitProposals -> DEBU dd5 In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -2018-01-18 01:58:55.919 UTC [policies] GetPolicy -> DEBU dd6 Returning policy Org2MSP/Admins for evaluation -2018-01-18 01:58:55.919 UTC [policies] CommitProposals -> DEBU dd7 In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -2018-01-18 01:58:55.919 UTC [policies] GetPolicy -> DEBU dd8 Returning policy Writers for evaluation -2018-01-18 01:58:55.919 UTC [policies] CommitProposals -> DEBU dd9 In commit adding relative sub-policy Application/Writers to Channel -2018-01-18 01:58:55.919 UTC [policies] GetPolicy -> DEBU dda Returning policy Readers for evaluation -2018-01-18 01:58:55.919 UTC [policies] CommitProposals -> DEBU ddb In commit adding relative sub-policy Application/Readers to Channel -2018-01-18 01:58:55.919 UTC [policies] GetPolicy -> DEBU ddc Returning policy Org1MSP/Writers for evaluation -2018-01-18 01:58:55.919 UTC [policies] CommitProposals -> DEBU ddd In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -2018-01-18 01:58:55.919 UTC [policies] GetPolicy -> DEBU dde Returning policy Org1MSP/Admins for evaluation -2018-01-18 01:58:55.919 UTC [policies] CommitProposals -> DEBU ddf In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -2018-01-18 01:58:55.919 UTC [policies] GetPolicy -> DEBU de0 Returning policy Org1MSP/Readers for evaluation -2018-01-18 01:58:55.919 UTC [policies] CommitProposals -> DEBU de1 In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -2018-01-18 01:58:55.919 UTC [policies] GetPolicy -> DEBU de2 Returning policy Org2MSP/Readers for evaluation -2018-01-18 01:58:55.919 UTC [policies] CommitProposals -> DEBU de3 In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -2018-01-18 01:58:55.919 UTC [policies] GetPolicy -> DEBU de4 Returning policy Org2MSP/Writers for evaluation -2018-01-18 01:58:55.919 UTC [policies] CommitProposals -> DEBU de5 In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -2018-01-18 01:58:55.919 UTC [policies] GetPolicy -> DEBU de6 Returning policy Admins for evaluation -2018-01-18 01:58:55.919 UTC [policies] CommitProposals -> DEBU de7 In commit adding relative sub-policy Application/Admins to Channel -2018-01-18 01:58:55.920 UTC [policies] GetPolicy -> DEBU de8 Returning policy Admins for evaluation -2018-01-18 01:58:55.920 UTC [policies] GetPolicy -> DEBU de9 Returning policy Admins for evaluation -2018-01-18 01:58:55.920 UTC [policies] GetPolicy -> DEBU dea Returning policy Readers for evaluation -2018-01-18 01:58:55.920 UTC [policies] GetPolicy -> DEBU deb Returning policy Readers for evaluation -2018-01-18 01:58:55.920 UTC [policies] GetPolicy -> DEBU dec Returning policy Writers for evaluation -2018-01-18 01:58:55.920 UTC [policies] GetPolicy -> DEBU ded Returning policy Writers for evaluation -2018-01-18 01:58:55.920 UTC [policies] GetPolicy -> DEBU dee Returning policy Readers for evaluation -2018-01-18 01:58:55.920 UTC [policies] CommitProposals -> DEBU def As expected, current configuration has policy '/Channel/Readers' -2018-01-18 01:58:55.920 UTC [policies] GetPolicy -> DEBU df0 Returning policy Writers for evaluation -2018-01-18 01:58:55.920 UTC [policies] CommitProposals -> DEBU df1 As expected, current configuration has policy '/Channel/Writers' -2018-01-18 01:58:55.920 UTC [policies] GetPolicy -> DEBU df2 Returning policy Application/Readers for evaluation -2018-01-18 01:58:55.920 UTC [policies] CommitProposals -> DEBU df3 As expected, current configuration has policy '/Channel/Application/Readers' -2018-01-18 01:58:55.920 UTC [policies] GetPolicy -> DEBU df4 Returning policy Application/Writers for evaluation -2018-01-18 01:58:55.920 UTC [policies] CommitProposals -> DEBU df5 As expected, current configuration has policy '/Channel/Application/Writers' -2018-01-18 01:58:55.920 UTC [policies] GetPolicy -> DEBU df6 Returning policy Application/Admins for evaluation -2018-01-18 01:58:55.920 UTC [policies] CommitProposals -> DEBU df7 As expected, current configuration has policy '/Channel/Application/Admins' -2018-01-18 01:58:55.920 UTC [policies] GetPolicy -> DEBU df8 Returning policy Orderer/BlockValidation for evaluation -2018-01-18 01:58:55.920 UTC [policies] CommitProposals -> DEBU df9 As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -2018-01-18 01:58:55.920 UTC [orderer/multichain] addBlockSignature -> DEBU dfa &{ledgerResources:0xc420208040 chain:0xc420208da0 cutter:0xc420a51270 filters:0xc4202089e0 signer:0x1274e88 lastConfig:1 lastConfigSeq:2} -2018-01-18 01:58:55.920 UTC [orderer/multichain] addBlockSignature -> DEBU dfb &{} -2018-01-18 01:58:55.920 UTC [msp] GetLocalMSP -> DEBU dfc Returning existing local MSP -2018-01-18 01:58:55.920 UTC [msp] GetDefaultSigningIdentity -> DEBU dfd Obtaining default signing identity -2018-01-18 01:58:55.921 UTC [msp] GetLocalMSP -> DEBU dfe Returning existing local MSP -2018-01-18 01:58:55.921 UTC [msp] GetDefaultSigningIdentity -> DEBU dff Obtaining default signing identity -2018-01-18 01:58:55.921 UTC [msp/identity] Sign -> DEBU e00 Sign: plaintext: 0AFA050A0A4F7264657265724D535012...420A7B9644DC6A15942E833CA656F472 -2018-01-18 01:58:55.921 UTC [msp/identity] Sign -> DEBU e01 Sign: digest: 2600073B4B70B12F6540260C3F8D9C61B604A8B1AF79943307DBB15862D0F676 -2018-01-18 01:58:55.921 UTC [orderer/multichain] addLastConfigSignature -> DEBU e02 [channel: businesschannel] Detected lastConfigSeq transitioning from 2 to 3, setting lastConfig from 1 to 2 -2018-01-18 01:58:55.921 UTC [msp] GetLocalMSP -> DEBU e03 Returning existing local MSP -2018-01-18 01:58:55.921 UTC [msp] GetDefaultSigningIdentity -> DEBU e04 Obtaining default signing identity -2018-01-18 01:58:55.921 UTC [orderer/multichain] addLastConfigSignature -> DEBU e05 [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 -2018-01-18 01:58:55.921 UTC [msp] GetLocalMSP -> DEBU e06 Returning existing local MSP -2018-01-18 01:58:55.921 UTC [msp] GetDefaultSigningIdentity -> DEBU e07 Obtaining default signing identity -2018-01-18 01:58:55.921 UTC [msp/identity] Sign -> DEBU e08 Sign: plaintext: 08020AFA050A0A4F7264657265724D53...420A7B9644DC6A15942E833CA656F472 -2018-01-18 01:58:55.921 UTC [msp/identity] Sign -> DEBU e09 Sign: digest: 29EE8CEF8F3642B6DADA4AEF5697CD8C91AC9D31716DBBBF033ADAA61AEE158F -2018-01-18 01:58:55.924 UTC [fsblkstorage] indexBlock -> DEBU e0a Indexing block [blockNum=2, blockHash=[]byte{0x5b, 0x7c, 0x4e, 0xf2, 0x74, 0xb6, 0x7f, 0xc2, 0x96, 0x1b, 0xb2, 0x5a, 0xd4, 0x86, 0x64, 0x1e, 0xc, 0x21, 0xb0, 0xdd, 0x91, 0xb8, 0xb5, 0x9d, 0x7f, 0x79, 0xeb, 0xbd, 0x3a, 0x97, 0xb8, 0xa1} txOffsets= -txId= locPointer=offset=70, bytesLength=11970 +2018-01-18 09:29:49.277 UTC [msp] Validate -> DEBU c92 MSP Org2MSP validating identity +2018-01-18 09:29:49.278 UTC [msp] Setup -> DEBU c93 Setting up the MSP manager (3 msps) +2018-01-18 09:29:49.278 UTC [msp] Setup -> DEBU c94 MSP manager setup complete, setup 3 msps +2018-01-18 09:29:49.278 UTC [orderer/common/broadcast] Handle -> DEBU c95 [channel: businesschannel] Broadcast has successfully enqueued message of type CONFIG +2018-01-18 09:29:49.278 UTC [policies] GetPolicy -> DEBU c96 Returning policy Writers for evaluation +2018-01-18 09:29:49.278 UTC [cauthdsl] func1 -> DEBU c97 0xc420026050 gate 1516267789278983865 evaluation starts +2018-01-18 09:29:49.279 UTC [cauthdsl] func2 -> DEBU c98 0xc420026050 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:29:49.279 UTC [cauthdsl] func2 -> DEBU c99 0xc420026050 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:29:49.279 UTC [msp/identity] newIdentity -> DEBU c9a Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq +hkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz +MKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw +DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN +RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH +/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl +-----END CERTIFICATE----- +2018-01-18 09:29:49.280 UTC [cauthdsl] func2 -> DEBU c9b 0xc420026050 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +2018-01-18 09:29:49.280 UTC [cauthdsl] func2 -> DEBU c9c 0xc420026050 principal evaluation fails +2018-01-18 09:29:49.280 UTC [cauthdsl] func1 -> DEBU c9d 0xc420026050 gate 1516267789278983865 evaluation fails +2018-01-18 09:29:49.280 UTC [cauthdsl] func1 -> DEBU c9e 0xc420026078 gate 1516267789280920596 evaluation starts +2018-01-18 09:29:49.281 UTC [cauthdsl] func2 -> DEBU c9f 0xc420026078 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:29:49.281 UTC [cauthdsl] func2 -> DEBU ca0 0xc420026078 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:29:49.282 UTC [msp/identity] newIdentity -> DEBU ca1 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq +hkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz +MKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw +DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN +RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH +/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl +-----END CERTIFICATE----- +2018-01-18 09:29:49.283 UTC [orderer/common/deliver] Handle -> WARN ca2 Error reading from stream: rpc error: code = Canceled desc = context canceled +2018-01-18 09:29:49.283 UTC [orderer/main] func1 -> DEBU ca3 Closing Deliver stream +2018-01-18 09:29:49.284 UTC [orderer/common/broadcast] Handle -> WARN ca4 Error reading from stream: rpc error: code = Canceled desc = context canceled +2018-01-18 09:29:49.284 UTC [orderer/main] func1 -> DEBU ca5 Closing Broadcast stream +2018-01-18 09:29:49.287 UTC [cauthdsl] func2 -> DEBU ca6 0xc420026078 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +2018-01-18 09:29:49.287 UTC [cauthdsl] func2 -> DEBU ca7 0xc420026078 principal evaluation fails +2018-01-18 09:29:49.287 UTC [cauthdsl] func1 -> DEBU ca8 0xc420026078 gate 1516267789280920596 evaluation fails +2018-01-18 09:29:49.287 UTC [cauthdsl] func1 -> DEBU ca9 0xc420026088 gate 1516267789287971869 evaluation starts +2018-01-18 09:29:49.288 UTC [cauthdsl] func2 -> DEBU caa 0xc420026088 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:29:49.288 UTC [cauthdsl] func2 -> DEBU cab 0xc420026088 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:29:49.289 UTC [msp/identity] newIdentity -> DEBU cac Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq +hkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz +MKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw +DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN +RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH +/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl +-----END CERTIFICATE----- +2018-01-18 09:29:49.289 UTC [msp] SatisfiesPrincipal -> DEBU cad Checking if identity satisfies MEMBER role for OrdererMSP +2018-01-18 09:29:49.290 UTC [msp] Validate -> DEBU cae MSP OrdererMSP validating identity +2018-01-18 09:29:49.291 UTC [cauthdsl] func2 -> DEBU caf 0xc420026088 principal matched by identity 0 +2018-01-18 09:29:49.292 UTC [msp/identity] Verify -> DEBU cb0 Verify: digest = 00000000 3b 37 db d0 2f 07 c0 0f 09 93 92 a6 c4 1f 5c 07 |;7../.........\.| +00000010 a2 8c 8d b5 c7 44 12 43 68 81 ca f3 d1 72 0f e3 |.....D.Ch....r..| +2018-01-18 09:29:49.292 UTC [msp/identity] Verify -> DEBU cb1 Verify: sig = 00000000 30 44 02 20 0e fc 11 50 96 25 9d a1 58 54 c7 37 |0D. ...P.%..XT.7| +00000010 8a 5d 29 62 ee fb 8f 0b 69 75 55 c3 fd 6d 07 15 |.])b....iuU..m..| +00000020 ac 3b 3f 26 02 20 29 91 da 52 6a da 16 74 8f cc |.;?&. )..Rj..t..| +00000030 20 dc 28 82 b9 5e 2f 2a 23 e2 60 1d 23 ba 4b dc | .(..^/*#.`.#.K.| +00000040 bd 92 c2 87 39 d0 |....9.| +2018-01-18 09:29:49.293 UTC [cauthdsl] func2 -> DEBU cb2 0xc420026088 principal evaluation succeeds for identity 0 +2018-01-18 09:29:49.293 UTC [cauthdsl] func1 -> DEBU cb3 0xc420026088 gate 1516267789287971869 evaluation succeeds +2018-01-18 09:29:49.293 UTC [orderer/common/sigfilter] Apply -> DEBU cb4 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420ba0fc0 1 [0xc4200268f8 0xc4200269b8]}) %!s(*policies.implicitMetaPolicy=&{0xc420ba1d00 1 [0xc420026a58]})]} +2018-01-18 09:29:49.294 UTC [common/configtx] addToMap -> DEBU cb5 Adding to config map: [Groups] /Channel +2018-01-18 09:29:49.294 UTC [common/configtx] addToMap -> DEBU cb6 Adding to config map: [Groups] /Channel/Application +2018-01-18 09:29:49.294 UTC [common/configtx] addToMap -> DEBU cb7 Adding to config map: [Groups] /Channel/Application/Org2MSP +2018-01-18 09:29:49.294 UTC [common/configtx] addToMap -> DEBU cb8 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +2018-01-18 09:29:49.294 UTC [common/configtx] addToMap -> DEBU cb9 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +2018-01-18 09:29:49.294 UTC [common/configtx] addToMap -> DEBU cba Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +2018-01-18 09:29:49.294 UTC [common/configtx] addToMap -> DEBU cbb Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +2018-01-18 09:29:49.295 UTC [common/configtx] addToMap -> DEBU cbc Adding to config map: [Groups] /Channel +2018-01-18 09:29:49.295 UTC [common/configtx] addToMap -> DEBU cbd Adding to config map: [Groups] /Channel/Application +2018-01-18 09:29:49.295 UTC [common/configtx] addToMap -> DEBU cbe Adding to config map: [Groups] /Channel/Application/Org2MSP +2018-01-18 09:29:49.295 UTC [common/configtx] addToMap -> DEBU cbf Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers +2018-01-18 09:29:49.295 UTC [common/configtx] addToMap -> DEBU cc0 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +2018-01-18 09:29:49.296 UTC [common/configtx] addToMap -> DEBU cc1 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +2018-01-18 09:29:49.296 UTC [common/configtx] addToMap -> DEBU cc2 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +2018-01-18 09:29:49.296 UTC [common/configtx] addToMap -> DEBU cc3 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +2018-01-18 09:29:49.296 UTC [policies] GetPolicy -> DEBU cc4 Returning policy Admins for evaluation +2018-01-18 09:29:49.296 UTC [cauthdsl] func1 -> DEBU cc5 0xc420026b08 gate 1516267789296524190 evaluation starts +2018-01-18 09:29:49.296 UTC [cauthdsl] func2 -> DEBU cc6 0xc420026b08 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:29:49.298 UTC [cauthdsl] func2 -> DEBU cc7 0xc420026b08 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:29:49.299 UTC [msp/identity] newIdentity -> DEBU cc8 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +AXYxULZpXYDQXt1KaLI= +-----END CERTIFICATE----- +2018-01-18 09:29:49.299 UTC [msp] SatisfiesPrincipal -> DEBU cc9 Checking if identity satisfies ADMIN role for Org2MSP +2018-01-18 09:29:49.299 UTC [cauthdsl] func2 -> DEBU cca 0xc420026b08 principal matched by identity 0 +2018-01-18 09:29:49.300 UTC [msp/identity] Verify -> DEBU ccb Verify: digest = 00000000 e3 2e bc 09 2e aa 2c ee 2d d8 57 24 a8 da 75 26 |......,.-.W$..u&| +00000010 76 f4 64 21 f8 97 85 b8 3e 1d 7e 6e 42 62 03 14 |v.d!....>.~nBb..| +2018-01-18 09:29:49.300 UTC [msp/identity] Verify -> DEBU ccc Verify: sig = 00000000 30 44 02 20 48 e1 84 3e 07 f3 e5 77 3f 0a 13 70 |0D. H..>...w?..p| +00000010 88 13 09 23 43 ec 85 b3 36 94 70 17 22 ce 11 47 |...#C...6.p."..G| +00000020 bb 3f dc 05 02 20 54 76 42 4a a3 19 16 da fe 43 |.?... TvBJ.....C| +00000030 28 50 a5 02 b8 00 63 81 75 68 de 48 c5 86 e0 ee |(P....c.uh.H....| +00000040 7c 87 76 59 5d 71 ||.vY]q| +2018-01-18 09:29:49.300 UTC [cauthdsl] func2 -> DEBU ccd 0xc420026b08 principal evaluation succeeds for identity 0 +2018-01-18 09:29:49.300 UTC [cauthdsl] func1 -> DEBU cce 0xc420026b08 gate 1516267789296524190 evaluation succeeds +2018-01-18 09:29:49.301 UTC [common/configtx] recurseConfigMap -> DEBU ccf Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-18 09:29:49.301 UTC [common/configtx] recurseConfigMap -> DEBU cd0 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-18 09:29:49.330 UTC [common/configtx] recurseConfigMap -> DEBU cd1 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-18 09:29:49.342 UTC [common/configtx] recurseConfigMap -> DEBU cd2 Setting policy for key Readers to +2018-01-18 09:29:49.345 UTC [common/configtx] recurseConfigMap -> DEBU cd3 Setting policy for key Writers to +2018-01-18 09:29:49.345 UTC [common/configtx] recurseConfigMap -> DEBU cd4 Setting policy for key Admins to +2018-01-18 09:29:49.345 UTC [common/configtx] recurseConfigMap -> DEBU cd5 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-18 09:29:49.345 UTC [common/configtx] recurseConfigMap -> DEBU cd6 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-18 09:29:49.345 UTC [common/configtx] recurseConfigMap -> DEBU cd7 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-18 09:29:49.346 UTC [common/configtx] recurseConfigMap -> DEBU cd8 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-18 09:29:49.346 UTC [common/configtx] recurseConfigMap -> DEBU cd9 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-18 09:29:49.346 UTC [common/configtx] recurseConfigMap -> DEBU cda Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-18 09:29:49.346 UTC [common/configtx] recurseConfigMap -> DEBU cdb Setting policy for key BlockValidation to policy: mod_policy:"Admins" +2018-01-18 09:29:49.346 UTC [common/configtx] recurseConfigMap -> DEBU cdc Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-18 09:29:49.346 UTC [common/configtx] recurseConfigMap -> DEBU cdd Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-18 09:29:49.346 UTC [common/configtx] recurseConfigMap -> DEBU cde Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-18 09:29:49.346 UTC [common/configtx] recurseConfigMap -> DEBU cdf Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-18 09:29:49.347 UTC [common/configtx] recurseConfigMap -> DEBU ce0 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-18 09:29:49.347 UTC [common/configtx] recurseConfigMap -> DEBU ce1 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-18 09:29:49.347 UTC [common/configtx] processConfig -> DEBU ce2 Beginning new config for channel businesschannel +2018-01-18 09:29:49.347 UTC [common/config] NewStandardValues -> DEBU ce3 Initializing protos for *config.ChannelProtos +2018-01-18 09:29:49.348 UTC [common/config] initializeProtosStruct -> DEBU ce4 Processing field: HashingAlgorithm +2018-01-18 09:29:49.348 UTC [common/config] initializeProtosStruct -> DEBU ce5 Processing field: BlockDataHashingStructure +2018-01-18 09:29:49.349 UTC [common/config] initializeProtosStruct -> DEBU ce6 Processing field: OrdererAddresses +2018-01-18 09:29:49.349 UTC [common/config] initializeProtosStruct -> DEBU ce7 Processing field: Consortium +2018-01-18 09:29:49.349 UTC [policies] ProposePolicy -> DEBU ce8 Proposed new policy Admins for Channel +2018-01-18 09:29:49.350 UTC [policies] ProposePolicy -> DEBU ce9 Proposed new policy Readers for Channel +2018-01-18 09:29:49.350 UTC [policies] ProposePolicy -> DEBU cea Proposed new policy Writers for Channel +2018-01-18 09:29:49.352 UTC [common/config] NewStandardValues -> DEBU ceb Initializing protos for *config.OrdererProtos +2018-01-18 09:29:49.352 UTC [common/config] initializeProtosStruct -> DEBU cec Processing field: ConsensusType +2018-01-18 09:29:49.356 UTC [common/config] initializeProtosStruct -> DEBU ced Processing field: BatchSize +2018-01-18 09:29:49.359 UTC [common/config] initializeProtosStruct -> DEBU cee Processing field: BatchTimeout +2018-01-18 09:29:49.360 UTC [common/config] initializeProtosStruct -> DEBU cef Processing field: KafkaBrokers +2018-01-18 09:29:49.360 UTC [common/config] initializeProtosStruct -> DEBU cf0 Processing field: ChannelRestrictions +2018-01-18 09:29:49.362 UTC [policies] ProposePolicy -> DEBU cf1 Proposed new policy BlockValidation for Orderer +2018-01-18 09:29:49.362 UTC [policies] ProposePolicy -> DEBU cf2 Proposed new policy Readers for Orderer +2018-01-18 09:29:49.362 UTC [policies] ProposePolicy -> DEBU cf3 Proposed new policy Writers for Orderer +2018-01-18 09:29:49.363 UTC [policies] ProposePolicy -> DEBU cf4 Proposed new policy Admins for Orderer +2018-01-18 09:29:49.363 UTC [common/config] NewStandardValues -> DEBU cf5 Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:49.363 UTC [common/config] initializeProtosStruct -> DEBU cf6 Processing field: MSP +2018-01-18 09:29:49.363 UTC [policies] ProposePolicy -> DEBU cf7 Proposed new policy Admins for OrdererOrg +2018-01-18 09:29:49.364 UTC [policies] ProposePolicy -> DEBU cf8 Proposed new policy Readers for OrdererOrg +2018-01-18 09:29:49.364 UTC [policies] ProposePolicy -> DEBU cf9 Proposed new policy Writers for OrdererOrg +2018-01-18 09:29:49.364 UTC [common/config] NewStandardValues -> DEBU cfa Initializing protos for *struct {} +2018-01-18 09:29:49.364 UTC [policies] ProposePolicy -> DEBU cfb Proposed new policy Readers for Application +2018-01-18 09:29:49.365 UTC [policies] ProposePolicy -> DEBU cfc Proposed new policy Admins for Application +2018-01-18 09:29:49.365 UTC [policies] ProposePolicy -> DEBU cfd Proposed new policy Writers for Application +2018-01-18 09:29:49.366 UTC [common/config] NewStandardValues -> DEBU cfe Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:49.366 UTC [common/config] initializeProtosStruct -> DEBU cff Processing field: MSP +2018-01-18 09:29:49.366 UTC [common/config] NewStandardValues -> DEBU d00 Initializing protos for *config.ApplicationOrgProtos +2018-01-18 09:29:49.367 UTC [common/config] initializeProtosStruct -> DEBU d01 Processing field: AnchorPeers +2018-01-18 09:29:49.367 UTC [common/config] NewStandardValues -> DEBU d02 Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:49.367 UTC [common/config] initializeProtosStruct -> DEBU d03 Processing field: MSP +2018-01-18 09:29:49.367 UTC [policies] ProposePolicy -> DEBU d04 Proposed new policy Readers for Org1MSP +2018-01-18 09:29:49.368 UTC [policies] ProposePolicy -> DEBU d05 Proposed new policy Writers for Org1MSP +2018-01-18 09:29:49.368 UTC [policies] ProposePolicy -> DEBU d06 Proposed new policy Admins for Org1MSP +2018-01-18 09:29:49.369 UTC [common/config] NewStandardValues -> DEBU d07 Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:49.369 UTC [common/config] initializeProtosStruct -> DEBU d08 Processing field: MSP +2018-01-18 09:29:49.371 UTC [common/config] NewStandardValues -> DEBU d09 Initializing protos for *config.ApplicationOrgProtos +2018-01-18 09:29:49.373 UTC [common/config] initializeProtosStruct -> DEBU d0a Processing field: AnchorPeers +2018-01-18 09:29:49.379 UTC [common/config] NewStandardValues -> DEBU d0b Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:49.379 UTC [common/config] initializeProtosStruct -> DEBU d0c Processing field: MSP +2018-01-18 09:29:49.380 UTC [policies] ProposePolicy -> DEBU d0d Proposed new policy Admins for Org2MSP +2018-01-18 09:29:49.380 UTC [policies] ProposePolicy -> DEBU d0e Proposed new policy Readers for Org2MSP +2018-01-18 09:29:49.380 UTC [policies] ProposePolicy -> DEBU d0f Proposed new policy Writers for Org2MSP +2018-01-18 09:29:49.381 UTC [common/config] validateMSP -> DEBU d10 Setting up MSP for org OrdererOrg +2018-01-18 09:29:49.381 UTC [msp] NewBccspMsp -> DEBU d11 Creating BCCSP-based MSP instance +2018-01-18 09:29:49.382 UTC [msp] Setup -> DEBU d12 Setting up MSP instance OrdererMSP +2018-01-18 09:29:49.382 UTC [msp/identity] newIdentity -> DEBU d13 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW +gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w +XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK +BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs +KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= +-----END CERTIFICATE----- +2018-01-18 09:29:49.384 UTC [msp/identity] newIdentity -> DEBU d14 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-18 09:29:49.389 UTC [msp/identity] newIdentity -> DEBU d15 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-18 09:29:49.393 UTC [msp] Validate -> DEBU d16 MSP OrdererMSP validating identity +2018-01-18 09:29:49.393 UTC [common/config] Validate -> DEBU d17 Anchor peers for org Org1MSP are anchor_peers: +2018-01-18 09:29:49.393 UTC [common/config] validateMSP -> DEBU d18 Setting up MSP for org Org1MSP +2018-01-18 09:29:49.394 UTC [msp] NewBccspMsp -> DEBU d19 Creating BCCSP-based MSP instance +2018-01-18 09:29:49.394 UTC [msp] Setup -> DEBU d1a Setting up MSP instance Org1MSP +2018-01-18 09:29:49.394 UTC [msp/identity] newIdentity -> DEBU d1b Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf +db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx +JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi +/IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ +H7n8z1pj5w== +-----END CERTIFICATE----- +2018-01-18 09:29:49.395 UTC [msp/identity] newIdentity -> DEBU d1c Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +xHTBvxfK6mAzmUitFmY= +-----END CERTIFICATE----- +2018-01-18 09:29:49.396 UTC [msp/identity] newIdentity -> DEBU d1d Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +xHTBvxfK6mAzmUitFmY= +-----END CERTIFICATE----- +2018-01-18 09:29:49.397 UTC [msp] Validate -> DEBU d1e MSP Org1MSP validating identity +2018-01-18 09:29:49.397 UTC [common/config] Validate -> DEBU d1f Anchor peers for org Org2MSP are anchor_peers: +2018-01-18 09:29:49.397 UTC [common/config] validateMSP -> DEBU d20 Setting up MSP for org Org2MSP +2018-01-18 09:29:49.397 UTC [msp] NewBccspMsp -> DEBU d21 Creating BCCSP-based MSP instance +2018-01-18 09:29:49.397 UTC [msp] Setup -> DEBU d22 Setting up MSP instance Org2MSP +2018-01-18 09:29:49.397 UTC [msp/identity] newIdentity -> DEBU d23 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 +sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ +xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv +WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk +SCjyRdD3aQ== +-----END CERTIFICATE----- +2018-01-18 09:29:49.398 UTC [msp/identity] newIdentity -> DEBU d24 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +AXYxULZpXYDQXt1KaLI= +-----END CERTIFICATE----- +2018-01-18 09:29:49.399 UTC [msp/identity] newIdentity -> DEBU d25 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +AXYxULZpXYDQXt1KaLI= +-----END CERTIFICATE----- +2018-01-18 09:29:49.400 UTC [msp] Validate -> DEBU d26 MSP Org2MSP validating identity +2018-01-18 09:29:49.401 UTC [msp] Setup -> DEBU d27 Setting up the MSP manager (3 msps) +2018-01-18 09:29:49.401 UTC [msp] Setup -> DEBU d28 MSP manager setup complete, setup 3 msps +2018-01-18 09:29:49.401 UTC [orderer/common/blockcutter] Ordered -> DEBU d29 Found message which requested to be isolated, cutting into its own batch +2018-01-18 09:29:49.401 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU d2a retrieveBlockByNumber() - blockNum = [1] +2018-01-18 09:29:49.401 UTC [fsblkstorage] newBlockfileStream -> DEBU d2b newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[11934] +2018-01-18 09:29:49.401 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU d2c Remaining bytes=[13733], Going to peek [8] bytes +2018-01-18 09:29:49.402 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU d2d Returning blockbytes - length=[13731], placementInfo={fileNum=[0], startOffset=[11934], bytesOffset=[11936]} +2018-01-18 09:29:49.402 UTC [common/configtx] addToMap -> DEBU d2e Adding to config map: [Groups] /Channel +2018-01-18 09:29:49.402 UTC [common/configtx] addToMap -> DEBU d2f Adding to config map: [Groups] /Channel/Orderer +2018-01-18 09:29:49.403 UTC [common/configtx] addToMap -> DEBU d30 Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +2018-01-18 09:29:49.404 UTC [common/configtx] addToMap -> DEBU d31 Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +2018-01-18 09:29:49.404 UTC [common/configtx] addToMap -> DEBU d32 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +2018-01-18 09:29:49.405 UTC [common/configtx] addToMap -> DEBU d33 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +2018-01-18 09:29:49.405 UTC [common/configtx] addToMap -> DEBU d34 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +2018-01-18 09:29:49.405 UTC [common/configtx] addToMap -> DEBU d35 Adding to config map: [Values] /Channel/Orderer/ConsensusType +2018-01-18 09:29:49.405 UTC [common/configtx] addToMap -> DEBU d36 Adding to config map: [Values] /Channel/Orderer/BatchSize +2018-01-18 09:29:49.405 UTC [common/configtx] addToMap -> DEBU d37 Adding to config map: [Values] /Channel/Orderer/BatchTimeout +2018-01-18 09:29:49.405 UTC [common/configtx] addToMap -> DEBU d38 Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +2018-01-18 09:29:49.406 UTC [common/configtx] addToMap -> DEBU d39 Adding to config map: [Policy] /Channel/Orderer/BlockValidation +2018-01-18 09:29:49.406 UTC [common/configtx] addToMap -> DEBU d3a Adding to config map: [Policy] /Channel/Orderer/Readers +2018-01-18 09:29:49.406 UTC [common/configtx] addToMap -> DEBU d3b Adding to config map: [Policy] /Channel/Orderer/Writers +2018-01-18 09:29:49.406 UTC [common/configtx] addToMap -> DEBU d3c Adding to config map: [Policy] /Channel/Orderer/Admins +2018-01-18 09:29:49.406 UTC [common/configtx] addToMap -> DEBU d3d Adding to config map: [Groups] /Channel/Application +2018-01-18 09:29:49.406 UTC [common/configtx] addToMap -> DEBU d3e Adding to config map: [Groups] /Channel/Application/Org2MSP +2018-01-18 09:29:49.406 UTC [common/configtx] addToMap -> DEBU d3f Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers +2018-01-18 09:29:49.406 UTC [common/configtx] addToMap -> DEBU d40 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +2018-01-18 09:29:49.406 UTC [common/configtx] addToMap -> DEBU d41 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +2018-01-18 09:29:49.407 UTC [common/configtx] addToMap -> DEBU d42 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +2018-01-18 09:29:49.407 UTC [common/configtx] addToMap -> DEBU d43 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +2018-01-18 09:29:49.407 UTC [common/configtx] addToMap -> DEBU d44 Adding to config map: [Groups] /Channel/Application/Org1MSP +2018-01-18 09:29:49.407 UTC [common/configtx] addToMap -> DEBU d45 Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +2018-01-18 09:29:49.407 UTC [common/configtx] addToMap -> DEBU d46 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +2018-01-18 09:29:49.408 UTC [common/configtx] addToMap -> DEBU d47 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +2018-01-18 09:29:49.408 UTC [common/configtx] addToMap -> DEBU d48 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +2018-01-18 09:29:49.408 UTC [common/configtx] addToMap -> DEBU d49 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +2018-01-18 09:29:49.408 UTC [common/configtx] addToMap -> DEBU d4a Adding to config map: [Policy] /Channel/Application/Writers +2018-01-18 09:29:49.408 UTC [common/configtx] addToMap -> DEBU d4b Adding to config map: [Policy] /Channel/Application/Readers +2018-01-18 09:29:49.408 UTC [common/configtx] addToMap -> DEBU d4c Adding to config map: [Policy] /Channel/Application/Admins +2018-01-18 09:29:49.408 UTC [common/configtx] addToMap -> DEBU d4d Adding to config map: [Values] /Channel/BlockDataHashingStructure +2018-01-18 09:29:49.409 UTC [common/configtx] addToMap -> DEBU d4e Adding to config map: [Values] /Channel/OrdererAddresses +2018-01-18 09:29:49.409 UTC [common/configtx] addToMap -> DEBU d4f Adding to config map: [Values] /Channel/HashingAlgorithm +2018-01-18 09:29:49.409 UTC [common/configtx] addToMap -> DEBU d50 Adding to config map: [Values] /Channel/Consortium +2018-01-18 09:29:49.409 UTC [common/configtx] addToMap -> DEBU d51 Adding to config map: [Policy] /Channel/Writers +2018-01-18 09:29:49.409 UTC [common/configtx] addToMap -> DEBU d52 Adding to config map: [Policy] /Channel/Admins +2018-01-18 09:29:49.410 UTC [common/configtx] addToMap -> DEBU d53 Adding to config map: [Policy] /Channel/Readers +2018-01-18 09:29:49.410 UTC [common/configtx] addToMap -> DEBU d54 Adding to config map: [Groups] /Channel +2018-01-18 09:29:49.410 UTC [common/configtx] addToMap -> DEBU d55 Adding to config map: [Groups] /Channel/Application +2018-01-18 09:29:49.410 UTC [common/configtx] addToMap -> DEBU d56 Adding to config map: [Groups] /Channel/Application/Org2MSP +2018-01-18 09:29:49.410 UTC [common/configtx] addToMap -> DEBU d57 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +2018-01-18 09:29:49.410 UTC [common/configtx] addToMap -> DEBU d58 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +2018-01-18 09:29:49.412 UTC [common/configtx] addToMap -> DEBU d59 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +2018-01-18 09:29:49.413 UTC [common/configtx] addToMap -> DEBU d5a Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +2018-01-18 09:29:49.414 UTC [common/configtx] addToMap -> DEBU d5b Adding to config map: [Groups] /Channel +2018-01-18 09:29:49.414 UTC [common/configtx] addToMap -> DEBU d5c Adding to config map: [Groups] /Channel/Application +2018-01-18 09:29:49.414 UTC [common/configtx] addToMap -> DEBU d5d Adding to config map: [Groups] /Channel/Application/Org2MSP +2018-01-18 09:29:49.415 UTC [common/configtx] addToMap -> DEBU d5e Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers +2018-01-18 09:29:49.415 UTC [common/configtx] addToMap -> DEBU d5f Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +2018-01-18 09:29:49.416 UTC [common/configtx] addToMap -> DEBU d60 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +2018-01-18 09:29:49.416 UTC [common/configtx] addToMap -> DEBU d61 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +2018-01-18 09:29:49.416 UTC [common/configtx] addToMap -> DEBU d62 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +2018-01-18 09:29:49.416 UTC [policies] GetPolicy -> DEBU d63 Returning policy Admins for evaluation +2018-01-18 09:29:49.417 UTC [cauthdsl] func1 -> DEBU d64 0xc42014a470 gate 1516267789417008418 evaluation starts +2018-01-18 09:29:49.417 UTC [cauthdsl] func2 -> DEBU d65 0xc42014a470 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:29:49.417 UTC [cauthdsl] func2 -> DEBU d66 0xc42014a470 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:29:49.418 UTC [msp/identity] newIdentity -> DEBU d67 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +AXYxULZpXYDQXt1KaLI= +-----END CERTIFICATE----- +2018-01-18 09:29:49.419 UTC [msp] SatisfiesPrincipal -> DEBU d68 Checking if identity satisfies ADMIN role for Org2MSP +2018-01-18 09:29:49.420 UTC [cauthdsl] func2 -> DEBU d69 0xc42014a470 principal matched by identity 0 +2018-01-18 09:29:49.420 UTC [msp/identity] Verify -> DEBU d6a Verify: digest = 00000000 e3 2e bc 09 2e aa 2c ee 2d d8 57 24 a8 da 75 26 |......,.-.W$..u&| +00000010 76 f4 64 21 f8 97 85 b8 3e 1d 7e 6e 42 62 03 14 |v.d!....>.~nBb..| +2018-01-18 09:29:49.420 UTC [msp/identity] Verify -> DEBU d6b Verify: sig = 00000000 30 44 02 20 48 e1 84 3e 07 f3 e5 77 3f 0a 13 70 |0D. H..>...w?..p| +00000010 88 13 09 23 43 ec 85 b3 36 94 70 17 22 ce 11 47 |...#C...6.p."..G| +00000020 bb 3f dc 05 02 20 54 76 42 4a a3 19 16 da fe 43 |.?... TvBJ.....C| +00000030 28 50 a5 02 b8 00 63 81 75 68 de 48 c5 86 e0 ee |(P....c.uh.H....| +00000040 7c 87 76 59 5d 71 ||.vY]q| +2018-01-18 09:29:49.421 UTC [cauthdsl] func2 -> DEBU d6c 0xc42014a470 principal evaluation succeeds for identity 0 +2018-01-18 09:29:49.421 UTC [cauthdsl] func1 -> DEBU d6d 0xc42014a470 gate 1516267789417008418 evaluation succeeds +2018-01-18 09:29:49.422 UTC [common/configtx] recurseConfigMap -> DEBU d6e Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-18 09:29:49.422 UTC [common/configtx] recurseConfigMap -> DEBU d6f Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-18 09:29:49.422 UTC [common/configtx] recurseConfigMap -> DEBU d70 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-18 09:29:49.422 UTC [common/configtx] recurseConfigMap -> DEBU d71 Setting policy for key Admins to +2018-01-18 09:29:49.422 UTC [common/configtx] recurseConfigMap -> DEBU d72 Setting policy for key Readers to +2018-01-18 09:29:49.422 UTC [common/configtx] recurseConfigMap -> DEBU d73 Setting policy for key Writers to +2018-01-18 09:29:49.422 UTC [common/configtx] recurseConfigMap -> DEBU d74 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-18 09:29:49.422 UTC [common/configtx] recurseConfigMap -> DEBU d75 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-18 09:29:49.422 UTC [common/configtx] recurseConfigMap -> DEBU d76 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-18 09:29:49.422 UTC [common/configtx] recurseConfigMap -> DEBU d77 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-18 09:29:49.422 UTC [common/configtx] recurseConfigMap -> DEBU d78 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-18 09:29:49.422 UTC [common/configtx] recurseConfigMap -> DEBU d79 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-18 09:29:49.422 UTC [common/configtx] recurseConfigMap -> DEBU d7a Setting policy for key BlockValidation to policy: mod_policy:"Admins" +2018-01-18 09:29:49.422 UTC [common/configtx] recurseConfigMap -> DEBU d7b Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-18 09:29:49.422 UTC [common/configtx] recurseConfigMap -> DEBU d7c Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-18 09:29:49.422 UTC [common/configtx] recurseConfigMap -> DEBU d7d Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-18 09:29:49.422 UTC [common/configtx] recurseConfigMap -> DEBU d7e Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-18 09:29:49.422 UTC [common/configtx] recurseConfigMap -> DEBU d7f Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-18 09:29:49.422 UTC [common/configtx] recurseConfigMap -> DEBU d80 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-18 09:29:49.424 UTC [common/configtx] processConfig -> DEBU d81 Beginning new config for channel businesschannel +2018-01-18 09:29:49.424 UTC [common/config] NewStandardValues -> DEBU d82 Initializing protos for *config.ChannelProtos +2018-01-18 09:29:49.424 UTC [common/config] initializeProtosStruct -> DEBU d83 Processing field: HashingAlgorithm +2018-01-18 09:29:49.424 UTC [common/config] initializeProtosStruct -> DEBU d84 Processing field: BlockDataHashingStructure +2018-01-18 09:29:49.424 UTC [common/config] initializeProtosStruct -> DEBU d85 Processing field: OrdererAddresses +2018-01-18 09:29:49.424 UTC [common/config] initializeProtosStruct -> DEBU d86 Processing field: Consortium +2018-01-18 09:29:49.425 UTC [policies] ProposePolicy -> DEBU d87 Proposed new policy Writers for Channel +2018-01-18 09:29:49.425 UTC [policies] ProposePolicy -> DEBU d88 Proposed new policy Admins for Channel +2018-01-18 09:29:49.425 UTC [policies] ProposePolicy -> DEBU d89 Proposed new policy Readers for Channel +2018-01-18 09:29:49.425 UTC [common/config] NewStandardValues -> DEBU d8a Initializing protos for *struct {} +2018-01-18 09:29:49.425 UTC [policies] ProposePolicy -> DEBU d8b Proposed new policy Writers for Application +2018-01-18 09:29:49.425 UTC [policies] ProposePolicy -> DEBU d8c Proposed new policy Readers for Application +2018-01-18 09:29:49.425 UTC [policies] ProposePolicy -> DEBU d8d Proposed new policy Admins for Application +2018-01-18 09:29:49.425 UTC [common/config] NewStandardValues -> DEBU d8e Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:49.425 UTC [common/config] initializeProtosStruct -> DEBU d8f Processing field: MSP +2018-01-18 09:29:49.425 UTC [common/config] NewStandardValues -> DEBU d90 Initializing protos for *config.ApplicationOrgProtos +2018-01-18 09:29:49.425 UTC [common/config] initializeProtosStruct -> DEBU d91 Processing field: AnchorPeers +2018-01-18 09:29:49.425 UTC [common/config] NewStandardValues -> DEBU d92 Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:49.425 UTC [common/config] initializeProtosStruct -> DEBU d93 Processing field: MSP +2018-01-18 09:29:49.426 UTC [policies] ProposePolicy -> DEBU d94 Proposed new policy Writers for Org1MSP +2018-01-18 09:29:49.426 UTC [policies] ProposePolicy -> DEBU d95 Proposed new policy Admins for Org1MSP +2018-01-18 09:29:49.426 UTC [policies] ProposePolicy -> DEBU d96 Proposed new policy Readers for Org1MSP +2018-01-18 09:29:49.426 UTC [common/config] NewStandardValues -> DEBU d97 Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:49.426 UTC [common/config] initializeProtosStruct -> DEBU d98 Processing field: MSP +2018-01-18 09:29:49.427 UTC [common/config] NewStandardValues -> DEBU d99 Initializing protos for *config.ApplicationOrgProtos +2018-01-18 09:29:49.427 UTC [common/config] initializeProtosStruct -> DEBU d9a Processing field: AnchorPeers +2018-01-18 09:29:49.427 UTC [common/config] NewStandardValues -> DEBU d9b Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:49.427 UTC [common/config] initializeProtosStruct -> DEBU d9c Processing field: MSP +2018-01-18 09:29:49.427 UTC [policies] ProposePolicy -> DEBU d9d Proposed new policy Readers for Org2MSP +2018-01-18 09:29:49.427 UTC [policies] ProposePolicy -> DEBU d9e Proposed new policy Writers for Org2MSP +2018-01-18 09:29:49.427 UTC [policies] ProposePolicy -> DEBU d9f Proposed new policy Admins for Org2MSP +2018-01-18 09:29:49.427 UTC [common/config] NewStandardValues -> DEBU da0 Initializing protos for *config.OrdererProtos +2018-01-18 09:29:49.427 UTC [common/config] initializeProtosStruct -> DEBU da1 Processing field: ConsensusType +2018-01-18 09:29:49.428 UTC [common/config] initializeProtosStruct -> DEBU da2 Processing field: BatchSize +2018-01-18 09:29:49.428 UTC [common/config] initializeProtosStruct -> DEBU da3 Processing field: BatchTimeout +2018-01-18 09:29:49.428 UTC [common/config] initializeProtosStruct -> DEBU da4 Processing field: KafkaBrokers +2018-01-18 09:29:49.428 UTC [common/config] initializeProtosStruct -> DEBU da5 Processing field: ChannelRestrictions +2018-01-18 09:29:49.428 UTC [policies] ProposePolicy -> DEBU da6 Proposed new policy Readers for Orderer +2018-01-18 09:29:49.428 UTC [policies] ProposePolicy -> DEBU da7 Proposed new policy Writers for Orderer +2018-01-18 09:29:49.428 UTC [policies] ProposePolicy -> DEBU da8 Proposed new policy Admins for Orderer +2018-01-18 09:29:49.428 UTC [policies] ProposePolicy -> DEBU da9 Proposed new policy BlockValidation for Orderer +2018-01-18 09:29:49.428 UTC [common/config] NewStandardValues -> DEBU daa Initializing protos for *config.OrganizationProtos +2018-01-18 09:29:49.428 UTC [common/config] initializeProtosStruct -> DEBU dab Processing field: MSP +2018-01-18 09:29:49.428 UTC [policies] ProposePolicy -> DEBU dac Proposed new policy Admins for OrdererOrg +2018-01-18 09:29:49.428 UTC [policies] ProposePolicy -> DEBU dad Proposed new policy Readers for OrdererOrg +2018-01-18 09:29:49.428 UTC [policies] ProposePolicy -> DEBU dae Proposed new policy Writers for OrdererOrg +2018-01-18 09:29:49.428 UTC [common/config] Validate -> DEBU daf Anchor peers for org Org1MSP are anchor_peers: +2018-01-18 09:29:49.428 UTC [common/config] validateMSP -> DEBU db0 Setting up MSP for org Org1MSP +2018-01-18 09:29:49.428 UTC [msp] NewBccspMsp -> DEBU db1 Creating BCCSP-based MSP instance +2018-01-18 09:29:49.428 UTC [msp] Setup -> DEBU db2 Setting up MSP instance Org1MSP +2018-01-18 09:29:49.429 UTC [msp/identity] newIdentity -> DEBU db3 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf +db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx +JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi +/IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ +H7n8z1pj5w== +-----END CERTIFICATE----- +2018-01-18 09:29:49.429 UTC [msp/identity] newIdentity -> DEBU db4 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +xHTBvxfK6mAzmUitFmY= +-----END CERTIFICATE----- +2018-01-18 09:29:49.430 UTC [msp/identity] newIdentity -> DEBU db5 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +xHTBvxfK6mAzmUitFmY= +-----END CERTIFICATE----- +2018-01-18 09:29:49.431 UTC [msp] Validate -> DEBU db6 MSP Org1MSP validating identity +2018-01-18 09:29:49.432 UTC [common/config] Validate -> DEBU db7 Anchor peers for org Org2MSP are anchor_peers: +2018-01-18 09:29:49.432 UTC [common/config] validateMSP -> DEBU db8 Setting up MSP for org Org2MSP +2018-01-18 09:29:49.432 UTC [msp] NewBccspMsp -> DEBU db9 Creating BCCSP-based MSP instance +2018-01-18 09:29:49.432 UTC [msp] Setup -> DEBU dba Setting up MSP instance Org2MSP +2018-01-18 09:29:49.432 UTC [msp/identity] newIdentity -> DEBU dbb Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 +sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ +xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv +WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk +SCjyRdD3aQ== +-----END CERTIFICATE----- +2018-01-18 09:29:49.433 UTC [msp/identity] newIdentity -> DEBU dbc Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +AXYxULZpXYDQXt1KaLI= +-----END CERTIFICATE----- +2018-01-18 09:29:49.433 UTC [msp/identity] newIdentity -> DEBU dbd Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +AXYxULZpXYDQXt1KaLI= +-----END CERTIFICATE----- +2018-01-18 09:29:49.434 UTC [msp] Validate -> DEBU dbe MSP Org2MSP validating identity +2018-01-18 09:29:49.436 UTC [common/config] validateMSP -> DEBU dbf Setting up MSP for org OrdererOrg +2018-01-18 09:29:49.436 UTC [msp] NewBccspMsp -> DEBU dc0 Creating BCCSP-based MSP instance +2018-01-18 09:29:49.436 UTC [msp] Setup -> DEBU dc1 Setting up MSP instance OrdererMSP +2018-01-18 09:29:49.437 UTC [msp/identity] newIdentity -> DEBU dc2 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW +gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w +XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK +BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs +KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= +-----END CERTIFICATE----- +2018-01-18 09:29:49.437 UTC [msp/identity] newIdentity -> DEBU dc3 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-18 09:29:49.438 UTC [msp/identity] newIdentity -> DEBU dc4 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-18 09:29:49.439 UTC [msp] Validate -> DEBU dc5 MSP OrdererMSP validating identity +2018-01-18 09:29:49.439 UTC [msp] Setup -> DEBU dc6 Setting up the MSP manager (3 msps) +2018-01-18 09:29:49.439 UTC [msp] Setup -> DEBU dc7 MSP manager setup complete, setup 3 msps +2018-01-18 09:29:49.439 UTC [policies] GetPolicy -> DEBU dc8 Returning policy Writers for evaluation +2018-01-18 09:29:49.439 UTC [policies] CommitProposals -> DEBU dc9 In commit adding relative sub-policy Org1MSP/Writers to Application +2018-01-18 09:29:49.439 UTC [policies] GetPolicy -> DEBU dca Returning policy Admins for evaluation +2018-01-18 09:29:49.439 UTC [policies] CommitProposals -> DEBU dcb In commit adding relative sub-policy Org1MSP/Admins to Application +2018-01-18 09:29:49.439 UTC [policies] GetPolicy -> DEBU dcc Returning policy Readers for evaluation +2018-01-18 09:29:49.439 UTC [policies] CommitProposals -> DEBU dcd In commit adding relative sub-policy Org1MSP/Readers to Application +2018-01-18 09:29:49.440 UTC [policies] GetPolicy -> DEBU dce Returning policy Readers for evaluation +2018-01-18 09:29:49.440 UTC [policies] CommitProposals -> DEBU dcf In commit adding relative sub-policy Org2MSP/Readers to Application +2018-01-18 09:29:49.440 UTC [policies] GetPolicy -> DEBU dd0 Returning policy Writers for evaluation +2018-01-18 09:29:49.440 UTC [policies] CommitProposals -> DEBU dd1 In commit adding relative sub-policy Org2MSP/Writers to Application +2018-01-18 09:29:49.440 UTC [policies] GetPolicy -> DEBU dd2 Returning policy Admins for evaluation +2018-01-18 09:29:49.440 UTC [policies] CommitProposals -> DEBU dd3 In commit adding relative sub-policy Org2MSP/Admins to Application +2018-01-18 09:29:49.440 UTC [policies] GetPolicy -> DEBU dd4 Returning policy Writers for evaluation +2018-01-18 09:29:49.440 UTC [policies] GetPolicy -> DEBU dd5 Returning policy Writers for evaluation +2018-01-18 09:29:49.440 UTC [policies] GetPolicy -> DEBU dd6 Returning policy Readers for evaluation +2018-01-18 09:29:49.440 UTC [policies] GetPolicy -> DEBU dd7 Returning policy Readers for evaluation +2018-01-18 09:29:49.440 UTC [policies] GetPolicy -> DEBU dd8 Returning policy Admins for evaluation +2018-01-18 09:29:49.440 UTC [policies] GetPolicy -> DEBU dd9 Returning policy Admins for evaluation +2018-01-18 09:29:49.440 UTC [policies] GetPolicy -> DEBU dda Returning policy Admins for evaluation +2018-01-18 09:29:49.440 UTC [policies] CommitProposals -> DEBU ddb In commit adding relative sub-policy OrdererOrg/Admins to Orderer +2018-01-18 09:29:49.440 UTC [policies] GetPolicy -> DEBU ddc Returning policy Readers for evaluation +2018-01-18 09:29:49.440 UTC [policies] CommitProposals -> DEBU ddd In commit adding relative sub-policy OrdererOrg/Readers to Orderer +2018-01-18 09:29:49.440 UTC [policies] GetPolicy -> DEBU dde Returning policy Writers for evaluation +2018-01-18 09:29:49.440 UTC [policies] CommitProposals -> DEBU ddf In commit adding relative sub-policy OrdererOrg/Writers to Orderer +2018-01-18 09:29:49.440 UTC [policies] GetPolicy -> DEBU de0 Returning policy Readers for evaluation +2018-01-18 09:29:49.440 UTC [policies] GetPolicy -> DEBU de1 Returning policy Writers for evaluation +2018-01-18 09:29:49.440 UTC [policies] GetPolicy -> DEBU de2 Returning policy Admins for evaluation +2018-01-18 09:29:49.440 UTC [policies] GetPolicy -> DEBU de3 Returning policy Writers for evaluation +2018-01-18 09:29:49.440 UTC [policies] GetPolicy -> DEBU de4 Returning policy Admins for evaluation +2018-01-18 09:29:49.440 UTC [policies] CommitProposals -> DEBU de5 In commit adding relative sub-policy Application/Admins to Channel +2018-01-18 09:29:49.440 UTC [policies] GetPolicy -> DEBU de6 Returning policy Org1MSP/Readers for evaluation +2018-01-18 09:29:49.440 UTC [policies] CommitProposals -> DEBU de7 In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +2018-01-18 09:29:49.440 UTC [policies] GetPolicy -> DEBU de8 Returning policy Org2MSP/Admins for evaluation +2018-01-18 09:29:49.440 UTC [policies] CommitProposals -> DEBU de9 In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +2018-01-18 09:29:49.441 UTC [policies] GetPolicy -> DEBU dea Returning policy Org2MSP/Writers for evaluation +2018-01-18 09:29:49.441 UTC [policies] CommitProposals -> DEBU deb In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +2018-01-18 09:29:49.441 UTC [policies] GetPolicy -> DEBU dec Returning policy Writers for evaluation +2018-01-18 09:29:49.441 UTC [policies] CommitProposals -> DEBU ded In commit adding relative sub-policy Application/Writers to Channel +2018-01-18 09:29:49.441 UTC [policies] GetPolicy -> DEBU dee Returning policy Readers for evaluation +2018-01-18 09:29:49.441 UTC [policies] CommitProposals -> DEBU def In commit adding relative sub-policy Application/Readers to Channel +2018-01-18 09:29:49.441 UTC [policies] GetPolicy -> DEBU df0 Returning policy Org1MSP/Writers for evaluation +2018-01-18 09:29:49.441 UTC [policies] CommitProposals -> DEBU df1 In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +2018-01-18 09:29:49.441 UTC [policies] GetPolicy -> DEBU df2 Returning policy Org1MSP/Admins for evaluation +2018-01-18 09:29:49.441 UTC [policies] CommitProposals -> DEBU df3 In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +2018-01-18 09:29:49.441 UTC [policies] GetPolicy -> DEBU df4 Returning policy Org2MSP/Readers for evaluation +2018-01-18 09:29:49.442 UTC [policies] CommitProposals -> DEBU df5 In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +2018-01-18 09:29:49.442 UTC [policies] GetPolicy -> DEBU df6 Returning policy Writers for evaluation +2018-01-18 09:29:49.442 UTC [policies] CommitProposals -> DEBU df7 In commit adding relative sub-policy Orderer/Writers to Channel +2018-01-18 09:29:49.442 UTC [policies] GetPolicy -> DEBU df8 Returning policy Admins for evaluation +2018-01-18 09:29:49.442 UTC [policies] CommitProposals -> DEBU df9 In commit adding relative sub-policy Orderer/Admins to Channel +2018-01-18 09:29:49.442 UTC [policies] GetPolicy -> DEBU dfa Returning policy BlockValidation for evaluation +2018-01-18 09:29:49.443 UTC [policies] CommitProposals -> DEBU dfb In commit adding relative sub-policy Orderer/BlockValidation to Channel +2018-01-18 09:29:49.443 UTC [policies] GetPolicy -> DEBU dfc Returning policy OrdererOrg/Admins for evaluation +2018-01-18 09:29:49.443 UTC [policies] CommitProposals -> DEBU dfd In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +2018-01-18 09:29:49.443 UTC [policies] GetPolicy -> DEBU dfe Returning policy OrdererOrg/Readers for evaluation +2018-01-18 09:29:49.443 UTC [policies] CommitProposals -> DEBU dff In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +2018-01-18 09:29:49.445 UTC [policies] GetPolicy -> DEBU e00 Returning policy OrdererOrg/Writers for evaluation +2018-01-18 09:29:49.445 UTC [policies] CommitProposals -> DEBU e01 In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +2018-01-18 09:29:49.445 UTC [policies] GetPolicy -> DEBU e02 Returning policy Readers for evaluation +2018-01-18 09:29:49.446 UTC [policies] CommitProposals -> DEBU e03 In commit adding relative sub-policy Orderer/Readers to Channel +2018-01-18 09:29:49.446 UTC [policies] GetPolicy -> DEBU e04 Returning policy Writers for evaluation +2018-01-18 09:29:49.446 UTC [policies] GetPolicy -> DEBU e05 Returning policy Writers for evaluation +2018-01-18 09:29:49.447 UTC [policies] GetPolicy -> DEBU e06 Returning policy Admins for evaluation +2018-01-18 09:29:49.447 UTC [policies] GetPolicy -> DEBU e07 Returning policy Admins for evaluation +2018-01-18 09:29:49.447 UTC [policies] GetPolicy -> DEBU e08 Returning policy Readers for evaluation +2018-01-18 09:29:49.447 UTC [policies] GetPolicy -> DEBU e09 Returning policy Readers for evaluation +2018-01-18 09:29:49.447 UTC [policies] GetPolicy -> DEBU e0a Returning policy Readers for evaluation +2018-01-18 09:29:49.447 UTC [policies] CommitProposals -> DEBU e0b As expected, current configuration has policy '/Channel/Readers' +2018-01-18 09:29:49.448 UTC [policies] GetPolicy -> DEBU e0c Returning policy Writers for evaluation +2018-01-18 09:29:49.448 UTC [policies] CommitProposals -> DEBU e0d As expected, current configuration has policy '/Channel/Writers' +2018-01-18 09:29:49.448 UTC [policies] GetPolicy -> DEBU e0e Returning policy Application/Readers for evaluation +2018-01-18 09:29:49.448 UTC [policies] CommitProposals -> DEBU e0f As expected, current configuration has policy '/Channel/Application/Readers' +2018-01-18 09:29:49.448 UTC [policies] GetPolicy -> DEBU e10 Returning policy Application/Writers for evaluation +2018-01-18 09:29:49.448 UTC [policies] CommitProposals -> DEBU e11 As expected, current configuration has policy '/Channel/Application/Writers' +2018-01-18 09:29:49.448 UTC [policies] GetPolicy -> DEBU e12 Returning policy Application/Admins for evaluation +2018-01-18 09:29:49.448 UTC [policies] CommitProposals -> DEBU e13 As expected, current configuration has policy '/Channel/Application/Admins' +2018-01-18 09:29:49.448 UTC [policies] GetPolicy -> DEBU e14 Returning policy Orderer/BlockValidation for evaluation +2018-01-18 09:29:49.448 UTC [policies] CommitProposals -> DEBU e15 As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +2018-01-18 09:29:49.448 UTC [orderer/multichain] addBlockSignature -> DEBU e16 &{ledgerResources:0xc4209b5140 chain:0xc4209b5a00 cutter:0xc420863b80 filters:0xc4209b5640 signer:0x1274e88 lastConfig:1 lastConfigSeq:2} +2018-01-18 09:29:49.449 UTC [orderer/multichain] addBlockSignature -> DEBU e17 &{} +2018-01-18 09:29:49.449 UTC [msp] GetLocalMSP -> DEBU e18 Returning existing local MSP +2018-01-18 09:29:49.449 UTC [msp] GetDefaultSigningIdentity -> DEBU e19 Obtaining default signing identity +2018-01-18 09:29:49.449 UTC [msp] GetLocalMSP -> DEBU e1a Returning existing local MSP +2018-01-18 09:29:49.449 UTC [msp] GetDefaultSigningIdentity -> DEBU e1b Obtaining default signing identity +2018-01-18 09:29:49.449 UTC [msp/identity] Sign -> DEBU e1c Sign: plaintext: 0AFA050A0A4F7264657265724D535012...E575133E22EB87D4110A2391BC2D310A +2018-01-18 09:29:49.449 UTC [msp/identity] Sign -> DEBU e1d Sign: digest: 310D9A02DB59D74D3770579D924AF0C22EB48F1D8A72E8192EF494C1354570FB +2018-01-18 09:29:49.450 UTC [orderer/multichain] addLastConfigSignature -> DEBU e1e [channel: businesschannel] Detected lastConfigSeq transitioning from 2 to 3, setting lastConfig from 1 to 2 +2018-01-18 09:29:49.450 UTC [msp] GetLocalMSP -> DEBU e1f Returning existing local MSP +2018-01-18 09:29:49.450 UTC [msp] GetDefaultSigningIdentity -> DEBU e20 Obtaining default signing identity +2018-01-18 09:29:49.450 UTC [orderer/multichain] addLastConfigSignature -> DEBU e21 [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 +2018-01-18 09:29:49.450 UTC [msp] GetLocalMSP -> DEBU e22 Returning existing local MSP +2018-01-18 09:29:49.450 UTC [msp] GetDefaultSigningIdentity -> DEBU e23 Obtaining default signing identity +2018-01-18 09:29:49.450 UTC [msp/identity] Sign -> DEBU e24 Sign: plaintext: 08020AFA050A0A4F7264657265724D53...E575133E22EB87D4110A2391BC2D310A +2018-01-18 09:29:49.450 UTC [msp/identity] Sign -> DEBU e25 Sign: digest: 9D164C09BDED22C62ACE903A4F32EE2574CA9486A9047DE9768586A97D66D4CF +2018-01-18 09:29:49.456 UTC [fsblkstorage] indexBlock -> DEBU e26 Indexing block [blockNum=2, blockHash=[]byte{0xee, 0x42, 0x73, 0x43, 0x9f, 0x78, 0x50, 0xc6, 0xa0, 0xfa, 0x48, 0x1, 0x7b, 0x5c, 0xa5, 0xf0, 0xab, 0x77, 0x31, 0x9d, 0xaf, 0x30, 0x17, 0xcc, 0x6f, 0xfc, 0x28, 0x70, 0xf7, 0xc4, 0x5f, 0xf} txOffsets= +txId= locPointer=offset=70, bytesLength=11971 ] -2018-01-18 01:58:55.924 UTC [fsblkstorage] updateCheckpoint -> DEBU e0b Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[39456], isChainEmpty=[false], lastBlockNumber=[2] -2018-01-18 01:58:55.924 UTC [orderer/multichain] WriteBlock -> DEBU e0c [channel: businesschannel] Wrote block 2 -2018-01-18 01:58:58.634 UTC [orderer/main] Deliver -> DEBU e0d Starting new Deliver handler -2018-01-18 01:58:58.634 UTC [orderer/common/deliver] Handle -> DEBU e0e Starting new deliver loop -2018-01-18 01:58:58.634 UTC [orderer/common/deliver] Handle -> DEBU e0f Attempting to read seek info message -2018-01-18 01:58:58.635 UTC [policies] GetPolicy -> DEBU e10 Returning policy Readers for evaluation -2018-01-18 01:58:58.635 UTC [cauthdsl] func1 -> DEBU e11 0xc42014a9b0 gate 1516240738635379475 evaluation starts -2018-01-18 01:58:58.635 UTC [cauthdsl] func2 -> DEBU e12 0xc42014a9b0 signed by 0 principal evaluation starts (used [false]) -2018-01-18 01:58:58.635 UTC [cauthdsl] func2 -> DEBU e13 0xc42014a9b0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414c77306a542f4649616e4d78506736773275554d536f77436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a417562334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424b71666457462f6f592b32796d716a6b2b416c424e2b524254687850702f6b0a6c552b42686d474172706e6c474e643769543670696c2f69534474664135785a397765354e496654656846716d5a63493667314e3137326a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413063414d45514349414c534a7147630a76645a48434a305265635651325264746b646e6f6b353770363858466c524279326c34784169414a53365a32797879456c4275625049304d426e2f2f5873396c0a30356e304d624c772f55673365674a334a413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-18 01:58:58.636 UTC [msp/identity] newIdentity -> DEBU e14 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:49.456 UTC [fsblkstorage] updateCheckpoint -> DEBU e27 Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[39458], isChainEmpty=[false], lastBlockNumber=[2] +2018-01-18 09:29:49.456 UTC [orderer/multichain] WriteBlock -> DEBU e28 [channel: businesschannel] Wrote block 2 +2018-01-18 09:29:51.311 UTC [orderer/main] Deliver -> DEBU e29 Starting new Deliver handler +2018-01-18 09:29:51.311 UTC [orderer/common/deliver] Handle -> DEBU e2a Starting new deliver loop +2018-01-18 09:29:51.315 UTC [orderer/common/deliver] Handle -> DEBU e2b Attempting to read seek info message +2018-01-18 09:29:51.322 UTC [policies] GetPolicy -> DEBU e2c Returning policy Readers for evaluation +2018-01-18 09:29:51.322 UTC [cauthdsl] func1 -> DEBU e2d 0xc420026070 gate 1516267791322561765 evaluation starts +2018-01-18 09:29:51.322 UTC [cauthdsl] func2 -> DEBU e2e 0xc420026070 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:29:51.322 UTC [cauthdsl] func2 -> DEBU e2f 0xc420026070 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414c77306a542f4649616e4d78506736773275554d536f77436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a417562334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424b71666457462f6f592b32796d716a6b2b416c424e2b524254687850702f6b0a6c552b42686d474172706e6c474e643769543670696c2f69534474664135785a397765354e496654656846716d5a63493667314e3137326a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413063414d45514349414c534a7147630a76645a48434a305265635651325264746b646e6f6b353770363858466c524279326c34784169414a53365a32797879456c4275625049304d426e2f2f5873396c0a30356e304d624c772f55673365674a334a413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:29:51.324 UTC [msp/identity] newIdentity -> DEBU e30 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGTCCAcCgAwIBAgIRALw0jT/FIanMxPg6w2uUMSowCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -6492,58 +6572,83 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIALSJqGc vdZHCJ0RecVQ2Rdtkdnok57p68XFlRBy2l4xAiAJS6Z2yxyElBubPI0MBn//Xs9l 05n0MbLw/Ug3egJ3JA== -----END CERTIFICATE----- -2018-01-18 01:58:58.636 UTC [cauthdsl] func2 -> DEBU e15 0xc42014a9b0 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -2018-01-18 01:58:58.636 UTC [cauthdsl] func2 -> DEBU e16 0xc42014a9b0 principal evaluation fails -2018-01-18 01:58:58.636 UTC [cauthdsl] func1 -> DEBU e17 0xc42014a9b0 gate 1516240738635379475 evaluation fails -2018-01-18 01:58:58.636 UTC [cauthdsl] func1 -> DEBU e18 0xc42014a9c0 gate 1516240738636937796 evaluation starts -2018-01-18 01:58:58.637 UTC [cauthdsl] func2 -> DEBU e19 0xc42014a9c0 signed by 0 principal evaluation starts (used [false]) -2018-01-18 01:58:58.637 UTC [cauthdsl] func2 -> DEBU e1a 0xc42014a9c0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414c77306a542f4649616e4d78506736773275554d536f77436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a417562334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424b71666457462f6f592b32796d716a6b2b416c424e2b524254687850702f6b0a6c552b42686d474172706e6c474e643769543670696c2f69534474664135785a397765354e496654656846716d5a63493667314e3137326a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413063414d45514349414c534a7147630a76645a48434a305265635651325264746b646e6f6b353770363858466c524279326c34784169414a53365a32797879456c4275625049304d426e2f2f5873396c0a30356e304d624c772f55673365674a334a413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-18 01:58:58.637 UTC [msp/identity] newIdentity -> DEBU e1b Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRALw0jT/FIanMxPg6w2uUMSowCgYIKoZIzj0EAwIwczEL +2018-01-18 09:29:51.327 UTC [msp] SatisfiesPrincipal -> DEBU e31 Checking if identity satisfies MEMBER role for Org1MSP +2018-01-18 09:29:51.327 UTC [msp] Validate -> DEBU e32 MSP Org1MSP validating identity +2018-01-18 09:29:51.327 UTC [cauthdsl] func2 -> DEBU e33 0xc420026070 principal matched by identity 0 +2018-01-18 09:29:51.328 UTC [msp/identity] Verify -> DEBU e34 Verify: digest = 00000000 ca 96 cc 95 14 c6 6c 33 ed 90 cf 19 1e b0 f8 5a |......l3.......Z| +00000010 c4 8e c5 f9 01 ff 1a c6 de e6 fb c5 d9 64 ef f5 |.............d..| +2018-01-18 09:29:51.328 UTC [msp/identity] Verify -> DEBU e35 Verify: sig = 00000000 30 44 02 20 70 da 8d 86 96 79 3a 37 40 95 2c bf |0D. p....y:7@.,.| +00000010 41 25 c0 21 e7 0d 48 b1 c0 76 81 9f 2f 89 c2 ec |A%.!..H..v../...| +00000020 63 9a 2f f8 02 20 0c 9f 8a 7d a5 69 09 f1 6e d8 |c./.. ...}.i..n.| +00000030 03 df 7a b3 fe b3 92 ce 19 bf ed 21 52 fa 4b b3 |..z........!R.K.| +00000040 38 ba c2 68 65 aa |8..he.| +2018-01-18 09:29:51.328 UTC [cauthdsl] func2 -> DEBU e36 0xc420026070 principal evaluation succeeds for identity 0 +2018-01-18 09:29:51.328 UTC [cauthdsl] func1 -> DEBU e37 0xc420026070 gate 1516267791322561765 evaluation succeeds +2018-01-18 09:29:51.328 UTC [orderer/common/sigfilter] Apply -> DEBU e38 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4208371e0 1 [0xc42014a638 0xc42014a688]}) %!s(*policies.implicitMetaPolicy=&{0xc4202d8040 1 [0xc42014a750]})]} +2018-01-18 09:29:51.340 UTC [orderer/common/deliver] Handle -> DEBU e39 [channel: businesschannel] Received seekInfo (0xc42037a6c0) start: > stop: > +2018-01-18 09:29:51.346 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU e3a retrieveBlockByNumber() - blockNum = [1] +2018-01-18 09:29:51.346 UTC [fsblkstorage] newBlockfileStream -> DEBU e3b newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[11934] +2018-01-18 09:29:51.348 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e3c Remaining bytes=[27524], Going to peek [8] bytes +2018-01-18 09:29:51.352 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e3d Returning blockbytes - length=[13731], placementInfo={fileNum=[0], startOffset=[11934], bytesOffset=[11936]} +2018-01-18 09:29:51.353 UTC [orderer/common/deliver] Handle -> DEBU e3e [channel: businesschannel] Delivering block for (0xc42037a6c0) +2018-01-18 09:29:51.364 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU e3f retrieveBlockByNumber() - blockNum = [2] +2018-01-18 09:29:51.364 UTC [fsblkstorage] newBlockfileStream -> DEBU e40 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[25667] +2018-01-18 09:29:51.365 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e41 Remaining bytes=[13791], Going to peek [8] bytes +2018-01-18 09:29:51.365 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e42 Returning blockbytes - length=[13789], placementInfo={fileNum=[0], startOffset=[25667], bytesOffset=[25669]} +2018-01-18 09:29:51.365 UTC [orderer/common/deliver] Handle -> DEBU e43 [channel: businesschannel] Delivering block for (0xc42037a6c0) +2018-01-18 09:29:51.809 UTC [orderer/main] Deliver -> DEBU e44 Starting new Deliver handler +2018-01-18 09:29:51.809 UTC [orderer/common/deliver] Handle -> DEBU e45 Starting new deliver loop +2018-01-18 09:29:51.809 UTC [orderer/common/deliver] Handle -> DEBU e46 Attempting to read seek info message +2018-01-18 09:29:51.811 UTC [policies] GetPolicy -> DEBU e47 Returning policy Readers for evaluation +2018-01-18 09:29:51.811 UTC [cauthdsl] func1 -> DEBU e48 0xc420026118 gate 1516267791811825910 evaluation starts +2018-01-18 09:29:51.812 UTC [cauthdsl] func2 -> DEBU e49 0xc420026118 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:29:51.812 UTC [cauthdsl] func2 -> DEBU e4a 0xc420026118 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434754434341634367417749424167495241502f2f7a71574b597a53484c57374766784b734d5a5977436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a457562334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424d6b687a797a6b42514d6d444946496a2b446d6e75642b6a372f33682f4c4d0a735577466a4c344171625242454736764e4458346c46316a774242743339754a78764f424c32774b796d5a3072592f4c564e4b3476756d6a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413063414d4551434942312f4e3176710a4e5a3873726730444e2f6b5a735247476247785a44643653556d555350476f70455a2b42416941464c4751632f6e565a3748396533544f5350576b6a397858490a7a42777458626145327270753177434e5a673d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:29:51.812 UTC [msp/identity] newIdentity -> DEBU e4b Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAP//zqWKYzSHLW7GfxKsMZYwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABKqfdWF/oY+2ymqjk+AlBN+RBThxPp/k -lU+BhmGArpnlGNd7iT6pil/iSDtfA5xZ9we5NIfTehFqmZcI6g1N172jTTBLMA4G +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMkhzyzkBQMmDIFIj+Dmnud+j7/3h/LM +sUwFjL4AqbRBEG6vNDX4lF1jwBBt39uJxvOBL2wKymZ0rY/LVNK4vumjTTBLMA4G A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIALSJqGc -vdZHCJ0RecVQ2Rdtkdnok57p68XFlRBy2l4xAiAJS6Z2yxyElBubPI0MBn//Xs9l -05n0MbLw/Ug3egJ3JA== +ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIB1/N1vq +NZ8srg0DN/kZsRGGbGxZDd6SUmUSPGopEZ+BAiAFLGQc/nVZ7H9e3TOSPWkj9xXI +zBwtXbaE2rpu1wCNZg== -----END CERTIFICATE----- -2018-01-18 01:58:58.638 UTC [msp] SatisfiesPrincipal -> DEBU e1c Checking if identity satisfies MEMBER role for Org1MSP -2018-01-18 01:58:58.638 UTC [msp] Validate -> DEBU e1d MSP Org1MSP validating identity -2018-01-18 01:58:58.638 UTC [cauthdsl] func2 -> DEBU e1e 0xc42014a9c0 principal matched by identity 0 -2018-01-18 01:58:58.638 UTC [msp/identity] Verify -> DEBU e1f Verify: digest = 00000000 bc 0f 9e a6 bc 5b 32 af 7c f0 15 c4 b1 f7 4a 25 |.....[2.|.....J%| -00000010 62 f8 d9 04 99 17 31 28 e5 9d 3a 81 83 7d 64 5f |b.....1(..:..}d_| -2018-01-18 01:58:58.639 UTC [msp/identity] Verify -> DEBU e20 Verify: sig = 00000000 30 45 02 21 00 ea e7 60 b2 0d f2 ee e1 c7 93 60 |0E.!...`.......`| -00000010 9b 41 b9 e8 2e 28 d3 b8 e4 f1 1e c6 13 51 c2 35 |.A...(.......Q.5| -00000020 14 44 9d 77 4b 02 20 56 07 b0 7c a8 02 4b c8 22 |.D.wK. V..|..K."| -00000030 34 6e 2a a4 db 2f 53 01 66 b3 12 56 66 dc 1f e8 |4n*../S.f..Vf...| -00000040 39 55 f5 fa 1b bc dd |9U.....| -2018-01-18 01:58:58.639 UTC [cauthdsl] func2 -> DEBU e21 0xc42014a9c0 principal evaluation succeeds for identity 0 -2018-01-18 01:58:58.639 UTC [cauthdsl] func1 -> DEBU e22 0xc42014a9c0 gate 1516240738636937796 evaluation succeeds -2018-01-18 01:58:58.640 UTC [orderer/common/sigfilter] Apply -> DEBU e23 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420291360 1 [0xc42014a4b8]}) %!s(*policies.implicitMetaPolicy=&{0xc4202918c0 1 [0xc42014a548 0xc42014a820]})]} -2018-01-18 01:58:58.640 UTC [orderer/common/deliver] Handle -> DEBU e24 [channel: businesschannel] Received seekInfo (0xc42022a4a0) start: > stop: > -2018-01-18 01:58:58.640 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU e25 retrieveBlockByNumber() - blockNum = [1] -2018-01-18 01:58:58.640 UTC [fsblkstorage] newBlockfileStream -> DEBU e26 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[11934] -2018-01-18 01:58:58.641 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e27 Remaining bytes=[27522], Going to peek [8] bytes -2018-01-18 01:58:58.641 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e28 Returning blockbytes - length=[13730], placementInfo={fileNum=[0], startOffset=[11934], bytesOffset=[11936]} -2018-01-18 01:58:58.641 UTC [orderer/common/deliver] Handle -> DEBU e29 [channel: businesschannel] Delivering block for (0xc42022a4a0) -2018-01-18 01:58:58.641 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU e2a retrieveBlockByNumber() - blockNum = [2] -2018-01-18 01:58:58.642 UTC [fsblkstorage] newBlockfileStream -> DEBU e2b newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[25666] -2018-01-18 01:58:58.642 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e2c Remaining bytes=[13790], Going to peek [8] bytes -2018-01-18 01:58:58.642 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e2d Returning blockbytes - length=[13788], placementInfo={fileNum=[0], startOffset=[25666], bytesOffset=[25668]} -2018-01-18 01:58:58.642 UTC [orderer/common/deliver] Handle -> DEBU e2e [channel: businesschannel] Delivering block for (0xc42022a4a0) -2018-01-18 01:58:59.040 UTC [orderer/main] Deliver -> DEBU e2f Starting new Deliver handler -2018-01-18 01:58:59.040 UTC [orderer/common/deliver] Handle -> DEBU e30 Starting new deliver loop -2018-01-18 01:58:59.040 UTC [orderer/common/deliver] Handle -> DEBU e31 Attempting to read seek info message -2018-01-18 01:58:59.044 UTC [policies] GetPolicy -> DEBU e32 Returning policy Readers for evaluation -2018-01-18 01:58:59.044 UTC [cauthdsl] func1 -> DEBU e33 0xc42014aa20 gate 1516240739044738593 evaluation starts -2018-01-18 01:58:59.044 UTC [cauthdsl] func2 -> DEBU e34 0xc42014aa20 signed by 0 principal evaluation starts (used [false]) -2018-01-18 01:58:59.044 UTC [cauthdsl] func2 -> DEBU e35 0xc42014aa20 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952415077537a796731505072436556685271446f3449526377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a417562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d343941774548413049414248494f3843636b4e3548675931692f376730494a647a6b31373245327834440a6c45796d73507842544336534d78324837366779415a626155484c7a444f633033575875784e6d2f35434562305043756734674c6d59716a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495144754d4344310a63427a353934367a51536178435875616e626c7676506d446f34454a6a33664e3154546c347749674b364f4a4e6f693555594668762f43577448767238364a550a437037666f70594c415230435579772b58796b3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-18 01:58:59.045 UTC [msp/identity] newIdentity -> DEBU e36 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:51.813 UTC [msp] SatisfiesPrincipal -> DEBU e4c Checking if identity satisfies MEMBER role for Org1MSP +2018-01-18 09:29:51.813 UTC [msp] Validate -> DEBU e4d MSP Org1MSP validating identity +2018-01-18 09:29:51.814 UTC [cauthdsl] func2 -> DEBU e4e 0xc420026118 principal matched by identity 0 +2018-01-18 09:29:51.814 UTC [msp/identity] Verify -> DEBU e4f Verify: digest = 00000000 a5 6f cc 4d d4 58 34 ac 95 96 df 69 1d a7 ce 72 |.o.M.X4....i...r| +00000010 59 37 e7 05 eb 92 e7 a7 d9 0c 23 0d 2a b2 e9 27 |Y7........#.*..'| +2018-01-18 09:29:51.815 UTC [msp/identity] Verify -> DEBU e50 Verify: sig = 00000000 30 45 02 21 00 ca 66 34 9c db c6 48 57 64 ad 92 |0E.!..f4...HWd..| +00000010 06 22 49 d5 21 27 c3 44 ac 06 4d 28 bb ba bb 3d |."I.!'.D..M(...=| +00000020 fa 7b f0 f4 5b 02 20 73 2b 55 de 66 40 e9 e1 4a |.{..[. s+U.f@..J| +00000030 c8 13 43 47 ae 87 03 62 06 f5 a5 56 71 6e 35 ef |..CG...b...Vqn5.| +00000040 90 ce 1e 13 87 b1 03 |.......| +2018-01-18 09:29:51.815 UTC [cauthdsl] func2 -> DEBU e51 0xc420026118 principal evaluation succeeds for identity 0 +2018-01-18 09:29:51.815 UTC [cauthdsl] func1 -> DEBU e52 0xc420026118 gate 1516267791811825910 evaluation succeeds +2018-01-18 09:29:51.815 UTC [orderer/common/sigfilter] Apply -> DEBU e53 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4208371e0 1 [0xc42014a638 0xc42014a688]}) %!s(*policies.implicitMetaPolicy=&{0xc4202d8040 1 [0xc42014a750]})]} +2018-01-18 09:29:51.817 UTC [orderer/common/deliver] Handle -> DEBU e54 [channel: businesschannel] Received seekInfo (0xc420363320) start: > stop: > +2018-01-18 09:29:51.817 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU e55 retrieveBlockByNumber() - blockNum = [1] +2018-01-18 09:29:51.818 UTC [fsblkstorage] newBlockfileStream -> DEBU e56 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[11934] +2018-01-18 09:29:51.818 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e57 Remaining bytes=[27524], Going to peek [8] bytes +2018-01-18 09:29:51.818 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e58 Returning blockbytes - length=[13731], placementInfo={fileNum=[0], startOffset=[11934], bytesOffset=[11936]} +2018-01-18 09:29:51.818 UTC [orderer/common/deliver] Handle -> DEBU e59 [channel: businesschannel] Delivering block for (0xc420363320) +2018-01-18 09:29:51.819 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU e5a retrieveBlockByNumber() - blockNum = [2] +2018-01-18 09:29:51.820 UTC [fsblkstorage] newBlockfileStream -> DEBU e5b newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[25667] +2018-01-18 09:29:51.820 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e5c Remaining bytes=[13791], Going to peek [8] bytes +2018-01-18 09:29:51.821 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e5d Returning blockbytes - length=[13789], placementInfo={fileNum=[0], startOffset=[25667], bytesOffset=[25669]} +2018-01-18 09:29:51.823 UTC [orderer/common/deliver] Handle -> DEBU e5e [channel: businesschannel] Delivering block for (0xc420363320) +2018-01-18 09:29:52.272 UTC [orderer/main] Deliver -> DEBU e5f Starting new Deliver handler +2018-01-18 09:29:52.272 UTC [orderer/common/deliver] Handle -> DEBU e60 Starting new deliver loop +2018-01-18 09:29:52.273 UTC [orderer/common/deliver] Handle -> DEBU e61 Attempting to read seek info message +2018-01-18 09:29:52.273 UTC [policies] GetPolicy -> DEBU e62 Returning policy Readers for evaluation +2018-01-18 09:29:52.274 UTC [cauthdsl] func1 -> DEBU e63 0xc42014a868 gate 1516267792274016699 evaluation starts +2018-01-18 09:29:52.274 UTC [cauthdsl] func2 -> DEBU e64 0xc42014a868 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:29:52.274 UTC [cauthdsl] func2 -> DEBU e65 0xc42014a868 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952415077537a796731505072436556685271446f3449526377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a417562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d343941774548413049414248494f3843636b4e3548675931692f376730494a647a6b31373245327834440a6c45796d73507842544336534d78324837366779415a626155484c7a444f633033575875784e6d2f35434562305043756734674c6d59716a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495144754d4344310a63427a353934367a51536178435875616e626c7676506d446f34454a6a33664e3154546c347749674b364f4a4e6f693555594668762f43577448767238364a550a437037666f70594c415230435579772b58796b3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:29:52.274 UTC [msp/identity] newIdentity -> DEBU e66 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAPwSzyg1PPrCeVhRqDo4IRcwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -6557,13 +6662,13 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQDuMCD1 cBz5946zQSaxCXuanblvvPmDo4EJj3fN1TTl4wIgK6OJNoi5UYFhv/CWtHvr86JU Cp7fopYLAR0CUyw+Xyk= -----END CERTIFICATE----- -2018-01-18 01:58:59.045 UTC [cauthdsl] func2 -> DEBU e37 0xc42014aa20 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) -2018-01-18 01:58:59.045 UTC [cauthdsl] func2 -> DEBU e38 0xc42014aa20 principal evaluation fails -2018-01-18 01:58:59.045 UTC [cauthdsl] func1 -> DEBU e39 0xc42014aa20 gate 1516240739044738593 evaluation fails -2018-01-18 01:58:59.045 UTC [cauthdsl] func1 -> DEBU e3a 0xc42014aa30 gate 1516240739045641442 evaluation starts -2018-01-18 01:58:59.045 UTC [cauthdsl] func2 -> DEBU e3b 0xc42014aa30 signed by 0 principal evaluation starts (used [false]) -2018-01-18 01:58:59.045 UTC [cauthdsl] func2 -> DEBU e3c 0xc42014aa30 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952415077537a796731505072436556685271446f3449526377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a417562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d343941774548413049414248494f3843636b4e3548675931692f376730494a647a6b31373245327834440a6c45796d73507842544336534d78324837366779415a626155484c7a444f633033575875784e6d2f35434562305043756734674c6d59716a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495144754d4344310a63427a353934367a51536178435875616e626c7676506d446f34454a6a33664e3154546c347749674b364f4a4e6f693555594668762f43577448767238364a550a437037666f70594c415230435579772b58796b3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-18 01:58:59.046 UTC [msp/identity] newIdentity -> DEBU e3d Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:52.275 UTC [cauthdsl] func2 -> DEBU e67 0xc42014a868 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got Org2MSP) +2018-01-18 09:29:52.275 UTC [cauthdsl] func2 -> DEBU e68 0xc42014a868 principal evaluation fails +2018-01-18 09:29:52.275 UTC [cauthdsl] func1 -> DEBU e69 0xc42014a868 gate 1516267792274016699 evaluation fails +2018-01-18 09:29:52.275 UTC [cauthdsl] func1 -> DEBU e6a 0xc42014a878 gate 1516267792275740737 evaluation starts +2018-01-18 09:29:52.275 UTC [cauthdsl] func2 -> DEBU e6b 0xc42014a878 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:29:52.276 UTC [cauthdsl] func2 -> DEBU e6c 0xc42014a878 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952415077537a796731505072436556685271446f3449526377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a417562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d343941774548413049414248494f3843636b4e3548675931692f376730494a647a6b31373245327834440a6c45796d73507842544336534d78324837366779415a626155484c7a444f633033575875784e6d2f35434562305043756734674c6d59716a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495144754d4344310a63427a353934367a51536178435875616e626c7676506d446f34454a6a33664e3154546c347749674b364f4a4e6f693555594668762f43577448767238364a550a437037666f70594c415230435579772b58796b3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:29:52.276 UTC [msp/identity] newIdentity -> DEBU e6d Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAPwSzyg1PPrCeVhRqDo4IRcwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -6577,58 +6682,38 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQDuMCD1 cBz5946zQSaxCXuanblvvPmDo4EJj3fN1TTl4wIgK6OJNoi5UYFhv/CWtHvr86JU Cp7fopYLAR0CUyw+Xyk= -----END CERTIFICATE----- -2018-01-18 01:58:59.047 UTC [cauthdsl] func2 -> DEBU e3e 0xc42014aa30 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got Org2MSP) -2018-01-18 01:58:59.047 UTC [cauthdsl] func2 -> DEBU e3f 0xc42014aa30 principal evaluation fails -2018-01-18 01:58:59.047 UTC [cauthdsl] func1 -> DEBU e40 0xc42014aa30 gate 1516240739045641442 evaluation fails -2018-01-18 01:58:59.047 UTC [cauthdsl] func1 -> DEBU e41 0xc42014aa40 gate 1516240739047993165 evaluation starts -2018-01-18 01:58:59.048 UTC [cauthdsl] func2 -> DEBU e42 0xc42014aa40 signed by 0 principal evaluation starts (used [false]) -2018-01-18 01:58:59.048 UTC [cauthdsl] func2 -> DEBU e43 0xc42014aa40 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952415077537a796731505072436556685271446f3449526377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a417562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d343941774548413049414248494f3843636b4e3548675931692f376730494a647a6b31373245327834440a6c45796d73507842544336534d78324837366779415a626155484c7a444f633033575875784e6d2f35434562305043756734674c6d59716a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495144754d4344310a63427a353934367a51536178435875616e626c7676506d446f34454a6a33664e3154546c347749674b364f4a4e6f693555594668762f43577448767238364a550a437037666f70594c415230435579772b58796b3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-18 01:58:59.048 UTC [msp/identity] newIdentity -> DEBU e44 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRAPwSzyg1PPrCeVhRqDo4IRcwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABHIO8CckN5HgY1i/7g0IJdzk172E2x4D -lEymsPxBTC6SMx2H76gyAZbaUHLzDOc03WXuxNm/5CEb0PCug4gLmYqjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQDuMCD1 -cBz5946zQSaxCXuanblvvPmDo4EJj3fN1TTl4wIgK6OJNoi5UYFhv/CWtHvr86JU -Cp7fopYLAR0CUyw+Xyk= ------END CERTIFICATE----- -2018-01-18 01:58:59.049 UTC [msp] SatisfiesPrincipal -> DEBU e45 Checking if identity satisfies MEMBER role for Org2MSP -2018-01-18 01:58:59.049 UTC [msp] Validate -> DEBU e46 MSP Org2MSP validating identity -2018-01-18 01:58:59.049 UTC [cauthdsl] func2 -> DEBU e47 0xc42014aa40 principal matched by identity 0 -2018-01-18 01:58:59.049 UTC [msp/identity] Verify -> DEBU e48 Verify: digest = 00000000 ea c4 06 18 48 22 ec 68 dc ce 7a 71 6e 5a 69 f0 |....H".h..zqnZi.| -00000010 be f5 79 4a 09 68 dc 85 50 9b 7a 9a 26 49 51 26 |..yJ.h..P.z.&IQ&| -2018-01-18 01:58:59.049 UTC [msp/identity] Verify -> DEBU e49 Verify: sig = 00000000 30 44 02 20 79 58 49 96 73 76 cf 6d 19 ac b3 84 |0D. yXI.sv.m....| -00000010 69 a8 78 a0 f8 2f ee 5e e6 ab db d1 5b 5c 2b e4 |i.x../.^....[\+.| -00000020 c5 c2 00 c8 02 20 7c ff d4 2d 76 5a 41 3c f0 4c |..... |..-vZA<.L| -00000030 4c fb 21 25 f9 99 56 db 9e 1b a3 ce 4c 43 ae c1 |L.!%..V.....LC..| -00000040 2e 28 2f 47 11 90 |.(/G..| -2018-01-18 01:58:59.050 UTC [cauthdsl] func2 -> DEBU e4a 0xc42014aa40 principal evaluation succeeds for identity 0 -2018-01-18 01:58:59.051 UTC [cauthdsl] func1 -> DEBU e4b 0xc42014aa40 gate 1516240739047993165 evaluation succeeds -2018-01-18 01:58:59.051 UTC [orderer/common/sigfilter] Apply -> DEBU e4c Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420291360 1 [0xc42014a4b8]}) %!s(*policies.implicitMetaPolicy=&{0xc4202918c0 1 [0xc42014a548 0xc42014a820]})]} -2018-01-18 01:58:59.052 UTC [orderer/common/deliver] Handle -> DEBU e4d [channel: businesschannel] Received seekInfo (0xc4208701a0) start: > stop: > -2018-01-18 01:58:59.052 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU e4e retrieveBlockByNumber() - blockNum = [1] -2018-01-18 01:58:59.053 UTC [fsblkstorage] newBlockfileStream -> DEBU e4f newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[11934] -2018-01-18 01:58:59.053 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e50 Remaining bytes=[27522], Going to peek [8] bytes -2018-01-18 01:58:59.054 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e51 Returning blockbytes - length=[13730], placementInfo={fileNum=[0], startOffset=[11934], bytesOffset=[11936]} -2018-01-18 01:58:59.054 UTC [orderer/common/deliver] Handle -> DEBU e52 [channel: businesschannel] Delivering block for (0xc4208701a0) -2018-01-18 01:58:59.055 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU e53 retrieveBlockByNumber() - blockNum = [2] -2018-01-18 01:58:59.055 UTC [fsblkstorage] newBlockfileStream -> DEBU e54 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[25666] -2018-01-18 01:58:59.055 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e55 Remaining bytes=[13790], Going to peek [8] bytes -2018-01-18 01:58:59.055 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e56 Returning blockbytes - length=[13788], placementInfo={fileNum=[0], startOffset=[25666], bytesOffset=[25668]} -2018-01-18 01:58:59.056 UTC [orderer/common/deliver] Handle -> DEBU e57 [channel: businesschannel] Delivering block for (0xc4208701a0) -2018-01-18 01:59:01.306 UTC [orderer/main] Broadcast -> DEBU e58 Starting new Broadcast handler -2018-01-18 01:59:01.306 UTC [orderer/common/broadcast] Handle -> DEBU e59 Starting new broadcast loop -2018-01-18 01:59:25.594 UTC [orderer/common/broadcast] Handle -> DEBU e5a [channel: businesschannel] Broadcast is filtering message of type ENDORSER_TRANSACTION -2018-01-18 01:59:25.595 UTC [policies] GetPolicy -> DEBU e5b Returning policy Writers for evaluation -2018-01-18 01:59:25.595 UTC [cauthdsl] func1 -> DEBU e5c 0xc42014aaa0 gate 1516240765595262990 evaluation starts -2018-01-18 01:59:25.595 UTC [cauthdsl] func2 -> DEBU e5d 0xc42014aaa0 signed by 0 principal evaluation starts (used [false]) -2018-01-18 01:59:25.595 UTC [cauthdsl] func2 -> DEBU e5e 0xc42014aaa0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-18 01:59:25.596 UTC [msp/identity] newIdentity -> DEBU e5f Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:29:52.277 UTC [msp] SatisfiesPrincipal -> DEBU e6e Checking if identity satisfies MEMBER role for Org2MSP +2018-01-18 09:29:52.277 UTC [msp] Validate -> DEBU e6f MSP Org2MSP validating identity +2018-01-18 09:29:52.277 UTC [cauthdsl] func2 -> DEBU e70 0xc42014a878 principal matched by identity 0 +2018-01-18 09:29:52.277 UTC [msp/identity] Verify -> DEBU e71 Verify: digest = 00000000 06 e0 86 45 6e 80 1a 21 1d ca 8a 66 1e 99 a8 c2 |...En..!...f....| +00000010 a8 3b 36 e6 9f 61 db e5 8b 02 60 c7 af 9c 06 09 |.;6..a....`.....| +2018-01-18 09:29:52.278 UTC [msp/identity] Verify -> DEBU e72 Verify: sig = 00000000 30 45 02 21 00 c6 72 e9 f4 53 82 e5 a2 97 c7 a0 |0E.!..r..S......| +00000010 54 b8 5d 91 55 05 3b bb 0f 96 b0 f6 de 2d 80 08 |T.].U.;......-..| +00000020 35 51 b0 97 d1 02 20 2c e2 d6 47 b7 df 67 91 33 |5Q.... ,..G..g.3| +00000030 d2 d3 4e 02 d6 5c a2 7c 48 fa 62 25 1c b8 b9 56 |..N..\.|H.b%...V| +00000040 6f 20 44 d1 80 c7 b6 |o D....| +2018-01-18 09:29:52.278 UTC [cauthdsl] func2 -> DEBU e73 0xc42014a878 principal evaluation succeeds for identity 0 +2018-01-18 09:29:52.278 UTC [cauthdsl] func1 -> DEBU e74 0xc42014a878 gate 1516267792275740737 evaluation succeeds +2018-01-18 09:29:52.278 UTC [orderer/common/sigfilter] Apply -> DEBU e75 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4208371e0 1 [0xc42014a638 0xc42014a688]}) %!s(*policies.implicitMetaPolicy=&{0xc4202d8040 1 [0xc42014a750]})]} +2018-01-18 09:29:52.278 UTC [orderer/common/deliver] Handle -> DEBU e76 [channel: businesschannel] Received seekInfo (0xc420b7cce0) start: > stop: > +2018-01-18 09:29:52.278 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU e77 retrieveBlockByNumber() - blockNum = [1] +2018-01-18 09:29:52.279 UTC [fsblkstorage] newBlockfileStream -> DEBU e78 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[11934] +2018-01-18 09:29:52.279 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e79 Remaining bytes=[27524], Going to peek [8] bytes +2018-01-18 09:29:52.279 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e7a Returning blockbytes - length=[13731], placementInfo={fileNum=[0], startOffset=[11934], bytesOffset=[11936]} +2018-01-18 09:29:52.279 UTC [orderer/common/deliver] Handle -> DEBU e7b [channel: businesschannel] Delivering block for (0xc420b7cce0) +2018-01-18 09:29:52.280 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU e7c retrieveBlockByNumber() - blockNum = [2] +2018-01-18 09:29:52.280 UTC [fsblkstorage] newBlockfileStream -> DEBU e7d newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[25667] +2018-01-18 09:29:52.280 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e7e Remaining bytes=[13791], Going to peek [8] bytes +2018-01-18 09:29:52.281 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e7f Returning blockbytes - length=[13789], placementInfo={fileNum=[0], startOffset=[25667], bytesOffset=[25669]} +2018-01-18 09:29:52.281 UTC [orderer/common/deliver] Handle -> DEBU e80 [channel: businesschannel] Delivering block for (0xc420b7cce0) +2018-01-18 09:29:55.552 UTC [orderer/main] Broadcast -> DEBU e81 Starting new Broadcast handler +2018-01-18 09:29:55.552 UTC [orderer/common/broadcast] Handle -> DEBU e82 Starting new broadcast loop +2018-01-18 09:30:21.551 UTC [orderer/common/broadcast] Handle -> DEBU e83 [channel: businesschannel] Broadcast is filtering message of type ENDORSER_TRANSACTION +2018-01-18 09:30:21.551 UTC [policies] GetPolicy -> DEBU e84 Returning policy Writers for evaluation +2018-01-18 09:30:21.553 UTC [cauthdsl] func1 -> DEBU e85 0xc42014a8d0 gate 1516267821553126217 evaluation starts +2018-01-18 09:30:21.553 UTC [cauthdsl] func2 -> DEBU e86 0xc42014a8d0 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:30:21.558 UTC [cauthdsl] func2 -> DEBU e87 0xc42014a8d0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:30:21.560 UTC [msp/identity] newIdentity -> DEBU e88 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -6642,13 +6727,13 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-18 01:59:25.596 UTC [cauthdsl] func2 -> DEBU e60 0xc42014aaa0 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -2018-01-18 01:59:25.596 UTC [cauthdsl] func2 -> DEBU e61 0xc42014aaa0 principal evaluation fails -2018-01-18 01:59:25.596 UTC [cauthdsl] func1 -> DEBU e62 0xc42014aaa0 gate 1516240765595262990 evaluation fails -2018-01-18 01:59:25.596 UTC [cauthdsl] func1 -> DEBU e63 0xc42014aab0 gate 1516240765596881880 evaluation starts -2018-01-18 01:59:25.596 UTC [cauthdsl] func2 -> DEBU e64 0xc42014aab0 signed by 0 principal evaluation starts (used [false]) -2018-01-18 01:59:25.596 UTC [cauthdsl] func2 -> DEBU e65 0xc42014aab0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-18 01:59:25.597 UTC [msp/identity] newIdentity -> DEBU e66 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:30:21.562 UTC [cauthdsl] func2 -> DEBU e89 0xc42014a8d0 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) +2018-01-18 09:30:21.562 UTC [cauthdsl] func2 -> DEBU e8a 0xc42014a8d0 principal evaluation fails +2018-01-18 09:30:21.563 UTC [cauthdsl] func1 -> DEBU e8b 0xc42014a8d0 gate 1516267821553126217 evaluation fails +2018-01-18 09:30:21.563 UTC [cauthdsl] func1 -> DEBU e8c 0xc42014a8e0 gate 1516267821563700428 evaluation starts +2018-01-18 09:30:21.563 UTC [cauthdsl] func2 -> DEBU e8d 0xc42014a8e0 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:30:21.564 UTC [cauthdsl] func2 -> DEBU e8e 0xc42014a8e0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:30:21.568 UTC [msp/identity] newIdentity -> DEBU e8f Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -6662,25 +6747,13 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-18 01:59:25.597 UTC [msp] SatisfiesPrincipal -> DEBU e67 Checking if identity satisfies MEMBER role for Org1MSP -2018-01-18 01:59:25.597 UTC [msp] Validate -> DEBU e68 MSP Org1MSP validating identity -2018-01-18 01:59:25.598 UTC [cauthdsl] func2 -> DEBU e69 0xc42014aab0 principal matched by identity 0 -2018-01-18 01:59:25.598 UTC [msp/identity] Verify -> DEBU e6a Verify: digest = 00000000 64 dd 1a f0 49 32 55 a2 70 d1 85 cd 58 17 6d 69 |d...I2U.p...X.mi| -00000010 27 ed c6 1b f9 41 c2 6f 3e 1b f6 b7 47 b9 89 9c |'....A.o>...G...| -2018-01-18 01:59:25.598 UTC [msp/identity] Verify -> DEBU e6b Verify: sig = 00000000 30 45 02 21 00 91 3f 53 6e 5a 85 d7 5d 56 48 ee |0E.!..?SnZ..]VH.| -00000010 17 5a 33 a7 f0 68 ba 62 dd 2b c2 ff b9 66 0d 0e |.Z3..h.b.+...f..| -00000020 6e 75 cb d7 37 02 20 37 14 28 d4 64 aa 91 f1 73 |nu..7. 7.(.d...s| -00000030 af 82 d7 43 0e 1d 93 78 66 01 9e c6 25 f7 ed 72 |...C...xf...%..r| -00000040 4d e8 33 c9 bb bc 92 |M.3....| -2018-01-18 01:59:25.598 UTC [cauthdsl] func2 -> DEBU e6c 0xc42014aab0 principal evaluation succeeds for identity 0 -2018-01-18 01:59:25.598 UTC [cauthdsl] func1 -> DEBU e6d 0xc42014aab0 gate 1516240765596881880 evaluation succeeds -2018-01-18 01:59:25.598 UTC [orderer/common/sigfilter] Apply -> DEBU e6e Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4202911c0 1 [0xc42014a3a8]}) %!s(*policies.implicitMetaPolicy=&{0xc420291840 1 [0xc42014a5f0 0xc42014a878]})]} -2018-01-18 01:59:25.598 UTC [orderer/common/broadcast] Handle -> DEBU e6f [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION -2018-01-18 01:59:25.599 UTC [policies] GetPolicy -> DEBU e70 Returning policy Writers for evaluation -2018-01-18 01:59:25.599 UTC [cauthdsl] func1 -> DEBU e71 0xc42014aac8 gate 1516240765599119561 evaluation starts -2018-01-18 01:59:25.599 UTC [cauthdsl] func2 -> DEBU e72 0xc42014aac8 signed by 0 principal evaluation starts (used [false]) -2018-01-18 01:59:25.599 UTC [cauthdsl] func2 -> DEBU e73 0xc42014aac8 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-18 01:59:25.599 UTC [msp/identity] newIdentity -> DEBU e74 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:30:21.569 UTC [cauthdsl] func2 -> DEBU e90 0xc42014a8e0 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got Org1MSP) +2018-01-18 09:30:21.569 UTC [cauthdsl] func2 -> DEBU e91 0xc42014a8e0 principal evaluation fails +2018-01-18 09:30:21.569 UTC [cauthdsl] func1 -> DEBU e92 0xc42014a8e0 gate 1516267821563700428 evaluation fails +2018-01-18 09:30:21.570 UTC [cauthdsl] func1 -> DEBU e93 0xc42014a8f0 gate 1516267821570127412 evaluation starts +2018-01-18 09:30:21.570 UTC [cauthdsl] func2 -> DEBU e94 0xc42014a8f0 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:30:21.571 UTC [cauthdsl] func2 -> DEBU e95 0xc42014a8f0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:30:21.575 UTC [msp/identity] newIdentity -> DEBU e96 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -6694,13 +6767,27 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-18 01:59:25.600 UTC [cauthdsl] func2 -> DEBU e75 0xc42014aac8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -2018-01-18 01:59:25.601 UTC [cauthdsl] func2 -> DEBU e76 0xc42014aac8 principal evaluation fails -2018-01-18 01:59:25.601 UTC [cauthdsl] func1 -> DEBU e77 0xc42014aac8 gate 1516240765599119561 evaluation fails -2018-01-18 01:59:25.601 UTC [cauthdsl] func1 -> DEBU e78 0xc42014aad8 gate 1516240765601876982 evaluation starts -2018-01-18 01:59:25.601 UTC [cauthdsl] func2 -> DEBU e79 0xc42014aad8 signed by 0 principal evaluation starts (used [false]) -2018-01-18 01:59:25.602 UTC [cauthdsl] func2 -> DEBU e7a 0xc42014aad8 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-18 01:59:25.602 UTC [msp/identity] newIdentity -> DEBU e7b Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:30:21.576 UTC [msp] SatisfiesPrincipal -> DEBU e97 Checking if identity satisfies MEMBER role for Org1MSP +2018-01-18 09:30:21.576 UTC [msp] Validate -> DEBU e98 MSP Org1MSP validating identity +2018-01-18 09:30:21.578 UTC [cauthdsl] func2 -> DEBU e99 0xc42014a8f0 principal matched by identity 0 +2018-01-18 09:30:21.578 UTC [msp/identity] Verify -> DEBU e9a Verify: digest = 00000000 b1 92 da a3 15 e9 e5 65 7d ae 3f 83 e4 31 a5 a3 |.......e}.?..1..| +00000010 33 27 f0 53 a3 96 e4 4a 87 7d c9 ca ae 5d 68 4c |3'.S...J.}...]hL| +2018-01-18 09:30:21.578 UTC [msp/identity] Verify -> DEBU e9b Verify: sig = 00000000 30 44 02 20 70 eb 48 f1 b3 f6 1f 2e 44 7a 3f 20 |0D. p.H.....Dz? | +00000010 fe 8b a3 e1 bb 9f 5a b0 7e 0c 69 2c f4 68 24 17 |......Z.~.i,.h$.| +00000020 2d cf dd 6c 02 20 7f d3 9b 7a 25 44 22 de 49 b3 |-..l. ...z%D".I.| +00000030 d1 f0 a0 67 d2 5f a3 47 68 e8 47 c9 9d 7c f7 8c |...g._.Gh.G..|..| +00000040 7f ea 0a 2c 45 9a |...,E.| +2018-01-18 09:30:21.578 UTC [cauthdsl] func2 -> DEBU e9c 0xc42014a8f0 principal evaluation succeeds for identity 0 +2018-01-18 09:30:21.578 UTC [cauthdsl] func1 -> DEBU e9d 0xc42014a8f0 gate 1516267821570127412 evaluation succeeds +2018-01-18 09:30:21.578 UTC [orderer/common/sigfilter] Apply -> DEBU e9e Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4202d80c0 1 [0xc42014a778]}) %!s(*policies.implicitMetaPolicy=&{0xc420837160 1 [0xc42014a6b0 0xc42014a5d8]})]} +2018-01-18 09:30:21.578 UTC [orderer/common/broadcast] Handle -> DEBU e9f [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION +2018-01-18 09:30:21.580 UTC [policies] GetPolicy -> DEBU ea0 Returning policy Writers for evaluation +2018-01-18 09:30:21.597 UTC [cauthdsl] func1 -> DEBU ea1 0xc4200261b0 gate 1516267821597403168 evaluation starts +2018-01-18 09:30:21.597 UTC [cauthdsl] func2 -> DEBU ea2 0xc4200261b0 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:30:21.598 UTC [orderer/common/broadcast] Handle -> WARN ea4 Error reading from stream: rpc error: code = Canceled desc = context canceled +2018-01-18 09:30:21.598 UTC [orderer/main] func1 -> DEBU ea5 Closing Broadcast stream +2018-01-18 09:30:21.598 UTC [cauthdsl] func2 -> DEBU ea3 0xc4200261b0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:30:21.601 UTC [msp/identity] newIdentity -> DEBU ea6 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -6714,65 +6801,110 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-18 01:59:25.603 UTC [orderer/common/broadcast] Handle -> WARN e7c Error reading from stream: rpc error: code = Canceled desc = context canceled -2018-01-18 01:59:25.603 UTC [orderer/main] func1 -> DEBU e7d Closing Broadcast stream -2018-01-18 01:59:25.606 UTC [msp] SatisfiesPrincipal -> DEBU e7e Checking if identity satisfies MEMBER role for Org1MSP -2018-01-18 01:59:25.606 UTC [msp] Validate -> DEBU e7f MSP Org1MSP validating identity -2018-01-18 01:59:25.606 UTC [cauthdsl] func2 -> DEBU e80 0xc42014aad8 principal matched by identity 0 -2018-01-18 01:59:25.608 UTC [msp/identity] Verify -> DEBU e81 Verify: digest = 00000000 64 dd 1a f0 49 32 55 a2 70 d1 85 cd 58 17 6d 69 |d...I2U.p...X.mi| -00000010 27 ed c6 1b f9 41 c2 6f 3e 1b f6 b7 47 b9 89 9c |'....A.o>...G...| -2018-01-18 01:59:25.608 UTC [msp/identity] Verify -> DEBU e82 Verify: sig = 00000000 30 45 02 21 00 91 3f 53 6e 5a 85 d7 5d 56 48 ee |0E.!..?SnZ..]VH.| -00000010 17 5a 33 a7 f0 68 ba 62 dd 2b c2 ff b9 66 0d 0e |.Z3..h.b.+...f..| -00000020 6e 75 cb d7 37 02 20 37 14 28 d4 64 aa 91 f1 73 |nu..7. 7.(.d...s| -00000030 af 82 d7 43 0e 1d 93 78 66 01 9e c6 25 f7 ed 72 |...C...xf...%..r| -00000040 4d e8 33 c9 bb bc 92 |M.3....| -2018-01-18 01:59:25.610 UTC [cauthdsl] func2 -> DEBU e83 0xc42014aad8 principal evaluation succeeds for identity 0 -2018-01-18 01:59:25.611 UTC [cauthdsl] func1 -> DEBU e84 0xc42014aad8 gate 1516240765601876982 evaluation succeeds -2018-01-18 01:59:25.611 UTC [orderer/common/sigfilter] Apply -> DEBU e85 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4202911c0 1 [0xc42014a3a8]}) %!s(*policies.implicitMetaPolicy=&{0xc420291840 1 [0xc42014a5f0 0xc42014a878]})]} -2018-01-18 01:59:25.612 UTC [orderer/common/blockcutter] Ordered -> DEBU e86 Enqueuing message into batch -2018-01-18 01:59:25.907 UTC [orderer/main] Broadcast -> DEBU e87 Starting new Broadcast handler -2018-01-18 01:59:25.908 UTC [orderer/common/broadcast] Handle -> DEBU e88 Starting new broadcast loop -2018-01-18 01:59:27.613 UTC [orderer/solo] main -> DEBU e89 Batch timer expired, creating block -2018-01-18 01:59:27.613 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU e8a retrieveBlockByNumber() - blockNum = [2] -2018-01-18 01:59:27.613 UTC [fsblkstorage] newBlockfileStream -> DEBU e8b newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[25666] -2018-01-18 01:59:27.614 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e8c Remaining bytes=[13790], Going to peek [8] bytes -2018-01-18 01:59:27.614 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e8d Returning blockbytes - length=[13788], placementInfo={fileNum=[0], startOffset=[25666], bytesOffset=[25668]} -2018-01-18 01:59:27.614 UTC [orderer/multichain] addBlockSignature -> DEBU e8e &{ledgerResources:0xc420208040 chain:0xc420208da0 cutter:0xc420a51270 filters:0xc4202089e0 signer:0x1274e88 lastConfig:2 lastConfigSeq:3} -2018-01-18 01:59:27.614 UTC [orderer/multichain] addBlockSignature -> DEBU e8f &{} -2018-01-18 01:59:27.614 UTC [msp] GetLocalMSP -> DEBU e90 Returning existing local MSP -2018-01-18 01:59:27.615 UTC [msp] GetDefaultSigningIdentity -> DEBU e91 Obtaining default signing identity -2018-01-18 01:59:27.615 UTC [msp] GetLocalMSP -> DEBU e92 Returning existing local MSP -2018-01-18 01:59:27.615 UTC [msp] GetDefaultSigningIdentity -> DEBU e93 Obtaining default signing identity -2018-01-18 01:59:27.615 UTC [msp/identity] Sign -> DEBU e94 Sign: plaintext: 0AFA050A0A4F7264657265724D535012...093D89017A38B39B5BB88D1158E83F69 -2018-01-18 01:59:27.615 UTC [msp/identity] Sign -> DEBU e95 Sign: digest: A1D50574B4BF0991C80A2A29C8C75F47A6E909C349B61FEE196CBC35A6AE0CBD -2018-01-18 01:59:27.616 UTC [msp] GetLocalMSP -> DEBU e96 Returning existing local MSP -2018-01-18 01:59:27.616 UTC [msp] GetDefaultSigningIdentity -> DEBU e97 Obtaining default signing identity -2018-01-18 01:59:27.616 UTC [orderer/multichain] addLastConfigSignature -> DEBU e98 [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 -2018-01-18 01:59:27.616 UTC [msp] GetLocalMSP -> DEBU e99 Returning existing local MSP -2018-01-18 01:59:27.616 UTC [msp] GetDefaultSigningIdentity -> DEBU e9a Obtaining default signing identity -2018-01-18 01:59:27.616 UTC [msp/identity] Sign -> DEBU e9b Sign: plaintext: 08020AFA050A0A4F7264657265724D53...093D89017A38B39B5BB88D1158E83F69 -2018-01-18 01:59:27.616 UTC [msp/identity] Sign -> DEBU e9c Sign: digest: 3562A7B51449EA2EC8B21F41866EEFB1081293B996B5041656F6AFC98FDA5037 -2018-01-18 01:59:27.623 UTC [fsblkstorage] indexBlock -> DEBU e9d Indexing block [blockNum=3, blockHash=[]byte{0x97, 0xe, 0xbe, 0xd9, 0x27, 0xde, 0xad, 0x13, 0x22, 0x1c, 0xcb, 0xdd, 0x26, 0x3a, 0xf8, 0x99, 0xca, 0x2c, 0x54, 0x92, 0x33, 0x30, 0x7d, 0x62, 0xca, 0x6a, 0xf9, 0x20, 0xf, 0xe3, 0x82, 0xcd} txOffsets= -txId=ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824 locPointer=offset=70, bytesLength=3395 +2018-01-18 09:30:21.615 UTC [cauthdsl] func2 -> DEBU ea7 0xc4200261b0 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) +2018-01-18 09:30:21.619 UTC [cauthdsl] func2 -> DEBU ea8 0xc4200261b0 principal evaluation fails +2018-01-18 09:30:21.620 UTC [cauthdsl] func1 -> DEBU ea9 0xc4200261b0 gate 1516267821597403168 evaluation fails +2018-01-18 09:30:21.626 UTC [cauthdsl] func1 -> DEBU eaa 0xc4200261c0 gate 1516267821626024450 evaluation starts +2018-01-18 09:30:21.626 UTC [cauthdsl] func2 -> DEBU eab 0xc4200261c0 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:30:21.626 UTC [cauthdsl] func2 -> DEBU eac 0xc4200261c0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:30:21.626 UTC [msp/identity] newIdentity -> DEBU ead Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +xHTBvxfK6mAzmUitFmY= +-----END CERTIFICATE----- +2018-01-18 09:30:21.627 UTC [cauthdsl] func2 -> DEBU eae 0xc4200261c0 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got Org1MSP) +2018-01-18 09:30:21.627 UTC [cauthdsl] func2 -> DEBU eaf 0xc4200261c0 principal evaluation fails +2018-01-18 09:30:21.627 UTC [cauthdsl] func1 -> DEBU eb0 0xc4200261c0 gate 1516267821626024450 evaluation fails +2018-01-18 09:30:21.627 UTC [cauthdsl] func1 -> DEBU eb1 0xc4200261e0 gate 1516267821627480122 evaluation starts +2018-01-18 09:30:21.627 UTC [cauthdsl] func2 -> DEBU eb2 0xc4200261e0 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:30:21.627 UTC [cauthdsl] func2 -> DEBU eb3 0xc4200261e0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:30:21.628 UTC [msp/identity] newIdentity -> DEBU eb4 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +xHTBvxfK6mAzmUitFmY= +-----END CERTIFICATE----- +2018-01-18 09:30:21.628 UTC [msp] SatisfiesPrincipal -> DEBU eb5 Checking if identity satisfies MEMBER role for Org1MSP +2018-01-18 09:30:21.628 UTC [msp] Validate -> DEBU eb6 MSP Org1MSP validating identity +2018-01-18 09:30:21.633 UTC [cauthdsl] func2 -> DEBU eb7 0xc4200261e0 principal matched by identity 0 +2018-01-18 09:30:21.633 UTC [msp/identity] Verify -> DEBU eb8 Verify: digest = 00000000 b1 92 da a3 15 e9 e5 65 7d ae 3f 83 e4 31 a5 a3 |.......e}.?..1..| +00000010 33 27 f0 53 a3 96 e4 4a 87 7d c9 ca ae 5d 68 4c |3'.S...J.}...]hL| +2018-01-18 09:30:21.633 UTC [msp/identity] Verify -> DEBU eb9 Verify: sig = 00000000 30 44 02 20 70 eb 48 f1 b3 f6 1f 2e 44 7a 3f 20 |0D. p.H.....Dz? | +00000010 fe 8b a3 e1 bb 9f 5a b0 7e 0c 69 2c f4 68 24 17 |......Z.~.i,.h$.| +00000020 2d cf dd 6c 02 20 7f d3 9b 7a 25 44 22 de 49 b3 |-..l. ...z%D".I.| +00000030 d1 f0 a0 67 d2 5f a3 47 68 e8 47 c9 9d 7c f7 8c |...g._.Gh.G..|..| +00000040 7f ea 0a 2c 45 9a |...,E.| +2018-01-18 09:30:21.633 UTC [cauthdsl] func2 -> DEBU eba 0xc4200261e0 principal evaluation succeeds for identity 0 +2018-01-18 09:30:21.633 UTC [cauthdsl] func1 -> DEBU ebb 0xc4200261e0 gate 1516267821627480122 evaluation succeeds +2018-01-18 09:30:21.633 UTC [orderer/common/sigfilter] Apply -> DEBU ebc Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4202d80c0 1 [0xc42014a778]}) %!s(*policies.implicitMetaPolicy=&{0xc420837160 1 [0xc42014a6b0 0xc42014a5d8]})]} +2018-01-18 09:30:21.634 UTC [orderer/common/blockcutter] Ordered -> DEBU ebd Enqueuing message into batch +2018-01-18 09:30:22.087 UTC [orderer/main] Broadcast -> DEBU ebe Starting new Broadcast handler +2018-01-18 09:30:22.087 UTC [orderer/common/broadcast] Handle -> DEBU ebf Starting new broadcast loop +2018-01-18 09:30:23.635 UTC [orderer/solo] main -> DEBU ec0 Batch timer expired, creating block +2018-01-18 09:30:23.635 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU ec1 retrieveBlockByNumber() - blockNum = [2] +2018-01-18 09:30:23.635 UTC [fsblkstorage] newBlockfileStream -> DEBU ec2 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[25667] +2018-01-18 09:30:23.635 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU ec3 Remaining bytes=[13791], Going to peek [8] bytes +2018-01-18 09:30:23.635 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU ec4 Returning blockbytes - length=[13789], placementInfo={fileNum=[0], startOffset=[25667], bytesOffset=[25669]} +2018-01-18 09:30:23.636 UTC [orderer/multichain] addBlockSignature -> DEBU ec5 &{ledgerResources:0xc4209b5140 chain:0xc4209b5a00 cutter:0xc420863b80 filters:0xc4209b5640 signer:0x1274e88 lastConfig:2 lastConfigSeq:3} +2018-01-18 09:30:23.636 UTC [orderer/multichain] addBlockSignature -> DEBU ec6 &{} +2018-01-18 09:30:23.636 UTC [msp] GetLocalMSP -> DEBU ec7 Returning existing local MSP +2018-01-18 09:30:23.636 UTC [msp] GetDefaultSigningIdentity -> DEBU ec8 Obtaining default signing identity +2018-01-18 09:30:23.637 UTC [msp] GetLocalMSP -> DEBU ec9 Returning existing local MSP +2018-01-18 09:30:23.637 UTC [msp] GetDefaultSigningIdentity -> DEBU eca Obtaining default signing identity +2018-01-18 09:30:23.637 UTC [msp/identity] Sign -> DEBU ecb Sign: plaintext: 0AFA050A0A4F7264657265724D535012...5E77D824BA9811C84DEA368297FB10ED +2018-01-18 09:30:23.637 UTC [msp/identity] Sign -> DEBU ecc Sign: digest: AAF6A149474A4E88CDC3FD6F856BCF3DD9822F30E42525314168E58ABA5FB451 +2018-01-18 09:30:23.638 UTC [msp] GetLocalMSP -> DEBU ecd Returning existing local MSP +2018-01-18 09:30:23.638 UTC [msp] GetDefaultSigningIdentity -> DEBU ece Obtaining default signing identity +2018-01-18 09:30:23.639 UTC [orderer/multichain] addLastConfigSignature -> DEBU ecf [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 +2018-01-18 09:30:23.639 UTC [msp] GetLocalMSP -> DEBU ed0 Returning existing local MSP +2018-01-18 09:30:23.639 UTC [msp] GetDefaultSigningIdentity -> DEBU ed1 Obtaining default signing identity +2018-01-18 09:30:23.640 UTC [msp/identity] Sign -> DEBU ed2 Sign: plaintext: 08020AFA050A0A4F7264657265724D53...5E77D824BA9811C84DEA368297FB10ED +2018-01-18 09:30:23.640 UTC [msp/identity] Sign -> DEBU ed3 Sign: digest: A370933C04B33C4963BDFA82FB3F15F27AEC7CA23378D34521313FB22BA6A9AF +2018-01-18 09:30:23.646 UTC [fsblkstorage] indexBlock -> DEBU ed4 Indexing block [blockNum=3, blockHash=[]byte{0x8a, 0x53, 0x56, 0xf, 0x7f, 0x2f, 0x8e, 0x2d, 0xd8, 0x4c, 0x3b, 0x34, 0x50, 0xc5, 0x52, 0x82, 0xe4, 0xc0, 0x8c, 0x36, 0x63, 0x95, 0x3a, 0xc, 0x39, 0x9b, 0xb8, 0x1a, 0x82, 0x88, 0x47, 0xb9} txOffsets= +txId=651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6 locPointer=offset=70, bytesLength=3393 ] -2018-01-18 01:59:27.623 UTC [fsblkstorage] updateCheckpoint -> DEBU e9e Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[44671], isChainEmpty=[false], lastBlockNumber=[3] -2018-01-18 01:59:27.623 UTC [orderer/multichain] WriteBlock -> DEBU e9f [channel: businesschannel] Wrote block 3 -2018-01-18 01:59:27.624 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU ea1 retrieveBlockByNumber() - blockNum = [3] -2018-01-18 01:59:27.623 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU ea0 retrieveBlockByNumber() - blockNum = [3] -2018-01-18 01:59:27.624 UTC [fsblkstorage] newBlockfileStream -> DEBU ea3 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[39456] -2018-01-18 01:59:27.624 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU ea4 Remaining bytes=[5215], Going to peek [8] bytes -2018-01-18 01:59:27.624 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU ea5 Returning blockbytes - length=[5213], placementInfo={fileNum=[0], startOffset=[39456], bytesOffset=[39458]} -2018-01-18 01:59:27.624 UTC [orderer/common/deliver] Handle -> DEBU ea6 [channel: businesschannel] Delivering block for (0xc4208701a0) -2018-01-18 01:59:27.624 UTC [fsblkstorage] newBlockfileStream -> DEBU ea2 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[39456] -2018-01-18 01:59:27.624 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU ea7 Remaining bytes=[5215], Going to peek [8] bytes -2018-01-18 01:59:27.625 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU ea8 Returning blockbytes - length=[5213], placementInfo={fileNum=[0], startOffset=[39456], bytesOffset=[39458]} -2018-01-18 01:59:27.625 UTC [orderer/common/deliver] Handle -> DEBU ea9 [channel: businesschannel] Delivering block for (0xc42022a4a0) -2018-01-18 01:59:46.173 UTC [orderer/common/broadcast] Handle -> DEBU eaa [channel: businesschannel] Broadcast is filtering message of type ENDORSER_TRANSACTION -2018-01-18 01:59:46.173 UTC [policies] GetPolicy -> DEBU eab Returning policy Writers for evaluation -2018-01-18 01:59:46.173 UTC [cauthdsl] func1 -> DEBU eac 0xc4200260a8 gate 1516240786173543803 evaluation starts -2018-01-18 01:59:46.173 UTC [cauthdsl] func2 -> DEBU ead 0xc4200260a8 signed by 0 principal evaluation starts (used [false]) -2018-01-18 01:59:46.173 UTC [cauthdsl] func2 -> DEBU eae 0xc4200260a8 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-18 01:59:46.174 UTC [msp/identity] newIdentity -> DEBU eaf Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:30:23.646 UTC [fsblkstorage] updateCheckpoint -> DEBU ed5 Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[44670], isChainEmpty=[false], lastBlockNumber=[3] +2018-01-18 09:30:23.646 UTC [orderer/multichain] WriteBlock -> DEBU ed6 [channel: businesschannel] Wrote block 3 +2018-01-18 09:30:23.647 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU ed7 retrieveBlockByNumber() - blockNum = [3] +2018-01-18 09:30:23.647 UTC [fsblkstorage] newBlockfileStream -> DEBU eda newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[39458] +2018-01-18 09:30:23.647 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU edb Remaining bytes=[5212], Going to peek [8] bytes +2018-01-18 09:30:23.647 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU edc Returning blockbytes - length=[5210], placementInfo={fileNum=[0], startOffset=[39458], bytesOffset=[39460]} +2018-01-18 09:30:23.647 UTC [orderer/common/deliver] Handle -> DEBU edd [channel: businesschannel] Delivering block for (0xc42037a6c0) +2018-01-18 09:30:23.647 UTC [orderer/common/deliver] Handle -> WARN ede [channel: businesschannel] Error sending to stream: rpc error: code = Canceled desc = context canceled +2018-01-18 09:30:23.647 UTC [orderer/main] func1 -> DEBU edf Closing Deliver stream +2018-01-18 09:30:23.647 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU ed9 retrieveBlockByNumber() - blockNum = [3] +2018-01-18 09:30:23.648 UTC [fsblkstorage] newBlockfileStream -> DEBU ee0 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[39458] +2018-01-18 09:30:23.648 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU ee1 Remaining bytes=[5212], Going to peek [8] bytes +2018-01-18 09:30:23.648 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU ee2 Returning blockbytes - length=[5210], placementInfo={fileNum=[0], startOffset=[39458], bytesOffset=[39460]} +2018-01-18 09:30:23.648 UTC [orderer/common/deliver] Handle -> DEBU ee3 [channel: businesschannel] Delivering block for (0xc420363320) +2018-01-18 09:30:23.647 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU ed8 retrieveBlockByNumber() - blockNum = [3] +2018-01-18 09:30:23.648 UTC [fsblkstorage] newBlockfileStream -> DEBU ee4 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[39458] +2018-01-18 09:30:23.649 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU ee5 Remaining bytes=[5212], Going to peek [8] bytes +2018-01-18 09:30:23.649 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU ee6 Returning blockbytes - length=[5210], placementInfo={fileNum=[0], startOffset=[39458], bytesOffset=[39460]} +2018-01-18 09:30:23.649 UTC [orderer/common/deliver] Handle -> DEBU ee7 [channel: businesschannel] Delivering block for (0xc420b7cce0) +2018-01-18 09:30:45.071 UTC [orderer/common/broadcast] Handle -> DEBU ee8 [channel: businesschannel] Broadcast is filtering message of type ENDORSER_TRANSACTION +2018-01-18 09:30:45.071 UTC [policies] GetPolicy -> DEBU ee9 Returning policy Writers for evaluation +2018-01-18 09:30:45.071 UTC [cauthdsl] func1 -> DEBU eea 0xc42014a940 gate 1516267845071933028 evaluation starts +2018-01-18 09:30:45.072 UTC [cauthdsl] func2 -> DEBU eeb 0xc42014a940 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:30:45.072 UTC [cauthdsl] func2 -> DEBU eec 0xc42014a940 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:30:45.072 UTC [msp/identity] newIdentity -> DEBU eed Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -6786,13 +6918,13 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS AXYxULZpXYDQXt1KaLI= -----END CERTIFICATE----- -2018-01-18 01:59:46.174 UTC [cauthdsl] func2 -> DEBU eb0 0xc4200260a8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) -2018-01-18 01:59:46.174 UTC [cauthdsl] func2 -> DEBU eb1 0xc4200260a8 principal evaluation fails -2018-01-18 01:59:46.174 UTC [cauthdsl] func1 -> DEBU eb2 0xc4200260a8 gate 1516240786173543803 evaluation fails -2018-01-18 01:59:46.174 UTC [cauthdsl] func1 -> DEBU eb3 0xc420026168 gate 1516240786174653747 evaluation starts -2018-01-18 01:59:46.174 UTC [cauthdsl] func2 -> DEBU eb4 0xc420026168 signed by 0 principal evaluation starts (used [false]) -2018-01-18 01:59:46.174 UTC [cauthdsl] func2 -> DEBU eb5 0xc420026168 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-18 01:59:46.175 UTC [msp/identity] newIdentity -> DEBU eb6 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:30:45.073 UTC [cauthdsl] func2 -> DEBU eee 0xc42014a940 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) +2018-01-18 09:30:45.073 UTC [cauthdsl] func2 -> DEBU eef 0xc42014a940 principal evaluation fails +2018-01-18 09:30:45.073 UTC [cauthdsl] func1 -> DEBU ef0 0xc42014a940 gate 1516267845071933028 evaluation fails +2018-01-18 09:30:45.073 UTC [cauthdsl] func1 -> DEBU ef1 0xc42014a950 gate 1516267845073317736 evaluation starts +2018-01-18 09:30:45.073 UTC [cauthdsl] func2 -> DEBU ef2 0xc42014a950 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:30:45.073 UTC [cauthdsl] func2 -> DEBU ef3 0xc42014a950 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:30:45.074 UTC [msp/identity] newIdentity -> DEBU ef4 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -6806,13 +6938,25 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS AXYxULZpXYDQXt1KaLI= -----END CERTIFICATE----- -2018-01-18 01:59:46.175 UTC [cauthdsl] func2 -> DEBU eb7 0xc420026168 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got Org2MSP) -2018-01-18 01:59:46.176 UTC [cauthdsl] func2 -> DEBU eb8 0xc420026168 principal evaluation fails -2018-01-18 01:59:46.176 UTC [cauthdsl] func1 -> DEBU eb9 0xc420026168 gate 1516240786174653747 evaluation fails -2018-01-18 01:59:46.176 UTC [cauthdsl] func1 -> DEBU eba 0xc4200261f8 gate 1516240786176752098 evaluation starts -2018-01-18 01:59:46.176 UTC [cauthdsl] func2 -> DEBU ebb 0xc4200261f8 signed by 0 principal evaluation starts (used [false]) -2018-01-18 01:59:46.177 UTC [cauthdsl] func2 -> DEBU ebc 0xc4200261f8 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-18 01:59:46.177 UTC [msp/identity] newIdentity -> DEBU ebd Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:30:45.074 UTC [msp] SatisfiesPrincipal -> DEBU ef5 Checking if identity satisfies MEMBER role for Org2MSP +2018-01-18 09:30:45.074 UTC [msp] Validate -> DEBU ef6 MSP Org2MSP validating identity +2018-01-18 09:30:45.075 UTC [cauthdsl] func2 -> DEBU ef7 0xc42014a950 principal matched by identity 0 +2018-01-18 09:30:45.075 UTC [msp/identity] Verify -> DEBU ef8 Verify: digest = 00000000 b5 73 b3 54 d1 e1 01 7e 02 61 8f 23 c6 5b 3f fe |.s.T...~.a.#.[?.| +00000010 5f 91 94 4d 92 a1 96 ae e2 77 e7 ec 35 5c 22 88 |_..M.....w..5\".| +2018-01-18 09:30:45.075 UTC [msp/identity] Verify -> DEBU ef9 Verify: sig = 00000000 30 44 02 20 72 99 11 9c 93 93 0b eb d9 d4 40 d6 |0D. r.........@.| +00000010 75 c6 e6 76 a0 a1 6c 88 6d 8f 48 48 77 58 52 60 |u..v..l.m.HHwXR`| +00000020 4b 27 1c 41 02 20 14 22 34 1f aa 23 f8 69 3c 0d |K'.A. ."4..#.i<.| +00000030 ff 39 11 6f 9e b4 fa 0c da 28 ad 88 dd 53 25 4e |.9.o.....(...S%N| +00000040 5b c5 fc 06 e6 a1 |[.....| +2018-01-18 09:30:45.075 UTC [cauthdsl] func2 -> DEBU efa 0xc42014a950 principal evaluation succeeds for identity 0 +2018-01-18 09:30:45.075 UTC [cauthdsl] func1 -> DEBU efb 0xc42014a950 gate 1516267845073317736 evaluation succeeds +2018-01-18 09:30:45.075 UTC [orderer/common/sigfilter] Apply -> DEBU efc Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4202d80c0 1 [0xc42014a778]}) %!s(*policies.implicitMetaPolicy=&{0xc420837160 1 [0xc42014a6b0 0xc42014a5d8]})]} +2018-01-18 09:30:45.076 UTC [orderer/common/broadcast] Handle -> DEBU efd [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION +2018-01-18 09:30:45.076 UTC [policies] GetPolicy -> DEBU efe Returning policy Writers for evaluation +2018-01-18 09:30:45.076 UTC [cauthdsl] func1 -> DEBU eff 0xc4200262a8 gate 1516267845076591298 evaluation starts +2018-01-18 09:30:45.076 UTC [cauthdsl] func2 -> DEBU f00 0xc4200262a8 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:30:45.077 UTC [cauthdsl] func2 -> DEBU f02 0xc4200262a8 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:30:45.078 UTC [msp/identity] newIdentity -> DEBU f03 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -6826,24 +6970,13 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS AXYxULZpXYDQXt1KaLI= -----END CERTIFICATE----- -2018-01-18 01:59:46.178 UTC [msp] SatisfiesPrincipal -> DEBU ebe Checking if identity satisfies MEMBER role for Org2MSP -2018-01-18 01:59:46.178 UTC [msp] Validate -> DEBU ebf MSP Org2MSP validating identity -2018-01-18 01:59:46.178 UTC [cauthdsl] func2 -> DEBU ec0 0xc4200261f8 principal matched by identity 0 -2018-01-18 01:59:46.178 UTC [msp/identity] Verify -> DEBU ec1 Verify: digest = 00000000 8c e3 dd 13 52 02 29 6b 7a b0 c2 58 92 56 63 ec |....R.)kz..X.Vc.| -00000010 85 63 36 bb fc 7a 28 52 ec b4 7a f4 20 27 f2 05 |.c6..z(R..z. '..| -2018-01-18 01:59:46.178 UTC [msp/identity] Verify -> DEBU ec2 Verify: sig = 00000000 30 45 02 21 00 d8 96 15 30 ad d6 fc 5b 8d 1f 09 |0E.!....0...[...| -00000010 3a ee 80 2b b9 e5 46 76 42 80 66 82 cb 64 46 41 |:..+..FvB.f..dFA| -00000020 05 2c 75 c9 67 02 20 60 bd 82 5c 6d da b3 c7 f8 |.,u.g. `..\m....| -00000030 97 3a 78 62 8a 1c 95 d4 d0 5b 6b 59 77 cc a2 22 |.:xb.....[kYw.."| -00000040 a8 0d 36 b5 ad aa fc |..6....| -2018-01-18 01:59:46.179 UTC [cauthdsl] func2 -> DEBU ec3 0xc4200261f8 principal evaluation succeeds for identity 0 -2018-01-18 01:59:46.179 UTC [cauthdsl] func1 -> DEBU ec4 0xc4200261f8 gate 1516240786176752098 evaluation succeeds -2018-01-18 01:59:46.179 UTC [orderer/common/sigfilter] Apply -> DEBU ec5 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4202911c0 1 [0xc42014a3a8]}) %!s(*policies.implicitMetaPolicy=&{0xc420291840 1 [0xc42014a5f0 0xc42014a878]})]} -2018-01-18 01:59:46.179 UTC [policies] GetPolicy -> DEBU ec6 Returning policy Writers for evaluation -2018-01-18 01:59:46.179 UTC [cauthdsl] func1 -> DEBU ec7 0xc42014ab18 gate 1516240786179651047 evaluation starts -2018-01-18 01:59:46.179 UTC [cauthdsl] func2 -> DEBU ec8 0xc42014ab18 signed by 0 principal evaluation starts (used [false]) -2018-01-18 01:59:46.179 UTC [cauthdsl] func2 -> DEBU ec9 0xc42014ab18 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-18 01:59:46.179 UTC [msp/identity] newIdentity -> DEBU eca Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:30:45.078 UTC [cauthdsl] func2 -> DEBU f04 0xc4200262a8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) +2018-01-18 09:30:45.078 UTC [cauthdsl] func2 -> DEBU f05 0xc4200262a8 principal evaluation fails +2018-01-18 09:30:45.078 UTC [cauthdsl] func1 -> DEBU f06 0xc4200262a8 gate 1516267845076591298 evaluation fails +2018-01-18 09:30:45.078 UTC [cauthdsl] func1 -> DEBU f07 0xc4200262b8 gate 1516267845078805990 evaluation starts +2018-01-18 09:30:45.078 UTC [cauthdsl] func2 -> DEBU f08 0xc4200262b8 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:30:45.078 UTC [cauthdsl] func2 -> DEBU f09 0xc4200262b8 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:30:45.079 UTC [msp/identity] newIdentity -> DEBU f0a Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -6857,106 +6990,65 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS AXYxULZpXYDQXt1KaLI= -----END CERTIFICATE----- -2018-01-18 01:59:46.180 UTC [cauthdsl] func2 -> DEBU ecb 0xc42014ab18 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) -2018-01-18 01:59:46.180 UTC [cauthdsl] func2 -> DEBU ecc 0xc42014ab18 principal evaluation fails -2018-01-18 01:59:46.180 UTC [cauthdsl] func1 -> DEBU ecd 0xc42014ab18 gate 1516240786179651047 evaluation fails -2018-01-18 01:59:46.180 UTC [cauthdsl] func1 -> DEBU ece 0xc42014ab28 gate 1516240786180450148 evaluation starts -2018-01-18 01:59:46.180 UTC [cauthdsl] func2 -> DEBU ecf 0xc42014ab28 signed by 0 principal evaluation starts (used [false]) -2018-01-18 01:59:46.180 UTC [cauthdsl] func2 -> DEBU ed0 0xc42014ab28 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-18 01:59:46.180 UTC [msp/identity] newIdentity -> DEBU ed1 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -AXYxULZpXYDQXt1KaLI= ------END CERTIFICATE----- -2018-01-18 01:59:46.181 UTC [cauthdsl] func2 -> DEBU ed2 0xc42014ab28 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got Org2MSP) -2018-01-18 01:59:46.181 UTC [cauthdsl] func2 -> DEBU ed3 0xc42014ab28 principal evaluation fails -2018-01-18 01:59:46.181 UTC [cauthdsl] func1 -> DEBU ed4 0xc42014ab28 gate 1516240786180450148 evaluation fails -2018-01-18 01:59:46.181 UTC [cauthdsl] func1 -> DEBU ed5 0xc42014ab38 gate 1516240786181298923 evaluation starts -2018-01-18 01:59:46.181 UTC [cauthdsl] func2 -> DEBU ed6 0xc42014ab38 signed by 0 principal evaluation starts (used [false]) -2018-01-18 01:59:46.181 UTC [cauthdsl] func2 -> DEBU ed7 0xc42014ab38 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-18 01:59:46.181 UTC [msp/identity] newIdentity -> DEBU ed8 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -AXYxULZpXYDQXt1KaLI= ------END CERTIFICATE----- -2018-01-18 01:59:46.181 UTC [msp] SatisfiesPrincipal -> DEBU ed9 Checking if identity satisfies MEMBER role for Org2MSP -2018-01-18 01:59:46.181 UTC [msp] Validate -> DEBU eda MSP Org2MSP validating identity -2018-01-18 01:59:46.182 UTC [cauthdsl] func2 -> DEBU edb 0xc42014ab38 principal matched by identity 0 -2018-01-18 01:59:46.182 UTC [msp/identity] Verify -> DEBU edc Verify: digest = 00000000 8c e3 dd 13 52 02 29 6b 7a b0 c2 58 92 56 63 ec |....R.)kz..X.Vc.| -00000010 85 63 36 bb fc 7a 28 52 ec b4 7a f4 20 27 f2 05 |.c6..z(R..z. '..| -2018-01-18 01:59:46.182 UTC [msp/identity] Verify -> DEBU edd Verify: sig = 00000000 30 45 02 21 00 d8 96 15 30 ad d6 fc 5b 8d 1f 09 |0E.!....0...[...| -00000010 3a ee 80 2b b9 e5 46 76 42 80 66 82 cb 64 46 41 |:..+..FvB.f..dFA| -00000020 05 2c 75 c9 67 02 20 60 bd 82 5c 6d da b3 c7 f8 |.,u.g. `..\m....| -00000030 97 3a 78 62 8a 1c 95 d4 d0 5b 6b 59 77 cc a2 22 |.:xb.....[kYw.."| -00000040 a8 0d 36 b5 ad aa fc |..6....| -2018-01-18 01:59:46.182 UTC [cauthdsl] func2 -> DEBU ede 0xc42014ab38 principal evaluation succeeds for identity 0 -2018-01-18 01:59:46.182 UTC [cauthdsl] func1 -> DEBU edf 0xc42014ab38 gate 1516240786181298923 evaluation succeeds -2018-01-18 01:59:46.182 UTC [orderer/common/sigfilter] Apply -> DEBU ee0 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4202911c0 1 [0xc42014a3a8]}) %!s(*policies.implicitMetaPolicy=&{0xc420291840 1 [0xc42014a5f0 0xc42014a878]})]} -2018-01-18 01:59:46.182 UTC [orderer/common/blockcutter] Ordered -> DEBU ee1 Enqueuing message into batch -2018-01-18 01:59:46.182 UTC [orderer/common/broadcast] Handle -> DEBU ee2 [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION -2018-01-18 01:59:46.183 UTC [orderer/common/broadcast] Handle -> WARN ee3 Error reading from stream: rpc error: code = Canceled desc = context canceled -2018-01-18 01:59:46.184 UTC [orderer/main] func1 -> DEBU ee4 Closing Broadcast stream -2018-01-18 01:59:48.183 UTC [orderer/solo] main -> DEBU ee5 Batch timer expired, creating block -2018-01-18 01:59:48.183 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU ee6 retrieveBlockByNumber() - blockNum = [3] -2018-01-18 01:59:48.183 UTC [fsblkstorage] newBlockfileStream -> DEBU ee7 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[39456] -2018-01-18 01:59:48.183 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU ee8 Remaining bytes=[5215], Going to peek [8] bytes -2018-01-18 01:59:48.183 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU ee9 Returning blockbytes - length=[5213], placementInfo={fileNum=[0], startOffset=[39456], bytesOffset=[39458]} -2018-01-18 01:59:48.184 UTC [orderer/multichain] addBlockSignature -> DEBU eea &{ledgerResources:0xc420208040 chain:0xc420208da0 cutter:0xc420a51270 filters:0xc4202089e0 signer:0x1274e88 lastConfig:2 lastConfigSeq:3} -2018-01-18 01:59:48.184 UTC [orderer/multichain] addBlockSignature -> DEBU eeb &{} -2018-01-18 01:59:48.184 UTC [msp] GetLocalMSP -> DEBU eec Returning existing local MSP -2018-01-18 01:59:48.184 UTC [msp] GetDefaultSigningIdentity -> DEBU eed Obtaining default signing identity -2018-01-18 01:59:48.184 UTC [msp] GetLocalMSP -> DEBU eee Returning existing local MSP -2018-01-18 01:59:48.184 UTC [msp] GetDefaultSigningIdentity -> DEBU eef Obtaining default signing identity -2018-01-18 01:59:48.184 UTC [msp/identity] Sign -> DEBU ef0 Sign: plaintext: 0AFA050A0A4F7264657265724D535012...3735B56DC62A2CCCB5080A8B6EF4E8DA -2018-01-18 01:59:48.184 UTC [msp/identity] Sign -> DEBU ef1 Sign: digest: 8B938DD8A2AB2424E817CBACB3749BEC57D8F3E91A2D16213AD6EEDFECB83DE8 -2018-01-18 01:59:48.185 UTC [msp] GetLocalMSP -> DEBU ef2 Returning existing local MSP -2018-01-18 01:59:48.185 UTC [msp] GetDefaultSigningIdentity -> DEBU ef3 Obtaining default signing identity -2018-01-18 01:59:48.185 UTC [orderer/multichain] addLastConfigSignature -> DEBU ef4 [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 -2018-01-18 01:59:48.185 UTC [msp] GetLocalMSP -> DEBU ef5 Returning existing local MSP -2018-01-18 01:59:48.185 UTC [msp] GetDefaultSigningIdentity -> DEBU ef6 Obtaining default signing identity -2018-01-18 01:59:48.185 UTC [msp/identity] Sign -> DEBU ef7 Sign: plaintext: 08020AFA050A0A4F7264657265724D53...3735B56DC62A2CCCB5080A8B6EF4E8DA -2018-01-18 01:59:48.185 UTC [msp/identity] Sign -> DEBU ef8 Sign: digest: D7E97D05D33C08C91A2092B621DD6386B7B08D645448C25CB415FD00AC269E2F -2018-01-18 01:59:48.188 UTC [fsblkstorage] indexBlock -> DEBU ef9 Indexing block [blockNum=4, blockHash=[]byte{0xa9, 0xa2, 0x5c, 0x6d, 0x32, 0x6, 0xa0, 0x2d, 0x65, 0xc3, 0x6e, 0x5b, 0xf7, 0xb7, 0x4f, 0x48, 0x2d, 0xb5, 0x26, 0x88, 0xf4, 0x50, 0x7e, 0x26, 0xb8, 0xd0, 0xfe, 0x2f, 0x87, 0xde, 0x87, 0x83} txOffsets= -txId=544f379dda618ff2c82301cddc728a5ab3076d114052fb463df7e9d6c1ede6fd locPointer=offset=70, bytesLength=3394 +2018-01-18 09:30:45.079 UTC [msp] SatisfiesPrincipal -> DEBU f0b Checking if identity satisfies MEMBER role for Org2MSP +2018-01-18 09:30:45.079 UTC [msp] Validate -> DEBU f0c MSP Org2MSP validating identity +2018-01-18 09:30:45.079 UTC [cauthdsl] func2 -> DEBU f0d 0xc4200262b8 principal matched by identity 0 +2018-01-18 09:30:45.080 UTC [msp/identity] Verify -> DEBU f0e Verify: digest = 00000000 b5 73 b3 54 d1 e1 01 7e 02 61 8f 23 c6 5b 3f fe |.s.T...~.a.#.[?.| +00000010 5f 91 94 4d 92 a1 96 ae e2 77 e7 ec 35 5c 22 88 |_..M.....w..5\".| +2018-01-18 09:30:45.080 UTC [msp/identity] Verify -> DEBU f0f Verify: sig = 00000000 30 44 02 20 72 99 11 9c 93 93 0b eb d9 d4 40 d6 |0D. r.........@.| +00000010 75 c6 e6 76 a0 a1 6c 88 6d 8f 48 48 77 58 52 60 |u..v..l.m.HHwXR`| +00000020 4b 27 1c 41 02 20 14 22 34 1f aa 23 f8 69 3c 0d |K'.A. ."4..#.i<.| +00000030 ff 39 11 6f 9e b4 fa 0c da 28 ad 88 dd 53 25 4e |.9.o.....(...S%N| +00000040 5b c5 fc 06 e6 a1 |[.....| +2018-01-18 09:30:45.080 UTC [cauthdsl] func2 -> DEBU f10 0xc4200262b8 principal evaluation succeeds for identity 0 +2018-01-18 09:30:45.081 UTC [cauthdsl] func1 -> DEBU f11 0xc4200262b8 gate 1516267845078805990 evaluation succeeds +2018-01-18 09:30:45.081 UTC [orderer/common/sigfilter] Apply -> DEBU f12 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4202d80c0 1 [0xc42014a778]}) %!s(*policies.implicitMetaPolicy=&{0xc420837160 1 [0xc42014a6b0 0xc42014a5d8]})]} +2018-01-18 09:30:45.081 UTC [orderer/common/blockcutter] Ordered -> DEBU f13 Enqueuing message into batch +2018-01-18 09:30:45.077 UTC [orderer/common/broadcast] Handle -> WARN f01 Error reading from stream: rpc error: code = Canceled desc = context canceled +2018-01-18 09:30:45.082 UTC [orderer/main] func1 -> DEBU f14 Closing Broadcast stream +2018-01-18 09:30:47.083 UTC [orderer/solo] main -> DEBU f15 Batch timer expired, creating block +2018-01-18 09:30:47.083 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU f16 retrieveBlockByNumber() - blockNum = [3] +2018-01-18 09:30:47.083 UTC [fsblkstorage] newBlockfileStream -> DEBU f17 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[39458] +2018-01-18 09:30:47.083 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f18 Remaining bytes=[5212], Going to peek [8] bytes +2018-01-18 09:30:47.083 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f19 Returning blockbytes - length=[5210], placementInfo={fileNum=[0], startOffset=[39458], bytesOffset=[39460]} +2018-01-18 09:30:47.084 UTC [orderer/multichain] addBlockSignature -> DEBU f1a &{ledgerResources:0xc4209b5140 chain:0xc4209b5a00 cutter:0xc420863b80 filters:0xc4209b5640 signer:0x1274e88 lastConfig:2 lastConfigSeq:3} +2018-01-18 09:30:47.084 UTC [orderer/multichain] addBlockSignature -> DEBU f1b &{} +2018-01-18 09:30:47.084 UTC [msp] GetLocalMSP -> DEBU f1c Returning existing local MSP +2018-01-18 09:30:47.084 UTC [msp] GetDefaultSigningIdentity -> DEBU f1d Obtaining default signing identity +2018-01-18 09:30:47.084 UTC [msp] GetLocalMSP -> DEBU f1e Returning existing local MSP +2018-01-18 09:30:47.084 UTC [msp] GetDefaultSigningIdentity -> DEBU f1f Obtaining default signing identity +2018-01-18 09:30:47.084 UTC [msp/identity] Sign -> DEBU f20 Sign: plaintext: 0AFA050A0A4F7264657265724D535012...D11C584A46DA0F23C69FDFB4118B619E +2018-01-18 09:30:47.084 UTC [msp/identity] Sign -> DEBU f21 Sign: digest: 40A259B6BB0B23569F107FE292554B7FEC91C7D6D00639921DC9DA3D9AC81B87 +2018-01-18 09:30:47.085 UTC [msp] GetLocalMSP -> DEBU f22 Returning existing local MSP +2018-01-18 09:30:47.085 UTC [msp] GetDefaultSigningIdentity -> DEBU f23 Obtaining default signing identity +2018-01-18 09:30:47.085 UTC [orderer/multichain] addLastConfigSignature -> DEBU f24 [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 +2018-01-18 09:30:47.085 UTC [msp] GetLocalMSP -> DEBU f25 Returning existing local MSP +2018-01-18 09:30:47.085 UTC [msp] GetDefaultSigningIdentity -> DEBU f26 Obtaining default signing identity +2018-01-18 09:30:47.085 UTC [msp/identity] Sign -> DEBU f27 Sign: plaintext: 08020AFA050A0A4F7264657265724D53...D11C584A46DA0F23C69FDFB4118B619E +2018-01-18 09:30:47.085 UTC [msp/identity] Sign -> DEBU f28 Sign: digest: FF39799916030A17545301657D598E401DC682356F39CD65AE3784801D828F0E +2018-01-18 09:30:47.093 UTC [fsblkstorage] indexBlock -> DEBU f29 Indexing block [blockNum=4, blockHash=[]byte{0x93, 0xa4, 0xeb, 0x23, 0x11, 0xc5, 0x82, 0x3, 0x71, 0xbf, 0xef, 0x31, 0x5d, 0x62, 0x4, 0x79, 0xce, 0xd9, 0xc3, 0x8e, 0xe0, 0x77, 0x29, 0xaf, 0x45, 0x72, 0x23, 0x4e, 0x53, 0x11, 0xbd, 0x26} txOffsets= +txId=79910bc72d1a9ba3fd9ac6a98cdec470c2b4c2afd8dd6128c715aa89ad94672c locPointer=offset=70, bytesLength=3393 ] -2018-01-18 01:59:48.189 UTC [fsblkstorage] updateCheckpoint -> DEBU efa Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[49886], isChainEmpty=[false], lastBlockNumber=[4] -2018-01-18 01:59:48.189 UTC [orderer/multichain] WriteBlock -> DEBU efb [channel: businesschannel] Wrote block 4 -2018-01-18 01:59:48.189 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU efd retrieveBlockByNumber() - blockNum = [4] -2018-01-18 01:59:48.189 UTC [fsblkstorage] newBlockfileStream -> DEBU efe newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[44671] -2018-01-18 01:59:48.189 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU eff Remaining bytes=[5215], Going to peek [8] bytes -2018-01-18 01:59:48.189 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f00 Returning blockbytes - length=[5213], placementInfo={fileNum=[0], startOffset=[44671], bytesOffset=[44673]} -2018-01-18 01:59:48.190 UTC [orderer/common/deliver] Handle -> DEBU f01 [channel: businesschannel] Delivering block for (0xc42022a4a0) -2018-01-18 01:59:48.189 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU efc retrieveBlockByNumber() - blockNum = [4] -2018-01-18 01:59:48.190 UTC [fsblkstorage] newBlockfileStream -> DEBU f02 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[44671] -2018-01-18 01:59:48.191 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f03 Remaining bytes=[5215], Going to peek [8] bytes -2018-01-18 01:59:48.191 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f04 Returning blockbytes - length=[5213], placementInfo={fileNum=[0], startOffset=[44671], bytesOffset=[44673]} -2018-01-18 01:59:48.191 UTC [orderer/common/deliver] Handle -> DEBU f05 [channel: businesschannel] Delivering block for (0xc4208701a0) -2018-01-18 02:00:09.277 UTC [orderer/main] Broadcast -> DEBU f06 Starting new Broadcast handler -2018-01-18 02:00:09.277 UTC [orderer/common/broadcast] Handle -> DEBU f07 Starting new broadcast loop -2018-01-18 02:00:09.301 UTC [orderer/common/broadcast] Handle -> DEBU f08 [channel: businesschannel] Broadcast is filtering message of type ENDORSER_TRANSACTION -2018-01-18 02:00:09.301 UTC [policies] GetPolicy -> DEBU f09 Returning policy Writers for evaluation -2018-01-18 02:00:09.301 UTC [cauthdsl] func1 -> DEBU f0a 0xc42014ab78 gate 1516240809301525227 evaluation starts -2018-01-18 02:00:09.301 UTC [cauthdsl] func2 -> DEBU f0b 0xc42014ab78 signed by 0 principal evaluation starts (used [false]) -2018-01-18 02:00:09.301 UTC [cauthdsl] func2 -> DEBU f0c 0xc42014ab78 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-18 02:00:09.302 UTC [msp/identity] newIdentity -> DEBU f0d Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:30:47.093 UTC [fsblkstorage] updateCheckpoint -> DEBU f2a Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[49883], isChainEmpty=[false], lastBlockNumber=[4] +2018-01-18 09:30:47.093 UTC [orderer/multichain] WriteBlock -> DEBU f2b [channel: businesschannel] Wrote block 4 +2018-01-18 09:30:47.093 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU f2c retrieveBlockByNumber() - blockNum = [4] +2018-01-18 09:30:47.093 UTC [fsblkstorage] newBlockfileStream -> DEBU f2e newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[44670] +2018-01-18 09:30:47.094 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f2f Remaining bytes=[5213], Going to peek [8] bytes +2018-01-18 09:30:47.094 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f30 Returning blockbytes - length=[5211], placementInfo={fileNum=[0], startOffset=[44670], bytesOffset=[44672]} +2018-01-18 09:30:47.095 UTC [orderer/common/deliver] Handle -> DEBU f31 [channel: businesschannel] Delivering block for (0xc420b7cce0) +2018-01-18 09:30:47.093 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU f2d retrieveBlockByNumber() - blockNum = [4] +2018-01-18 09:30:47.095 UTC [fsblkstorage] newBlockfileStream -> DEBU f32 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[44670] +2018-01-18 09:30:47.096 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f33 Remaining bytes=[5213], Going to peek [8] bytes +2018-01-18 09:30:47.096 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f34 Returning blockbytes - length=[5211], placementInfo={fileNum=[0], startOffset=[44670], bytesOffset=[44672]} +2018-01-18 09:30:47.097 UTC [orderer/common/deliver] Handle -> DEBU f35 [channel: businesschannel] Delivering block for (0xc420363320) +2018-01-18 09:31:07.050 UTC [orderer/main] Broadcast -> DEBU f36 Starting new Broadcast handler +2018-01-18 09:31:07.050 UTC [orderer/common/broadcast] Handle -> DEBU f37 Starting new broadcast loop +2018-01-18 09:31:07.164 UTC [orderer/common/broadcast] Handle -> DEBU f38 [channel: businesschannel] Broadcast is filtering message of type ENDORSER_TRANSACTION +2018-01-18 09:31:07.165 UTC [policies] GetPolicy -> DEBU f39 Returning policy Writers for evaluation +2018-01-18 09:31:07.165 UTC [cauthdsl] func1 -> DEBU f3a 0xc4200264e8 gate 1516267867165420156 evaluation starts +2018-01-18 09:31:07.167 UTC [cauthdsl] func2 -> DEBU f3b 0xc4200264e8 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:31:07.167 UTC [cauthdsl] func2 -> DEBU f3c 0xc4200264e8 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:31:07.167 UTC [msp/identity] newIdentity -> DEBU f3d Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -6970,13 +7062,13 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-18 02:00:09.302 UTC [cauthdsl] func2 -> DEBU f0e 0xc42014ab78 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -2018-01-18 02:00:09.302 UTC [cauthdsl] func2 -> DEBU f0f 0xc42014ab78 principal evaluation fails -2018-01-18 02:00:09.302 UTC [cauthdsl] func1 -> DEBU f10 0xc42014ab78 gate 1516240809301525227 evaluation fails -2018-01-18 02:00:09.302 UTC [cauthdsl] func1 -> DEBU f11 0xc42014ab88 gate 1516240809302659660 evaluation starts -2018-01-18 02:00:09.302 UTC [cauthdsl] func2 -> DEBU f12 0xc42014ab88 signed by 0 principal evaluation starts (used [false]) -2018-01-18 02:00:09.302 UTC [cauthdsl] func2 -> DEBU f13 0xc42014ab88 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-18 02:00:09.303 UTC [msp/identity] newIdentity -> DEBU f14 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:31:07.168 UTC [cauthdsl] func2 -> DEBU f3e 0xc4200264e8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) +2018-01-18 09:31:07.168 UTC [cauthdsl] func2 -> DEBU f3f 0xc4200264e8 principal evaluation fails +2018-01-18 09:31:07.168 UTC [cauthdsl] func1 -> DEBU f40 0xc4200264e8 gate 1516267867165420156 evaluation fails +2018-01-18 09:31:07.169 UTC [cauthdsl] func1 -> DEBU f41 0xc420026510 gate 1516267867168971879 evaluation starts +2018-01-18 09:31:07.169 UTC [cauthdsl] func2 -> DEBU f42 0xc420026510 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:31:07.169 UTC [cauthdsl] func2 -> DEBU f43 0xc420026510 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:31:07.170 UTC [msp/identity] newIdentity -> DEBU f44 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -6990,25 +7082,13 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-18 02:00:09.303 UTC [msp] SatisfiesPrincipal -> DEBU f15 Checking if identity satisfies MEMBER role for Org1MSP -2018-01-18 02:00:09.303 UTC [msp] Validate -> DEBU f16 MSP Org1MSP validating identity -2018-01-18 02:00:09.303 UTC [cauthdsl] func2 -> DEBU f17 0xc42014ab88 principal matched by identity 0 -2018-01-18 02:00:09.303 UTC [msp/identity] Verify -> DEBU f18 Verify: digest = 00000000 96 19 82 b0 1b 1a 93 1b 3d 3e e0 a8 79 46 e4 3a |........=>..yF.:| -00000010 f1 cf d7 e3 5b 10 7a b2 c4 12 37 e6 82 85 64 1a |....[.z...7...d.| -2018-01-18 02:00:09.303 UTC [msp/identity] Verify -> DEBU f19 Verify: sig = 00000000 30 45 02 21 00 97 aa 92 1b a1 52 43 4a 9f 30 36 |0E.!......RCJ.06| -00000010 ae 07 d0 26 0f c9 ca 95 f5 7f 64 a6 fa 13 d8 25 |...&......d....%| -00000020 01 fa f0 84 8f 02 20 3b 8f 60 cf 38 b2 c3 12 0c |...... ;.`.8....| -00000030 81 7f 0c e7 ca 92 c9 fe 1e b4 fb ad 1c d8 13 f3 |................| -00000040 ff 74 37 7f 36 eb 12 |.t7.6..| -2018-01-18 02:00:09.304 UTC [cauthdsl] func2 -> DEBU f1a 0xc42014ab88 principal evaluation succeeds for identity 0 -2018-01-18 02:00:09.304 UTC [cauthdsl] func1 -> DEBU f1b 0xc42014ab88 gate 1516240809302659660 evaluation succeeds -2018-01-18 02:00:09.304 UTC [orderer/common/sigfilter] Apply -> DEBU f1c Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4202911c0 1 [0xc42014a3a8]}) %!s(*policies.implicitMetaPolicy=&{0xc420291840 1 [0xc42014a5f0 0xc42014a878]})]} -2018-01-18 02:00:09.304 UTC [orderer/common/broadcast] Handle -> DEBU f1d [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION -2018-01-18 02:00:09.304 UTC [policies] GetPolicy -> DEBU f1e Returning policy Writers for evaluation -2018-01-18 02:00:09.304 UTC [cauthdsl] func1 -> DEBU f1f 0xc420026260 gate 1516240809304605586 evaluation starts -2018-01-18 02:00:09.304 UTC [cauthdsl] func2 -> DEBU f20 0xc420026260 signed by 0 principal evaluation starts (used [false]) -2018-01-18 02:00:09.304 UTC [cauthdsl] func2 -> DEBU f21 0xc420026260 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-18 02:00:09.305 UTC [msp/identity] newIdentity -> DEBU f22 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:31:07.171 UTC [cauthdsl] func2 -> DEBU f45 0xc420026510 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got Org1MSP) +2018-01-18 09:31:07.172 UTC [cauthdsl] func2 -> DEBU f46 0xc420026510 principal evaluation fails +2018-01-18 09:31:07.172 UTC [cauthdsl] func1 -> DEBU f47 0xc420026510 gate 1516267867168971879 evaluation fails +2018-01-18 09:31:07.172 UTC [cauthdsl] func1 -> DEBU f48 0xc420026520 gate 1516267867172779075 evaluation starts +2018-01-18 09:31:07.172 UTC [cauthdsl] func2 -> DEBU f49 0xc420026520 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:31:07.173 UTC [cauthdsl] func2 -> DEBU f4a 0xc420026520 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:31:07.181 UTC [msp/identity] newIdentity -> DEBU f4b Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -7022,13 +7102,25 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-18 02:00:09.305 UTC [cauthdsl] func2 -> DEBU f23 0xc420026260 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -2018-01-18 02:00:09.305 UTC [cauthdsl] func2 -> DEBU f24 0xc420026260 principal evaluation fails -2018-01-18 02:00:09.305 UTC [cauthdsl] func1 -> DEBU f25 0xc420026260 gate 1516240809304605586 evaluation fails -2018-01-18 02:00:09.306 UTC [cauthdsl] func1 -> DEBU f26 0xc420026270 gate 1516240809305997390 evaluation starts -2018-01-18 02:00:09.306 UTC [cauthdsl] func2 -> DEBU f27 0xc420026270 signed by 0 principal evaluation starts (used [false]) -2018-01-18 02:00:09.306 UTC [cauthdsl] func2 -> DEBU f28 0xc420026270 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-18 02:00:09.306 UTC [msp/identity] newIdentity -> DEBU f29 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:31:07.182 UTC [msp] SatisfiesPrincipal -> DEBU f4c Checking if identity satisfies MEMBER role for Org1MSP +2018-01-18 09:31:07.184 UTC [msp] Validate -> DEBU f4d MSP Org1MSP validating identity +2018-01-18 09:31:07.186 UTC [cauthdsl] func2 -> DEBU f4e 0xc420026520 principal matched by identity 0 +2018-01-18 09:31:07.187 UTC [msp/identity] Verify -> DEBU f4f Verify: digest = 00000000 2c 91 e1 87 41 fd fc bf 85 7c 3d 6b b0 73 2b 4e |,...A....|=k.s+N| +00000010 34 6e 08 6f 4a 5b ec d9 3d 83 1c bb a9 06 6e 63 |4n.oJ[..=.....nc| +2018-01-18 09:31:07.188 UTC [msp/identity] Verify -> DEBU f50 Verify: sig = 00000000 30 45 02 21 00 b2 5c 4a 64 9d 4a a3 bd fa 95 bb |0E.!..\Jd.J.....| +00000010 2f 57 4d 1f 4f 52 a2 be 88 72 04 57 0d f5 61 ae |/WM.OR...r.W..a.| +00000020 71 0f 2f 4b 51 02 20 27 7b 22 50 7d 3d 47 9c 23 |q./KQ. '{"P}=G.#| +00000030 25 5c e8 1e bb 96 e1 45 d8 a0 2d cb c0 cb 13 94 |%\.....E..-.....| +00000040 0d 50 48 c5 8a 02 d9 |.PH....| +2018-01-18 09:31:07.189 UTC [cauthdsl] func2 -> DEBU f51 0xc420026520 principal evaluation succeeds for identity 0 +2018-01-18 09:31:07.190 UTC [cauthdsl] func1 -> DEBU f52 0xc420026520 gate 1516267867172779075 evaluation succeeds +2018-01-18 09:31:07.190 UTC [orderer/common/sigfilter] Apply -> DEBU f53 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4202d80c0 1 [0xc42014a778]}) %!s(*policies.implicitMetaPolicy=&{0xc420837160 1 [0xc42014a6b0 0xc42014a5d8]})]} +2018-01-18 09:31:07.191 UTC [orderer/common/broadcast] Handle -> DEBU f54 [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION +2018-01-18 09:31:07.191 UTC [policies] GetPolicy -> DEBU f55 Returning policy Writers for evaluation +2018-01-18 09:31:07.191 UTC [cauthdsl] func1 -> DEBU f56 0xc42014a980 gate 1516267867191729595 evaluation starts +2018-01-18 09:31:07.191 UTC [cauthdsl] func2 -> DEBU f57 0xc42014a980 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:31:07.192 UTC [cauthdsl] func2 -> DEBU f58 0xc42014a980 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:31:07.192 UTC [msp/identity] newIdentity -> DEBU f59 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -7042,65 +7134,105 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-18 02:00:09.307 UTC [msp] SatisfiesPrincipal -> DEBU f2a Checking if identity satisfies MEMBER role for Org1MSP -2018-01-18 02:00:09.307 UTC [msp] Validate -> DEBU f2b MSP Org1MSP validating identity -2018-01-18 02:00:09.307 UTC [cauthdsl] func2 -> DEBU f2c 0xc420026270 principal matched by identity 0 -2018-01-18 02:00:09.307 UTC [msp/identity] Verify -> DEBU f2d Verify: digest = 00000000 96 19 82 b0 1b 1a 93 1b 3d 3e e0 a8 79 46 e4 3a |........=>..yF.:| -00000010 f1 cf d7 e3 5b 10 7a b2 c4 12 37 e6 82 85 64 1a |....[.z...7...d.| -2018-01-18 02:00:09.307 UTC [msp/identity] Verify -> DEBU f2e Verify: sig = 00000000 30 45 02 21 00 97 aa 92 1b a1 52 43 4a 9f 30 36 |0E.!......RCJ.06| -00000010 ae 07 d0 26 0f c9 ca 95 f5 7f 64 a6 fa 13 d8 25 |...&......d....%| -00000020 01 fa f0 84 8f 02 20 3b 8f 60 cf 38 b2 c3 12 0c |...... ;.`.8....| -00000030 81 7f 0c e7 ca 92 c9 fe 1e b4 fb ad 1c d8 13 f3 |................| -00000040 ff 74 37 7f 36 eb 12 |.t7.6..| -2018-01-18 02:00:09.308 UTC [cauthdsl] func2 -> DEBU f2f 0xc420026270 principal evaluation succeeds for identity 0 -2018-01-18 02:00:09.308 UTC [cauthdsl] func1 -> DEBU f30 0xc420026270 gate 1516240809305997390 evaluation succeeds -2018-01-18 02:00:09.308 UTC [orderer/common/sigfilter] Apply -> DEBU f31 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4202911c0 1 [0xc42014a3a8]}) %!s(*policies.implicitMetaPolicy=&{0xc420291840 1 [0xc42014a5f0 0xc42014a878]})]} -2018-01-18 02:00:09.308 UTC [orderer/common/blockcutter] Ordered -> DEBU f32 Enqueuing message into batch -2018-01-18 02:00:09.309 UTC [orderer/common/broadcast] Handle -> WARN f33 Error reading from stream: rpc error: code = Canceled desc = context canceled -2018-01-18 02:00:09.309 UTC [orderer/main] func1 -> DEBU f34 Closing Broadcast stream -2018-01-18 02:00:11.308 UTC [orderer/solo] main -> DEBU f35 Batch timer expired, creating block -2018-01-18 02:00:11.309 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU f36 retrieveBlockByNumber() - blockNum = [4] -2018-01-18 02:00:11.309 UTC [fsblkstorage] newBlockfileStream -> DEBU f37 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[44671] -2018-01-18 02:00:11.310 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f38 Remaining bytes=[5215], Going to peek [8] bytes -2018-01-18 02:00:11.310 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f39 Returning blockbytes - length=[5213], placementInfo={fileNum=[0], startOffset=[44671], bytesOffset=[44673]} -2018-01-18 02:00:11.310 UTC [orderer/multichain] addBlockSignature -> DEBU f3a &{ledgerResources:0xc420208040 chain:0xc420208da0 cutter:0xc420a51270 filters:0xc4202089e0 signer:0x1274e88 lastConfig:2 lastConfigSeq:3} -2018-01-18 02:00:11.310 UTC [orderer/multichain] addBlockSignature -> DEBU f3b &{} -2018-01-18 02:00:11.310 UTC [msp] GetLocalMSP -> DEBU f3c Returning existing local MSP -2018-01-18 02:00:11.310 UTC [msp] GetDefaultSigningIdentity -> DEBU f3d Obtaining default signing identity -2018-01-18 02:00:11.311 UTC [msp] GetLocalMSP -> DEBU f3e Returning existing local MSP -2018-01-18 02:00:11.311 UTC [msp] GetDefaultSigningIdentity -> DEBU f3f Obtaining default signing identity -2018-01-18 02:00:11.311 UTC [msp/identity] Sign -> DEBU f40 Sign: plaintext: 0AFA050A0A4F7264657265724D535012...F5AFC3E2E26272A2C289CCF8EC919A40 -2018-01-18 02:00:11.311 UTC [msp/identity] Sign -> DEBU f41 Sign: digest: 41F5C2FFD4E3F3764631F0CC9B51423E80B0CFD028C567638CB15B3492EFC43E -2018-01-18 02:00:11.312 UTC [msp] GetLocalMSP -> DEBU f42 Returning existing local MSP -2018-01-18 02:00:11.312 UTC [msp] GetDefaultSigningIdentity -> DEBU f43 Obtaining default signing identity -2018-01-18 02:00:11.312 UTC [orderer/multichain] addLastConfigSignature -> DEBU f44 [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 -2018-01-18 02:00:11.312 UTC [msp] GetLocalMSP -> DEBU f45 Returning existing local MSP -2018-01-18 02:00:11.312 UTC [msp] GetDefaultSigningIdentity -> DEBU f46 Obtaining default signing identity -2018-01-18 02:00:11.312 UTC [msp/identity] Sign -> DEBU f47 Sign: plaintext: 08020AFA050A0A4F7264657265724D53...F5AFC3E2E26272A2C289CCF8EC919A40 -2018-01-18 02:00:11.312 UTC [msp/identity] Sign -> DEBU f48 Sign: digest: 0160E79333D6FA9A4EF397B28B5D14C832E73DF1CC892344EA3D7A9D6F5E8C07 -2018-01-18 02:00:11.316 UTC [fsblkstorage] indexBlock -> DEBU f49 Indexing block [blockNum=5, blockHash=[]byte{0x6c, 0xf7, 0xab, 0xa5, 0x1f, 0xca, 0x2a, 0x58, 0xcb, 0xd4, 0xd1, 0xb3, 0x1d, 0x76, 0xc1, 0x27, 0x8a, 0x2f, 0xe, 0x8d, 0x19, 0x84, 0xf0, 0xbf, 0x33, 0x10, 0xfe, 0x43, 0xbc, 0xb4, 0x60, 0x53} txOffsets= -txId=82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f locPointer=offset=70, bytesLength=2855 +2018-01-18 09:31:07.193 UTC [cauthdsl] func2 -> DEBU f5a 0xc42014a980 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) +2018-01-18 09:31:07.193 UTC [cauthdsl] func2 -> DEBU f5b 0xc42014a980 principal evaluation fails +2018-01-18 09:31:07.193 UTC [cauthdsl] func1 -> DEBU f5c 0xc42014a980 gate 1516267867191729595 evaluation fails +2018-01-18 09:31:07.193 UTC [cauthdsl] func1 -> DEBU f5d 0xc42014a990 gate 1516267867193418150 evaluation starts +2018-01-18 09:31:07.193 UTC [cauthdsl] func2 -> DEBU f5e 0xc42014a990 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:31:07.193 UTC [cauthdsl] func2 -> DEBU f5f 0xc42014a990 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:31:07.194 UTC [msp/identity] newIdentity -> DEBU f60 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +xHTBvxfK6mAzmUitFmY= +-----END CERTIFICATE----- +2018-01-18 09:31:07.194 UTC [cauthdsl] func2 -> DEBU f61 0xc42014a990 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got Org1MSP) +2018-01-18 09:31:07.194 UTC [cauthdsl] func2 -> DEBU f62 0xc42014a990 principal evaluation fails +2018-01-18 09:31:07.195 UTC [cauthdsl] func1 -> DEBU f63 0xc42014a990 gate 1516267867193418150 evaluation fails +2018-01-18 09:31:07.195 UTC [cauthdsl] func1 -> DEBU f64 0xc42014a9a0 gate 1516267867195288814 evaluation starts +2018-01-18 09:31:07.195 UTC [cauthdsl] func2 -> DEBU f65 0xc42014a9a0 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:31:07.195 UTC [cauthdsl] func2 -> DEBU f66 0xc42014a9a0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:31:07.195 UTC [msp/identity] newIdentity -> DEBU f67 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +xHTBvxfK6mAzmUitFmY= +-----END CERTIFICATE----- +2018-01-18 09:31:07.196 UTC [msp] SatisfiesPrincipal -> DEBU f68 Checking if identity satisfies MEMBER role for Org1MSP +2018-01-18 09:31:07.196 UTC [msp] Validate -> DEBU f69 MSP Org1MSP validating identity +2018-01-18 09:31:07.196 UTC [cauthdsl] func2 -> DEBU f6a 0xc42014a9a0 principal matched by identity 0 +2018-01-18 09:31:07.197 UTC [msp/identity] Verify -> DEBU f6b Verify: digest = 00000000 2c 91 e1 87 41 fd fc bf 85 7c 3d 6b b0 73 2b 4e |,...A....|=k.s+N| +00000010 34 6e 08 6f 4a 5b ec d9 3d 83 1c bb a9 06 6e 63 |4n.oJ[..=.....nc| +2018-01-18 09:31:07.197 UTC [msp/identity] Verify -> DEBU f6c Verify: sig = 00000000 30 45 02 21 00 b2 5c 4a 64 9d 4a a3 bd fa 95 bb |0E.!..\Jd.J.....| +00000010 2f 57 4d 1f 4f 52 a2 be 88 72 04 57 0d f5 61 ae |/WM.OR...r.W..a.| +00000020 71 0f 2f 4b 51 02 20 27 7b 22 50 7d 3d 47 9c 23 |q./KQ. '{"P}=G.#| +00000030 25 5c e8 1e bb 96 e1 45 d8 a0 2d cb c0 cb 13 94 |%\.....E..-.....| +00000040 0d 50 48 c5 8a 02 d9 |.PH....| +2018-01-18 09:31:07.197 UTC [cauthdsl] func2 -> DEBU f6d 0xc42014a9a0 principal evaluation succeeds for identity 0 +2018-01-18 09:31:07.198 UTC [cauthdsl] func1 -> DEBU f6e 0xc42014a9a0 gate 1516267867195288814 evaluation succeeds +2018-01-18 09:31:07.198 UTC [orderer/common/sigfilter] Apply -> DEBU f6f Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4202d80c0 1 [0xc42014a778]}) %!s(*policies.implicitMetaPolicy=&{0xc420837160 1 [0xc42014a6b0 0xc42014a5d8]})]} +2018-01-18 09:31:07.198 UTC [orderer/common/blockcutter] Ordered -> DEBU f70 Enqueuing message into batch +2018-01-18 09:31:07.200 UTC [orderer/common/broadcast] Handle -> WARN f71 Error reading from stream: rpc error: code = Canceled desc = context canceled +2018-01-18 09:31:07.200 UTC [orderer/main] func1 -> DEBU f72 Closing Broadcast stream +2018-01-18 09:31:09.199 UTC [orderer/solo] main -> DEBU f73 Batch timer expired, creating block +2018-01-18 09:31:09.199 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU f74 retrieveBlockByNumber() - blockNum = [4] +2018-01-18 09:31:09.199 UTC [fsblkstorage] newBlockfileStream -> DEBU f75 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[44670] +2018-01-18 09:31:09.200 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f76 Remaining bytes=[5213], Going to peek [8] bytes +2018-01-18 09:31:09.200 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f77 Returning blockbytes - length=[5211], placementInfo={fileNum=[0], startOffset=[44670], bytesOffset=[44672]} +2018-01-18 09:31:09.200 UTC [orderer/multichain] addBlockSignature -> DEBU f78 &{ledgerResources:0xc4209b5140 chain:0xc4209b5a00 cutter:0xc420863b80 filters:0xc4209b5640 signer:0x1274e88 lastConfig:2 lastConfigSeq:3} +2018-01-18 09:31:09.200 UTC [orderer/multichain] addBlockSignature -> DEBU f79 &{} +2018-01-18 09:31:09.200 UTC [msp] GetLocalMSP -> DEBU f7a Returning existing local MSP +2018-01-18 09:31:09.200 UTC [msp] GetDefaultSigningIdentity -> DEBU f7b Obtaining default signing identity +2018-01-18 09:31:09.200 UTC [msp] GetLocalMSP -> DEBU f7c Returning existing local MSP +2018-01-18 09:31:09.200 UTC [msp] GetDefaultSigningIdentity -> DEBU f7d Obtaining default signing identity +2018-01-18 09:31:09.201 UTC [msp/identity] Sign -> DEBU f7e Sign: plaintext: 0AFA050A0A4F7264657265724D535012...49E9C87649B917259CC633BF1B1A9DFC +2018-01-18 09:31:09.201 UTC [msp/identity] Sign -> DEBU f7f Sign: digest: 0C0228110C91A72B8C801D1A9FC3D45ED4E8A0C2B25B6E20E0FFCFE177CE8075 +2018-01-18 09:31:09.201 UTC [msp] GetLocalMSP -> DEBU f80 Returning existing local MSP +2018-01-18 09:31:09.201 UTC [msp] GetDefaultSigningIdentity -> DEBU f81 Obtaining default signing identity +2018-01-18 09:31:09.201 UTC [orderer/multichain] addLastConfigSignature -> DEBU f82 [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 +2018-01-18 09:31:09.201 UTC [msp] GetLocalMSP -> DEBU f83 Returning existing local MSP +2018-01-18 09:31:09.202 UTC [msp] GetDefaultSigningIdentity -> DEBU f84 Obtaining default signing identity +2018-01-18 09:31:09.202 UTC [msp/identity] Sign -> DEBU f85 Sign: plaintext: 08020AFA050A0A4F7264657265724D53...49E9C87649B917259CC633BF1B1A9DFC +2018-01-18 09:31:09.202 UTC [msp/identity] Sign -> DEBU f86 Sign: digest: CB09A6F7DDB7EEB746B97330BE42F6F9D5233A72E3F45C9AFEAFF86C85B8426D +2018-01-18 09:31:09.204 UTC [fsblkstorage] indexBlock -> DEBU f87 Indexing block [blockNum=5, blockHash=[]byte{0x14, 0x79, 0x5b, 0xd3, 0x7, 0x12, 0xdf, 0xbb, 0x6c, 0xf, 0xfc, 0x0, 0x56, 0xb5, 0xce, 0x33, 0x6a, 0x55, 0xf7, 0xe6, 0xf, 0x23, 0x39, 0xcd, 0x2d, 0xe9, 0xe3, 0xb1, 0x3, 0x84, 0xfe, 0x7c} txOffsets= +txId=7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9 locPointer=offset=70, bytesLength=2855 ] -2018-01-18 02:00:11.316 UTC [fsblkstorage] updateCheckpoint -> DEBU f4a Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[54560], isChainEmpty=[false], lastBlockNumber=[5] -2018-01-18 02:00:11.316 UTC [orderer/multichain] WriteBlock -> DEBU f4b [channel: businesschannel] Wrote block 5 -2018-01-18 02:00:11.316 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU f4c retrieveBlockByNumber() - blockNum = [5] -2018-01-18 02:00:11.316 UTC [fsblkstorage] newBlockfileStream -> DEBU f4d newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[49886] -2018-01-18 02:00:11.317 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f4e Remaining bytes=[4674], Going to peek [8] bytes -2018-01-18 02:00:11.317 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f4f Returning blockbytes - length=[4672], placementInfo={fileNum=[0], startOffset=[49886], bytesOffset=[49888]} -2018-01-18 02:00:11.317 UTC [orderer/common/deliver] Handle -> DEBU f50 [channel: businesschannel] Delivering block for (0xc4208701a0) -2018-01-18 02:00:11.317 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU f51 retrieveBlockByNumber() - blockNum = [5] -2018-01-18 02:00:11.317 UTC [fsblkstorage] newBlockfileStream -> DEBU f52 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[49886] -2018-01-18 02:00:11.319 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f53 Remaining bytes=[4674], Going to peek [8] bytes -2018-01-18 02:00:11.319 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f54 Returning blockbytes - length=[4672], placementInfo={fileNum=[0], startOffset=[49886], bytesOffset=[49888]} -2018-01-18 02:00:11.320 UTC [orderer/common/deliver] Handle -> DEBU f55 [channel: businesschannel] Delivering block for (0xc42022a4a0) -2018-01-18 02:00:26.293 UTC [orderer/main] Broadcast -> DEBU f56 Starting new Broadcast handler -2018-01-18 02:00:26.293 UTC [orderer/common/broadcast] Handle -> DEBU f57 Starting new broadcast loop -2018-01-18 02:00:26.323 UTC [orderer/common/broadcast] Handle -> DEBU f58 [channel: businesschannel] Broadcast is filtering message of type ENDORSER_TRANSACTION -2018-01-18 02:00:26.323 UTC [policies] GetPolicy -> DEBU f59 Returning policy Writers for evaluation -2018-01-18 02:00:26.323 UTC [cauthdsl] func1 -> DEBU f5a 0xc42014ac10 gate 1516240826323776444 evaluation starts -2018-01-18 02:00:26.323 UTC [cauthdsl] func2 -> DEBU f5b 0xc42014ac10 signed by 0 principal evaluation starts (used [false]) -2018-01-18 02:00:26.323 UTC [cauthdsl] func2 -> DEBU f5c 0xc42014ac10 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-18 02:00:26.324 UTC [msp/identity] newIdentity -> DEBU f5d Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:31:09.205 UTC [fsblkstorage] updateCheckpoint -> DEBU f88 Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[54558], isChainEmpty=[false], lastBlockNumber=[5] +2018-01-18 09:31:09.205 UTC [orderer/multichain] WriteBlock -> DEBU f89 [channel: businesschannel] Wrote block 5 +2018-01-18 09:31:09.205 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU f8a retrieveBlockByNumber() - blockNum = [5] +2018-01-18 09:31:09.205 UTC [fsblkstorage] newBlockfileStream -> DEBU f8b newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[49883] +2018-01-18 09:31:09.205 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f8c Remaining bytes=[4675], Going to peek [8] bytes +2018-01-18 09:31:09.205 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f8d Returning blockbytes - length=[4673], placementInfo={fileNum=[0], startOffset=[49883], bytesOffset=[49885]} +2018-01-18 09:31:09.206 UTC [orderer/common/deliver] Handle -> DEBU f8e [channel: businesschannel] Delivering block for (0xc420b7cce0) +2018-01-18 09:31:09.206 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU f8f retrieveBlockByNumber() - blockNum = [5] +2018-01-18 09:31:09.206 UTC [fsblkstorage] newBlockfileStream -> DEBU f90 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[49883] +2018-01-18 09:31:09.206 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f91 Remaining bytes=[4675], Going to peek [8] bytes +2018-01-18 09:31:09.206 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f92 Returning blockbytes - length=[4673], placementInfo={fileNum=[0], startOffset=[49883], bytesOffset=[49885]} +2018-01-18 09:31:09.206 UTC [orderer/common/deliver] Handle -> DEBU f93 [channel: businesschannel] Delivering block for (0xc420363320) +2018-01-18 09:31:27.697 UTC [orderer/main] Broadcast -> DEBU f94 Starting new Broadcast handler +2018-01-18 09:31:27.697 UTC [orderer/common/broadcast] Handle -> DEBU f95 Starting new broadcast loop +2018-01-18 09:31:27.723 UTC [orderer/common/broadcast] Handle -> DEBU f96 [channel: businesschannel] Broadcast is filtering message of type ENDORSER_TRANSACTION +2018-01-18 09:31:27.724 UTC [policies] GetPolicy -> DEBU f97 Returning policy Writers for evaluation +2018-01-18 09:31:27.724 UTC [cauthdsl] func1 -> DEBU f98 0xc4200265d8 gate 1516267887724063790 evaluation starts +2018-01-18 09:31:27.724 UTC [cauthdsl] func2 -> DEBU f99 0xc4200265d8 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:31:27.724 UTC [cauthdsl] func2 -> DEBU f9a 0xc4200265d8 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:31:27.724 UTC [msp/identity] newIdentity -> DEBU f9b Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -7114,13 +7246,13 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS AXYxULZpXYDQXt1KaLI= -----END CERTIFICATE----- -2018-01-18 02:00:26.324 UTC [cauthdsl] func2 -> DEBU f5e 0xc42014ac10 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) -2018-01-18 02:00:26.324 UTC [cauthdsl] func2 -> DEBU f5f 0xc42014ac10 principal evaluation fails -2018-01-18 02:00:26.324 UTC [cauthdsl] func1 -> DEBU f60 0xc42014ac10 gate 1516240826323776444 evaluation fails -2018-01-18 02:00:26.324 UTC [cauthdsl] func1 -> DEBU f61 0xc42014ac20 gate 1516240826324933565 evaluation starts -2018-01-18 02:00:26.324 UTC [cauthdsl] func2 -> DEBU f62 0xc42014ac20 signed by 0 principal evaluation starts (used [false]) -2018-01-18 02:00:26.325 UTC [cauthdsl] func2 -> DEBU f63 0xc42014ac20 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-18 02:00:26.325 UTC [msp/identity] newIdentity -> DEBU f64 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:31:27.725 UTC [cauthdsl] func2 -> DEBU f9c 0xc4200265d8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) +2018-01-18 09:31:27.725 UTC [cauthdsl] func2 -> DEBU f9d 0xc4200265d8 principal evaluation fails +2018-01-18 09:31:27.725 UTC [cauthdsl] func1 -> DEBU f9e 0xc4200265d8 gate 1516267887724063790 evaluation fails +2018-01-18 09:31:27.725 UTC [cauthdsl] func1 -> DEBU f9f 0xc4200265e8 gate 1516267887725227008 evaluation starts +2018-01-18 09:31:27.725 UTC [cauthdsl] func2 -> DEBU fa0 0xc4200265e8 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:31:27.725 UTC [cauthdsl] func2 -> DEBU fa1 0xc4200265e8 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:31:27.725 UTC [msp/identity] newIdentity -> DEBU fa2 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -7134,13 +7266,25 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS AXYxULZpXYDQXt1KaLI= -----END CERTIFICATE----- -2018-01-18 02:00:26.325 UTC [cauthdsl] func2 -> DEBU f65 0xc42014ac20 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got Org2MSP) -2018-01-18 02:00:26.325 UTC [cauthdsl] func2 -> DEBU f66 0xc42014ac20 principal evaluation fails -2018-01-18 02:00:26.325 UTC [cauthdsl] func1 -> DEBU f67 0xc42014ac20 gate 1516240826324933565 evaluation fails -2018-01-18 02:00:26.326 UTC [cauthdsl] func1 -> DEBU f68 0xc42014ac30 gate 1516240826326025519 evaluation starts -2018-01-18 02:00:26.326 UTC [cauthdsl] func2 -> DEBU f69 0xc42014ac30 signed by 0 principal evaluation starts (used [false]) -2018-01-18 02:00:26.326 UTC [cauthdsl] func2 -> DEBU f6a 0xc42014ac30 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-18 02:00:26.326 UTC [msp/identity] newIdentity -> DEBU f6b Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:31:27.726 UTC [msp] SatisfiesPrincipal -> DEBU fa3 Checking if identity satisfies MEMBER role for Org2MSP +2018-01-18 09:31:27.726 UTC [msp] Validate -> DEBU fa4 MSP Org2MSP validating identity +2018-01-18 09:31:27.726 UTC [cauthdsl] func2 -> DEBU fa5 0xc4200265e8 principal matched by identity 0 +2018-01-18 09:31:27.726 UTC [msp/identity] Verify -> DEBU fa6 Verify: digest = 00000000 ac 85 6a f3 bd 0d 56 49 d0 ae 7c 3e 69 9b 24 3d |..j...VI..|>i.$=| +00000010 26 7d d9 2d bc 95 02 dc 9f 7d 74 a0 30 d4 16 50 |&}.-.....}t.0..P| +2018-01-18 09:31:27.726 UTC [msp/identity] Verify -> DEBU fa7 Verify: sig = 00000000 30 45 02 21 00 a8 b6 9c d9 06 59 a9 b9 95 6e b6 |0E.!......Y...n.| +00000010 ab 74 f5 c3 9b f3 a2 c1 da cc d7 1b 49 4d 9c 47 |.t..........IM.G| +00000020 52 6d 39 9e e0 02 20 15 a5 0a 2d a3 7f fd 79 36 |Rm9... ...-...y6| +00000030 d9 71 8b 20 4e f9 1f 49 5a 7a f4 02 ba 92 3e 4f |.q. N..IZz....>O| +00000040 12 02 d5 62 85 db 47 |...b..G| +2018-01-18 09:31:27.726 UTC [cauthdsl] func2 -> DEBU fa8 0xc4200265e8 principal evaluation succeeds for identity 0 +2018-01-18 09:31:27.728 UTC [cauthdsl] func1 -> DEBU fa9 0xc4200265e8 gate 1516267887725227008 evaluation succeeds +2018-01-18 09:31:27.728 UTC [orderer/common/sigfilter] Apply -> DEBU faa Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4202d80c0 1 [0xc42014a778]}) %!s(*policies.implicitMetaPolicy=&{0xc420837160 1 [0xc42014a6b0 0xc42014a5d8]})]} +2018-01-18 09:31:27.728 UTC [orderer/common/broadcast] Handle -> DEBU fab [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION +2018-01-18 09:31:27.728 UTC [policies] GetPolicy -> DEBU fac Returning policy Writers for evaluation +2018-01-18 09:31:27.728 UTC [cauthdsl] func1 -> DEBU fad 0xc42014a020 gate 1516267887728896872 evaluation starts +2018-01-18 09:31:27.728 UTC [cauthdsl] func2 -> DEBU fae 0xc42014a020 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:31:27.729 UTC [cauthdsl] func2 -> DEBU faf 0xc42014a020 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:31:27.729 UTC [msp/identity] newIdentity -> DEBU fb0 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -7154,25 +7298,13 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS AXYxULZpXYDQXt1KaLI= -----END CERTIFICATE----- -2018-01-18 02:00:26.326 UTC [msp] SatisfiesPrincipal -> DEBU f6c Checking if identity satisfies MEMBER role for Org2MSP -2018-01-18 02:00:26.326 UTC [msp] Validate -> DEBU f6d MSP Org2MSP validating identity -2018-01-18 02:00:26.327 UTC [cauthdsl] func2 -> DEBU f6e 0xc42014ac30 principal matched by identity 0 -2018-01-18 02:00:26.327 UTC [msp/identity] Verify -> DEBU f6f Verify: digest = 00000000 41 86 c1 8f 5d 78 6d 5b 0b a3 49 3c af bd 81 5d |A...]xm[..I<...]| -00000010 aa 9e 24 eb 91 62 77 67 3e 0b 1a a3 87 0a 62 e8 |..$..bwg>.....b.| -2018-01-18 02:00:26.328 UTC [msp/identity] Verify -> DEBU f70 Verify: sig = 00000000 30 44 02 20 61 5b 5f 47 d9 9c 61 24 67 7c c3 10 |0D. a[_G..a$g|..| -00000010 de 77 61 e1 7c 05 55 ec 7c 58 af 8c 42 42 89 7a |.wa.|.U.|X..BB.z| -00000020 1d db ea d1 02 20 0f 19 02 c4 a9 ea b6 17 28 29 |..... ........()| -00000030 f3 eb 90 dd 3a 9e 40 36 d4 92 e5 59 8c 39 d1 f6 |....:.@6...Y.9..| -00000040 9d 13 2a 4b 0c 90 |..*K..| -2018-01-18 02:00:26.329 UTC [cauthdsl] func2 -> DEBU f71 0xc42014ac30 principal evaluation succeeds for identity 0 -2018-01-18 02:00:26.329 UTC [cauthdsl] func1 -> DEBU f72 0xc42014ac30 gate 1516240826326025519 evaluation succeeds -2018-01-18 02:00:26.329 UTC [orderer/common/sigfilter] Apply -> DEBU f73 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4202911c0 1 [0xc42014a3a8]}) %!s(*policies.implicitMetaPolicy=&{0xc420291840 1 [0xc42014a5f0 0xc42014a878]})]} -2018-01-18 02:00:26.330 UTC [orderer/common/broadcast] Handle -> DEBU f74 [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION -2018-01-18 02:00:26.331 UTC [policies] GetPolicy -> DEBU f75 Returning policy Writers for evaluation -2018-01-18 02:00:26.331 UTC [cauthdsl] func1 -> DEBU f76 0xc42014ac48 gate 1516240826331671894 evaluation starts -2018-01-18 02:00:26.331 UTC [cauthdsl] func2 -> DEBU f77 0xc42014ac48 signed by 0 principal evaluation starts (used [false]) -2018-01-18 02:00:26.331 UTC [cauthdsl] func2 -> DEBU f78 0xc42014ac48 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-18 02:00:26.332 UTC [msp/identity] newIdentity -> DEBU f79 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:31:27.729 UTC [cauthdsl] func2 -> DEBU fb1 0xc42014a020 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) +2018-01-18 09:31:27.729 UTC [cauthdsl] func2 -> DEBU fb2 0xc42014a020 principal evaluation fails +2018-01-18 09:31:27.729 UTC [cauthdsl] func1 -> DEBU fb3 0xc42014a020 gate 1516267887728896872 evaluation fails +2018-01-18 09:31:27.730 UTC [cauthdsl] func1 -> DEBU fb4 0xc42014a110 gate 1516267887730039500 evaluation starts +2018-01-18 09:31:27.730 UTC [cauthdsl] func2 -> DEBU fb5 0xc42014a110 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:31:27.730 UTC [cauthdsl] func2 -> DEBU fb6 0xc42014a110 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:31:27.730 UTC [msp/identity] newIdentity -> DEBU fb7 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -7186,105 +7318,65 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS AXYxULZpXYDQXt1KaLI= -----END CERTIFICATE----- -2018-01-18 02:00:26.332 UTC [cauthdsl] func2 -> DEBU f7a 0xc42014ac48 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) -2018-01-18 02:00:26.332 UTC [cauthdsl] func2 -> DEBU f7b 0xc42014ac48 principal evaluation fails -2018-01-18 02:00:26.332 UTC [cauthdsl] func1 -> DEBU f7c 0xc42014ac48 gate 1516240826331671894 evaluation fails -2018-01-18 02:00:26.332 UTC [cauthdsl] func1 -> DEBU f7d 0xc42014ac58 gate 1516240826332453103 evaluation starts -2018-01-18 02:00:26.332 UTC [cauthdsl] func2 -> DEBU f7e 0xc42014ac58 signed by 0 principal evaluation starts (used [false]) -2018-01-18 02:00:26.332 UTC [cauthdsl] func2 -> DEBU f7f 0xc42014ac58 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-18 02:00:26.332 UTC [msp/identity] newIdentity -> DEBU f80 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -AXYxULZpXYDQXt1KaLI= ------END CERTIFICATE----- -2018-01-18 02:00:26.333 UTC [cauthdsl] func2 -> DEBU f81 0xc42014ac58 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got Org2MSP) -2018-01-18 02:00:26.333 UTC [cauthdsl] func2 -> DEBU f82 0xc42014ac58 principal evaluation fails -2018-01-18 02:00:26.333 UTC [cauthdsl] func1 -> DEBU f83 0xc42014ac58 gate 1516240826332453103 evaluation fails -2018-01-18 02:00:26.333 UTC [cauthdsl] func1 -> DEBU f84 0xc42014ac68 gate 1516240826333329965 evaluation starts -2018-01-18 02:00:26.333 UTC [cauthdsl] func2 -> DEBU f85 0xc42014ac68 signed by 0 principal evaluation starts (used [false]) -2018-01-18 02:00:26.333 UTC [cauthdsl] func2 -> DEBU f86 0xc42014ac68 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-18 02:00:26.333 UTC [msp/identity] newIdentity -> DEBU f87 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -AXYxULZpXYDQXt1KaLI= ------END CERTIFICATE----- -2018-01-18 02:00:26.336 UTC [orderer/common/broadcast] Handle -> WARN f88 Error reading from stream: rpc error: code = Canceled desc = context canceled -2018-01-18 02:00:26.336 UTC [orderer/main] func1 -> DEBU f89 Closing Broadcast stream -2018-01-18 02:00:26.337 UTC [msp] SatisfiesPrincipal -> DEBU f8a Checking if identity satisfies MEMBER role for Org2MSP -2018-01-18 02:00:26.337 UTC [msp] Validate -> DEBU f8b MSP Org2MSP validating identity -2018-01-18 02:00:26.337 UTC [cauthdsl] func2 -> DEBU f8c 0xc42014ac68 principal matched by identity 0 -2018-01-18 02:00:26.338 UTC [msp/identity] Verify -> DEBU f8d Verify: digest = 00000000 41 86 c1 8f 5d 78 6d 5b 0b a3 49 3c af bd 81 5d |A...]xm[..I<...]| -00000010 aa 9e 24 eb 91 62 77 67 3e 0b 1a a3 87 0a 62 e8 |..$..bwg>.....b.| -2018-01-18 02:00:26.339 UTC [msp/identity] Verify -> DEBU f8e Verify: sig = 00000000 30 44 02 20 61 5b 5f 47 d9 9c 61 24 67 7c c3 10 |0D. a[_G..a$g|..| -00000010 de 77 61 e1 7c 05 55 ec 7c 58 af 8c 42 42 89 7a |.wa.|.U.|X..BB.z| -00000020 1d db ea d1 02 20 0f 19 02 c4 a9 ea b6 17 28 29 |..... ........()| -00000030 f3 eb 90 dd 3a 9e 40 36 d4 92 e5 59 8c 39 d1 f6 |....:.@6...Y.9..| -00000040 9d 13 2a 4b 0c 90 |..*K..| -2018-01-18 02:00:26.339 UTC [cauthdsl] func2 -> DEBU f8f 0xc42014ac68 principal evaluation succeeds for identity 0 -2018-01-18 02:00:26.339 UTC [cauthdsl] func1 -> DEBU f90 0xc42014ac68 gate 1516240826333329965 evaluation succeeds -2018-01-18 02:00:26.339 UTC [orderer/common/sigfilter] Apply -> DEBU f91 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4202911c0 1 [0xc42014a3a8]}) %!s(*policies.implicitMetaPolicy=&{0xc420291840 1 [0xc42014a5f0 0xc42014a878]})]} -2018-01-18 02:00:26.340 UTC [orderer/common/blockcutter] Ordered -> DEBU f92 Enqueuing message into batch -2018-01-18 02:00:28.348 UTC [orderer/solo] main -> DEBU f93 Batch timer expired, creating block -2018-01-18 02:00:28.348 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU f94 retrieveBlockByNumber() - blockNum = [5] -2018-01-18 02:00:28.348 UTC [fsblkstorage] newBlockfileStream -> DEBU f95 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[49886] -2018-01-18 02:00:28.349 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f96 Remaining bytes=[4674], Going to peek [8] bytes -2018-01-18 02:00:28.349 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f97 Returning blockbytes - length=[4672], placementInfo={fileNum=[0], startOffset=[49886], bytesOffset=[49888]} -2018-01-18 02:00:28.357 UTC [orderer/multichain] addBlockSignature -> DEBU f98 &{ledgerResources:0xc420208040 chain:0xc420208da0 cutter:0xc420a51270 filters:0xc4202089e0 signer:0x1274e88 lastConfig:2 lastConfigSeq:3} -2018-01-18 02:00:28.359 UTC [orderer/multichain] addBlockSignature -> DEBU f99 &{} -2018-01-18 02:00:28.360 UTC [msp] GetLocalMSP -> DEBU f9a Returning existing local MSP -2018-01-18 02:00:28.360 UTC [msp] GetDefaultSigningIdentity -> DEBU f9b Obtaining default signing identity -2018-01-18 02:00:28.360 UTC [msp] GetLocalMSP -> DEBU f9c Returning existing local MSP -2018-01-18 02:00:28.360 UTC [msp] GetDefaultSigningIdentity -> DEBU f9d Obtaining default signing identity -2018-01-18 02:00:28.360 UTC [msp/identity] Sign -> DEBU f9e Sign: plaintext: 0AFA050A0A4F7264657265724D535012...4EAA05659B82E25AB8B5F70E14686F7D -2018-01-18 02:00:28.360 UTC [msp/identity] Sign -> DEBU f9f Sign: digest: F76C3255731275255EADBB7C0048B4406FF4684ED39790721AFE4FE67BC36CC1 -2018-01-18 02:00:28.361 UTC [msp] GetLocalMSP -> DEBU fa0 Returning existing local MSP -2018-01-18 02:00:28.361 UTC [msp] GetDefaultSigningIdentity -> DEBU fa1 Obtaining default signing identity -2018-01-18 02:00:28.361 UTC [orderer/multichain] addLastConfigSignature -> DEBU fa2 [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 -2018-01-18 02:00:28.361 UTC [msp] GetLocalMSP -> DEBU fa3 Returning existing local MSP -2018-01-18 02:00:28.361 UTC [msp] GetDefaultSigningIdentity -> DEBU fa4 Obtaining default signing identity -2018-01-18 02:00:28.361 UTC [msp/identity] Sign -> DEBU fa5 Sign: plaintext: 08020AFA050A0A4F7264657265724D53...4EAA05659B82E25AB8B5F70E14686F7D -2018-01-18 02:00:28.361 UTC [msp/identity] Sign -> DEBU fa6 Sign: digest: EA2FF3B9A0ABFE801A00922F42B11F81CB185585F46550AB5A38926F66CC3740 -2018-01-18 02:00:28.381 UTC [fsblkstorage] indexBlock -> DEBU fa7 Indexing block [blockNum=6, blockHash=[]byte{0xb6, 0xc2, 0x2c, 0xe8, 0xb1, 0x4d, 0xad, 0xb5, 0xbc, 0xd7, 0x9f, 0xca, 0x1a, 0x2e, 0x40, 0x28, 0xdd, 0x17, 0xd0, 0xea, 0x49, 0x57, 0x8a, 0x25, 0x1c, 0xd, 0x93, 0xa9, 0x45, 0x57, 0xf1, 0xaa} txOffsets= -txId=ef892f35fb64f0ede0b8e75fccdd87a0b5a88e80208a6beacc5248090c895114 locPointer=offset=70, bytesLength=2855 +2018-01-18 09:31:27.730 UTC [msp] SatisfiesPrincipal -> DEBU fb8 Checking if identity satisfies MEMBER role for Org2MSP +2018-01-18 09:31:27.731 UTC [msp] Validate -> DEBU fb9 MSP Org2MSP validating identity +2018-01-18 09:31:27.731 UTC [cauthdsl] func2 -> DEBU fba 0xc42014a110 principal matched by identity 0 +2018-01-18 09:31:27.731 UTC [msp/identity] Verify -> DEBU fbb Verify: digest = 00000000 ac 85 6a f3 bd 0d 56 49 d0 ae 7c 3e 69 9b 24 3d |..j...VI..|>i.$=| +00000010 26 7d d9 2d bc 95 02 dc 9f 7d 74 a0 30 d4 16 50 |&}.-.....}t.0..P| +2018-01-18 09:31:27.731 UTC [msp/identity] Verify -> DEBU fbc Verify: sig = 00000000 30 45 02 21 00 a8 b6 9c d9 06 59 a9 b9 95 6e b6 |0E.!......Y...n.| +00000010 ab 74 f5 c3 9b f3 a2 c1 da cc d7 1b 49 4d 9c 47 |.t..........IM.G| +00000020 52 6d 39 9e e0 02 20 15 a5 0a 2d a3 7f fd 79 36 |Rm9... ...-...y6| +00000030 d9 71 8b 20 4e f9 1f 49 5a 7a f4 02 ba 92 3e 4f |.q. N..IZz....>O| +00000040 12 02 d5 62 85 db 47 |...b..G| +2018-01-18 09:31:27.731 UTC [cauthdsl] func2 -> DEBU fbd 0xc42014a110 principal evaluation succeeds for identity 0 +2018-01-18 09:31:27.731 UTC [cauthdsl] func1 -> DEBU fbe 0xc42014a110 gate 1516267887730039500 evaluation succeeds +2018-01-18 09:31:27.731 UTC [orderer/common/sigfilter] Apply -> DEBU fbf Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4202d80c0 1 [0xc42014a778]}) %!s(*policies.implicitMetaPolicy=&{0xc420837160 1 [0xc42014a6b0 0xc42014a5d8]})]} +2018-01-18 09:31:27.731 UTC [orderer/common/blockcutter] Ordered -> DEBU fc0 Enqueuing message into batch +2018-01-18 09:31:27.734 UTC [orderer/common/broadcast] Handle -> WARN fc1 Error reading from stream: rpc error: code = Canceled desc = context canceled +2018-01-18 09:31:27.735 UTC [orderer/main] func1 -> DEBU fc2 Closing Broadcast stream +2018-01-18 09:31:29.732 UTC [orderer/solo] main -> DEBU fc3 Batch timer expired, creating block +2018-01-18 09:31:29.732 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU fc4 retrieveBlockByNumber() - blockNum = [5] +2018-01-18 09:31:29.733 UTC [fsblkstorage] newBlockfileStream -> DEBU fc5 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[49883] +2018-01-18 09:31:29.733 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU fc6 Remaining bytes=[4675], Going to peek [8] bytes +2018-01-18 09:31:29.733 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU fc7 Returning blockbytes - length=[4673], placementInfo={fileNum=[0], startOffset=[49883], bytesOffset=[49885]} +2018-01-18 09:31:29.734 UTC [orderer/multichain] addBlockSignature -> DEBU fc8 &{ledgerResources:0xc4209b5140 chain:0xc4209b5a00 cutter:0xc420863b80 filters:0xc4209b5640 signer:0x1274e88 lastConfig:2 lastConfigSeq:3} +2018-01-18 09:31:29.735 UTC [orderer/multichain] addBlockSignature -> DEBU fc9 &{} +2018-01-18 09:31:29.735 UTC [msp] GetLocalMSP -> DEBU fca Returning existing local MSP +2018-01-18 09:31:29.735 UTC [msp] GetDefaultSigningIdentity -> DEBU fcb Obtaining default signing identity +2018-01-18 09:31:29.735 UTC [msp] GetLocalMSP -> DEBU fcc Returning existing local MSP +2018-01-18 09:31:29.736 UTC [msp] GetDefaultSigningIdentity -> DEBU fcd Obtaining default signing identity +2018-01-18 09:31:29.736 UTC [msp/identity] Sign -> DEBU fce Sign: plaintext: 0AFA050A0A4F7264657265724D535012...9E3D736BF0B3685C406CCE901438B821 +2018-01-18 09:31:29.736 UTC [msp/identity] Sign -> DEBU fcf Sign: digest: C1A2C2F9614D897B3B9B6221260E40ABCC7225C83A19FEB4F29BCDC53AAA3000 +2018-01-18 09:31:29.737 UTC [msp] GetLocalMSP -> DEBU fd0 Returning existing local MSP +2018-01-18 09:31:29.737 UTC [msp] GetDefaultSigningIdentity -> DEBU fd1 Obtaining default signing identity +2018-01-18 09:31:29.737 UTC [orderer/multichain] addLastConfigSignature -> DEBU fd2 [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 +2018-01-18 09:31:29.739 UTC [msp] GetLocalMSP -> DEBU fd3 Returning existing local MSP +2018-01-18 09:31:29.740 UTC [msp] GetDefaultSigningIdentity -> DEBU fd4 Obtaining default signing identity +2018-01-18 09:31:29.740 UTC [msp/identity] Sign -> DEBU fd5 Sign: plaintext: 08020AFA050A0A4F7264657265724D53...9E3D736BF0B3685C406CCE901438B821 +2018-01-18 09:31:29.743 UTC [msp/identity] Sign -> DEBU fd6 Sign: digest: 6B0888BDD6477FCCC4649FFD80450F230345B2E4C8DB05E4FD3EBFCF6754F0D3 +2018-01-18 09:31:29.755 UTC [fsblkstorage] indexBlock -> DEBU fd7 Indexing block [blockNum=6, blockHash=[]byte{0x6d, 0x6b, 0x82, 0xbc, 0xa, 0x4, 0xe3, 0xad, 0xfa, 0xe, 0x85, 0xa6, 0xa0, 0xe8, 0x87, 0xbf, 0x19, 0xf1, 0xbf, 0xd3, 0x9d, 0x68, 0xf3, 0x0, 0xe5, 0x64, 0xa4, 0xd6, 0x4c, 0x4e, 0x9f, 0x3d} txOffsets= +txId=a4652cc8b4e64e8e390bc639b183d8569ae28fa2ce4307dc0a9b7eed3962aaab locPointer=offset=70, bytesLength=2855 ] -2018-01-18 02:00:28.381 UTC [fsblkstorage] updateCheckpoint -> DEBU fa8 Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[59235], isChainEmpty=[false], lastBlockNumber=[6] -2018-01-18 02:00:28.382 UTC [orderer/multichain] WriteBlock -> DEBU fa9 [channel: businesschannel] Wrote block 6 -2018-01-18 02:00:28.382 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU faa retrieveBlockByNumber() - blockNum = [6] -2018-01-18 02:00:28.383 UTC [fsblkstorage] newBlockfileStream -> DEBU fac newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[54560] -2018-01-18 02:00:28.383 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU fad Remaining bytes=[4675], Going to peek [8] bytes -2018-01-18 02:00:28.384 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU fae Returning blockbytes - length=[4673], placementInfo={fileNum=[0], startOffset=[54560], bytesOffset=[54562]} -2018-01-18 02:00:28.384 UTC [orderer/common/deliver] Handle -> DEBU faf [channel: businesschannel] Delivering block for (0xc4208701a0) -2018-01-18 02:00:28.382 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU fab retrieveBlockByNumber() - blockNum = [6] -2018-01-18 02:00:28.390 UTC [fsblkstorage] newBlockfileStream -> DEBU fb0 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[54560] -2018-01-18 02:00:28.391 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU fb1 Remaining bytes=[4675], Going to peek [8] bytes -2018-01-18 02:00:28.391 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU fb2 Returning blockbytes - length=[4673], placementInfo={fileNum=[0], startOffset=[54560], bytesOffset=[54562]} -2018-01-18 02:00:28.392 UTC [orderer/common/deliver] Handle -> DEBU fb3 [channel: businesschannel] Delivering block for (0xc42022a4a0) -2018-01-18 02:00:28.657 UTC [orderer/main] Deliver -> DEBU fb4 Starting new Deliver handler -2018-01-18 02:00:28.657 UTC [orderer/common/deliver] Handle -> DEBU fb5 Starting new deliver loop -2018-01-18 02:00:28.657 UTC [orderer/common/deliver] Handle -> DEBU fb6 Attempting to read seek info message -2018-01-18 02:00:28.658 UTC [policies] GetPolicy -> DEBU fb7 Returning policy Readers for evaluation -2018-01-18 02:00:28.658 UTC [cauthdsl] func1 -> DEBU fb8 0xc42014ac90 gate 1516240828658245825 evaluation starts -2018-01-18 02:00:28.658 UTC [cauthdsl] func2 -> DEBU fb9 0xc42014ac90 signed by 0 principal evaluation starts (used [false]) -2018-01-18 02:00:28.658 UTC [cauthdsl] func2 -> DEBU fba 0xc42014ac90 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-18 02:00:28.658 UTC [msp/identity] newIdentity -> DEBU fbb Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:31:29.755 UTC [fsblkstorage] updateCheckpoint -> DEBU fd8 Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[59232], isChainEmpty=[false], lastBlockNumber=[6] +2018-01-18 09:31:29.756 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU fda retrieveBlockByNumber() - blockNum = [6] +2018-01-18 09:31:29.756 UTC [fsblkstorage] newBlockfileStream -> DEBU fdc newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[54558] +2018-01-18 09:31:29.756 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU fdb retrieveBlockByNumber() - blockNum = [6] +2018-01-18 09:31:29.756 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU fdd Remaining bytes=[4674], Going to peek [8] bytes +2018-01-18 09:31:29.756 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU fde Returning blockbytes - length=[4672], placementInfo={fileNum=[0], startOffset=[54558], bytesOffset=[54560]} +2018-01-18 09:31:29.756 UTC [orderer/common/deliver] Handle -> DEBU fdf [channel: businesschannel] Delivering block for (0xc420363320) +2018-01-18 09:31:29.755 UTC [orderer/multichain] WriteBlock -> DEBU fd9 [channel: businesschannel] Wrote block 6 +2018-01-18 09:31:29.756 UTC [fsblkstorage] newBlockfileStream -> DEBU fe0 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[54558] +2018-01-18 09:31:29.761 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU fe1 Remaining bytes=[4674], Going to peek [8] bytes +2018-01-18 09:31:29.761 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU fe2 Returning blockbytes - length=[4672], placementInfo={fileNum=[0], startOffset=[54558], bytesOffset=[54560]} +2018-01-18 09:31:29.761 UTC [orderer/common/deliver] Handle -> DEBU fe3 [channel: businesschannel] Delivering block for (0xc420b7cce0) +2018-01-18 09:31:30.194 UTC [orderer/main] Deliver -> DEBU fe4 Starting new Deliver handler +2018-01-18 09:31:30.194 UTC [orderer/common/deliver] Handle -> DEBU fe5 Starting new deliver loop +2018-01-18 09:31:30.194 UTC [orderer/common/deliver] Handle -> DEBU fe6 Attempting to read seek info message +2018-01-18 09:31:30.195 UTC [policies] GetPolicy -> DEBU fe7 Returning policy Readers for evaluation +2018-01-18 09:31:30.195 UTC [cauthdsl] func1 -> DEBU fe8 0xc42014a498 gate 1516267890195823791 evaluation starts +2018-01-18 09:31:30.195 UTC [cauthdsl] func2 -> DEBU fe9 0xc42014a498 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:31:30.195 UTC [cauthdsl] func2 -> DEBU fea 0xc42014a498 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:31:30.196 UTC [msp/identity] newIdentity -> DEBU feb Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -7297,37 +7389,13 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -----END CERTIFICATE----- -2018-01-18 02:00:28.659 UTC [msp] SatisfiesPrincipal -> DEBU fbc Checking if identity satisfies MEMBER role for OrdererMSP -2018-01-18 02:00:28.659 UTC [msp] Validate -> DEBU fbd MSP OrdererMSP validating identity -2018-01-18 02:00:28.660 UTC [cauthdsl] func2 -> DEBU fbe 0xc42014ac90 principal matched by identity 0 -2018-01-18 02:00:28.660 UTC [msp/identity] Verify -> DEBU fbf Verify: digest = 00000000 d5 4d 4a d1 b9 89 dc 80 8b ec d0 2f bd da 9e 42 |.MJ......../...B| -00000010 3b 65 d4 db 9f 58 dc 3e 34 19 4a f1 2c 34 11 bf |;e...X.>4.J.,4..| -2018-01-18 02:00:28.660 UTC [msp/identity] Verify -> DEBU fc0 Verify: sig = 00000000 30 45 02 21 00 f1 56 d1 53 8b 25 9c 50 8c 40 7d |0E.!..V.S.%.P.@}| -00000010 47 ff b1 5a df d2 67 fb 11 7a 23 a9 8c f9 1e 7b |G..Z..g..z#....{| -00000020 35 85 4d d7 f9 02 20 13 e8 2e 13 6a e3 17 5c 27 |5.M... ....j..\'| -00000030 13 9a a2 06 56 a6 b5 c6 2f a5 fc 8f 3d 45 3c f4 |....V.../...=E<.| -00000040 7b 85 c5 88 02 04 24 |{.....$| -2018-01-18 02:00:28.660 UTC [cauthdsl] func2 -> DEBU fc1 0xc42014ac90 principal evaluation succeeds for identity 0 -2018-01-18 02:00:28.660 UTC [cauthdsl] func1 -> DEBU fc2 0xc42014ac90 gate 1516240828658245825 evaluation succeeds -2018-01-18 02:00:28.661 UTC [orderer/common/sigfilter] Apply -> DEBU fc3 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420291360 1 [0xc42014a4b8]}) %!s(*policies.implicitMetaPolicy=&{0xc4202918c0 1 [0xc42014a548 0xc42014a820]})]} -2018-01-18 02:00:28.661 UTC [orderer/common/deliver] Handle -> DEBU fc4 [channel: businesschannel] Received seekInfo (0xc420b24e40) start: > stop: > -2018-01-18 02:00:28.661 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU fc5 retrieveBlockByNumber() - blockNum = [6] -2018-01-18 02:00:28.662 UTC [fsblkstorage] newBlockfileStream -> DEBU fc6 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[54560] -2018-01-18 02:00:28.662 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU fc7 Remaining bytes=[4675], Going to peek [8] bytes -2018-01-18 02:00:28.662 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU fc8 Returning blockbytes - length=[4673], placementInfo={fileNum=[0], startOffset=[54560], bytesOffset=[54562]} -2018-01-18 02:00:28.662 UTC [orderer/common/deliver] Handle -> DEBU fc9 [channel: businesschannel] Delivering block for (0xc420b24e40) -2018-01-18 02:00:28.662 UTC [orderer/common/deliver] Handle -> DEBU fca [channel: businesschannel] Done delivering for (0xc420b24e40), waiting for new SeekInfo -2018-01-18 02:00:28.662 UTC [orderer/common/deliver] Handle -> DEBU fcb Attempting to read seek info message -2018-01-18 02:00:28.664 UTC [orderer/common/deliver] Handle -> WARN fcc Error reading from stream: rpc error: code = Canceled desc = context canceled -2018-01-18 02:00:28.665 UTC [orderer/main] func1 -> DEBU fcd Closing Deliver stream -2018-01-18 02:00:28.908 UTC [orderer/main] Deliver -> DEBU fce Starting new Deliver handler -2018-01-18 02:00:28.908 UTC [orderer/common/deliver] Handle -> DEBU fcf Starting new deliver loop -2018-01-18 02:00:28.908 UTC [orderer/common/deliver] Handle -> DEBU fd0 Attempting to read seek info message -2018-01-18 02:00:28.909 UTC [policies] GetPolicy -> DEBU fd1 Returning policy Readers for evaluation -2018-01-18 02:00:28.909 UTC [cauthdsl] func1 -> DEBU fd2 0xc42014acd8 gate 1516240828909257257 evaluation starts -2018-01-18 02:00:28.909 UTC [cauthdsl] func2 -> DEBU fd3 0xc42014acd8 signed by 0 principal evaluation starts (used [false]) -2018-01-18 02:00:28.909 UTC [cauthdsl] func2 -> DEBU fd4 0xc42014acd8 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-18 02:00:28.909 UTC [msp/identity] newIdentity -> DEBU fd5 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:31:30.196 UTC [cauthdsl] func2 -> DEBU fec 0xc42014a498 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +2018-01-18 09:31:30.197 UTC [cauthdsl] func2 -> DEBU fed 0xc42014a498 principal evaluation fails +2018-01-18 09:31:30.197 UTC [cauthdsl] func1 -> DEBU fee 0xc42014a498 gate 1516267890195823791 evaluation fails +2018-01-18 09:31:30.197 UTC [cauthdsl] func1 -> DEBU fef 0xc42014a4a8 gate 1516267890197850877 evaluation starts +2018-01-18 09:31:30.198 UTC [cauthdsl] func2 -> DEBU ff0 0xc42014a4a8 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:31:30.198 UTC [cauthdsl] func2 -> DEBU ff1 0xc42014a4a8 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:31:30.199 UTC [msp/identity] newIdentity -> DEBU ff2 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -7340,32 +7408,13 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -----END CERTIFICATE----- -2018-01-18 02:00:28.910 UTC [msp] SatisfiesPrincipal -> DEBU fd6 Checking if identity satisfies MEMBER role for OrdererMSP -2018-01-18 02:00:28.910 UTC [msp] Validate -> DEBU fd7 MSP OrdererMSP validating identity -2018-01-18 02:00:28.910 UTC [cauthdsl] func2 -> DEBU fd8 0xc42014acd8 principal matched by identity 0 -2018-01-18 02:00:28.910 UTC [msp/identity] Verify -> DEBU fd9 Verify: digest = 00000000 24 cf 21 25 ee f7 a3 10 9b da 15 00 82 fd 1d 2d |$.!%...........-| -00000010 9e d6 70 3c df bf 68 7f c9 c2 84 76 d8 c0 ea c0 |..p<..h....v....| -2018-01-18 02:00:28.910 UTC [msp/identity] Verify -> DEBU fda Verify: sig = 00000000 30 44 02 20 18 8e 64 2d 67 99 06 2b e4 00 77 7e |0D. ..d-g..+..w~| -00000010 f3 da fb 6c 3a 71 29 44 a2 ad a0 37 02 8f 70 f1 |...l:q)D...7..p.| -00000020 65 d5 7f f5 02 20 1e 62 d5 5b 7b a7 ce b1 c6 99 |e.... .b.[{.....| -00000030 74 dc 38 30 04 9c a6 2c 59 0f 9f 14 56 89 9f 0c |t.80...,Y...V...| -00000040 1a 50 81 30 2a 23 |.P.0*#| -2018-01-18 02:00:28.911 UTC [cauthdsl] func2 -> DEBU fdb 0xc42014acd8 principal evaluation succeeds for identity 0 -2018-01-18 02:00:28.911 UTC [cauthdsl] func1 -> DEBU fdc 0xc42014acd8 gate 1516240828909257257 evaluation succeeds -2018-01-18 02:00:28.911 UTC [orderer/common/sigfilter] Apply -> DEBU fdd Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420291360 1 [0xc42014a4b8]}) %!s(*policies.implicitMetaPolicy=&{0xc4202918c0 1 [0xc42014a548 0xc42014a820]})]} -2018-01-18 02:00:28.911 UTC [orderer/common/deliver] Handle -> DEBU fde [channel: businesschannel] Received seekInfo (0xc4208dfda0) start: > stop: > -2018-01-18 02:00:28.913 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU fdf retrieveBlockByNumber() - blockNum = [6] -2018-01-18 02:00:28.913 UTC [fsblkstorage] newBlockfileStream -> DEBU fe0 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[54560] -2018-01-18 02:00:28.913 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU fe1 Remaining bytes=[4675], Going to peek [8] bytes -2018-01-18 02:00:28.913 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU fe2 Returning blockbytes - length=[4673], placementInfo={fileNum=[0], startOffset=[54560], bytesOffset=[54562]} -2018-01-18 02:00:28.913 UTC [orderer/common/deliver] Handle -> DEBU fe3 [channel: businesschannel] Delivering block for (0xc4208dfda0) -2018-01-18 02:00:28.914 UTC [orderer/common/deliver] Handle -> DEBU fe4 [channel: businesschannel] Done delivering for (0xc4208dfda0), waiting for new SeekInfo -2018-01-18 02:00:28.915 UTC [orderer/common/deliver] Handle -> DEBU fe5 Attempting to read seek info message -2018-01-18 02:00:28.917 UTC [policies] GetPolicy -> DEBU fe6 Returning policy Readers for evaluation -2018-01-18 02:00:28.917 UTC [cauthdsl] func1 -> DEBU fe7 0xc42014a058 gate 1516240828917345111 evaluation starts -2018-01-18 02:00:28.917 UTC [cauthdsl] func2 -> DEBU fe8 0xc42014a058 signed by 0 principal evaluation starts (used [false]) -2018-01-18 02:00:28.917 UTC [cauthdsl] func2 -> DEBU fe9 0xc42014a058 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-18 02:00:28.917 UTC [msp/identity] newIdentity -> DEBU fea Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:31:30.203 UTC [cauthdsl] func2 -> DEBU ff3 0xc42014a4a8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +2018-01-18 09:31:30.203 UTC [cauthdsl] func2 -> DEBU ff4 0xc42014a4a8 principal evaluation fails +2018-01-18 09:31:30.204 UTC [cauthdsl] func1 -> DEBU ff5 0xc42014a4a8 gate 1516267890197850877 evaluation fails +2018-01-18 09:31:30.204 UTC [cauthdsl] func1 -> DEBU ff6 0xc42014a4c8 gate 1516267890204952624 evaluation starts +2018-01-18 09:31:30.205 UTC [cauthdsl] func2 -> DEBU ff7 0xc42014a4c8 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:31:30.207 UTC [cauthdsl] func2 -> DEBU ff8 0xc42014a4c8 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:31:30.207 UTC [msp/identity] newIdentity -> DEBU ff9 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -7378,37 +7427,37 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -----END CERTIFICATE----- -2018-01-18 02:00:28.917 UTC [msp] SatisfiesPrincipal -> DEBU feb Checking if identity satisfies MEMBER role for OrdererMSP -2018-01-18 02:00:28.917 UTC [msp] Validate -> DEBU fec MSP OrdererMSP validating identity -2018-01-18 02:00:28.918 UTC [cauthdsl] func2 -> DEBU fed 0xc42014a058 principal matched by identity 0 -2018-01-18 02:00:28.918 UTC [msp/identity] Verify -> DEBU fee Verify: digest = 00000000 8c 69 bf 6b b0 96 b1 b5 5a 42 15 d7 ee d6 ef ac |.i.k....ZB......| -00000010 60 83 9a 47 0a 92 4d 52 e9 33 5e 70 3b 88 27 7b |`..G..MR.3^p;.'{| -2018-01-18 02:00:28.918 UTC [msp/identity] Verify -> DEBU fef Verify: sig = 00000000 30 44 02 20 62 e8 50 55 c9 6f 7c 61 f6 de b7 3b |0D. b.PU.o|a...;| -00000010 31 a8 22 11 28 3a a9 1e cd a6 cc cc 7e e2 60 7c |1.".(:......~.`|| -00000020 e4 e3 75 0b 02 20 71 9b 98 38 29 35 20 d2 ea 15 |..u.. q..8)5 ...| -00000030 b0 f1 37 bb 58 0a 5c f1 4f ef bf 91 09 8d 71 78 |..7.X.\.O.....qx| -00000040 18 9f 8c 7e 3e e1 |...~>.| -2018-01-18 02:00:28.918 UTC [cauthdsl] func2 -> DEBU ff0 0xc42014a058 principal evaluation succeeds for identity 0 -2018-01-18 02:00:28.918 UTC [cauthdsl] func1 -> DEBU ff1 0xc42014a058 gate 1516240828917345111 evaluation succeeds -2018-01-18 02:00:28.918 UTC [orderer/common/sigfilter] Apply -> DEBU ff2 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420291360 1 [0xc42014a4b8]}) %!s(*policies.implicitMetaPolicy=&{0xc4202918c0 1 [0xc42014a548 0xc42014a820]})]} -2018-01-18 02:00:28.918 UTC [orderer/common/deliver] Handle -> DEBU ff3 [channel: businesschannel] Received seekInfo (0xc420a781e0) start: > stop: > -2018-01-18 02:00:28.918 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU ff4 retrieveBlockByNumber() - blockNum = [2] -2018-01-18 02:00:28.918 UTC [fsblkstorage] newBlockfileStream -> DEBU ff5 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[25666] -2018-01-18 02:00:28.919 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU ff6 Remaining bytes=[33569], Going to peek [8] bytes -2018-01-18 02:00:28.919 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU ff7 Returning blockbytes - length=[13788], placementInfo={fileNum=[0], startOffset=[25666], bytesOffset=[25668]} -2018-01-18 02:00:28.919 UTC [orderer/common/deliver] Handle -> DEBU ff8 [channel: businesschannel] Delivering block for (0xc420a781e0) -2018-01-18 02:00:28.920 UTC [orderer/common/deliver] Handle -> DEBU ff9 [channel: businesschannel] Done delivering for (0xc420a781e0), waiting for new SeekInfo -2018-01-18 02:00:28.920 UTC [orderer/common/deliver] Handle -> DEBU ffa Attempting to read seek info message -2018-01-18 02:00:28.927 UTC [orderer/common/deliver] Handle -> WARN ffb Error reading from stream: rpc error: code = Canceled desc = context canceled -2018-01-18 02:00:28.927 UTC [orderer/main] func1 -> DEBU ffc Closing Deliver stream -2018-01-18 02:00:29.070 UTC [orderer/main] Deliver -> DEBU ffd Starting new Deliver handler -2018-01-18 02:00:29.070 UTC [orderer/common/deliver] Handle -> DEBU ffe Starting new deliver loop -2018-01-18 02:00:29.070 UTC [orderer/common/deliver] Handle -> DEBU fff Attempting to read seek info message -2018-01-18 02:00:29.071 UTC [policies] GetPolicy -> DEBU 1000 Returning policy Readers for evaluation -2018-01-18 02:00:29.071 UTC [cauthdsl] func1 -> DEBU 1001 0xc420026028 gate 1516240829071903393 evaluation starts -2018-01-18 02:00:29.071 UTC [cauthdsl] func2 -> DEBU 1002 0xc420026028 signed by 0 principal evaluation starts (used [false]) -2018-01-18 02:00:29.071 UTC [cauthdsl] func2 -> DEBU 1003 0xc420026028 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-18 02:00:29.072 UTC [msp/identity] newIdentity -> DEBU 1004 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:31:30.221 UTC [msp] SatisfiesPrincipal -> DEBU ffa Checking if identity satisfies MEMBER role for OrdererMSP +2018-01-18 09:31:30.221 UTC [msp] Validate -> DEBU ffb MSP OrdererMSP validating identity +2018-01-18 09:31:30.222 UTC [cauthdsl] func2 -> DEBU ffc 0xc42014a4c8 principal matched by identity 0 +2018-01-18 09:31:30.222 UTC [msp/identity] Verify -> DEBU ffd Verify: digest = 00000000 c1 2c fe 9d 34 73 c9 1f 04 36 e3 a1 f6 5c 46 e3 |.,..4s...6...\F.| +00000010 5a 39 ce fc f2 eb 74 4d e5 27 be 61 7a c3 77 ed |Z9....tM.'.az.w.| +2018-01-18 09:31:30.222 UTC [msp/identity] Verify -> DEBU ffe Verify: sig = 00000000 30 45 02 21 00 94 ea 77 80 79 ca 96 3e fe 3c 7f |0E.!...w.y..>.<.| +00000010 d0 b1 d6 b1 dd e6 e6 47 d1 87 94 d7 be 80 1f d0 |.......G........| +00000020 6b 64 98 b9 db 02 20 05 e4 fb 24 c6 6a 34 a9 59 |kd.... ...$.j4.Y| +00000030 84 db 1c 13 32 97 88 df 2c 03 a6 ae 59 3a 5b 21 |....2...,...Y:[!| +00000040 25 4c 16 ce 34 44 e8 |%L..4D.| +2018-01-18 09:31:30.222 UTC [cauthdsl] func2 -> DEBU fff 0xc42014a4c8 principal evaluation succeeds for identity 0 +2018-01-18 09:31:30.223 UTC [cauthdsl] func1 -> DEBU 1000 0xc42014a4c8 gate 1516267890204952624 evaluation succeeds +2018-01-18 09:31:30.223 UTC [orderer/common/sigfilter] Apply -> DEBU 1001 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4208371e0 1 [0xc42014a638 0xc42014a688]}) %!s(*policies.implicitMetaPolicy=&{0xc4202d8040 1 [0xc42014a750]})]} +2018-01-18 09:31:30.223 UTC [orderer/common/deliver] Handle -> DEBU 1002 [channel: businesschannel] Received seekInfo (0xc420206ac0) start: > stop: > +2018-01-18 09:31:30.224 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 1003 retrieveBlockByNumber() - blockNum = [6] +2018-01-18 09:31:30.225 UTC [fsblkstorage] newBlockfileStream -> DEBU 1004 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[54558] +2018-01-18 09:31:30.225 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 1005 Remaining bytes=[4674], Going to peek [8] bytes +2018-01-18 09:31:30.225 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 1006 Returning blockbytes - length=[4672], placementInfo={fileNum=[0], startOffset=[54558], bytesOffset=[54560]} +2018-01-18 09:31:30.225 UTC [orderer/common/deliver] Handle -> DEBU 1007 [channel: businesschannel] Delivering block for (0xc420206ac0) +2018-01-18 09:31:30.228 UTC [orderer/common/deliver] Handle -> DEBU 1008 [channel: businesschannel] Done delivering for (0xc420206ac0), waiting for new SeekInfo +2018-01-18 09:31:30.228 UTC [orderer/common/deliver] Handle -> DEBU 1009 Attempting to read seek info message +2018-01-18 09:31:30.247 UTC [orderer/common/deliver] Handle -> WARN 100a Error reading from stream: rpc error: code = Canceled desc = context canceled +2018-01-18 09:31:30.247 UTC [orderer/main] func1 -> DEBU 100b Closing Deliver stream +2018-01-18 09:31:30.494 UTC [orderer/main] Deliver -> DEBU 100c Starting new Deliver handler +2018-01-18 09:31:30.494 UTC [orderer/common/deliver] Handle -> DEBU 100d Starting new deliver loop +2018-01-18 09:31:30.494 UTC [orderer/common/deliver] Handle -> DEBU 100e Attempting to read seek info message +2018-01-18 09:31:30.496 UTC [policies] GetPolicy -> DEBU 100f Returning policy Readers for evaluation +2018-01-18 09:31:30.496 UTC [cauthdsl] func1 -> DEBU 1010 0xc42014a6e8 gate 1516267890496660497 evaluation starts +2018-01-18 09:31:30.496 UTC [cauthdsl] func2 -> DEBU 1011 0xc42014a6e8 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:31:30.496 UTC [cauthdsl] func2 -> DEBU 1012 0xc42014a6e8 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:31:30.497 UTC [msp/identity] newIdentity -> DEBU 1013 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -7421,37 +7470,13 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -----END CERTIFICATE----- -2018-01-18 02:00:29.072 UTC [msp] SatisfiesPrincipal -> DEBU 1005 Checking if identity satisfies MEMBER role for OrdererMSP -2018-01-18 02:00:29.072 UTC [msp] Validate -> DEBU 1006 MSP OrdererMSP validating identity -2018-01-18 02:00:29.072 UTC [cauthdsl] func2 -> DEBU 1007 0xc420026028 principal matched by identity 0 -2018-01-18 02:00:29.072 UTC [msp/identity] Verify -> DEBU 1008 Verify: digest = 00000000 65 12 3c 11 a2 4e 86 a8 47 e7 76 6f 87 c2 b3 38 |e.<..N..G.vo...8| -00000010 6c e2 3c e9 4d 71 09 4e ab d3 05 84 fa 51 4b 22 |l.<.Mq.N.....QK"| -2018-01-18 02:00:29.072 UTC [msp/identity] Verify -> DEBU 1009 Verify: sig = 00000000 30 44 02 20 12 62 19 57 d6 a2 92 51 d8 15 48 a1 |0D. .b.W...Q..H.| -00000010 ad 02 9c 2d 0c 9f c6 de 9f e6 0a 87 83 f5 43 c0 |...-..........C.| -00000020 64 ff 8d 7a 02 20 45 07 0e f6 77 03 43 f9 63 dd |d..z. E...w.C.c.| -00000030 fd 1b ab 6b 7d 57 59 f6 da 89 58 f4 37 51 1a 62 |...k}WY...X.7Q.b| -00000040 74 52 3c fb 59 2d |tR<.Y-| -2018-01-18 02:00:29.072 UTC [cauthdsl] func2 -> DEBU 100a 0xc420026028 principal evaluation succeeds for identity 0 -2018-01-18 02:00:29.072 UTC [cauthdsl] func1 -> DEBU 100b 0xc420026028 gate 1516240829071903393 evaluation succeeds -2018-01-18 02:00:29.072 UTC [orderer/common/sigfilter] Apply -> DEBU 100c Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420291360 1 [0xc42014a4b8]}) %!s(*policies.implicitMetaPolicy=&{0xc4202918c0 1 [0xc42014a548 0xc42014a820]})]} -2018-01-18 02:00:29.072 UTC [orderer/common/deliver] Handle -> DEBU 100d [channel: businesschannel] Received seekInfo (0xc420b24280) start: > stop: > -2018-01-18 02:00:29.072 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 100e retrieveBlockByNumber() - blockNum = [0] -2018-01-18 02:00:29.072 UTC [fsblkstorage] newBlockfileStream -> DEBU 100f newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] -2018-01-18 02:00:29.072 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 1010 Remaining bytes=[59235], Going to peek [8] bytes -2018-01-18 02:00:29.073 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 1011 Returning blockbytes - length=[11932], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -2018-01-18 02:00:29.073 UTC [orderer/common/deliver] Handle -> DEBU 1012 [channel: businesschannel] Delivering block for (0xc420b24280) -2018-01-18 02:00:29.073 UTC [orderer/common/deliver] Handle -> DEBU 1013 [channel: businesschannel] Done delivering for (0xc420b24280), waiting for new SeekInfo -2018-01-18 02:00:29.073 UTC [orderer/common/deliver] Handle -> DEBU 1014 Attempting to read seek info message -2018-01-18 02:00:29.077 UTC [orderer/common/deliver] Handle -> WARN 1015 Error reading from stream: rpc error: code = Canceled desc = context canceled -2018-01-18 02:00:29.077 UTC [orderer/main] func1 -> DEBU 1016 Closing Deliver stream -2018-01-18 02:00:29.287 UTC [orderer/main] Deliver -> DEBU 1017 Starting new Deliver handler -2018-01-18 02:00:29.287 UTC [orderer/common/deliver] Handle -> DEBU 1018 Starting new deliver loop -2018-01-18 02:00:29.287 UTC [orderer/common/deliver] Handle -> DEBU 1019 Attempting to read seek info message -2018-01-18 02:00:29.288 UTC [policies] GetPolicy -> DEBU 101a Returning policy Readers for evaluation -2018-01-18 02:00:29.288 UTC [cauthdsl] func1 -> DEBU 101b 0xc42014a5a0 gate 1516240829288989595 evaluation starts -2018-01-18 02:00:29.289 UTC [cauthdsl] func2 -> DEBU 101c 0xc42014a5a0 signed by 0 principal evaluation starts (used [false]) -2018-01-18 02:00:29.289 UTC [cauthdsl] func2 -> DEBU 101d 0xc42014a5a0 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-18 02:00:29.289 UTC [msp/identity] newIdentity -> DEBU 101e Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:31:30.497 UTC [cauthdsl] func2 -> DEBU 1014 0xc42014a6e8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +2018-01-18 09:31:30.497 UTC [cauthdsl] func2 -> DEBU 1015 0xc42014a6e8 principal evaluation fails +2018-01-18 09:31:30.497 UTC [cauthdsl] func1 -> DEBU 1016 0xc42014a6e8 gate 1516267890496660497 evaluation fails +2018-01-18 09:31:30.497 UTC [cauthdsl] func1 -> DEBU 1017 0xc42014a718 gate 1516267890497597029 evaluation starts +2018-01-18 09:31:30.497 UTC [cauthdsl] func2 -> DEBU 1018 0xc42014a718 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:31:30.497 UTC [cauthdsl] func2 -> DEBU 1019 0xc42014a718 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:31:30.497 UTC [msp/identity] newIdentity -> DEBU 101a Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -7464,37 +7489,13 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -----END CERTIFICATE----- -2018-01-18 02:00:29.289 UTC [msp] SatisfiesPrincipal -> DEBU 101f Checking if identity satisfies MEMBER role for OrdererMSP -2018-01-18 02:00:29.289 UTC [msp] Validate -> DEBU 1020 MSP OrdererMSP validating identity -2018-01-18 02:00:29.289 UTC [cauthdsl] func2 -> DEBU 1021 0xc42014a5a0 principal matched by identity 0 -2018-01-18 02:00:29.289 UTC [msp/identity] Verify -> DEBU 1022 Verify: digest = 00000000 b2 35 16 42 a6 c3 55 da 5e 38 bf b6 92 11 5a b5 |.5.B..U.^8....Z.| -00000010 e9 0b a8 43 2c b0 ec 10 30 2a 40 60 b2 3f 38 a7 |...C,...0*@`.?8.| -2018-01-18 02:00:29.289 UTC [msp/identity] Verify -> DEBU 1023 Verify: sig = 00000000 30 44 02 20 5b 10 e4 02 04 6a 48 6c 35 0d ef 13 |0D. [....jHl5...| -00000010 4b fe 22 60 06 ac c7 60 4a 3d 90 86 69 60 17 eb |K."`...`J=..i`..| -00000020 89 80 08 45 02 20 2c 6e 08 bc 97 18 ac ca 3d a1 |...E. ,n......=.| -00000030 0a e2 7d fa 37 82 dd fa 53 aa e8 b7 3f 8d f2 eb |..}.7...S...?...| -00000040 60 7d 93 d2 80 ad |`}....| -2018-01-18 02:00:29.290 UTC [cauthdsl] func2 -> DEBU 1024 0xc42014a5a0 principal evaluation succeeds for identity 0 -2018-01-18 02:00:29.290 UTC [cauthdsl] func1 -> DEBU 1025 0xc42014a5a0 gate 1516240829288989595 evaluation succeeds -2018-01-18 02:00:29.290 UTC [orderer/common/sigfilter] Apply -> DEBU 1026 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420291360 1 [0xc42014a4b8]}) %!s(*policies.implicitMetaPolicy=&{0xc4202918c0 1 [0xc42014a548 0xc42014a820]})]} -2018-01-18 02:00:29.290 UTC [orderer/common/deliver] Handle -> DEBU 1027 [channel: businesschannel] Received seekInfo (0xc42090bde0) start: > stop: > -2018-01-18 02:00:29.290 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 1028 retrieveBlockByNumber() - blockNum = [1] -2018-01-18 02:00:29.290 UTC [fsblkstorage] newBlockfileStream -> DEBU 1029 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[11934] -2018-01-18 02:00:29.290 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 102a Remaining bytes=[47301], Going to peek [8] bytes -2018-01-18 02:00:29.290 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 102b Returning blockbytes - length=[13730], placementInfo={fileNum=[0], startOffset=[11934], bytesOffset=[11936]} -2018-01-18 02:00:29.290 UTC [orderer/common/deliver] Handle -> DEBU 102c [channel: businesschannel] Delivering block for (0xc42090bde0) -2018-01-18 02:00:29.290 UTC [orderer/common/deliver] Handle -> DEBU 102d [channel: businesschannel] Done delivering for (0xc42090bde0), waiting for new SeekInfo -2018-01-18 02:00:29.290 UTC [orderer/common/deliver] Handle -> DEBU 102e Attempting to read seek info message -2018-01-18 02:00:29.298 UTC [orderer/common/deliver] Handle -> WARN 102f Error reading from stream: rpc error: code = Canceled desc = context canceled -2018-01-18 02:00:29.298 UTC [orderer/main] func1 -> DEBU 1030 Closing Deliver stream -2018-01-18 02:00:29.451 UTC [orderer/main] Deliver -> DEBU 1031 Starting new Deliver handler -2018-01-18 02:00:29.452 UTC [orderer/common/deliver] Handle -> DEBU 1032 Starting new deliver loop -2018-01-18 02:00:29.452 UTC [orderer/common/deliver] Handle -> DEBU 1033 Attempting to read seek info message -2018-01-18 02:00:29.452 UTC [policies] GetPolicy -> DEBU 1034 Returning policy Readers for evaluation -2018-01-18 02:00:29.453 UTC [cauthdsl] func1 -> DEBU 1035 0xc4200260b0 gate 1516240829453047126 evaluation starts -2018-01-18 02:00:29.453 UTC [cauthdsl] func2 -> DEBU 1036 0xc4200260b0 signed by 0 principal evaluation starts (used [false]) -2018-01-18 02:00:29.453 UTC [cauthdsl] func2 -> DEBU 1037 0xc4200260b0 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-18 02:00:29.453 UTC [msp/identity] newIdentity -> DEBU 1038 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:31:30.498 UTC [cauthdsl] func2 -> DEBU 101b 0xc42014a718 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +2018-01-18 09:31:30.498 UTC [cauthdsl] func2 -> DEBU 101c 0xc42014a718 principal evaluation fails +2018-01-18 09:31:30.498 UTC [cauthdsl] func1 -> DEBU 101d 0xc42014a718 gate 1516267890497597029 evaluation fails +2018-01-18 09:31:30.498 UTC [cauthdsl] func1 -> DEBU 101e 0xc42014a768 gate 1516267890498468293 evaluation starts +2018-01-18 09:31:30.498 UTC [cauthdsl] func2 -> DEBU 101f 0xc42014a768 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:31:30.498 UTC [cauthdsl] func2 -> DEBU 1020 0xc42014a768 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:31:30.498 UTC [msp/identity] newIdentity -> DEBU 1021 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -7507,37 +7508,32 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -----END CERTIFICATE----- -2018-01-18 02:00:29.454 UTC [msp] SatisfiesPrincipal -> DEBU 1039 Checking if identity satisfies MEMBER role for OrdererMSP -2018-01-18 02:00:29.454 UTC [msp] Validate -> DEBU 103a MSP OrdererMSP validating identity -2018-01-18 02:00:29.454 UTC [cauthdsl] func2 -> DEBU 103b 0xc4200260b0 principal matched by identity 0 -2018-01-18 02:00:29.454 UTC [msp/identity] Verify -> DEBU 103c Verify: digest = 00000000 d0 f7 c7 01 35 76 09 54 7d c9 2e f5 26 77 ae 06 |....5v.T}...&w..| -00000010 50 e2 fa 60 1c 12 ce 17 33 02 b0 8d 0c 55 8e 98 |P..`....3....U..| -2018-01-18 02:00:29.454 UTC [msp/identity] Verify -> DEBU 103d Verify: sig = 00000000 30 44 02 20 72 01 bc fb 21 09 19 9c 3d 75 b3 a4 |0D. r...!...=u..| -00000010 12 9e bd 2f af 50 80 4c a0 ef f9 67 16 b7 c1 55 |.../.P.L...g...U| -00000020 1f 0a 16 9a 02 20 66 06 9a 72 e2 fd 4e 8e 9c 75 |..... f..r..N..u| -00000030 47 f7 af 11 10 67 ef c7 c6 24 f1 87 a9 af 88 fc |G....g...$......| -00000040 78 70 a8 75 1b e3 |xp.u..| -2018-01-18 02:00:29.454 UTC [cauthdsl] func2 -> DEBU 103e 0xc4200260b0 principal evaluation succeeds for identity 0 -2018-01-18 02:00:29.454 UTC [cauthdsl] func1 -> DEBU 103f 0xc4200260b0 gate 1516240829453047126 evaluation succeeds -2018-01-18 02:00:29.454 UTC [orderer/common/sigfilter] Apply -> DEBU 1040 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420291360 1 [0xc42014a4b8]}) %!s(*policies.implicitMetaPolicy=&{0xc4202918c0 1 [0xc42014a548 0xc42014a820]})]} -2018-01-18 02:00:29.454 UTC [orderer/common/deliver] Handle -> DEBU 1041 [channel: businesschannel] Received seekInfo (0xc420273fc0) start: > stop: > -2018-01-18 02:00:29.454 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 1042 retrieveBlockByNumber() - blockNum = [2] -2018-01-18 02:00:29.454 UTC [fsblkstorage] newBlockfileStream -> DEBU 1043 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[25666] -2018-01-18 02:00:29.455 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 1044 Remaining bytes=[33569], Going to peek [8] bytes -2018-01-18 02:00:29.455 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 1045 Returning blockbytes - length=[13788], placementInfo={fileNum=[0], startOffset=[25666], bytesOffset=[25668]} -2018-01-18 02:00:29.455 UTC [orderer/common/deliver] Handle -> DEBU 1046 [channel: businesschannel] Delivering block for (0xc420273fc0) -2018-01-18 02:00:29.455 UTC [orderer/common/deliver] Handle -> DEBU 1047 [channel: businesschannel] Done delivering for (0xc420273fc0), waiting for new SeekInfo -2018-01-18 02:00:29.455 UTC [orderer/common/deliver] Handle -> DEBU 1048 Attempting to read seek info message -2018-01-18 02:00:29.460 UTC [orderer/common/deliver] Handle -> WARN 1049 Error reading from stream: rpc error: code = Canceled desc = context canceled -2018-01-18 02:00:29.460 UTC [orderer/main] func1 -> DEBU 104a Closing Deliver stream -2018-01-18 02:00:29.603 UTC [orderer/main] Deliver -> DEBU 104b Starting new Deliver handler -2018-01-18 02:00:29.603 UTC [orderer/common/deliver] Handle -> DEBU 104c Starting new deliver loop -2018-01-18 02:00:29.604 UTC [orderer/common/deliver] Handle -> DEBU 104d Attempting to read seek info message -2018-01-18 02:00:29.605 UTC [policies] GetPolicy -> DEBU 104e Returning policy Readers for evaluation -2018-01-18 02:00:29.605 UTC [cauthdsl] func1 -> DEBU 104f 0xc42014a908 gate 1516240829605264679 evaluation starts -2018-01-18 02:00:29.605 UTC [cauthdsl] func2 -> DEBU 1050 0xc42014a908 signed by 0 principal evaluation starts (used [false]) -2018-01-18 02:00:29.605 UTC [cauthdsl] func2 -> DEBU 1051 0xc42014a908 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-18 02:00:29.605 UTC [msp/identity] newIdentity -> DEBU 1052 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:31:30.499 UTC [msp] SatisfiesPrincipal -> DEBU 1022 Checking if identity satisfies MEMBER role for OrdererMSP +2018-01-18 09:31:30.499 UTC [msp] Validate -> DEBU 1023 MSP OrdererMSP validating identity +2018-01-18 09:31:30.499 UTC [cauthdsl] func2 -> DEBU 1024 0xc42014a768 principal matched by identity 0 +2018-01-18 09:31:30.499 UTC [msp/identity] Verify -> DEBU 1025 Verify: digest = 00000000 9e bd f0 d1 ca 35 02 2c 9c a2 c8 e9 97 cd 6c e4 |.....5.,......l.| +00000010 97 43 ac b0 25 a2 0b 14 b4 6d ee a6 40 b0 c7 40 |.C..%....m..@..@| +2018-01-18 09:31:30.499 UTC [msp/identity] Verify -> DEBU 1026 Verify: sig = 00000000 30 45 02 21 00 b0 73 0c 29 19 31 49 4c f5 55 8f |0E.!..s.).1IL.U.| +00000010 7a b7 b8 67 2c 42 94 8e cb 8e 7c 1e a4 e4 bb ce |z..g,B....|.....| +00000020 9c c4 75 2e 5c 02 20 7e 01 d8 c7 e7 34 c5 ff 00 |..u.\. ~....4...| +00000030 f2 95 98 45 65 84 94 9e ce 41 36 53 8f 1b 0f 44 |...Ee....A6S...D| +00000040 dd 5c d9 51 7c cf 11 |.\.Q|..| +2018-01-18 09:31:30.499 UTC [cauthdsl] func2 -> DEBU 1027 0xc42014a768 principal evaluation succeeds for identity 0 +2018-01-18 09:31:30.499 UTC [cauthdsl] func1 -> DEBU 1028 0xc42014a768 gate 1516267890498468293 evaluation succeeds +2018-01-18 09:31:30.499 UTC [orderer/common/sigfilter] Apply -> DEBU 1029 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4208371e0 1 [0xc42014a638 0xc42014a688]}) %!s(*policies.implicitMetaPolicy=&{0xc4202d8040 1 [0xc42014a750]})]} +2018-01-18 09:31:30.500 UTC [orderer/common/deliver] Handle -> DEBU 102a [channel: businesschannel] Received seekInfo (0xc4208e54c0) start: > stop: > +2018-01-18 09:31:30.500 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 102b retrieveBlockByNumber() - blockNum = [6] +2018-01-18 09:31:30.500 UTC [fsblkstorage] newBlockfileStream -> DEBU 102c newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[54558] +2018-01-18 09:31:30.500 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 102d Remaining bytes=[4674], Going to peek [8] bytes +2018-01-18 09:31:30.500 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 102e Returning blockbytes - length=[4672], placementInfo={fileNum=[0], startOffset=[54558], bytesOffset=[54560]} +2018-01-18 09:31:30.500 UTC [orderer/common/deliver] Handle -> DEBU 102f [channel: businesschannel] Delivering block for (0xc4208e54c0) +2018-01-18 09:31:30.501 UTC [orderer/common/deliver] Handle -> DEBU 1030 [channel: businesschannel] Done delivering for (0xc4208e54c0), waiting for new SeekInfo +2018-01-18 09:31:30.501 UTC [orderer/common/deliver] Handle -> DEBU 1031 Attempting to read seek info message +2018-01-18 09:31:30.502 UTC [policies] GetPolicy -> DEBU 1032 Returning policy Readers for evaluation +2018-01-18 09:31:30.503 UTC [cauthdsl] func1 -> DEBU 1033 0xc42014a7e8 gate 1516267890502999326 evaluation starts +2018-01-18 09:31:30.503 UTC [cauthdsl] func2 -> DEBU 1034 0xc42014a7e8 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:31:30.503 UTC [cauthdsl] func2 -> DEBU 1035 0xc42014a7e8 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:31:30.503 UTC [msp/identity] newIdentity -> DEBU 1036 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -7550,37 +7546,13 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -----END CERTIFICATE----- -2018-01-18 02:00:29.605 UTC [msp] SatisfiesPrincipal -> DEBU 1053 Checking if identity satisfies MEMBER role for OrdererMSP -2018-01-18 02:00:29.606 UTC [msp] Validate -> DEBU 1054 MSP OrdererMSP validating identity -2018-01-18 02:00:29.606 UTC [cauthdsl] func2 -> DEBU 1055 0xc42014a908 principal matched by identity 0 -2018-01-18 02:00:29.606 UTC [msp/identity] Verify -> DEBU 1056 Verify: digest = 00000000 cf f0 f4 40 7b 2e 13 9c 5f 1a 6f ec 5e 65 d7 5d |...@{..._.o.^e.]| -00000010 7d 41 c6 a9 5c 1a f5 6d 46 b4 7a a0 33 7b b7 b6 |}A..\..mF.z.3{..| -2018-01-18 02:00:29.606 UTC [msp/identity] Verify -> DEBU 1057 Verify: sig = 00000000 30 44 02 20 5d 91 28 c5 cb 5a 50 d9 9c 32 71 e1 |0D. ].(..ZP..2q.| -00000010 cd c8 58 2d f6 82 3b 56 a4 a1 2a fe 5e 3b 2a b1 |..X-..;V..*.^;*.| -00000020 5b f3 86 fd 02 20 15 a4 91 72 a6 24 db 44 84 aa |[.... ...r.$.D..| -00000030 56 38 86 0d 1a 2f f4 06 e1 51 23 d4 f3 08 e7 06 |V8.../...Q#.....| -00000040 49 b8 22 d4 f5 36 |I."..6| -2018-01-18 02:00:29.606 UTC [cauthdsl] func2 -> DEBU 1058 0xc42014a908 principal evaluation succeeds for identity 0 -2018-01-18 02:00:29.606 UTC [cauthdsl] func1 -> DEBU 1059 0xc42014a908 gate 1516240829605264679 evaluation succeeds -2018-01-18 02:00:29.606 UTC [orderer/common/sigfilter] Apply -> DEBU 105a Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420291360 1 [0xc42014a4b8]}) %!s(*policies.implicitMetaPolicy=&{0xc4202918c0 1 [0xc42014a548 0xc42014a820]})]} -2018-01-18 02:00:29.606 UTC [orderer/common/deliver] Handle -> DEBU 105b [channel: businesschannel] Received seekInfo (0xc420222b80) start: > stop: > -2018-01-18 02:00:29.606 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 105c retrieveBlockByNumber() - blockNum = [3] -2018-01-18 02:00:29.606 UTC [fsblkstorage] newBlockfileStream -> DEBU 105d newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[39456] -2018-01-18 02:00:29.606 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 105e Remaining bytes=[19779], Going to peek [8] bytes -2018-01-18 02:00:29.606 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 105f Returning blockbytes - length=[5213], placementInfo={fileNum=[0], startOffset=[39456], bytesOffset=[39458]} -2018-01-18 02:00:29.607 UTC [orderer/common/deliver] Handle -> DEBU 1060 [channel: businesschannel] Delivering block for (0xc420222b80) -2018-01-18 02:00:29.607 UTC [orderer/common/deliver] Handle -> DEBU 1061 [channel: businesschannel] Done delivering for (0xc420222b80), waiting for new SeekInfo -2018-01-18 02:00:29.607 UTC [orderer/common/deliver] Handle -> DEBU 1062 Attempting to read seek info message -2018-01-18 02:00:29.612 UTC [orderer/common/deliver] Handle -> WARN 1063 Error reading from stream: rpc error: code = Canceled desc = context canceled -2018-01-18 02:00:29.612 UTC [orderer/main] func1 -> DEBU 1064 Closing Deliver stream -2018-01-18 02:00:29.767 UTC [orderer/main] Deliver -> DEBU 1065 Starting new Deliver handler -2018-01-18 02:00:29.767 UTC [orderer/common/deliver] Handle -> DEBU 1066 Starting new deliver loop -2018-01-18 02:00:29.767 UTC [orderer/common/deliver] Handle -> DEBU 1067 Attempting to read seek info message -2018-01-18 02:00:29.767 UTC [policies] GetPolicy -> DEBU 1068 Returning policy Readers for evaluation -2018-01-18 02:00:29.768 UTC [cauthdsl] func1 -> DEBU 1069 0xc420026230 gate 1516240829768055043 evaluation starts -2018-01-18 02:00:29.768 UTC [cauthdsl] func2 -> DEBU 106a 0xc420026230 signed by 0 principal evaluation starts (used [false]) -2018-01-18 02:00:29.768 UTC [cauthdsl] func2 -> DEBU 106b 0xc420026230 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-18 02:00:29.768 UTC [msp/identity] newIdentity -> DEBU 106c Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:31:30.504 UTC [cauthdsl] func2 -> DEBU 1037 0xc42014a7e8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +2018-01-18 09:31:30.504 UTC [cauthdsl] func2 -> DEBU 1038 0xc42014a7e8 principal evaluation fails +2018-01-18 09:31:30.504 UTC [cauthdsl] func1 -> DEBU 1039 0xc42014a7e8 gate 1516267890502999326 evaluation fails +2018-01-18 09:31:30.504 UTC [cauthdsl] func1 -> DEBU 103a 0xc42014a7f8 gate 1516267890504277187 evaluation starts +2018-01-18 09:31:30.504 UTC [cauthdsl] func2 -> DEBU 103b 0xc42014a7f8 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:31:30.504 UTC [cauthdsl] func2 -> DEBU 103c 0xc42014a7f8 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:31:30.505 UTC [msp/identity] newIdentity -> DEBU 103d Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -7593,37 +7565,13 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -----END CERTIFICATE----- -2018-01-18 02:00:29.768 UTC [msp] SatisfiesPrincipal -> DEBU 106d Checking if identity satisfies MEMBER role for OrdererMSP -2018-01-18 02:00:29.768 UTC [msp] Validate -> DEBU 106e MSP OrdererMSP validating identity -2018-01-18 02:00:29.769 UTC [cauthdsl] func2 -> DEBU 106f 0xc420026230 principal matched by identity 0 -2018-01-18 02:00:29.769 UTC [msp/identity] Verify -> DEBU 1070 Verify: digest = 00000000 06 a7 1f 00 2b f6 e7 74 8d de c7 27 25 ac e1 9c |....+..t...'%...| -00000010 77 c8 01 96 8f bd 89 cd d3 fc de f8 c5 00 22 e5 |w.............".| -2018-01-18 02:00:29.769 UTC [msp/identity] Verify -> DEBU 1071 Verify: sig = 00000000 30 44 02 20 4f 63 98 0f 46 6a 7a 54 d4 fd 50 2b |0D. Oc..FjzT..P+| -00000010 80 81 9e cb 4b f5 2c 07 75 59 ee 0e cc b6 64 ab |....K.,.uY....d.| -00000020 2b 62 5e 43 02 20 63 68 a9 b0 d0 7f 49 65 6d 67 |+b^C. ch....Iemg| -00000030 3a 7a f8 f7 43 44 5f a2 ca 79 ba 79 92 3e 4f 3d |:z..CD_..y.y.>O=| -00000040 66 6a 87 ce a0 bb |fj....| -2018-01-18 02:00:29.769 UTC [cauthdsl] func2 -> DEBU 1072 0xc420026230 principal evaluation succeeds for identity 0 -2018-01-18 02:00:29.769 UTC [cauthdsl] func1 -> DEBU 1073 0xc420026230 gate 1516240829768055043 evaluation succeeds -2018-01-18 02:00:29.769 UTC [orderer/common/sigfilter] Apply -> DEBU 1074 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420291360 1 [0xc42014a4b8]}) %!s(*policies.implicitMetaPolicy=&{0xc4202918c0 1 [0xc42014a548 0xc42014a820]})]} -2018-01-18 02:00:29.769 UTC [orderer/common/deliver] Handle -> DEBU 1075 [channel: businesschannel] Received seekInfo (0xc42033d620) start: > stop: > -2018-01-18 02:00:29.769 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 1076 retrieveBlockByNumber() - blockNum = [4] -2018-01-18 02:00:29.769 UTC [fsblkstorage] newBlockfileStream -> DEBU 1077 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[44671] -2018-01-18 02:00:29.769 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 1078 Remaining bytes=[14564], Going to peek [8] bytes -2018-01-18 02:00:29.769 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 1079 Returning blockbytes - length=[5213], placementInfo={fileNum=[0], startOffset=[44671], bytesOffset=[44673]} -2018-01-18 02:00:29.769 UTC [orderer/common/deliver] Handle -> DEBU 107a [channel: businesschannel] Delivering block for (0xc42033d620) -2018-01-18 02:00:29.770 UTC [orderer/common/deliver] Handle -> DEBU 107b [channel: businesschannel] Done delivering for (0xc42033d620), waiting for new SeekInfo -2018-01-18 02:00:29.770 UTC [orderer/common/deliver] Handle -> DEBU 107c Attempting to read seek info message -2018-01-18 02:00:29.776 UTC [orderer/common/deliver] Handle -> WARN 107d Error reading from stream: rpc error: code = Canceled desc = context canceled -2018-01-18 02:00:29.776 UTC [orderer/main] func1 -> DEBU 107e Closing Deliver stream -2018-01-18 02:00:29.994 UTC [orderer/main] Deliver -> DEBU 107f Starting new Deliver handler -2018-01-18 02:00:29.994 UTC [orderer/common/deliver] Handle -> DEBU 1080 Starting new deliver loop -2018-01-18 02:00:29.994 UTC [orderer/common/deliver] Handle -> DEBU 1081 Attempting to read seek info message -2018-01-18 02:00:29.995 UTC [policies] GetPolicy -> DEBU 1082 Returning policy Readers for evaluation -2018-01-18 02:00:29.996 UTC [cauthdsl] func1 -> DEBU 1083 0xc42014a988 gate 1516240829995996615 evaluation starts -2018-01-18 02:00:29.996 UTC [cauthdsl] func2 -> DEBU 1084 0xc42014a988 signed by 0 principal evaluation starts (used [false]) -2018-01-18 02:00:29.996 UTC [cauthdsl] func2 -> DEBU 1085 0xc42014a988 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-18 02:00:29.996 UTC [msp/identity] newIdentity -> DEBU 1086 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:31:30.505 UTC [cauthdsl] func2 -> DEBU 103e 0xc42014a7f8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +2018-01-18 09:31:30.505 UTC [cauthdsl] func2 -> DEBU 103f 0xc42014a7f8 principal evaluation fails +2018-01-18 09:31:30.505 UTC [cauthdsl] func1 -> DEBU 1040 0xc42014a7f8 gate 1516267890504277187 evaluation fails +2018-01-18 09:31:30.505 UTC [cauthdsl] func1 -> DEBU 1041 0xc42014a818 gate 1516267890505862894 evaluation starts +2018-01-18 09:31:30.506 UTC [cauthdsl] func2 -> DEBU 1042 0xc42014a818 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:31:30.506 UTC [cauthdsl] func2 -> DEBU 1043 0xc42014a818 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:31:30.506 UTC [msp/identity] newIdentity -> DEBU 1044 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -7636,37 +7584,37 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -----END CERTIFICATE----- -2018-01-18 02:00:29.996 UTC [msp] SatisfiesPrincipal -> DEBU 1087 Checking if identity satisfies MEMBER role for OrdererMSP -2018-01-18 02:00:29.997 UTC [msp] Validate -> DEBU 1088 MSP OrdererMSP validating identity -2018-01-18 02:00:29.997 UTC [cauthdsl] func2 -> DEBU 1089 0xc42014a988 principal matched by identity 0 -2018-01-18 02:00:29.997 UTC [msp/identity] Verify -> DEBU 108a Verify: digest = 00000000 57 9a 8a 18 5d 01 a7 a0 23 d9 83 80 c7 fa 1b 75 |W...]...#......u| -00000010 b5 cb 4d d5 cb 4f 9c 03 1a 35 4c 90 a4 f4 01 68 |..M..O...5L....h| -2018-01-18 02:00:29.997 UTC [msp/identity] Verify -> DEBU 108b Verify: sig = 00000000 30 44 02 20 4e 54 52 55 0d f7 74 76 69 46 13 56 |0D. NTRU..tviF.V| -00000010 9d f2 a0 de af 46 87 ac b5 fc 32 b2 e4 04 b8 de |.....F....2.....| -00000020 ca 94 ea b7 02 20 56 d2 95 b1 ae d6 ad 7a 5a 84 |..... V......zZ.| -00000030 ef 0c fd 4d ec e6 79 4c 03 b8 a5 19 66 44 a7 84 |...M..yL....fD..| -00000040 c4 c1 bf 4e 97 a0 |...N..| -2018-01-18 02:00:29.997 UTC [cauthdsl] func2 -> DEBU 108c 0xc42014a988 principal evaluation succeeds for identity 0 -2018-01-18 02:00:29.997 UTC [cauthdsl] func1 -> DEBU 108d 0xc42014a988 gate 1516240829995996615 evaluation succeeds -2018-01-18 02:00:29.997 UTC [orderer/common/sigfilter] Apply -> DEBU 108e Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420291360 1 [0xc42014a4b8]}) %!s(*policies.implicitMetaPolicy=&{0xc4202918c0 1 [0xc42014a548 0xc42014a820]})]} -2018-01-18 02:00:29.997 UTC [orderer/common/deliver] Handle -> DEBU 108f [channel: businesschannel] Received seekInfo (0xc4209f2720) start: > stop: > -2018-01-18 02:00:29.997 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 1090 retrieveBlockByNumber() - blockNum = [5] -2018-01-18 02:00:29.997 UTC [fsblkstorage] newBlockfileStream -> DEBU 1091 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[49886] -2018-01-18 02:00:29.997 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 1092 Remaining bytes=[9349], Going to peek [8] bytes -2018-01-18 02:00:29.997 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 1093 Returning blockbytes - length=[4672], placementInfo={fileNum=[0], startOffset=[49886], bytesOffset=[49888]} -2018-01-18 02:00:29.998 UTC [orderer/common/deliver] Handle -> DEBU 1094 [channel: businesschannel] Delivering block for (0xc4209f2720) -2018-01-18 02:00:29.998 UTC [orderer/common/deliver] Handle -> DEBU 1095 [channel: businesschannel] Done delivering for (0xc4209f2720), waiting for new SeekInfo -2018-01-18 02:00:29.998 UTC [orderer/common/deliver] Handle -> DEBU 1096 Attempting to read seek info message -2018-01-18 02:00:30.003 UTC [orderer/common/deliver] Handle -> WARN 1097 Error reading from stream: rpc error: code = Canceled desc = context canceled -2018-01-18 02:00:30.003 UTC [orderer/main] func1 -> DEBU 1098 Closing Deliver stream -2018-01-18 02:00:30.160 UTC [orderer/main] Deliver -> DEBU 1099 Starting new Deliver handler -2018-01-18 02:00:30.160 UTC [orderer/common/deliver] Handle -> DEBU 109a Starting new deliver loop -2018-01-18 02:00:30.160 UTC [orderer/common/deliver] Handle -> DEBU 109b Attempting to read seek info message -2018-01-18 02:00:30.161 UTC [policies] GetPolicy -> DEBU 109c Returning policy Readers for evaluation -2018-01-18 02:00:30.161 UTC [cauthdsl] func1 -> DEBU 109d 0xc420026288 gate 1516240830161826659 evaluation starts -2018-01-18 02:00:30.161 UTC [cauthdsl] func2 -> DEBU 109e 0xc420026288 signed by 0 principal evaluation starts (used [false]) -2018-01-18 02:00:30.161 UTC [cauthdsl] func2 -> DEBU 109f 0xc420026288 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-18 02:00:30.162 UTC [msp/identity] newIdentity -> DEBU 10a0 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:31:30.507 UTC [msp] SatisfiesPrincipal -> DEBU 1045 Checking if identity satisfies MEMBER role for OrdererMSP +2018-01-18 09:31:30.507 UTC [msp] Validate -> DEBU 1046 MSP OrdererMSP validating identity +2018-01-18 09:31:30.507 UTC [cauthdsl] func2 -> DEBU 1047 0xc42014a818 principal matched by identity 0 +2018-01-18 09:31:30.507 UTC [msp/identity] Verify -> DEBU 1048 Verify: digest = 00000000 f9 ff 72 ab d7 ee b6 21 90 84 a2 fc 39 46 2c 7e |..r....!....9F,~| +00000010 a6 11 6e 18 17 5a fe ce 2f d7 3f 21 80 cc 9c 67 |..n..Z../.?!...g| +2018-01-18 09:31:30.508 UTC [msp/identity] Verify -> DEBU 1049 Verify: sig = 00000000 30 45 02 21 00 e3 44 03 2b b5 57 85 b7 b0 4f b3 |0E.!..D.+.W...O.| +00000010 13 5d e8 5a b4 e9 68 a4 13 9b 70 7b e7 45 67 b0 |.].Z..h...p{.Eg.| +00000020 29 7b 4a 30 fd 02 20 2e d9 67 41 6e 79 3b d2 67 |){J0.. ..gAny;.g| +00000030 aa 7d e1 3d 8e c0 b0 07 7f 2c c0 a2 71 a6 22 9d |.}.=.....,..q.".| +00000040 6b dd 73 59 9d a1 96 |k.sY...| +2018-01-18 09:31:30.508 UTC [cauthdsl] func2 -> DEBU 104a 0xc42014a818 principal evaluation succeeds for identity 0 +2018-01-18 09:31:30.508 UTC [cauthdsl] func1 -> DEBU 104b 0xc42014a818 gate 1516267890505862894 evaluation succeeds +2018-01-18 09:31:30.508 UTC [orderer/common/sigfilter] Apply -> DEBU 104c Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4208371e0 1 [0xc42014a638 0xc42014a688]}) %!s(*policies.implicitMetaPolicy=&{0xc4202d8040 1 [0xc42014a750]})]} +2018-01-18 09:31:30.509 UTC [orderer/common/deliver] Handle -> DEBU 104d [channel: businesschannel] Received seekInfo (0xc4208ed0e0) start: > stop: > +2018-01-18 09:31:30.509 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 104e retrieveBlockByNumber() - blockNum = [2] +2018-01-18 09:31:30.509 UTC [fsblkstorage] newBlockfileStream -> DEBU 104f newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[25667] +2018-01-18 09:31:30.509 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 1050 Remaining bytes=[33565], Going to peek [8] bytes +2018-01-18 09:31:30.509 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 1051 Returning blockbytes - length=[13789], placementInfo={fileNum=[0], startOffset=[25667], bytesOffset=[25669]} +2018-01-18 09:31:30.510 UTC [orderer/common/deliver] Handle -> DEBU 1052 [channel: businesschannel] Delivering block for (0xc4208ed0e0) +2018-01-18 09:31:30.511 UTC [orderer/common/deliver] Handle -> DEBU 1053 [channel: businesschannel] Done delivering for (0xc4208ed0e0), waiting for new SeekInfo +2018-01-18 09:31:30.511 UTC [orderer/common/deliver] Handle -> DEBU 1054 Attempting to read seek info message +2018-01-18 09:31:30.517 UTC [orderer/common/deliver] Handle -> WARN 1055 Error reading from stream: rpc error: code = Canceled desc = context canceled +2018-01-18 09:31:30.517 UTC [orderer/main] func1 -> DEBU 1056 Closing Deliver stream +2018-01-18 09:31:30.615 UTC [orderer/main] Deliver -> DEBU 1057 Starting new Deliver handler +2018-01-18 09:31:30.616 UTC [orderer/common/deliver] Handle -> DEBU 1058 Starting new deliver loop +2018-01-18 09:31:30.616 UTC [orderer/common/deliver] Handle -> DEBU 1059 Attempting to read seek info message +2018-01-18 09:31:30.617 UTC [policies] GetPolicy -> DEBU 105a Returning policy Readers for evaluation +2018-01-18 09:31:30.617 UTC [cauthdsl] func1 -> DEBU 105b 0xc42014a870 gate 1516267890617748923 evaluation starts +2018-01-18 09:31:30.618 UTC [cauthdsl] func2 -> DEBU 105c 0xc42014a870 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:31:30.618 UTC [cauthdsl] func2 -> DEBU 105d 0xc42014a870 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:31:30.619 UTC [msp/identity] newIdentity -> DEBU 105e Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -7679,37 +7627,13 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -----END CERTIFICATE----- -2018-01-18 02:00:30.162 UTC [msp] SatisfiesPrincipal -> DEBU 10a1 Checking if identity satisfies MEMBER role for OrdererMSP -2018-01-18 02:00:30.162 UTC [msp] Validate -> DEBU 10a2 MSP OrdererMSP validating identity -2018-01-18 02:00:30.162 UTC [cauthdsl] func2 -> DEBU 10a3 0xc420026288 principal matched by identity 0 -2018-01-18 02:00:30.162 UTC [msp/identity] Verify -> DEBU 10a4 Verify: digest = 00000000 0b aa 3f dc eb 56 96 9f f1 e4 39 16 7f 15 c9 75 |..?..V....9....u| -00000010 da d2 14 f0 d5 e4 aa 10 99 2a 07 3d 67 c8 7b 68 |.........*.=g.{h| -2018-01-18 02:00:30.162 UTC [msp/identity] Verify -> DEBU 10a5 Verify: sig = 00000000 30 44 02 20 32 43 4c 3b 79 f9 a7 74 88 26 dc ca |0D. 2CL;y..t.&..| -00000010 20 90 b0 33 d9 db 63 34 22 86 e1 a6 38 dd 89 3b | ..3..c4"...8..;| -00000020 b4 10 e9 6f 02 20 0d e4 23 a1 dc 54 3b 7a 9f ae |...o. ..#..T;z..| -00000030 02 72 56 94 82 7e af 86 dd a7 30 59 8a 42 bb 47 |.rV..~....0Y.B.G| -00000040 31 25 d4 09 e6 a5 |1%....| -2018-01-18 02:00:30.163 UTC [cauthdsl] func2 -> DEBU 10a6 0xc420026288 principal evaluation succeeds for identity 0 -2018-01-18 02:00:30.163 UTC [cauthdsl] func1 -> DEBU 10a7 0xc420026288 gate 1516240830161826659 evaluation succeeds -2018-01-18 02:00:30.163 UTC [orderer/common/sigfilter] Apply -> DEBU 10a8 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420291360 1 [0xc42014a4b8]}) %!s(*policies.implicitMetaPolicy=&{0xc4202918c0 1 [0xc42014a548 0xc42014a820]})]} -2018-01-18 02:00:30.163 UTC [orderer/common/deliver] Handle -> DEBU 10a9 [channel: businesschannel] Received seekInfo (0xc420af0640) start: > stop: > -2018-01-18 02:00:30.163 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 10aa retrieveBlockByNumber() - blockNum = [6] -2018-01-18 02:00:30.163 UTC [fsblkstorage] newBlockfileStream -> DEBU 10ab newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[54560] -2018-01-18 02:00:30.163 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 10ac Remaining bytes=[4675], Going to peek [8] bytes -2018-01-18 02:00:30.163 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 10ad Returning blockbytes - length=[4673], placementInfo={fileNum=[0], startOffset=[54560], bytesOffset=[54562]} -2018-01-18 02:00:30.163 UTC [orderer/common/deliver] Handle -> DEBU 10ae [channel: businesschannel] Delivering block for (0xc420af0640) -2018-01-18 02:00:30.164 UTC [orderer/common/deliver] Handle -> DEBU 10af [channel: businesschannel] Done delivering for (0xc420af0640), waiting for new SeekInfo -2018-01-18 02:00:30.164 UTC [orderer/common/deliver] Handle -> DEBU 10b0 Attempting to read seek info message -2018-01-18 02:00:30.171 UTC [orderer/common/deliver] Handle -> WARN 10b1 Error reading from stream: rpc error: code = Canceled desc = context canceled -2018-01-18 02:00:30.171 UTC [orderer/main] func1 -> DEBU 10b2 Closing Deliver stream -2018-01-18 02:00:30.340 UTC [orderer/main] Deliver -> DEBU 10b3 Starting new Deliver handler -2018-01-18 02:00:30.340 UTC [orderer/common/deliver] Handle -> DEBU 10b4 Starting new deliver loop -2018-01-18 02:00:30.340 UTC [orderer/common/deliver] Handle -> DEBU 10b5 Attempting to read seek info message -2018-01-18 02:00:30.341 UTC [policies] GetPolicy -> DEBU 10b6 Returning policy Readers for evaluation -2018-01-18 02:00:30.341 UTC [cauthdsl] func1 -> DEBU 10b7 0xc42014a9f8 gate 1516240830341505074 evaluation starts -2018-01-18 02:00:30.341 UTC [cauthdsl] func2 -> DEBU 10b8 0xc42014a9f8 signed by 0 principal evaluation starts (used [false]) -2018-01-18 02:00:30.341 UTC [cauthdsl] func2 -> DEBU 10b9 0xc42014a9f8 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-18 02:00:30.342 UTC [msp/identity] newIdentity -> DEBU 10ba Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:31:30.619 UTC [cauthdsl] func2 -> DEBU 105f 0xc42014a870 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +2018-01-18 09:31:30.619 UTC [cauthdsl] func2 -> DEBU 1060 0xc42014a870 principal evaluation fails +2018-01-18 09:31:30.620 UTC [cauthdsl] func1 -> DEBU 1061 0xc42014a870 gate 1516267890617748923 evaluation fails +2018-01-18 09:31:30.620 UTC [cauthdsl] func1 -> DEBU 1062 0xc42014a880 gate 1516267890620493950 evaluation starts +2018-01-18 09:31:30.620 UTC [cauthdsl] func2 -> DEBU 1063 0xc42014a880 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:31:30.620 UTC [cauthdsl] func2 -> DEBU 1064 0xc42014a880 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:31:30.621 UTC [msp/identity] newIdentity -> DEBU 1065 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -7722,37 +7646,13 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -----END CERTIFICATE----- -2018-01-18 02:00:30.342 UTC [msp] SatisfiesPrincipal -> DEBU 10bb Checking if identity satisfies MEMBER role for OrdererMSP -2018-01-18 02:00:30.342 UTC [msp] Validate -> DEBU 10bc MSP OrdererMSP validating identity -2018-01-18 02:00:30.342 UTC [cauthdsl] func2 -> DEBU 10bd 0xc42014a9f8 principal matched by identity 0 -2018-01-18 02:00:30.343 UTC [msp/identity] Verify -> DEBU 10be Verify: digest = 00000000 b1 5e e0 66 21 b8 c1 75 57 52 b4 bf 95 b3 5e 3b |.^.f!..uWR....^;| -00000010 c3 33 d1 fc 86 ee f5 02 f4 d5 9d fe 39 81 a8 ab |.3..........9...| -2018-01-18 02:00:30.343 UTC [msp/identity] Verify -> DEBU 10bf Verify: sig = 00000000 30 44 02 20 5f d3 45 92 d1 d3 49 ad 3d f4 10 f1 |0D. _.E...I.=...| -00000010 12 bf b6 f6 f0 4a c9 38 8e 08 e5 6a d8 a1 cb 63 |.....J.8...j...c| -00000020 f3 1b bf a5 02 20 3a 10 ca 91 77 a2 2f 1e a7 42 |..... :...w./..B| -00000030 51 80 8f 66 6f 17 5a e7 4c af 25 25 a3 e4 50 06 |Q..fo.Z.L.%%..P.| -00000040 7c e3 19 4f 19 18 ||..O..| -2018-01-18 02:00:30.343 UTC [cauthdsl] func2 -> DEBU 10c0 0xc42014a9f8 principal evaluation succeeds for identity 0 -2018-01-18 02:00:30.343 UTC [cauthdsl] func1 -> DEBU 10c1 0xc42014a9f8 gate 1516240830341505074 evaluation succeeds -2018-01-18 02:00:30.343 UTC [orderer/common/sigfilter] Apply -> DEBU 10c2 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420381420 1 [0xc42014a628]}) Readers]} -2018-01-18 02:00:30.343 UTC [orderer/common/deliver] Handle -> DEBU 10c3 [channel: testchainid] Received seekInfo (0xc42088ed40) start: > stop: > -2018-01-18 02:00:30.343 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 10c4 retrieveBlockByNumber() - blockNum = [1] -2018-01-18 02:00:30.343 UTC [fsblkstorage] newBlockfileStream -> DEBU 10c5 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[9082] -2018-01-18 02:00:30.343 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 10c6 Remaining bytes=[14608], Going to peek [8] bytes -2018-01-18 02:00:30.343 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 10c7 Returning blockbytes - length=[14606], placementInfo={fileNum=[0], startOffset=[9082], bytesOffset=[9084]} -2018-01-18 02:00:30.343 UTC [orderer/common/deliver] Handle -> DEBU 10c8 [channel: testchainid] Delivering block for (0xc42088ed40) -2018-01-18 02:00:30.344 UTC [orderer/common/deliver] Handle -> DEBU 10c9 [channel: testchainid] Done delivering for (0xc42088ed40), waiting for new SeekInfo -2018-01-18 02:00:30.344 UTC [orderer/common/deliver] Handle -> DEBU 10ca Attempting to read seek info message -2018-01-18 02:00:30.346 UTC [orderer/common/deliver] Handle -> WARN 10cb Error reading from stream: rpc error: code = Canceled desc = context canceled -2018-01-18 02:00:30.347 UTC [orderer/main] func1 -> DEBU 10cc Closing Deliver stream -2018-01-18 02:00:30.486 UTC [orderer/main] Deliver -> DEBU 10cd Starting new Deliver handler -2018-01-18 02:00:30.486 UTC [orderer/common/deliver] Handle -> DEBU 10ce Starting new deliver loop -2018-01-18 02:00:30.486 UTC [orderer/common/deliver] Handle -> DEBU 10cf Attempting to read seek info message -2018-01-18 02:00:30.488 UTC [policies] GetPolicy -> DEBU 10d0 Returning policy Readers for evaluation -2018-01-18 02:00:30.488 UTC [cauthdsl] func1 -> DEBU 10d1 0xc42014aa68 gate 1516240830488812984 evaluation starts -2018-01-18 02:00:30.489 UTC [cauthdsl] func2 -> DEBU 10d2 0xc42014aa68 signed by 0 principal evaluation starts (used [false]) -2018-01-18 02:00:30.489 UTC [cauthdsl] func2 -> DEBU 10d3 0xc42014aa68 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-18 02:00:30.489 UTC [msp/identity] newIdentity -> DEBU 10d4 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:31:30.622 UTC [cauthdsl] func2 -> DEBU 1066 0xc42014a880 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +2018-01-18 09:31:30.622 UTC [cauthdsl] func2 -> DEBU 1067 0xc42014a880 principal evaluation fails +2018-01-18 09:31:30.622 UTC [cauthdsl] func1 -> DEBU 1068 0xc42014a880 gate 1516267890620493950 evaluation fails +2018-01-18 09:31:30.622 UTC [cauthdsl] func1 -> DEBU 1069 0xc42014a8a0 gate 1516267890622645273 evaluation starts +2018-01-18 09:31:30.622 UTC [cauthdsl] func2 -> DEBU 106a 0xc42014a8a0 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:31:30.623 UTC [cauthdsl] func2 -> DEBU 106b 0xc42014a8a0 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:31:30.623 UTC [msp/identity] newIdentity -> DEBU 106c Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -7765,32 +7665,37 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -----END CERTIFICATE----- -2018-01-18 02:00:30.490 UTC [msp] SatisfiesPrincipal -> DEBU 10d5 Checking if identity satisfies MEMBER role for OrdererMSP -2018-01-18 02:00:30.490 UTC [msp] Validate -> DEBU 10d6 MSP OrdererMSP validating identity -2018-01-18 02:00:30.490 UTC [cauthdsl] func2 -> DEBU 10d7 0xc42014aa68 principal matched by identity 0 -2018-01-18 02:00:30.490 UTC [msp/identity] Verify -> DEBU 10d8 Verify: digest = 00000000 6e 2f 97 da 32 4d 7b d0 4b ff 52 aa 65 67 26 63 |n/..2M{.K.R.eg&c| -00000010 d9 a4 e2 72 b1 c0 f7 7a 05 b5 64 72 87 f3 2f a2 |...r...z..dr../.| -2018-01-18 02:00:30.490 UTC [msp/identity] Verify -> DEBU 10d9 Verify: sig = 00000000 30 45 02 21 00 9b ef 1a cc 35 3f 61 c4 b4 71 e3 |0E.!.....5?a..q.| -00000010 af bd 28 be dc 4c b4 47 9e 20 24 ac 01 95 96 64 |..(..L.G. $....d| -00000020 a0 8b 5c 92 df 02 20 7e 7b 30 05 02 ad 91 91 c9 |..\... ~{0......| -00000030 30 47 6c 40 92 24 08 40 a8 cb 0d 89 df 98 f3 19 |0Gl@.$.@........| -00000040 45 e7 48 21 aa 56 25 |E.H!.V%| -2018-01-18 02:00:30.491 UTC [cauthdsl] func2 -> DEBU 10da 0xc42014aa68 principal evaluation succeeds for identity 0 -2018-01-18 02:00:30.491 UTC [cauthdsl] func1 -> DEBU 10db 0xc42014aa68 gate 1516240830488812984 evaluation succeeds -2018-01-18 02:00:30.491 UTC [orderer/common/sigfilter] Apply -> DEBU 10dc Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420381420 1 [0xc42014a628]}) Readers]} -2018-01-18 02:00:30.491 UTC [orderer/common/deliver] Handle -> DEBU 10dd [channel: testchainid] Received seekInfo (0xc420a20300) start: > stop: > -2018-01-18 02:00:30.491 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 10de retrieveBlockByNumber() - blockNum = [1] -2018-01-18 02:00:30.491 UTC [fsblkstorage] newBlockfileStream -> DEBU 10df newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[9082] -2018-01-18 02:00:30.492 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 10e0 Remaining bytes=[14608], Going to peek [8] bytes -2018-01-18 02:00:30.492 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 10e1 Returning blockbytes - length=[14606], placementInfo={fileNum=[0], startOffset=[9082], bytesOffset=[9084]} -2018-01-18 02:00:30.492 UTC [orderer/common/deliver] Handle -> DEBU 10e2 [channel: testchainid] Delivering block for (0xc420a20300) -2018-01-18 02:00:30.492 UTC [orderer/common/deliver] Handle -> DEBU 10e3 [channel: testchainid] Done delivering for (0xc420a20300), waiting for new SeekInfo -2018-01-18 02:00:30.492 UTC [orderer/common/deliver] Handle -> DEBU 10e4 Attempting to read seek info message -2018-01-18 02:00:30.494 UTC [policies] GetPolicy -> DEBU 10e5 Returning policy Readers for evaluation -2018-01-18 02:00:30.494 UTC [cauthdsl] func1 -> DEBU 10e6 0xc42014aab8 gate 1516240830494120229 evaluation starts -2018-01-18 02:00:30.494 UTC [cauthdsl] func2 -> DEBU 10e7 0xc42014aab8 signed by 0 principal evaluation starts (used [false]) -2018-01-18 02:00:30.494 UTC [cauthdsl] func2 -> DEBU 10e8 0xc42014aab8 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-18 02:00:30.494 UTC [msp/identity] newIdentity -> DEBU 10e9 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:31:30.624 UTC [msp] SatisfiesPrincipal -> DEBU 106d Checking if identity satisfies MEMBER role for OrdererMSP +2018-01-18 09:31:30.624 UTC [msp] Validate -> DEBU 106e MSP OrdererMSP validating identity +2018-01-18 09:31:30.625 UTC [cauthdsl] func2 -> DEBU 106f 0xc42014a8a0 principal matched by identity 0 +2018-01-18 09:31:30.625 UTC [msp/identity] Verify -> DEBU 1070 Verify: digest = 00000000 db 4f 9e aa 05 18 f7 76 5b d1 2f c3 8d e4 ba 97 |.O.....v[./.....| +00000010 a0 be 99 98 16 6f 58 74 83 33 3e 1d 96 de 1d 2b |.....oXt.3>....+| +2018-01-18 09:31:30.625 UTC [msp/identity] Verify -> DEBU 1071 Verify: sig = 00000000 30 44 02 20 72 af a7 a2 c6 f1 6d b7 45 54 4a 20 |0D. r.....m.ETJ | +00000010 00 81 7f 29 2c 4a 40 2a d2 c7 8e 2a ef 8b e3 79 |...),J@*...*...y| +00000020 11 c4 45 da 02 20 11 71 d0 57 ba 98 c2 e7 ae 96 |..E.. .q.W......| +00000030 c3 63 a9 56 0d 23 32 f8 e2 59 99 a8 d8 44 b7 5d |.c.V.#2..Y...D.]| +00000040 fa 6d 9f bc 4c 1c |.m..L.| +2018-01-18 09:31:30.626 UTC [cauthdsl] func2 -> DEBU 1072 0xc42014a8a0 principal evaluation succeeds for identity 0 +2018-01-18 09:31:30.626 UTC [cauthdsl] func1 -> DEBU 1073 0xc42014a8a0 gate 1516267890622645273 evaluation succeeds +2018-01-18 09:31:30.626 UTC [orderer/common/sigfilter] Apply -> DEBU 1074 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4208371e0 1 [0xc42014a638 0xc42014a688]}) %!s(*policies.implicitMetaPolicy=&{0xc4202d8040 1 [0xc42014a750]})]} +2018-01-18 09:31:30.626 UTC [orderer/common/deliver] Handle -> DEBU 1075 [channel: businesschannel] Received seekInfo (0xc42080d060) start: > stop: > +2018-01-18 09:31:30.626 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 1076 retrieveBlockByNumber() - blockNum = [0] +2018-01-18 09:31:30.626 UTC [fsblkstorage] newBlockfileStream -> DEBU 1077 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] +2018-01-18 09:31:30.627 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 1078 Remaining bytes=[59232], Going to peek [8] bytes +2018-01-18 09:31:30.627 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 1079 Returning blockbytes - length=[11932], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +2018-01-18 09:31:30.627 UTC [orderer/common/deliver] Handle -> DEBU 107a [channel: businesschannel] Delivering block for (0xc42080d060) +2018-01-18 09:31:30.628 UTC [orderer/common/deliver] Handle -> DEBU 107b [channel: businesschannel] Done delivering for (0xc42080d060), waiting for new SeekInfo +2018-01-18 09:31:30.628 UTC [orderer/common/deliver] Handle -> DEBU 107c Attempting to read seek info message +2018-01-18 09:31:30.633 UTC [orderer/common/deliver] Handle -> WARN 107d Error reading from stream: rpc error: code = Canceled desc = context canceled +2018-01-18 09:31:30.633 UTC [orderer/main] func1 -> DEBU 107e Closing Deliver stream +2018-01-18 09:31:30.799 UTC [orderer/main] Deliver -> DEBU 107f Starting new Deliver handler +2018-01-18 09:31:30.799 UTC [orderer/common/deliver] Handle -> DEBU 1080 Starting new deliver loop +2018-01-18 09:31:30.800 UTC [orderer/common/deliver] Handle -> DEBU 1081 Attempting to read seek info message +2018-01-18 09:31:30.800 UTC [policies] GetPolicy -> DEBU 1082 Returning policy Readers for evaluation +2018-01-18 09:31:30.800 UTC [cauthdsl] func1 -> DEBU 1083 0xc42014a8f8 gate 1516267890800467618 evaluation starts +2018-01-18 09:31:30.800 UTC [cauthdsl] func2 -> DEBU 1084 0xc42014a8f8 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:31:30.800 UTC [cauthdsl] func2 -> DEBU 1085 0xc42014a8f8 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:31:30.801 UTC [msp/identity] newIdentity -> DEBU 1086 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -7803,37 +7708,13 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -----END CERTIFICATE----- -2018-01-18 02:00:30.495 UTC [msp] SatisfiesPrincipal -> DEBU 10ea Checking if identity satisfies MEMBER role for OrdererMSP -2018-01-18 02:00:30.495 UTC [msp] Validate -> DEBU 10eb MSP OrdererMSP validating identity -2018-01-18 02:00:30.495 UTC [cauthdsl] func2 -> DEBU 10ec 0xc42014aab8 principal matched by identity 0 -2018-01-18 02:00:30.495 UTC [msp/identity] Verify -> DEBU 10ed Verify: digest = 00000000 c1 f2 4d 98 94 12 5c 8f 20 aa 9b ac ee 13 df 8c |..M...\. .......| -00000010 a0 de d2 86 d6 5a 37 35 99 1d 1d 4c 86 16 ae e2 |.....Z75...L....| -2018-01-18 02:00:30.495 UTC [msp/identity] Verify -> DEBU 10ee Verify: sig = 00000000 30 45 02 21 00 84 af 45 90 b2 c5 4e 2f ad 9f e0 |0E.!...E...N/...| -00000010 c1 34 c3 35 d7 47 7d 1a 40 5e 07 b5 d3 dd 41 b6 |.4.5.G}.@^....A.| -00000020 89 0b 55 03 38 02 20 32 80 62 13 73 95 e4 74 37 |..U.8. 2.b.s..t7| -00000030 2d 87 65 26 1c 97 c4 0a fb fa fb ec 7e 36 61 b6 |-.e&........~6a.| -00000040 36 4c bb 7f ac 8c f8 |6L.....| -2018-01-18 02:00:30.495 UTC [cauthdsl] func2 -> DEBU 10ef 0xc42014aab8 principal evaluation succeeds for identity 0 -2018-01-18 02:00:30.495 UTC [cauthdsl] func1 -> DEBU 10f0 0xc42014aab8 gate 1516240830494120229 evaluation succeeds -2018-01-18 02:00:30.495 UTC [orderer/common/sigfilter] Apply -> DEBU 10f1 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420381420 1 [0xc42014a628]}) Readers]} -2018-01-18 02:00:30.495 UTC [orderer/common/deliver] Handle -> DEBU 10f2 [channel: testchainid] Received seekInfo (0xc420a38b20) start: > stop: > -2018-01-18 02:00:30.495 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 10f3 retrieveBlockByNumber() - blockNum = [0] -2018-01-18 02:00:30.495 UTC [fsblkstorage] newBlockfileStream -> DEBU 10f4 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] -2018-01-18 02:00:30.495 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 10f5 Remaining bytes=[23690], Going to peek [8] bytes -2018-01-18 02:00:30.496 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 10f6 Returning blockbytes - length=[9080], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -2018-01-18 02:00:30.496 UTC [orderer/common/deliver] Handle -> DEBU 10f7 [channel: testchainid] Delivering block for (0xc420a38b20) -2018-01-18 02:00:30.496 UTC [orderer/common/deliver] Handle -> DEBU 10f8 [channel: testchainid] Done delivering for (0xc420a38b20), waiting for new SeekInfo -2018-01-18 02:00:30.496 UTC [orderer/common/deliver] Handle -> DEBU 10f9 Attempting to read seek info message -2018-01-18 02:00:30.501 UTC [orderer/common/deliver] Handle -> WARN 10fa Error reading from stream: rpc error: code = Canceled desc = context canceled -2018-01-18 02:00:30.501 UTC [orderer/main] func1 -> DEBU 10fb Closing Deliver stream -2018-01-18 02:00:30.645 UTC [orderer/main] Deliver -> DEBU 10fc Starting new Deliver handler -2018-01-18 02:00:30.645 UTC [orderer/common/deliver] Handle -> DEBU 10fd Starting new deliver loop -2018-01-18 02:00:30.645 UTC [orderer/common/deliver] Handle -> DEBU 10fe Attempting to read seek info message -2018-01-18 02:00:30.646 UTC [policies] GetPolicy -> DEBU 10ff Returning policy Readers for evaluation -2018-01-18 02:00:30.646 UTC [cauthdsl] func1 -> DEBU 1100 0xc4200262f0 gate 1516240830646459721 evaluation starts -2018-01-18 02:00:30.646 UTC [cauthdsl] func2 -> DEBU 1101 0xc4200262f0 signed by 0 principal evaluation starts (used [false]) -2018-01-18 02:00:30.646 UTC [cauthdsl] func2 -> DEBU 1102 0xc4200262f0 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-18 02:00:30.647 UTC [msp/identity] newIdentity -> DEBU 1103 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:31:30.802 UTC [cauthdsl] func2 -> DEBU 1087 0xc42014a8f8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +2018-01-18 09:31:30.802 UTC [cauthdsl] func2 -> DEBU 1088 0xc42014a8f8 principal evaluation fails +2018-01-18 09:31:30.802 UTC [cauthdsl] func1 -> DEBU 1089 0xc42014a8f8 gate 1516267890800467618 evaluation fails +2018-01-18 09:31:30.802 UTC [cauthdsl] func1 -> DEBU 108a 0xc42014a908 gate 1516267890802349776 evaluation starts +2018-01-18 09:31:30.802 UTC [cauthdsl] func2 -> DEBU 108b 0xc42014a908 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:31:30.802 UTC [cauthdsl] func2 -> DEBU 108c 0xc42014a908 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:31:30.803 UTC [msp/identity] newIdentity -> DEBU 108d Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -7846,37 +7727,13 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -----END CERTIFICATE----- -2018-01-18 02:00:30.647 UTC [msp] SatisfiesPrincipal -> DEBU 1104 Checking if identity satisfies MEMBER role for OrdererMSP -2018-01-18 02:00:30.647 UTC [msp] Validate -> DEBU 1105 MSP OrdererMSP validating identity -2018-01-18 02:00:30.648 UTC [cauthdsl] func2 -> DEBU 1106 0xc4200262f0 principal matched by identity 0 -2018-01-18 02:00:30.648 UTC [msp/identity] Verify -> DEBU 1107 Verify: digest = 00000000 78 59 3b f2 6b 52 86 c6 21 fb 46 bf 89 ad 05 8c |xY;.kR..!.F.....| -00000010 ba 32 c3 b8 ba 39 3e d5 b8 7d 58 9e 45 c3 6a 43 |.2...9>..}X.E.jC| -2018-01-18 02:00:30.648 UTC [msp/identity] Verify -> DEBU 1108 Verify: sig = 00000000 30 45 02 21 00 89 0e b1 bf 9a d9 fd 17 9f f9 cc |0E.!............| -00000010 41 06 91 d5 84 79 0b 91 e4 53 82 9a 15 97 a6 2b |A....y...S.....+| -00000020 5d 47 97 35 bc 02 20 2e 95 60 db f4 b4 e0 59 c6 |]G.5.. ..`....Y.| -00000030 55 8a 54 d8 b6 89 53 b7 7b 15 0a 11 7c fa 17 e9 |U.T...S.{...|...| -00000040 b5 29 30 88 fb 59 57 |.)0..YW| -2018-01-18 02:00:30.648 UTC [cauthdsl] func2 -> DEBU 1109 0xc4200262f0 principal evaluation succeeds for identity 0 -2018-01-18 02:00:30.648 UTC [cauthdsl] func1 -> DEBU 110a 0xc4200262f0 gate 1516240830646459721 evaluation succeeds -2018-01-18 02:00:30.648 UTC [orderer/common/sigfilter] Apply -> DEBU 110b Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420381420 1 [0xc42014a628]}) Readers]} -2018-01-18 02:00:30.648 UTC [orderer/common/deliver] Handle -> DEBU 110c [channel: testchainid] Received seekInfo (0xc42039f5a0) start: > stop: > -2018-01-18 02:00:30.649 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 110d retrieveBlockByNumber() - blockNum = [0] -2018-01-18 02:00:30.649 UTC [fsblkstorage] newBlockfileStream -> DEBU 110e newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] -2018-01-18 02:00:30.649 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 110f Remaining bytes=[23690], Going to peek [8] bytes -2018-01-18 02:00:30.649 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 1110 Returning blockbytes - length=[9080], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -2018-01-18 02:00:30.649 UTC [orderer/common/deliver] Handle -> DEBU 1111 [channel: testchainid] Delivering block for (0xc42039f5a0) -2018-01-18 02:00:30.650 UTC [orderer/common/deliver] Handle -> DEBU 1112 [channel: testchainid] Done delivering for (0xc42039f5a0), waiting for new SeekInfo -2018-01-18 02:00:30.650 UTC [orderer/common/deliver] Handle -> DEBU 1113 Attempting to read seek info message -2018-01-18 02:00:30.655 UTC [orderer/common/deliver] Handle -> WARN 1114 Error reading from stream: rpc error: code = Canceled desc = context canceled -2018-01-18 02:00:30.655 UTC [orderer/main] func1 -> DEBU 1115 Closing Deliver stream -2018-01-18 02:00:30.800 UTC [orderer/main] Deliver -> DEBU 1116 Starting new Deliver handler -2018-01-18 02:00:30.800 UTC [orderer/common/deliver] Handle -> DEBU 1117 Starting new deliver loop -2018-01-18 02:00:30.800 UTC [orderer/common/deliver] Handle -> DEBU 1118 Attempting to read seek info message -2018-01-18 02:00:30.801 UTC [policies] GetPolicy -> DEBU 1119 Returning policy Readers for evaluation -2018-01-18 02:00:30.801 UTC [cauthdsl] func1 -> DEBU 111a 0xc420026340 gate 1516240830801422801 evaluation starts -2018-01-18 02:00:30.801 UTC [cauthdsl] func2 -> DEBU 111b 0xc420026340 signed by 0 principal evaluation starts (used [false]) -2018-01-18 02:00:30.801 UTC [cauthdsl] func2 -> DEBU 111c 0xc420026340 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-18 02:00:30.801 UTC [msp/identity] newIdentity -> DEBU 111d Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-18 09:31:30.803 UTC [cauthdsl] func2 -> DEBU 108e 0xc42014a908 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +2018-01-18 09:31:30.803 UTC [cauthdsl] func2 -> DEBU 108f 0xc42014a908 principal evaluation fails +2018-01-18 09:31:30.803 UTC [cauthdsl] func1 -> DEBU 1090 0xc42014a908 gate 1516267890802349776 evaluation fails +2018-01-18 09:31:30.803 UTC [cauthdsl] func1 -> DEBU 1091 0xc42014a918 gate 1516267890803848826 evaluation starts +2018-01-18 09:31:30.803 UTC [cauthdsl] func2 -> DEBU 1092 0xc42014a918 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:31:30.803 UTC [cauthdsl] func2 -> DEBU 1093 0xc42014a918 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:31:30.804 UTC [msp/identity] newIdentity -> DEBU 1094 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -7889,26 +7746,641 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -----END CERTIFICATE----- -2018-01-18 02:00:30.802 UTC [msp] SatisfiesPrincipal -> DEBU 111e Checking if identity satisfies MEMBER role for OrdererMSP -2018-01-18 02:00:30.802 UTC [msp] Validate -> DEBU 111f MSP OrdererMSP validating identity -2018-01-18 02:00:30.802 UTC [cauthdsl] func2 -> DEBU 1120 0xc420026340 principal matched by identity 0 -2018-01-18 02:00:30.802 UTC [msp/identity] Verify -> DEBU 1121 Verify: digest = 00000000 74 bb 6f 3b c3 97 92 46 f6 e3 45 99 91 d9 7b 65 |t.o;...F..E...{e| -00000010 92 eb 44 ac 4b 16 95 a5 4b 6d 01 77 a0 48 d0 6d |..D.K...Km.w.H.m| -2018-01-18 02:00:30.802 UTC [msp/identity] Verify -> DEBU 1122 Verify: sig = 00000000 30 45 02 21 00 ef 01 b6 bf a9 61 47 ad 89 d0 e9 |0E.!......aG....| -00000010 22 8f b7 44 d5 4f c3 b2 42 e0 d4 83 7c d7 d4 12 |"..D.O..B...|...| -00000020 68 ec 34 db 2f 02 20 31 c0 a5 01 64 a5 b4 e5 50 |h.4./. 1...d...P| -00000030 77 3c be 37 b4 4d 9e 64 5a 59 b4 b6 f0 08 90 d8 |w<.7.M.dZY......| -00000040 36 ad 78 6b ad 1d 44 |6.xk..D| -2018-01-18 02:00:30.802 UTC [cauthdsl] func2 -> DEBU 1123 0xc420026340 principal evaluation succeeds for identity 0 -2018-01-18 02:00:30.803 UTC [cauthdsl] func1 -> DEBU 1124 0xc420026340 gate 1516240830801422801 evaluation succeeds -2018-01-18 02:00:30.803 UTC [orderer/common/sigfilter] Apply -> DEBU 1125 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420381420 1 [0xc42014a628]}) Readers]} -2018-01-18 02:00:30.803 UTC [orderer/common/deliver] Handle -> DEBU 1126 [channel: testchainid] Received seekInfo (0xc420381780) start: > stop: > -2018-01-18 02:00:30.803 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 1127 retrieveBlockByNumber() - blockNum = [1] -2018-01-18 02:00:30.803 UTC [fsblkstorage] newBlockfileStream -> DEBU 1128 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[9082] -2018-01-18 02:00:30.803 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 1129 Remaining bytes=[14608], Going to peek [8] bytes -2018-01-18 02:00:30.803 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 112a Returning blockbytes - length=[14606], placementInfo={fileNum=[0], startOffset=[9082], bytesOffset=[9084]} -2018-01-18 02:00:30.803 UTC [orderer/common/deliver] Handle -> DEBU 112b [channel: testchainid] Delivering block for (0xc420381780) -2018-01-18 02:00:30.804 UTC [orderer/common/deliver] Handle -> DEBU 112c [channel: testchainid] Done delivering for (0xc420381780), waiting for new SeekInfo -2018-01-18 02:00:30.804 UTC [orderer/common/deliver] Handle -> DEBU 112d Attempting to read seek info message -2018-01-18 02:00:30.809 UTC [orderer/common/deliver] Handle -> WARN 112e Error reading from stream: rpc error: code = Canceled desc = context canceled -2018-01-18 02:00:30.809 UTC [orderer/main] func1 -> DEBU 112f Closing Deliver stream +2018-01-18 09:31:30.804 UTC [msp] SatisfiesPrincipal -> DEBU 1095 Checking if identity satisfies MEMBER role for OrdererMSP +2018-01-18 09:31:30.805 UTC [msp] Validate -> DEBU 1096 MSP OrdererMSP validating identity +2018-01-18 09:31:30.805 UTC [cauthdsl] func2 -> DEBU 1097 0xc42014a918 principal matched by identity 0 +2018-01-18 09:31:30.805 UTC [msp/identity] Verify -> DEBU 1098 Verify: digest = 00000000 b6 2d 7e ca a6 90 75 fe c3 03 50 89 19 e2 8f 0d |.-~...u...P.....| +00000010 83 73 23 21 d6 3f 5a 09 b5 fb d4 3d 00 87 bf cb |.s#!.?Z....=....| +2018-01-18 09:31:30.805 UTC [msp/identity] Verify -> DEBU 1099 Verify: sig = 00000000 30 45 02 21 00 fe cd f6 a5 74 c6 67 98 f3 98 19 |0E.!.....t.g....| +00000010 59 18 0a 15 d2 e7 e7 d1 3e 46 f5 42 2d 17 2c 55 |Y.......>F.B-.,U| +00000020 49 81 e5 56 6b 02 20 68 c2 68 b1 1e d2 dd 31 34 |I..Vk. h.h....14| +00000030 16 b4 65 98 3b d3 40 d6 a5 39 a1 ff 00 69 f4 ff |..e.;.@..9...i..| +00000040 7a dc bc f5 b0 ad 34 |z.....4| +2018-01-18 09:31:30.806 UTC [cauthdsl] func2 -> DEBU 109a 0xc42014a918 principal evaluation succeeds for identity 0 +2018-01-18 09:31:30.806 UTC [cauthdsl] func1 -> DEBU 109b 0xc42014a918 gate 1516267890803848826 evaluation succeeds +2018-01-18 09:31:30.806 UTC [orderer/common/sigfilter] Apply -> DEBU 109c Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4208371e0 1 [0xc42014a638 0xc42014a688]}) %!s(*policies.implicitMetaPolicy=&{0xc4202d8040 1 [0xc42014a750]})]} +2018-01-18 09:31:30.806 UTC [orderer/common/deliver] Handle -> DEBU 109d [channel: businesschannel] Received seekInfo (0xc420832f40) start: > stop: > +2018-01-18 09:31:30.806 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 109e retrieveBlockByNumber() - blockNum = [1] +2018-01-18 09:31:30.806 UTC [fsblkstorage] newBlockfileStream -> DEBU 109f newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[11934] +2018-01-18 09:31:30.806 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 10a0 Remaining bytes=[47298], Going to peek [8] bytes +2018-01-18 09:31:30.806 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 10a1 Returning blockbytes - length=[13731], placementInfo={fileNum=[0], startOffset=[11934], bytesOffset=[11936]} +2018-01-18 09:31:30.807 UTC [orderer/common/deliver] Handle -> DEBU 10a2 [channel: businesschannel] Delivering block for (0xc420832f40) +2018-01-18 09:31:30.807 UTC [orderer/common/deliver] Handle -> DEBU 10a3 [channel: businesschannel] Done delivering for (0xc420832f40), waiting for new SeekInfo +2018-01-18 09:31:30.807 UTC [orderer/common/deliver] Handle -> DEBU 10a4 Attempting to read seek info message +2018-01-18 09:31:30.811 UTC [orderer/common/deliver] Handle -> WARN 10a5 Error reading from stream: rpc error: code = Canceled desc = context canceled +2018-01-18 09:31:30.811 UTC [orderer/main] func1 -> DEBU 10a6 Closing Deliver stream +2018-01-18 09:31:30.947 UTC [orderer/main] Deliver -> DEBU 10a7 Starting new Deliver handler +2018-01-18 09:31:30.948 UTC [orderer/common/deliver] Handle -> DEBU 10a8 Starting new deliver loop +2018-01-18 09:31:30.948 UTC [orderer/common/deliver] Handle -> DEBU 10a9 Attempting to read seek info message +2018-01-18 09:31:30.948 UTC [policies] GetPolicy -> DEBU 10aa Returning policy Readers for evaluation +2018-01-18 09:31:30.948 UTC [cauthdsl] func1 -> DEBU 10ab 0xc420026120 gate 1516267890948807611 evaluation starts +2018-01-18 09:31:30.948 UTC [cauthdsl] func2 -> DEBU 10ac 0xc420026120 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:31:30.948 UTC [cauthdsl] func2 -> DEBU 10ad 0xc420026120 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:31:30.949 UTC [msp/identity] newIdentity -> DEBU 10ae Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-18 09:31:30.950 UTC [cauthdsl] func2 -> DEBU 10af 0xc420026120 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +2018-01-18 09:31:30.950 UTC [cauthdsl] func2 -> DEBU 10b0 0xc420026120 principal evaluation fails +2018-01-18 09:31:30.950 UTC [cauthdsl] func1 -> DEBU 10b1 0xc420026120 gate 1516267890948807611 evaluation fails +2018-01-18 09:31:30.950 UTC [cauthdsl] func1 -> DEBU 10b2 0xc420026168 gate 1516267890950527750 evaluation starts +2018-01-18 09:31:30.950 UTC [cauthdsl] func2 -> DEBU 10b3 0xc420026168 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:31:30.951 UTC [cauthdsl] func2 -> DEBU 10b4 0xc420026168 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:31:30.951 UTC [msp/identity] newIdentity -> DEBU 10b5 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-18 09:31:30.952 UTC [cauthdsl] func2 -> DEBU 10b6 0xc420026168 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +2018-01-18 09:31:30.952 UTC [cauthdsl] func2 -> DEBU 10b7 0xc420026168 principal evaluation fails +2018-01-18 09:31:30.952 UTC [cauthdsl] func1 -> DEBU 10b8 0xc420026168 gate 1516267890950527750 evaluation fails +2018-01-18 09:31:30.952 UTC [cauthdsl] func1 -> DEBU 10b9 0xc420026190 gate 1516267890952525251 evaluation starts +2018-01-18 09:31:30.952 UTC [cauthdsl] func2 -> DEBU 10ba 0xc420026190 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:31:30.952 UTC [cauthdsl] func2 -> DEBU 10bb 0xc420026190 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:31:30.953 UTC [msp/identity] newIdentity -> DEBU 10bc Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-18 09:31:30.953 UTC [msp] SatisfiesPrincipal -> DEBU 10bd Checking if identity satisfies MEMBER role for OrdererMSP +2018-01-18 09:31:30.953 UTC [msp] Validate -> DEBU 10be MSP OrdererMSP validating identity +2018-01-18 09:31:30.954 UTC [cauthdsl] func2 -> DEBU 10bf 0xc420026190 principal matched by identity 0 +2018-01-18 09:31:30.954 UTC [msp/identity] Verify -> DEBU 10c0 Verify: digest = 00000000 42 33 32 04 a7 a4 04 4f cb 33 08 f2 82 e3 b3 bb |B32....O.3......| +00000010 31 92 05 6f ee 04 ec 74 e9 6b af c2 c7 26 de 3e |1..o...t.k...&.>| +2018-01-18 09:31:30.954 UTC [msp/identity] Verify -> DEBU 10c1 Verify: sig = 00000000 30 44 02 20 09 29 b5 9b 1c c2 57 b0 d4 1b 07 f5 |0D. .)....W.....| +00000010 56 98 d3 76 67 6e bd dc 3c f0 68 9d 2a 3b 3e 3a |V..vgn..<.h.*;>:| +00000020 e3 9b 55 fa 02 20 45 26 e2 87 19 8e 1b c2 f6 91 |..U.. E&........| +00000030 b8 83 11 db 41 91 e6 4e 5c fc 84 8f 50 7f 05 9f |....A..N\...P...| +00000040 77 b6 6b 0d 63 55 |w.k.cU| +2018-01-18 09:31:30.954 UTC [cauthdsl] func2 -> DEBU 10c2 0xc420026190 principal evaluation succeeds for identity 0 +2018-01-18 09:31:30.954 UTC [cauthdsl] func1 -> DEBU 10c3 0xc420026190 gate 1516267890952525251 evaluation succeeds +2018-01-18 09:31:30.954 UTC [orderer/common/sigfilter] Apply -> DEBU 10c4 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4208371e0 1 [0xc42014a638 0xc42014a688]}) %!s(*policies.implicitMetaPolicy=&{0xc4202d8040 1 [0xc42014a750]})]} +2018-01-18 09:31:30.954 UTC [orderer/common/deliver] Handle -> DEBU 10c5 [channel: businesschannel] Received seekInfo (0xc42037a880) start: > stop: > +2018-01-18 09:31:30.955 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 10c6 retrieveBlockByNumber() - blockNum = [2] +2018-01-18 09:31:30.955 UTC [fsblkstorage] newBlockfileStream -> DEBU 10c7 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[25667] +2018-01-18 09:31:30.955 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 10c8 Remaining bytes=[33565], Going to peek [8] bytes +2018-01-18 09:31:30.955 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 10c9 Returning blockbytes - length=[13789], placementInfo={fileNum=[0], startOffset=[25667], bytesOffset=[25669]} +2018-01-18 09:31:30.955 UTC [orderer/common/deliver] Handle -> DEBU 10ca [channel: businesschannel] Delivering block for (0xc42037a880) +2018-01-18 09:31:30.956 UTC [orderer/common/deliver] Handle -> DEBU 10cb [channel: businesschannel] Done delivering for (0xc42037a880), waiting for new SeekInfo +2018-01-18 09:31:30.956 UTC [orderer/common/deliver] Handle -> DEBU 10cc Attempting to read seek info message +2018-01-18 09:31:30.960 UTC [orderer/common/deliver] Handle -> WARN 10cd Error reading from stream: rpc error: code = Canceled desc = context canceled +2018-01-18 09:31:30.961 UTC [orderer/main] func1 -> DEBU 10ce Closing Deliver stream +2018-01-18 09:31:31.125 UTC [orderer/main] Deliver -> DEBU 10cf Starting new Deliver handler +2018-01-18 09:31:31.125 UTC [orderer/common/deliver] Handle -> DEBU 10d0 Starting new deliver loop +2018-01-18 09:31:31.125 UTC [orderer/common/deliver] Handle -> DEBU 10d1 Attempting to read seek info message +2018-01-18 09:31:31.126 UTC [policies] GetPolicy -> DEBU 10d2 Returning policy Readers for evaluation +2018-01-18 09:31:31.126 UTC [cauthdsl] func1 -> DEBU 10d3 0xc420026200 gate 1516267891126912714 evaluation starts +2018-01-18 09:31:31.127 UTC [cauthdsl] func2 -> DEBU 10d4 0xc420026200 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:31:31.127 UTC [cauthdsl] func2 -> DEBU 10d5 0xc420026200 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:31:31.127 UTC [msp/identity] newIdentity -> DEBU 10d6 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-18 09:31:31.128 UTC [cauthdsl] func2 -> DEBU 10d7 0xc420026200 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +2018-01-18 09:31:31.128 UTC [cauthdsl] func2 -> DEBU 10d8 0xc420026200 principal evaluation fails +2018-01-18 09:31:31.128 UTC [cauthdsl] func1 -> DEBU 10d9 0xc420026200 gate 1516267891126912714 evaluation fails +2018-01-18 09:31:31.129 UTC [cauthdsl] func1 -> DEBU 10da 0xc420026218 gate 1516267891129031154 evaluation starts +2018-01-18 09:31:31.129 UTC [cauthdsl] func2 -> DEBU 10db 0xc420026218 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:31:31.129 UTC [cauthdsl] func2 -> DEBU 10dc 0xc420026218 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:31:31.129 UTC [msp/identity] newIdentity -> DEBU 10dd Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-18 09:31:31.130 UTC [cauthdsl] func2 -> DEBU 10de 0xc420026218 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +2018-01-18 09:31:31.130 UTC [cauthdsl] func2 -> DEBU 10df 0xc420026218 principal evaluation fails +2018-01-18 09:31:31.130 UTC [cauthdsl] func1 -> DEBU 10e0 0xc420026218 gate 1516267891129031154 evaluation fails +2018-01-18 09:31:31.130 UTC [cauthdsl] func1 -> DEBU 10e1 0xc420026228 gate 1516267891130511014 evaluation starts +2018-01-18 09:31:31.130 UTC [cauthdsl] func2 -> DEBU 10e2 0xc420026228 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:31:31.130 UTC [cauthdsl] func2 -> DEBU 10e3 0xc420026228 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:31:31.131 UTC [msp/identity] newIdentity -> DEBU 10e4 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-18 09:31:31.131 UTC [msp] SatisfiesPrincipal -> DEBU 10e5 Checking if identity satisfies MEMBER role for OrdererMSP +2018-01-18 09:31:31.131 UTC [msp] Validate -> DEBU 10e6 MSP OrdererMSP validating identity +2018-01-18 09:31:31.132 UTC [cauthdsl] func2 -> DEBU 10e7 0xc420026228 principal matched by identity 0 +2018-01-18 09:31:31.132 UTC [msp/identity] Verify -> DEBU 10e8 Verify: digest = 00000000 9f eb 16 dc f7 9f 6f 9c 05 a4 71 7b 39 8b fe bd |......o...q{9...| +00000010 9a fa a8 d7 79 ce 72 54 03 14 3b 94 d2 57 e1 f1 |....y.rT..;..W..| +2018-01-18 09:31:31.132 UTC [msp/identity] Verify -> DEBU 10e9 Verify: sig = 00000000 30 45 02 21 00 e3 28 d8 02 e7 02 3e 59 73 94 0d |0E.!..(....>Ys..| +00000010 fc 65 ca 4e a5 be 30 11 3a 25 9d 1f 8f cb 12 9e |.e.N..0.:%......| +00000020 ef 73 62 1c 15 02 20 0b 31 a1 02 e5 dd ed 01 97 |.sb... .1.......| +00000030 94 21 71 ee 78 a3 51 d4 4a dd 57 38 86 09 92 8e |.!q.x.Q.J.W8....| +00000040 fa 9c 99 e9 5d d4 de |....]..| +2018-01-18 09:31:31.133 UTC [cauthdsl] func2 -> DEBU 10ea 0xc420026228 principal evaluation succeeds for identity 0 +2018-01-18 09:31:31.133 UTC [cauthdsl] func1 -> DEBU 10eb 0xc420026228 gate 1516267891130511014 evaluation succeeds +2018-01-18 09:31:31.133 UTC [orderer/common/sigfilter] Apply -> DEBU 10ec Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4208371e0 1 [0xc42014a638 0xc42014a688]}) %!s(*policies.implicitMetaPolicy=&{0xc4202d8040 1 [0xc42014a750]})]} +2018-01-18 09:31:31.133 UTC [orderer/common/deliver] Handle -> DEBU 10ed [channel: businesschannel] Received seekInfo (0xc420338620) start: > stop: > +2018-01-18 09:31:31.133 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 10ee retrieveBlockByNumber() - blockNum = [3] +2018-01-18 09:31:31.133 UTC [fsblkstorage] newBlockfileStream -> DEBU 10ef newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[39458] +2018-01-18 09:31:31.134 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 10f0 Remaining bytes=[19774], Going to peek [8] bytes +2018-01-18 09:31:31.134 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 10f1 Returning blockbytes - length=[5210], placementInfo={fileNum=[0], startOffset=[39458], bytesOffset=[39460]} +2018-01-18 09:31:31.134 UTC [orderer/common/deliver] Handle -> DEBU 10f2 [channel: businesschannel] Delivering block for (0xc420338620) +2018-01-18 09:31:31.134 UTC [orderer/common/deliver] Handle -> DEBU 10f3 [channel: businesschannel] Done delivering for (0xc420338620), waiting for new SeekInfo +2018-01-18 09:31:31.135 UTC [orderer/common/deliver] Handle -> DEBU 10f4 Attempting to read seek info message +2018-01-18 09:31:31.139 UTC [orderer/common/deliver] Handle -> WARN 10f5 Error reading from stream: rpc error: code = Canceled desc = context canceled +2018-01-18 09:31:31.139 UTC [orderer/main] func1 -> DEBU 10f6 Closing Deliver stream +2018-01-18 09:31:31.299 UTC [orderer/main] Deliver -> DEBU 10f7 Starting new Deliver handler +2018-01-18 09:31:31.299 UTC [orderer/common/deliver] Handle -> DEBU 10f8 Starting new deliver loop +2018-01-18 09:31:31.299 UTC [orderer/common/deliver] Handle -> DEBU 10f9 Attempting to read seek info message +2018-01-18 09:31:31.300 UTC [policies] GetPolicy -> DEBU 10fa Returning policy Readers for evaluation +2018-01-18 09:31:31.300 UTC [cauthdsl] func1 -> DEBU 10fb 0xc4200262b8 gate 1516267891300498277 evaluation starts +2018-01-18 09:31:31.300 UTC [cauthdsl] func2 -> DEBU 10fc 0xc4200262b8 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:31:31.300 UTC [cauthdsl] func2 -> DEBU 10fd 0xc4200262b8 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:31:31.301 UTC [msp/identity] newIdentity -> DEBU 10fe Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-18 09:31:31.302 UTC [cauthdsl] func2 -> DEBU 10ff 0xc4200262b8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +2018-01-18 09:31:31.302 UTC [cauthdsl] func2 -> DEBU 1100 0xc4200262b8 principal evaluation fails +2018-01-18 09:31:31.302 UTC [cauthdsl] func1 -> DEBU 1101 0xc4200262b8 gate 1516267891300498277 evaluation fails +2018-01-18 09:31:31.302 UTC [cauthdsl] func1 -> DEBU 1102 0xc4200262e8 gate 1516267891302349451 evaluation starts +2018-01-18 09:31:31.302 UTC [cauthdsl] func2 -> DEBU 1103 0xc4200262e8 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:31:31.302 UTC [cauthdsl] func2 -> DEBU 1104 0xc4200262e8 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:31:31.302 UTC [msp/identity] newIdentity -> DEBU 1105 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-18 09:31:31.303 UTC [cauthdsl] func2 -> DEBU 1106 0xc4200262e8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +2018-01-18 09:31:31.303 UTC [cauthdsl] func2 -> DEBU 1107 0xc4200262e8 principal evaluation fails +2018-01-18 09:31:31.303 UTC [cauthdsl] func1 -> DEBU 1108 0xc4200262e8 gate 1516267891302349451 evaluation fails +2018-01-18 09:31:31.303 UTC [cauthdsl] func1 -> DEBU 1109 0xc420026340 gate 1516267891303864793 evaluation starts +2018-01-18 09:31:31.304 UTC [cauthdsl] func2 -> DEBU 110a 0xc420026340 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:31:31.304 UTC [cauthdsl] func2 -> DEBU 110b 0xc420026340 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:31:31.304 UTC [msp/identity] newIdentity -> DEBU 110c Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-18 09:31:31.305 UTC [msp] SatisfiesPrincipal -> DEBU 110d Checking if identity satisfies MEMBER role for OrdererMSP +2018-01-18 09:31:31.305 UTC [msp] Validate -> DEBU 110e MSP OrdererMSP validating identity +2018-01-18 09:31:31.305 UTC [cauthdsl] func2 -> DEBU 110f 0xc420026340 principal matched by identity 0 +2018-01-18 09:31:31.305 UTC [msp/identity] Verify -> DEBU 1110 Verify: digest = 00000000 e8 55 46 ab f8 4a 7d ba 15 8c ea a1 69 87 84 b1 |.UF..J}.....i...| +00000010 57 57 12 be b0 d3 40 27 e0 36 79 2e a2 63 aa fc |WW....@'.6y..c..| +2018-01-18 09:31:31.305 UTC [msp/identity] Verify -> DEBU 1111 Verify: sig = 00000000 30 44 02 20 34 9a 5d 94 dd 8d 00 0f c4 c8 db 9c |0D. 4.].........| +00000010 5f 56 c7 d8 99 75 fb c6 c3 c6 17 7f 97 c6 bb 66 |_V...u.........f| +00000020 a4 fa 27 b2 02 20 59 82 43 5d 52 59 f7 9b 4a 97 |..'.. Y.C]RY..J.| +00000030 75 fd 20 c2 74 b8 08 ce 55 5d 26 18 45 b7 25 20 |u. .t...U]&.E.% | +00000040 9c 11 02 c1 39 98 |....9.| +2018-01-18 09:31:31.306 UTC [cauthdsl] func2 -> DEBU 1112 0xc420026340 principal evaluation succeeds for identity 0 +2018-01-18 09:31:31.306 UTC [cauthdsl] func1 -> DEBU 1113 0xc420026340 gate 1516267891303864793 evaluation succeeds +2018-01-18 09:31:31.306 UTC [orderer/common/sigfilter] Apply -> DEBU 1114 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4208371e0 1 [0xc42014a638 0xc42014a688]}) %!s(*policies.implicitMetaPolicy=&{0xc4202d8040 1 [0xc42014a750]})]} +2018-01-18 09:31:31.306 UTC [orderer/common/deliver] Handle -> DEBU 1115 [channel: businesschannel] Received seekInfo (0xc4202d13a0) start: > stop: > +2018-01-18 09:31:31.306 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 1116 retrieveBlockByNumber() - blockNum = [4] +2018-01-18 09:31:31.307 UTC [fsblkstorage] newBlockfileStream -> DEBU 1117 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[44670] +2018-01-18 09:31:31.307 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 1118 Remaining bytes=[14562], Going to peek [8] bytes +2018-01-18 09:31:31.307 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 1119 Returning blockbytes - length=[5211], placementInfo={fileNum=[0], startOffset=[44670], bytesOffset=[44672]} +2018-01-18 09:31:31.307 UTC [orderer/common/deliver] Handle -> DEBU 111a [channel: businesschannel] Delivering block for (0xc4202d13a0) +2018-01-18 09:31:31.308 UTC [orderer/common/deliver] Handle -> DEBU 111b [channel: businesschannel] Done delivering for (0xc4202d13a0), waiting for new SeekInfo +2018-01-18 09:31:31.308 UTC [orderer/common/deliver] Handle -> DEBU 111c Attempting to read seek info message +2018-01-18 09:31:31.313 UTC [orderer/common/deliver] Handle -> WARN 111d Error reading from stream: rpc error: code = Canceled desc = context canceled +2018-01-18 09:31:31.313 UTC [orderer/main] func1 -> DEBU 111e Closing Deliver stream +2018-01-18 09:31:31.458 UTC [orderer/main] Deliver -> DEBU 111f Starting new Deliver handler +2018-01-18 09:31:31.458 UTC [orderer/common/deliver] Handle -> DEBU 1120 Starting new deliver loop +2018-01-18 09:31:31.458 UTC [orderer/common/deliver] Handle -> DEBU 1121 Attempting to read seek info message +2018-01-18 09:31:31.459 UTC [policies] GetPolicy -> DEBU 1122 Returning policy Readers for evaluation +2018-01-18 09:31:31.459 UTC [cauthdsl] func1 -> DEBU 1123 0xc42014a980 gate 1516267891459702535 evaluation starts +2018-01-18 09:31:31.459 UTC [cauthdsl] func2 -> DEBU 1124 0xc42014a980 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:31:31.459 UTC [cauthdsl] func2 -> DEBU 1125 0xc42014a980 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:31:31.460 UTC [msp/identity] newIdentity -> DEBU 1126 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-18 09:31:31.460 UTC [cauthdsl] func2 -> DEBU 1127 0xc42014a980 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +2018-01-18 09:31:31.460 UTC [cauthdsl] func2 -> DEBU 1128 0xc42014a980 principal evaluation fails +2018-01-18 09:31:31.460 UTC [cauthdsl] func1 -> DEBU 1129 0xc42014a980 gate 1516267891459702535 evaluation fails +2018-01-18 09:31:31.460 UTC [cauthdsl] func1 -> DEBU 112a 0xc42014a990 gate 1516267891460518627 evaluation starts +2018-01-18 09:31:31.460 UTC [cauthdsl] func2 -> DEBU 112b 0xc42014a990 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:31:31.460 UTC [cauthdsl] func2 -> DEBU 112c 0xc42014a990 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:31:31.460 UTC [msp/identity] newIdentity -> DEBU 112d Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-18 09:31:31.461 UTC [cauthdsl] func2 -> DEBU 112e 0xc42014a990 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +2018-01-18 09:31:31.461 UTC [cauthdsl] func2 -> DEBU 112f 0xc42014a990 principal evaluation fails +2018-01-18 09:31:31.461 UTC [cauthdsl] func1 -> DEBU 1130 0xc42014a990 gate 1516267891460518627 evaluation fails +2018-01-18 09:31:31.461 UTC [cauthdsl] func1 -> DEBU 1131 0xc42014a9a0 gate 1516267891461328322 evaluation starts +2018-01-18 09:31:31.461 UTC [cauthdsl] func2 -> DEBU 1132 0xc42014a9a0 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:31:31.461 UTC [cauthdsl] func2 -> DEBU 1133 0xc42014a9a0 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:31:31.461 UTC [msp/identity] newIdentity -> DEBU 1134 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-18 09:31:31.462 UTC [msp] SatisfiesPrincipal -> DEBU 1135 Checking if identity satisfies MEMBER role for OrdererMSP +2018-01-18 09:31:31.462 UTC [msp] Validate -> DEBU 1136 MSP OrdererMSP validating identity +2018-01-18 09:31:31.462 UTC [cauthdsl] func2 -> DEBU 1137 0xc42014a9a0 principal matched by identity 0 +2018-01-18 09:31:31.462 UTC [msp/identity] Verify -> DEBU 1138 Verify: digest = 00000000 ce 9e 47 1c f2 e2 c8 f5 d6 49 2c b7 98 70 d1 81 |..G......I,..p..| +00000010 0c e0 2f b3 a1 35 7e fc c4 ff 18 60 c1 8a 36 c0 |../..5~....`..6.| +2018-01-18 09:31:31.462 UTC [msp/identity] Verify -> DEBU 1139 Verify: sig = 00000000 30 45 02 21 00 e7 bb 82 ec 26 a2 f0 fe 67 1c 5f |0E.!.....&...g._| +00000010 77 cc 10 14 63 74 34 f2 f2 a7 f0 76 36 ff 27 45 |w...ct4....v6.'E| +00000020 36 9e f4 1c 6b 02 20 07 76 1e 9d 22 27 ca f3 0f |6...k. .v.."'...| +00000030 b3 19 93 24 93 20 b2 38 c8 11 ba b5 43 ab a8 27 |...$. .8....C..'| +00000040 c4 4c 3c f6 bb 41 4b |.L<..AK| +2018-01-18 09:31:31.462 UTC [cauthdsl] func2 -> DEBU 113a 0xc42014a9a0 principal evaluation succeeds for identity 0 +2018-01-18 09:31:31.462 UTC [cauthdsl] func1 -> DEBU 113b 0xc42014a9a0 gate 1516267891461328322 evaluation succeeds +2018-01-18 09:31:31.462 UTC [orderer/common/sigfilter] Apply -> DEBU 113c Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4208371e0 1 [0xc42014a638 0xc42014a688]}) %!s(*policies.implicitMetaPolicy=&{0xc4202d8040 1 [0xc42014a750]})]} +2018-01-18 09:31:31.462 UTC [orderer/common/deliver] Handle -> DEBU 113d [channel: businesschannel] Received seekInfo (0xc420a944e0) start: > stop: > +2018-01-18 09:31:31.462 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 113e retrieveBlockByNumber() - blockNum = [5] +2018-01-18 09:31:31.462 UTC [fsblkstorage] newBlockfileStream -> DEBU 113f newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[49883] +2018-01-18 09:31:31.463 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 1140 Remaining bytes=[9349], Going to peek [8] bytes +2018-01-18 09:31:31.463 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 1141 Returning blockbytes - length=[4673], placementInfo={fileNum=[0], startOffset=[49883], bytesOffset=[49885]} +2018-01-18 09:31:31.463 UTC [orderer/common/deliver] Handle -> DEBU 1142 [channel: businesschannel] Delivering block for (0xc420a944e0) +2018-01-18 09:31:31.463 UTC [orderer/common/deliver] Handle -> DEBU 1143 [channel: businesschannel] Done delivering for (0xc420a944e0), waiting for new SeekInfo +2018-01-18 09:31:31.463 UTC [orderer/common/deliver] Handle -> DEBU 1144 Attempting to read seek info message +2018-01-18 09:31:31.471 UTC [orderer/common/deliver] Handle -> WARN 1145 Error reading from stream: rpc error: code = Canceled desc = context canceled +2018-01-18 09:31:31.471 UTC [orderer/main] func1 -> DEBU 1146 Closing Deliver stream +2018-01-18 09:31:31.631 UTC [orderer/main] Deliver -> DEBU 1147 Starting new Deliver handler +2018-01-18 09:31:31.631 UTC [orderer/common/deliver] Handle -> DEBU 1148 Starting new deliver loop +2018-01-18 09:31:31.631 UTC [orderer/common/deliver] Handle -> DEBU 1149 Attempting to read seek info message +2018-01-18 09:31:31.632 UTC [policies] GetPolicy -> DEBU 114a Returning policy Readers for evaluation +2018-01-18 09:31:31.632 UTC [cauthdsl] func1 -> DEBU 114b 0xc42014a9e8 gate 1516267891632561563 evaluation starts +2018-01-18 09:31:31.632 UTC [cauthdsl] func2 -> DEBU 114c 0xc42014a9e8 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:31:31.632 UTC [cauthdsl] func2 -> DEBU 114d 0xc42014a9e8 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:31:31.632 UTC [msp/identity] newIdentity -> DEBU 114e Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-18 09:31:31.633 UTC [cauthdsl] func2 -> DEBU 114f 0xc42014a9e8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +2018-01-18 09:31:31.633 UTC [cauthdsl] func2 -> DEBU 1150 0xc42014a9e8 principal evaluation fails +2018-01-18 09:31:31.633 UTC [cauthdsl] func1 -> DEBU 1151 0xc42014a9e8 gate 1516267891632561563 evaluation fails +2018-01-18 09:31:31.633 UTC [cauthdsl] func1 -> DEBU 1152 0xc42014a9f8 gate 1516267891633274906 evaluation starts +2018-01-18 09:31:31.633 UTC [cauthdsl] func2 -> DEBU 1153 0xc42014a9f8 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:31:31.633 UTC [cauthdsl] func2 -> DEBU 1154 0xc42014a9f8 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:31:31.633 UTC [msp/identity] newIdentity -> DEBU 1155 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-18 09:31:31.633 UTC [cauthdsl] func2 -> DEBU 1156 0xc42014a9f8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +2018-01-18 09:31:31.633 UTC [cauthdsl] func2 -> DEBU 1157 0xc42014a9f8 principal evaluation fails +2018-01-18 09:31:31.633 UTC [cauthdsl] func1 -> DEBU 1158 0xc42014a9f8 gate 1516267891633274906 evaluation fails +2018-01-18 09:31:31.633 UTC [cauthdsl] func1 -> DEBU 1159 0xc42014aa08 gate 1516267891633818734 evaluation starts +2018-01-18 09:31:31.633 UTC [cauthdsl] func2 -> DEBU 115a 0xc42014aa08 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:31:31.633 UTC [cauthdsl] func2 -> DEBU 115b 0xc42014aa08 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:31:31.634 UTC [msp/identity] newIdentity -> DEBU 115c Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-18 09:31:31.634 UTC [msp] SatisfiesPrincipal -> DEBU 115d Checking if identity satisfies MEMBER role for OrdererMSP +2018-01-18 09:31:31.634 UTC [msp] Validate -> DEBU 115e MSP OrdererMSP validating identity +2018-01-18 09:31:31.634 UTC [cauthdsl] func2 -> DEBU 115f 0xc42014aa08 principal matched by identity 0 +2018-01-18 09:31:31.634 UTC [msp/identity] Verify -> DEBU 1160 Verify: digest = 00000000 51 6b c1 48 2b c9 3a 03 f0 43 07 12 f7 e1 7d 1c |Qk.H+.:..C....}.| +00000010 b7 f9 b8 af 7b 62 26 5a c0 c5 fb 03 74 09 00 fd |....{b&Z....t...| +2018-01-18 09:31:31.634 UTC [msp/identity] Verify -> DEBU 1161 Verify: sig = 00000000 30 45 02 21 00 b3 8c 9f 78 9a 99 33 03 b5 c6 e0 |0E.!....x..3....| +00000010 df 81 0f 90 b6 e6 4d 31 2b 31 26 5f c0 42 7b 7e |......M1+1&_.B{~| +00000020 76 24 6f f9 d6 02 20 77 d0 0b ba bb 68 3d 75 1e |v$o... w....h=u.| +00000030 4f be 69 f7 7e 87 de 15 ce 0b 14 6c d0 8b 5a 82 |O.i.~......l..Z.| +00000040 2a 31 32 b6 6f 8e 75 |*12.o.u| +2018-01-18 09:31:31.634 UTC [cauthdsl] func2 -> DEBU 1162 0xc42014aa08 principal evaluation succeeds for identity 0 +2018-01-18 09:31:31.635 UTC [cauthdsl] func1 -> DEBU 1163 0xc42014aa08 gate 1516267891633818734 evaluation succeeds +2018-01-18 09:31:31.635 UTC [orderer/common/sigfilter] Apply -> DEBU 1164 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4208371e0 1 [0xc42014a638 0xc42014a688]}) %!s(*policies.implicitMetaPolicy=&{0xc4202d8040 1 [0xc42014a750]})]} +2018-01-18 09:31:31.635 UTC [orderer/common/deliver] Handle -> DEBU 1165 [channel: businesschannel] Received seekInfo (0xc4201ee160) start: > stop: > +2018-01-18 09:31:31.635 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 1166 retrieveBlockByNumber() - blockNum = [6] +2018-01-18 09:31:31.635 UTC [fsblkstorage] newBlockfileStream -> DEBU 1167 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[54558] +2018-01-18 09:31:31.635 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 1168 Remaining bytes=[4674], Going to peek [8] bytes +2018-01-18 09:31:31.635 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 1169 Returning blockbytes - length=[4672], placementInfo={fileNum=[0], startOffset=[54558], bytesOffset=[54560]} +2018-01-18 09:31:31.635 UTC [orderer/common/deliver] Handle -> DEBU 116a [channel: businesschannel] Delivering block for (0xc4201ee160) +2018-01-18 09:31:31.635 UTC [orderer/common/deliver] Handle -> DEBU 116b [channel: businesschannel] Done delivering for (0xc4201ee160), waiting for new SeekInfo +2018-01-18 09:31:31.635 UTC [orderer/common/deliver] Handle -> DEBU 116c Attempting to read seek info message +2018-01-18 09:31:31.643 UTC [orderer/common/deliver] Handle -> WARN 116d Error reading from stream: rpc error: code = Canceled desc = context canceled +2018-01-18 09:31:31.643 UTC [orderer/main] func1 -> DEBU 116e Closing Deliver stream +2018-01-18 09:31:31.796 UTC [orderer/main] Deliver -> DEBU 116f Starting new Deliver handler +2018-01-18 09:31:31.796 UTC [orderer/common/deliver] Handle -> DEBU 1170 Starting new deliver loop +2018-01-18 09:31:31.796 UTC [orderer/common/deliver] Handle -> DEBU 1171 Attempting to read seek info message +2018-01-18 09:31:31.797 UTC [policies] GetPolicy -> DEBU 1172 Returning policy Readers for evaluation +2018-01-18 09:31:31.797 UTC [cauthdsl] func1 -> DEBU 1173 0xc42014aa50 gate 1516267891797686859 evaluation starts +2018-01-18 09:31:31.797 UTC [cauthdsl] func2 -> DEBU 1174 0xc42014aa50 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:31:31.797 UTC [cauthdsl] func2 -> DEBU 1175 0xc42014aa50 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:31:31.798 UTC [msp/identity] newIdentity -> DEBU 1176 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-18 09:31:31.798 UTC [msp] SatisfiesPrincipal -> DEBU 1177 Checking if identity satisfies MEMBER role for OrdererMSP +2018-01-18 09:31:31.798 UTC [msp] Validate -> DEBU 1178 MSP OrdererMSP validating identity +2018-01-18 09:31:31.798 UTC [cauthdsl] func2 -> DEBU 1179 0xc42014aa50 principal matched by identity 0 +2018-01-18 09:31:31.798 UTC [msp/identity] Verify -> DEBU 117a Verify: digest = 00000000 ce a7 9e 97 a2 5c b2 2f 4c 91 45 75 eb c1 62 6b |.....\./L.Eu..bk| +00000010 59 c8 20 1c 9a a9 66 00 e9 32 18 aa bb da ec 62 |Y. ...f..2.....b| +2018-01-18 09:31:31.798 UTC [msp/identity] Verify -> DEBU 117b Verify: sig = 00000000 30 45 02 21 00 c8 ab ac 42 87 3d 62 6b ab 9e f1 |0E.!....B.=bk...| +00000010 e3 b1 4e be 3b 18 53 77 0f 0d 60 00 15 c2 11 6f |..N.;.Sw..`....o| +00000020 7a 7e 82 c4 31 02 20 43 f9 48 45 44 4c bd dc c9 |z~..1. C.HEDL...| +00000030 ff c2 13 99 0c 96 dc 80 c7 65 a5 0a f3 eb 90 5d |.........e.....]| +00000040 2e 1d 09 55 9f fd 86 |...U...| +2018-01-18 09:31:31.799 UTC [cauthdsl] func2 -> DEBU 117c 0xc42014aa50 principal evaluation succeeds for identity 0 +2018-01-18 09:31:31.799 UTC [cauthdsl] func1 -> DEBU 117d 0xc42014aa50 gate 1516267891797686859 evaluation succeeds +2018-01-18 09:31:31.799 UTC [orderer/common/sigfilter] Apply -> DEBU 117e Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [Readers %!s(*policies.implicitMetaPolicy=&{0xc420371f80 1 [0xc4200264e0]})]} +2018-01-18 09:31:31.799 UTC [orderer/common/deliver] Handle -> DEBU 117f [channel: testchainid] Received seekInfo (0xc4200b8c20) start: > stop: > +2018-01-18 09:31:31.799 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 1180 retrieveBlockByNumber() - blockNum = [1] +2018-01-18 09:31:31.799 UTC [fsblkstorage] newBlockfileStream -> DEBU 1181 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[9082] +2018-01-18 09:31:31.799 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 1182 Remaining bytes=[14609], Going to peek [8] bytes +2018-01-18 09:31:31.799 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 1183 Returning blockbytes - length=[14607], placementInfo={fileNum=[0], startOffset=[9082], bytesOffset=[9084]} +2018-01-18 09:31:31.799 UTC [orderer/common/deliver] Handle -> DEBU 1184 [channel: testchainid] Delivering block for (0xc4200b8c20) +2018-01-18 09:31:31.800 UTC [orderer/common/deliver] Handle -> DEBU 1185 [channel: testchainid] Done delivering for (0xc4200b8c20), waiting for new SeekInfo +2018-01-18 09:31:31.800 UTC [orderer/common/deliver] Handle -> DEBU 1186 Attempting to read seek info message +2018-01-18 09:31:31.802 UTC [orderer/common/deliver] Handle -> WARN 1187 Error reading from stream: rpc error: code = Canceled desc = context canceled +2018-01-18 09:31:31.802 UTC [orderer/main] func1 -> DEBU 1188 Closing Deliver stream +2018-01-18 09:31:31.963 UTC [orderer/main] Deliver -> DEBU 1189 Starting new Deliver handler +2018-01-18 09:31:31.963 UTC [orderer/common/deliver] Handle -> DEBU 118a Starting new deliver loop +2018-01-18 09:31:31.963 UTC [orderer/common/deliver] Handle -> DEBU 118b Attempting to read seek info message +2018-01-18 09:31:31.964 UTC [policies] GetPolicy -> DEBU 118c Returning policy Readers for evaluation +2018-01-18 09:31:31.964 UTC [cauthdsl] func1 -> DEBU 118d 0xc42014aa98 gate 1516267891964799361 evaluation starts +2018-01-18 09:31:31.964 UTC [cauthdsl] func2 -> DEBU 118e 0xc42014aa98 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:31:31.965 UTC [cauthdsl] func2 -> DEBU 118f 0xc42014aa98 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:31:31.965 UTC [msp/identity] newIdentity -> DEBU 1190 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-18 09:31:31.965 UTC [msp] SatisfiesPrincipal -> DEBU 1191 Checking if identity satisfies MEMBER role for OrdererMSP +2018-01-18 09:31:31.965 UTC [msp] Validate -> DEBU 1192 MSP OrdererMSP validating identity +2018-01-18 09:31:31.965 UTC [cauthdsl] func2 -> DEBU 1193 0xc42014aa98 principal matched by identity 0 +2018-01-18 09:31:31.966 UTC [msp/identity] Verify -> DEBU 1194 Verify: digest = 00000000 27 04 0e 5f ac f5 90 5d ab f6 d8 8c 9e 6e 98 2a |'.._...].....n.*| +00000010 1c 2a eb 6e c4 d4 1f dd 16 71 b8 1a 8c 74 91 47 |.*.n.....q...t.G| +2018-01-18 09:31:31.966 UTC [msp/identity] Verify -> DEBU 1195 Verify: sig = 00000000 30 44 02 20 3f f0 53 48 37 c0 13 04 51 fe a2 c6 |0D. ?.SH7...Q...| +00000010 84 d7 95 b1 02 be b5 fe 12 3c 12 1a dd 0c ef 4b |.........<.....K| +00000020 aa 55 a4 23 02 20 6c 65 da 0a c7 8b 80 1e da 39 |.U.#. le.......9| +00000030 af ef ae df b1 51 58 ef 7c d1 05 ab 68 b9 79 6f |.....QX.|...h.yo| +00000040 05 83 98 6b c3 cc |...k..| +2018-01-18 09:31:31.966 UTC [cauthdsl] func2 -> DEBU 1196 0xc42014aa98 principal evaluation succeeds for identity 0 +2018-01-18 09:31:31.966 UTC [cauthdsl] func1 -> DEBU 1197 0xc42014aa98 gate 1516267891964799361 evaluation succeeds +2018-01-18 09:31:31.966 UTC [orderer/common/sigfilter] Apply -> DEBU 1198 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [Readers %!s(*policies.implicitMetaPolicy=&{0xc420371f80 1 [0xc4200264e0]})]} +2018-01-18 09:31:31.966 UTC [orderer/common/deliver] Handle -> DEBU 1199 [channel: testchainid] Received seekInfo (0xc420ac6800) start: > stop: > +2018-01-18 09:31:31.966 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 119a retrieveBlockByNumber() - blockNum = [1] +2018-01-18 09:31:31.967 UTC [fsblkstorage] newBlockfileStream -> DEBU 119b newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[9082] +2018-01-18 09:31:31.967 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 119c Remaining bytes=[14609], Going to peek [8] bytes +2018-01-18 09:31:31.967 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 119d Returning blockbytes - length=[14607], placementInfo={fileNum=[0], startOffset=[9082], bytesOffset=[9084]} +2018-01-18 09:31:31.967 UTC [orderer/common/deliver] Handle -> DEBU 119e [channel: testchainid] Delivering block for (0xc420ac6800) +2018-01-18 09:31:31.967 UTC [orderer/common/deliver] Handle -> DEBU 119f [channel: testchainid] Done delivering for (0xc420ac6800), waiting for new SeekInfo +2018-01-18 09:31:31.967 UTC [orderer/common/deliver] Handle -> DEBU 11a0 Attempting to read seek info message +2018-01-18 09:31:31.969 UTC [policies] GetPolicy -> DEBU 11a1 Returning policy Readers for evaluation +2018-01-18 09:31:31.969 UTC [cauthdsl] func1 -> DEBU 11a2 0xc42014aad8 gate 1516267891969291613 evaluation starts +2018-01-18 09:31:31.969 UTC [cauthdsl] func2 -> DEBU 11a3 0xc42014aad8 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:31:31.969 UTC [cauthdsl] func2 -> DEBU 11a4 0xc42014aad8 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:31:31.969 UTC [msp/identity] newIdentity -> DEBU 11a5 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-18 09:31:31.970 UTC [msp] SatisfiesPrincipal -> DEBU 11a6 Checking if identity satisfies MEMBER role for OrdererMSP +2018-01-18 09:31:31.970 UTC [msp] Validate -> DEBU 11a7 MSP OrdererMSP validating identity +2018-01-18 09:31:31.970 UTC [cauthdsl] func2 -> DEBU 11a8 0xc42014aad8 principal matched by identity 0 +2018-01-18 09:31:31.970 UTC [msp/identity] Verify -> DEBU 11a9 Verify: digest = 00000000 0a 22 1a f4 79 1b fd db d9 34 b2 18 8c 1d 52 f4 |."..y....4....R.| +00000010 f3 bd 8b ba 38 a5 7a 9d 0c 1b d6 4a 89 73 86 0c |....8.z....J.s..| +2018-01-18 09:31:31.970 UTC [msp/identity] Verify -> DEBU 11aa Verify: sig = 00000000 30 45 02 21 00 b1 86 67 d3 6c a0 c1 8b ff e8 ff |0E.!...g.l......| +00000010 c1 11 cd b8 69 86 25 57 a0 f3 22 ff cb b2 95 7e |....i.%W.."....~| +00000020 19 ce fb 0d 72 02 20 2c 51 8e 96 42 8a e1 80 4a |....r. ,Q..B...J| +00000030 80 81 0b da 56 4a 6c 33 64 ed 90 ce 77 19 f9 09 |....VJl3d...w...| +00000040 cd 23 44 b4 e3 df dc |.#D....| +2018-01-18 09:31:31.971 UTC [cauthdsl] func2 -> DEBU 11ab 0xc42014aad8 principal evaluation succeeds for identity 0 +2018-01-18 09:31:31.971 UTC [cauthdsl] func1 -> DEBU 11ac 0xc42014aad8 gate 1516267891969291613 evaluation succeeds +2018-01-18 09:31:31.971 UTC [orderer/common/sigfilter] Apply -> DEBU 11ad Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [Readers %!s(*policies.implicitMetaPolicy=&{0xc420371f80 1 [0xc4200264e0]})]} +2018-01-18 09:31:31.971 UTC [orderer/common/deliver] Handle -> DEBU 11ae [channel: testchainid] Received seekInfo (0xc420afaf40) start: > stop: > +2018-01-18 09:31:31.971 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 11af retrieveBlockByNumber() - blockNum = [0] +2018-01-18 09:31:31.971 UTC [fsblkstorage] newBlockfileStream -> DEBU 11b0 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +2018-01-18 09:31:31.971 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 11b1 Remaining bytes=[23691], Going to peek [8] bytes +2018-01-18 09:31:31.971 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 11b2 Returning blockbytes - length=[9080], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +2018-01-18 09:31:31.971 UTC [orderer/common/deliver] Handle -> DEBU 11b3 [channel: testchainid] Delivering block for (0xc420afaf40) +2018-01-18 09:31:31.972 UTC [orderer/common/deliver] Handle -> DEBU 11b4 [channel: testchainid] Done delivering for (0xc420afaf40), waiting for new SeekInfo +2018-01-18 09:31:31.972 UTC [orderer/common/deliver] Handle -> DEBU 11b5 Attempting to read seek info message +2018-01-18 09:31:31.976 UTC [orderer/common/deliver] Handle -> WARN 11b6 Error reading from stream: rpc error: code = Canceled desc = context canceled +2018-01-18 09:31:31.976 UTC [orderer/main] func1 -> DEBU 11b7 Closing Deliver stream +2018-01-18 09:31:32.089 UTC [orderer/main] Deliver -> DEBU 11b8 Starting new Deliver handler +2018-01-18 09:31:32.090 UTC [orderer/common/deliver] Handle -> DEBU 11b9 Starting new deliver loop +2018-01-18 09:31:32.090 UTC [orderer/common/deliver] Handle -> DEBU 11ba Attempting to read seek info message +2018-01-18 09:31:32.091 UTC [policies] GetPolicy -> DEBU 11bb Returning policy Readers for evaluation +2018-01-18 09:31:32.091 UTC [cauthdsl] func1 -> DEBU 11bc 0xc42014ab20 gate 1516267892091465096 evaluation starts +2018-01-18 09:31:32.091 UTC [cauthdsl] func2 -> DEBU 11bd 0xc42014ab20 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:31:32.091 UTC [cauthdsl] func2 -> DEBU 11be 0xc42014ab20 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:31:32.091 UTC [msp/identity] newIdentity -> DEBU 11bf Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-18 09:31:32.092 UTC [msp] SatisfiesPrincipal -> DEBU 11c0 Checking if identity satisfies MEMBER role for OrdererMSP +2018-01-18 09:31:32.092 UTC [msp] Validate -> DEBU 11c1 MSP OrdererMSP validating identity +2018-01-18 09:31:32.092 UTC [cauthdsl] func2 -> DEBU 11c2 0xc42014ab20 principal matched by identity 0 +2018-01-18 09:31:32.092 UTC [msp/identity] Verify -> DEBU 11c3 Verify: digest = 00000000 12 d8 76 f4 df b6 d6 cc 51 40 94 7e 30 9f 4d fb |..v.....Q@.~0.M.| +00000010 69 70 14 f5 4c 79 e2 a5 66 36 df 31 43 08 4c ba |ip..Ly..f6.1C.L.| +2018-01-18 09:31:32.092 UTC [msp/identity] Verify -> DEBU 11c4 Verify: sig = 00000000 30 44 02 20 43 65 96 7e f2 d5 32 9c c6 4a 52 17 |0D. Ce.~..2..JR.| +00000010 e2 31 b0 0e 88 9e b9 57 fd f4 d4 4a 52 d1 9a 3b |.1.....W...JR..;| +00000020 fa b0 3a 0e 02 20 77 a3 48 20 44 a1 e1 7c ea 09 |..:.. w.H D..|..| +00000030 78 ae 08 3c 98 3f 57 7f 54 2f 4b 7e 07 e9 85 92 |x..<.?W.T/K~....| +00000040 56 c4 53 81 14 ee |V.S...| +2018-01-18 09:31:32.092 UTC [cauthdsl] func2 -> DEBU 11c5 0xc42014ab20 principal evaluation succeeds for identity 0 +2018-01-18 09:31:32.092 UTC [cauthdsl] func1 -> DEBU 11c6 0xc42014ab20 gate 1516267892091465096 evaluation succeeds +2018-01-18 09:31:32.092 UTC [orderer/common/sigfilter] Apply -> DEBU 11c7 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [Readers %!s(*policies.implicitMetaPolicy=&{0xc420371f80 1 [0xc4200264e0]})]} +2018-01-18 09:31:32.093 UTC [orderer/common/deliver] Handle -> DEBU 11c8 [channel: testchainid] Received seekInfo (0xc420c08400) start: > stop: > +2018-01-18 09:31:32.093 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 11c9 retrieveBlockByNumber() - blockNum = [0] +2018-01-18 09:31:32.093 UTC [fsblkstorage] newBlockfileStream -> DEBU 11ca newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +2018-01-18 09:31:32.094 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 11cb Remaining bytes=[23691], Going to peek [8] bytes +2018-01-18 09:31:32.095 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 11cc Returning blockbytes - length=[9080], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +2018-01-18 09:31:32.096 UTC [orderer/common/deliver] Handle -> DEBU 11cd [channel: testchainid] Delivering block for (0xc420c08400) +2018-01-18 09:31:32.097 UTC [orderer/common/deliver] Handle -> DEBU 11ce [channel: testchainid] Done delivering for (0xc420c08400), waiting for new SeekInfo +2018-01-18 09:31:32.097 UTC [orderer/common/deliver] Handle -> DEBU 11cf Attempting to read seek info message +2018-01-18 09:31:32.102 UTC [orderer/common/deliver] Handle -> WARN 11d0 Error reading from stream: rpc error: code = Canceled desc = context canceled +2018-01-18 09:31:32.102 UTC [orderer/main] func1 -> DEBU 11d1 Closing Deliver stream +2018-01-18 09:31:32.251 UTC [orderer/main] Deliver -> DEBU 11d2 Starting new Deliver handler +2018-01-18 09:31:32.251 UTC [orderer/common/deliver] Handle -> DEBU 11d3 Starting new deliver loop +2018-01-18 09:31:32.251 UTC [orderer/common/deliver] Handle -> DEBU 11d4 Attempting to read seek info message +2018-01-18 09:31:32.253 UTC [policies] GetPolicy -> DEBU 11d5 Returning policy Readers for evaluation +2018-01-18 09:31:32.254 UTC [cauthdsl] func1 -> DEBU 11d6 0xc420026080 gate 1516267892254084845 evaluation starts +2018-01-18 09:31:32.254 UTC [cauthdsl] func2 -> DEBU 11d7 0xc420026080 signed by 0 principal evaluation starts (used [false]) +2018-01-18 09:31:32.254 UTC [cauthdsl] func2 -> DEBU 11d8 0xc420026080 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-18 09:31:32.254 UTC [msp/identity] newIdentity -> DEBU 11d9 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-18 09:31:32.255 UTC [msp] SatisfiesPrincipal -> DEBU 11da Checking if identity satisfies MEMBER role for OrdererMSP +2018-01-18 09:31:32.255 UTC [msp] Validate -> DEBU 11db MSP OrdererMSP validating identity +2018-01-18 09:31:32.255 UTC [cauthdsl] func2 -> DEBU 11dc 0xc420026080 principal matched by identity 0 +2018-01-18 09:31:32.255 UTC [msp/identity] Verify -> DEBU 11dd Verify: digest = 00000000 93 7a cc d5 61 13 52 02 66 8d 03 4f ea 19 69 10 |.z..a.R.f..O..i.| +00000010 cc d5 85 30 97 44 09 33 e3 90 24 85 98 5c 45 69 |...0.D.3..$..\Ei| +2018-01-18 09:31:32.255 UTC [msp/identity] Verify -> DEBU 11de Verify: sig = 00000000 30 45 02 21 00 c8 4a 78 ee e1 91 22 51 18 0e d9 |0E.!..Jx..."Q...| +00000010 72 65 f5 e9 89 f2 f6 81 8b 29 11 d2 51 3a 21 3f |re.......)..Q:!?| +00000020 5e c7 ca 84 7e 02 20 3b cc 67 5a 8c 2a 61 f0 b6 |^...~. ;.gZ.*a..| +00000030 32 7f f3 c8 9f a3 99 55 d6 bf 1f 8f 7b 1c 79 f0 |2......U....{.y.| +00000040 e6 39 20 50 b7 fe be |.9 P...| +2018-01-18 09:31:32.255 UTC [cauthdsl] func2 -> DEBU 11df 0xc420026080 principal evaluation succeeds for identity 0 +2018-01-18 09:31:32.255 UTC [cauthdsl] func1 -> DEBU 11e0 0xc420026080 gate 1516267892254084845 evaluation succeeds +2018-01-18 09:31:32.256 UTC [orderer/common/sigfilter] Apply -> DEBU 11e1 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [Readers %!s(*policies.implicitMetaPolicy=&{0xc420371f80 1 [0xc4200264e0]})]} +2018-01-18 09:31:32.256 UTC [orderer/common/deliver] Handle -> DEBU 11e2 [channel: testchainid] Received seekInfo (0xc420952f20) start: > stop: > +2018-01-18 09:31:32.256 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 11e3 retrieveBlockByNumber() - blockNum = [1] +2018-01-18 09:31:32.256 UTC [fsblkstorage] newBlockfileStream -> DEBU 11e4 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[9082] +2018-01-18 09:31:32.256 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 11e5 Remaining bytes=[14609], Going to peek [8] bytes +2018-01-18 09:31:32.256 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 11e6 Returning blockbytes - length=[14607], placementInfo={fileNum=[0], startOffset=[9082], bytesOffset=[9084]} +2018-01-18 09:31:32.256 UTC [orderer/common/deliver] Handle -> DEBU 11e7 [channel: testchainid] Delivering block for (0xc420952f20) +2018-01-18 09:31:32.257 UTC [orderer/common/deliver] Handle -> DEBU 11e8 [channel: testchainid] Done delivering for (0xc420952f20), waiting for new SeekInfo +2018-01-18 09:31:32.257 UTC [orderer/common/deliver] Handle -> DEBU 11e9 Attempting to read seek info message +2018-01-18 09:31:32.261 UTC [orderer/common/deliver] Handle -> WARN 11ea Error reading from stream: rpc error: code = Canceled desc = context canceled +2018-01-18 09:31:32.262 UTC [orderer/main] func1 -> DEBU 11eb Closing Deliver stream diff --git a/hyperledger_fabric/v1.0.2/solo/logs/dev_peer0.log b/hyperledger_fabric/v1.0.2/solo/logs/dev_peer0.log index eb72adda..c03abe56 100644 --- a/hyperledger_fabric/v1.0.2/solo/logs/dev_peer0.log +++ b/hyperledger_fabric/v1.0.2/solo/logs/dev_peer0.log @@ -1,4 +1,4 @@ -[001 01-18 01:58:46.62 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: +[001 01-18 09:29:41.41 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: Version: 1.0.2 Go version: go1.9 OS/Arch: linux/amd64 @@ -8,52 +8,54 @@ Base Docker Label: org.hyperledger.fabric Docker Namespace: hyperledger -[002 01-18 01:58:46.63 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO Initializing ledger mgmt -[003 01-18 01:58:46.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO Initializing ledger provider -[004 01-18 01:58:46.63 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/ledgerProvider/] -[005 01-18 01:58:46.63 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] does not exist -[006 01-18 01:58:46.63 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] exists -[007 01-18 01:58:46.63 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/index/] -[008 01-18 01:58:46.63 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/index/] does not exist -[009 01-18 01:58:46.63 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/index/] exists -[00a 01-18 01:58:46.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> DEBU Constructing leveldb VersionedDBProvider -[00b 01-18 01:58:46.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider -> DEBU constructing VersionedDBProvider dbPath=/var/hyperledger/production/ledgersData/stateLeveldb -[00c 01-18 01:58:46.64 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/stateLeveldb/] -[00d 01-18 01:58:46.64 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] does not exist -[00e 01-18 01:58:46.64 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] exists -[00f 01-18 01:58:46.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider -> DEBU constructing HistoryDBProvider dbPath=/var/hyperledger/production/ledgersData/historyLeveldb -[010 01-18 01:58:46.65 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/historyLeveldb/] -[011 01-18 01:58:46.65 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] does not exist -[012 01-18 01:58:46.65 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] exists -[013 01-18 01:58:46.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO ledger provider Initialized -[014 01-18 01:58:46.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.recoverUnderConstructionLedger -> DEBU Recovering under construction ledger -[015 01-18 01:58:46.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.recoverUnderConstructionLedger -> DEBU No under construction ledger found. Quitting recovery -[016 01-18 01:58:46.65 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO ledger mgmt initialized -[017 01-18 01:58:46.66 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with TLS enabled -[018 01-18 01:58:46.66 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering BLOCK -[019 01-18 01:58:46.66 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering CHAINCODE -[01a 01-18 01:58:46.66 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REJECTION -[01b 01-18 01:58:46.66 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REGISTER -[01c 01-18 01:58:46.67 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started -[01d 01-18 01:58:46.67 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport -> DEBU Chaincode startup timeout value set to 5m0s -[01e 01-18 01:58:46.67 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> INFO Chaincode support using peerAddress: peer0.org1.example.com:7052 -[01f 01-18 01:58:46.67 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Turn off keepalive(value 0) -[020 01-18 01:58:46.67 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Setting execute timeout value to 30s -[021 01-18 01:58:46.67 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_LEVEL set to level info -[022 01-18 01:58:46.67 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_SHIM set to level warning -[023 01-18 01:58:46.67 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered -[024 01-18 01:58:46.68 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered -[025 01-18 01:58:46.68 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode escc(github.com/hyperledger/fabric/core/scc/escc) registered -[026 01-18 01:58:46.68 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode vscc(github.com/hyperledger/fabric/core/scc/vscc) registered -[027 01-18 01:58:46.68 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/chaincode/qscc) registered -[028 01-18 01:58:46.68 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer -[029 01-18 01:58:46.68 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.NewEndorserServer.GetLocalMSP -> DEBU Returning existing local MSP -[02a 01-18 01:58:46.68 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetLocalMSP -> DEBU Returning existing local MSP -[02b 01-18 01:58:46.68 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[02c 01-18 01:58:46.68 UTC] [github.com/hyperledger/fabric/gossip/service] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1 -> INFO Initialize gossip with endpoint peer0.org1.example.com:7051 and bootstrap set [127.0.0.1:7051] -[02d 01-18 01:58:46.68 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -[02e 01-18 01:58:46.68 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity -[02f 01-18 01:58:46.68 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[002 01-18 09:29:41.41 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO Initializing ledger mgmt +[003 01-18 09:29:41.41 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO Initializing ledger provider +[004 01-18 09:29:41.42 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/ledgerProvider/] +[005 01-18 09:29:41.42 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] does not exist +[006 01-18 09:29:41.42 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] exists +[007 01-18 09:29:41.42 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/index/] +[008 01-18 09:29:41.42 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/index/] does not exist +[009 01-18 09:29:41.42 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/index/] exists +[00a 01-18 09:29:41.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> DEBU Constructing leveldb VersionedDBProvider +[00b 01-18 09:29:41.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider -> DEBU constructing VersionedDBProvider dbPath=/var/hyperledger/production/ledgersData/stateLeveldb +[00c 01-18 09:29:41.44 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/stateLeveldb/] +[00d 01-18 09:29:41.44 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] does not exist +[00e 01-18 09:29:41.44 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] exists +[00f 01-18 09:29:41.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider -> DEBU constructing HistoryDBProvider dbPath=/var/hyperledger/production/ledgersData/historyLeveldb +[010 01-18 09:29:41.45 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/historyLeveldb/] +[011 01-18 09:29:41.45 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] does not exist +[012 01-18 09:29:41.45 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] exists +[013 01-18 09:29:41.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO ledger provider Initialized +[014 01-18 09:29:41.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.recoverUnderConstructionLedger -> DEBU Recovering under construction ledger +[015 01-18 09:29:41.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.recoverUnderConstructionLedger -> DEBU No under construction ledger found. Quitting recovery +[016 01-18 09:29:41.47 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO ledger mgmt initialized +[017 01-18 09:29:41.47 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func1 -> INFO Auto detected peer address: 172.18.0.5:7051 +[018 01-18 09:29:41.47 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func2.func1 -> INFO Auto detected peer address: 172.18.0.5:7051 +[019 01-18 09:29:41.47 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with TLS enabled +[01a 01-18 09:29:41.48 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering BLOCK +[01b 01-18 09:29:41.48 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering CHAINCODE +[01c 01-18 09:29:41.48 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REJECTION +[01d 01-18 09:29:41.48 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REGISTER +[01e 01-18 09:29:41.48 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started +[01f 01-18 09:29:41.49 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport -> DEBU Chaincode startup timeout value set to 5m0s +[020 01-18 09:29:41.49 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> INFO Chaincode support using peerAddress: peer0.org1.example.com:7052 +[021 01-18 09:29:41.49 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Turn off keepalive(value 0) +[022 01-18 09:29:41.49 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Setting execute timeout value to 30s +[023 01-18 09:29:41.49 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_LEVEL set to level info +[024 01-18 09:29:41.49 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_SHIM set to level warning +[025 01-18 09:29:41.49 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered +[026 01-18 09:29:41.49 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered +[027 01-18 09:29:41.50 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode escc(github.com/hyperledger/fabric/core/scc/escc) registered +[028 01-18 09:29:41.50 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode vscc(github.com/hyperledger/fabric/core/scc/vscc) registered +[029 01-18 09:29:41.50 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/chaincode/qscc) registered +[02a 01-18 09:29:41.50 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer +[02b 01-18 09:29:41.50 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.NewEndorserServer.GetLocalMSP -> DEBU Returning existing local MSP +[02c 01-18 09:29:41.50 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetLocalMSP -> DEBU Returning existing local MSP +[02d 01-18 09:29:41.50 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[02e 01-18 09:29:41.50 UTC] [github.com/hyperledger/fabric/gossip/service] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1 -> INFO Initialize gossip with endpoint 172.18.0.5:7051 and bootstrap set [127.0.0.1:7051] +[02f 01-18 09:29:41.50 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +[030 01-18 09:29:41.50 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity +[031 01-18 09:29:41.50 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGTCCAcCgAwIBAgIRALw0jT/FIanMxPg6w2uUMSowCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -67,11 +69,11 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIALSJqGc vdZHCJ0RecVQ2Rdtkdnok57p68XFlRBy2l4xAiAJS6Z2yxyElBubPI0MBn//Xs9l 05n0MbLw/Ug3egJ3JA== -----END CERTIFICATE----- -[030 01-18 01:58:46.68 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -[031 01-18 01:58:46.68 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity -[032 01-18 01:58:46.69 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -[033 01-18 01:58:46.69 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity -> INFO Obtaining identity -[034 01-18 01:58:46.69 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[032 01-18 09:29:41.50 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP +[033 01-18 09:29:41.50 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity +[034 01-18 09:29:41.52 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +[035 01-18 09:29:41.52 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity -> INFO Obtaining identity +[036 01-18 09:29:41.52 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGTCCAcCgAwIBAgIRALw0jT/FIanMxPg6w2uUMSowCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -85,13 +87,11 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIALSJqGc vdZHCJ0RecVQ2Rdtkdnok57p68XFlRBy2l4xAiAJS6Z2yxyElBubPI0MBn//Xs9l 05n0MbLw/Ug3egJ3JA== -----END CERTIFICATE----- -[036 01-18 01:58:46.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -[037 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s -[035 01-18 01:58:46.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewDiscoveryService -> INFO Started {peer0.org1.example.com:7051 [] [67 57 124 107 226 101 123 170 242 161 114 171 7 37 125 129 66 25 246 152 76 9 231 202 239 174 113 90 43 207 127 228] peer0.org1.example.com:7051} incTime is 1516240726695314194 -[038 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService -> INFO Creating gossip service with self membership of {peer0.org1.example.com:7051 [] [67 57 124 107 226 101 123 170 242 161 114 171 7 37 125 129 66 25 246 152 76 9 231 202 239 174 113 90 43 207 127 228] peer0.org1.example.com:7051} -[039 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -[03a 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity -[03b 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[037 01-18 09:29:41.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewDiscoveryService -> INFO Started {peer0.org1.example.com:7051 [] [67 57 124 107 226 101 123 170 242 161 114 171 7 37 125 129 66 25 246 152 76 9 231 202 239 174 113 90 43 207 127 228] 172.18.0.5:7051} incTime is 1516267781527790501 +[038 01-18 09:29:41.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService -> INFO Creating gossip service with self membership of {peer0.org1.example.com:7051 [] [67 57 124 107 226 101 123 170 242 161 114 171 7 37 125 129 66 25 246 152 76 9 231 202 239 174 113 90 43 207 127 228] 172.18.0.5:7051} +[039 01-18 09:29:41.52 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +[03a 01-18 09:29:41.52 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity +[03b 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGTCCAcCgAwIBAgIRALw0jT/FIanMxPg6w2uUMSowCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -105,1131 +105,1133 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIALSJqGc vdZHCJ0RecVQ2Rdtkdnok57p68XFlRBy2l4xAiAJS6Z2yxyElBubPI0MBn//Xs9l 05n0MbLw/Ug3egJ3JA== -----END CERTIFICATE----- -[03c 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -[03d 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity -[03e 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[03f 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[040 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: plaintext: 1801AA01B1060A2043397C6BE2657BAA...0A2D2D2D2D2D454E44202D2D2D2D2D0A -[041 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: digest: 69B0B99854ABC12C15CEC60EABCF9E5C3A71C9284F1136F83AF170B4B7A7CAB3 -[042 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance peer0.org1.example.com:7051 started -[043 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s -[044 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[045 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[046 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 18012ADE060A3F0A1B70656572302E6F...0A2D2D2D2D2D454E44202D2D2D2D2D0A -[047 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: digest: FB2CA073A64C76E9CFBD656CB37101A33E3B5CDAB5C2E9D150311399C4C33E85 -[048 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[049 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[04a 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A1B70656572302E6F7267312E6578616D706C652E636F6D3A37303531 -[04b 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: digest: A785FC0B61B5045A71C0FA6B50D12EB1E6F0CDB152C6F79E6575060F54022160 -[04c 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Skipping connecting to myself -[04d 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.0.2,txid=4e6ad60f-209e-4371-925b-e297e6246b42,syscc=true,proposal=0x0,canname=cscc:1.0.2 -[04e 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode cscc:1.0.2 is being launched -[04f 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -[050 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -[051 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: cscc:1.0.2(networkid:dev,peerid:peer0.org1.example.com) -[052 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -[053 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +[03c 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP +[03d 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity +[03e 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +[03f 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[040 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[041 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: plaintext: 1801AA01B1060A2043397C6BE2657BAA...0A2D2D2D2D2D454E44202D2D2D2D2D0A +[042 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: digest: 69B0B99854ABC12C15CEC60EABCF9E5C3A71C9284F1136F83AF170B4B7A7CAB3 +[043 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.0.2,txid=fc0cac64-84b9-46ed-b4c0-91fdaa715da4,syscc=true,proposal=0x0,canname=cscc:1.0.2 +[044 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode cscc:1.0.2 is being launched +[045 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +[046 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] +[047 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: cscc:1.0.2(networkid:dev,peerid:peer0.org1.example.com) +[048 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 +[049 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: CORE_CHAINCODE_ID_NAME=cscc:1.0.2 CORE_PEER_TLS_ENABLED=true CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -[054 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.0.2) lock -[055 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.0.2) lock -[056 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for cscc-1.0.2 -[057 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.0.2) -[058 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.0.2 -[059 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -[05a 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -[05b 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.0.2 -[05c 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -[05d 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.0.2 -[05e 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -[05f 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -[060 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -[061 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -[062 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode cscc:1.0.2 -[063 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"cscc:1.0.2" , sending back REGISTERED -[064 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -[065 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -[066 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -[067 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -[068 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode cscc:1.0.2 launch seq completed -[069 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -[06a 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[06b 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4e6ad60f]Move state message READY -[06c 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4e6ad60f]Fabric side Handling ChaincodeMessage of type: READY in state established -[06d 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [4e6ad60f]Entered state ready -[06e 01-18 01:58:46.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:4e6ad60f-209e-4371-925b-e297e6246b42 -[06f 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4e6ad60f]sending state message READY -[070 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4e6ad60f]Received message READY from shim -[072 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -[073 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -[074 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -[075 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.2 -[076 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [4e6ad60f]Inside sendExecuteMessage. Message INIT -[077 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[078 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [4e6ad60f]sendExecuteMsg trigger event INIT -[079 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4e6ad60f]Move state message INIT -[07a 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4e6ad60f]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[07b 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[07c 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4e6ad60f]sending state message INIT -[071 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4e6ad60f]Handling ChaincodeMessage of type: READY(state:established) -[07d 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4e6ad60f]Received message INIT from shim -[07e 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4e6ad60f]Handling ChaincodeMessage of type: INIT(state:ready) -[07f 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -[080 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [4e6ad60f]Received INIT, initializing chaincode -[081 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -[082 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP -[083 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4e6ad60f]Init get response status: 200 -[084 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4e6ad60f]Init succeeded. Sending COMPLETED -[085 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4e6ad60f]Move state message COMPLETED -[086 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4e6ad60f]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[087 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4e6ad60f]send state message COMPLETED -[088 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4e6ad60f]Received message COMPLETED from shim -[089 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4e6ad60f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[08a 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4e6ad60f-209e-4371-925b-e297e6246b42]HandleMessage- COMPLETED. Notify -[08b 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:4e6ad60f-209e-4371-925b-e297e6246b42 -[08c 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -[08d 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed -[08e 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.0.2,txid=76bd883f-10b8-454f-9ce2-12866c5ddc22,syscc=true,proposal=0x0,canname=lscc:1.0.2 -[08f 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode lscc:1.0.2 is being launched -[090 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -[091 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -[092 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: lscc:1.0.2(networkid:dev,peerid:peer0.org1.example.com) -[093 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -[094 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +[04a 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.0.2) lock +[04b 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.0.2) lock +[04c 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for cscc-1.0.2 +[04d 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.0.2) +[04e 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance 172.18.0.5:7051 started +[04f 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Skipping connecting to myself +[050 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.0.2 +[051 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +[052 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +[053 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s +[054 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[055 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[056 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s +[058 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.0.2 +[059 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] +[05a 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.0.2 +[05b 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +[05c 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +[05d 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +[05e 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +[05f 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode cscc:1.0.2 +[060 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"cscc:1.0.2" , sending back REGISTERED +[061 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +[062 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +[063 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +[064 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +[065 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode cscc:1.0.2 launch seq completed +[066 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +[067 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[068 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fc0cac64]Move state message READY +[069 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [fc0cac64]Fabric side Handling ChaincodeMessage of type: READY in state established +[06a 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [fc0cac64]Entered state ready +[06b 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:fc0cac64-84b9-46ed-b4c0-91fdaa715da4 +[06c 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fc0cac64]sending state message READY +[057 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 18012ADE060A3F0A1B70656572302E6F...0A2D2D2D2D2D454E44202D2D2D2D2D0A +[06d 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fc0cac64]Received message READY from shim +[070 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [fc0cac64]Handling ChaincodeMessage of type: READY(state:established) +[06e 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +[06f 01-18 09:29:41.53 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: digest: C4545A1D8EB0E529A53C9BA53F3329BA6089EC6AC8F5AA40311CF6A5E8DB5B8B +[071 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +[073 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +[074 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.2 +[075 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [fc0cac64]Inside sendExecuteMessage. Message INIT +[076 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[077 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [fc0cac64]sendExecuteMsg trigger event INIT +[078 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fc0cac64]Move state message INIT +[072 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[07a 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[07b 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A0F3137322E31382E302E353A37303531 +[07c 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: digest: E68B8E19818ACE46C3DFD246ABA5B853F7FCCE686B205B60D19F8048C2CEFF4E +[079 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [fc0cac64]Fabric side Handling ChaincodeMessage of type: INIT in state ready +[07d 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[07e 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fc0cac64]sending state message INIT +[07f 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fc0cac64]Received message INIT from shim +[080 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [fc0cac64]Handling ChaincodeMessage of type: INIT(state:ready) +[081 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +[082 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [fc0cac64]Received INIT, initializing chaincode +[083 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC +[084 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP +[085 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fc0cac64]Init get response status: 200 +[086 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fc0cac64]Init succeeded. Sending COMPLETED +[087 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fc0cac64]Move state message COMPLETED +[088 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [fc0cac64]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[089 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fc0cac64]send state message COMPLETED +[08a 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fc0cac64]Received message COMPLETED from shim +[08b 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [fc0cac64]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[08c 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [fc0cac64-84b9-46ed-b4c0-91fdaa715da4]HandleMessage- COMPLETED. Notify +[08d 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:fc0cac64-84b9-46ed-b4c0-91fdaa715da4 +[08e 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +[08f 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed +[090 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.0.2,txid=f068dd2a-7863-40bd-980b-fa163455eecd,syscc=true,proposal=0x0,canname=lscc:1.0.2 +[091 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode lscc:1.0.2 is being launched +[092 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +[093 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] +[094 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: lscc:1.0.2(networkid:dev,peerid:peer0.org1.example.com) +[095 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 +[096 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: CORE_CHAINCODE_ID_NAME=lscc:1.0.2 CORE_PEER_TLS_ENABLED=true CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -[095 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.0.2) lock -[096 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.0.2) lock -[097 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for lscc-1.0.2 -[098 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.0.2) -[099 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.0.2 -[09a 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -[09b 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -[09c 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.0.2 -[09d 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -[09e 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=lscc:1.0.2 -[09f 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -[0a0 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -[0a1 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -[0a2 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -[0a3 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode lscc:1.0.2 -[0a4 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"lscc:1.0.2" , sending back REGISTERED -[0a5 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -[0a6 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -[0a7 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -[0a8 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -[0a9 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode lscc:1.0.2 launch seq completed -[0aa 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -[0ab 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[0ac 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [76bd883f]Move state message READY -[0ad 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [76bd883f]Fabric side Handling ChaincodeMessage of type: READY in state established -[0ae 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [76bd883f]Entered state ready -[0af 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:76bd883f-10b8-454f-9ce2-12866c5ddc22 -[0b0 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [76bd883f]sending state message READY -[0b1 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [76bd883f]Received message READY from shim -[0b2 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [76bd883f]Handling ChaincodeMessage of type: READY(state:established) -[0b3 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -[0b4 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -[0b5 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -[0b6 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -[0b7 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [76bd883f]Inside sendExecuteMessage. Message INIT -[0b8 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[0b9 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [76bd883f]sendExecuteMsg trigger event INIT -[0ba 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [76bd883f]Move state message INIT -[0bb 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [76bd883f]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[0bc 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[0bd 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [76bd883f]sending state message INIT -[0be 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [76bd883f]Received message INIT from shim -[0bf 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [76bd883f]Handling ChaincodeMessage of type: INIT(state:ready) -[0c0 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -[0c1 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [76bd883f]Received INIT, initializing chaincode -[0c2 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetPolicyChecker.GetPolicyChecker.NewPolicyChecker.GetLocalMSP -> DEBU Returning existing local MSP -[0c3 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [76bd883f]Init get response status: 200 -[0c4 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [76bd883f]Init succeeded. Sending COMPLETED -[0c5 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [76bd883f]Move state message COMPLETED -[0c6 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [76bd883f]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[0c7 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [76bd883f]send state message COMPLETED -[0c8 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [76bd883f]Received message COMPLETED from shim -[0c9 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [76bd883f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[0ca 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [76bd883f-10b8-454f-9ce2-12866c5ddc22]HandleMessage- COMPLETED. Notify -[0cb 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:76bd883f-10b8-454f-9ce2-12866c5ddc22 -[0cc 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -[0cd 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed -[0ce 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=escc,version=1.0.2,txid=ddc87722-6b8f-4ebf-9693-099a66d5e6b6,syscc=true,proposal=0x0,canname=escc:1.0.2 -[0cf 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode escc:1.0.2 is being launched -[0d0 01-18 01:58:46.71 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -[0d1 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -[0d2 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: escc:1.0.2(networkid:dev,peerid:peer0.org1.example.com) -[0d3 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -[0d4 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +[097 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.0.2) lock +[098 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.0.2) lock +[099 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for lscc-1.0.2 +[09a 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.0.2) +[09b 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.0.2 +[09c 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +[09d 01-18 09:29:41.54 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.0.2 +[09f 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] +[0a0 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=lscc:1.0.2 +[0a1 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +[09e 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +[0a2 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +[0a3 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +[0a4 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +[0a5 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode lscc:1.0.2 +[0a6 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"lscc:1.0.2" , sending back REGISTERED +[0a7 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +[0a9 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +[0aa 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +[0a8 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +[0ab 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode lscc:1.0.2 launch seq completed +[0ac 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +[0ad 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[0ae 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f068dd2a]Move state message READY +[0af 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f068dd2a]Fabric side Handling ChaincodeMessage of type: READY in state established +[0b0 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [f068dd2a]Entered state ready +[0b1 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:f068dd2a-7863-40bd-980b-fa163455eecd +[0b2 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f068dd2a]sending state message READY +[0b4 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f068dd2a]Received message READY from shim +[0b5 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f068dd2a]Handling ChaincodeMessage of type: READY(state:established) +[0b3 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +[0b6 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +[0b7 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +[0b8 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +[0b9 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [f068dd2a]Inside sendExecuteMessage. Message INIT +[0ba 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[0bb 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [f068dd2a]sendExecuteMsg trigger event INIT +[0bc 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f068dd2a]Move state message INIT +[0bd 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f068dd2a]Fabric side Handling ChaincodeMessage of type: INIT in state ready +[0be 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[0bf 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f068dd2a]sending state message INIT +[0c0 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f068dd2a]Received message INIT from shim +[0c1 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f068dd2a]Handling ChaincodeMessage of type: INIT(state:ready) +[0c2 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +[0c3 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [f068dd2a]Received INIT, initializing chaincode +[0c4 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetPolicyChecker.GetPolicyChecker.NewPolicyChecker.GetLocalMSP -> DEBU Returning existing local MSP +[0c5 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f068dd2a]Init get response status: 200 +[0c6 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f068dd2a]Init succeeded. Sending COMPLETED +[0c7 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f068dd2a]Move state message COMPLETED +[0c8 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f068dd2a]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[0c9 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f068dd2a]send state message COMPLETED +[0ca 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f068dd2a]Received message COMPLETED from shim +[0cb 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f068dd2a]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[0cc 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f068dd2a-7863-40bd-980b-fa163455eecd]HandleMessage- COMPLETED. Notify +[0cd 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:f068dd2a-7863-40bd-980b-fa163455eecd +[0ce 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +[0cf 01-18 09:29:41.55 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed +[0d0 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=escc,version=1.0.2,txid=e1e00b3e-00e2-49c2-9141-3cdf240cfb1b,syscc=true,proposal=0x0,canname=escc:1.0.2 +[0d1 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode escc:1.0.2 is being launched +[0d2 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +[0d3 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] +[0d4 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: escc:1.0.2(networkid:dev,peerid:peer0.org1.example.com) +[0d5 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 +[0d6 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: CORE_CHAINCODE_ID_NAME=escc:1.0.2 CORE_PEER_TLS_ENABLED=true CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -[0d5 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(escc-1.0.2) lock -[0d6 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (escc-1.0.2) lock -[0d7 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for escc-1.0.2 -[0d8 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(escc-1.0.2) -[0d9 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for escc-1.0.2 -[0da 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -[0dc 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for escc-1.0.2 -[0db 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -[0dd 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -[0de 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=escc:1.0.2 -[0df 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -[0e0 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -[0e1 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -[0e2 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -[0e3 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode escc:1.0.2 -[0e4 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"escc:1.0.2" , sending back REGISTERED -[0e5 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -[0e7 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -[0e8 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -[0e6 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -[0e9 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode escc:1.0.2 launch seq completed -[0ea 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -[0eb 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[0ec 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ddc87722]Move state message READY -[0ed 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ddc87722]Fabric side Handling ChaincodeMessage of type: READY in state established -[0ee 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [ddc87722]Entered state ready -[0ef 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:ddc87722-6b8f-4ebf-9693-099a66d5e6b6 -[0f0 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ddc87722]sending state message READY -[0f1 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ddc87722]Received message READY from shim -[0f2 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ddc87722]Handling ChaincodeMessage of type: READY(state:established) -[0f3 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -[0f4 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -[0f5 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -[0f6 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 -[0f7 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [ddc87722]Inside sendExecuteMessage. Message INIT -[0f8 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[0f9 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [ddc87722]sendExecuteMsg trigger event INIT -[0fa 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ddc87722]Move state message INIT -[0fb 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ddc87722]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[0fc 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[0fd 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ddc87722]sending state message INIT -[0fe 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ddc87722]Received message INIT from shim -[0ff 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ddc87722]Handling ChaincodeMessage of type: INIT(state:ready) -[100 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -[101 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [ddc87722]Received INIT, initializing chaincode -[102 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC -[103 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ddc87722]Init get response status: 200 -[104 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ddc87722]Init succeeded. Sending COMPLETED -[105 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ddc87722]Move state message COMPLETED -[106 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ddc87722]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[107 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ddc87722]send state message COMPLETED -[108 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ddc87722]Received message COMPLETED from shim -[109 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ddc87722]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[10a 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ddc87722-6b8f-4ebf-9693-099a66d5e6b6]HandleMessage- COMPLETED. Notify -[10b 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:ddc87722-6b8f-4ebf-9693-099a66d5e6b6 -[10c 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -[10d 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode escc/(github.com/hyperledger/fabric/core/scc/escc) deployed -[10e 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=vscc,version=1.0.2,txid=b779b768-0068-4aca-8f72-c87db67d87f3,syscc=true,proposal=0x0,canname=vscc:1.0.2 -[10f 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode vscc:1.0.2 is being launched -[110 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -[111 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -[112 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: vscc:1.0.2(networkid:dev,peerid:peer0.org1.example.com) -[113 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -[114 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +[0d7 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(escc-1.0.2) lock +[0d8 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (escc-1.0.2) lock +[0d9 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for escc-1.0.2 +[0da 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(escc-1.0.2) +[0db 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for escc-1.0.2 +[0dd 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +[0dc 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for escc-1.0.2 +[0df 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] +[0de 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +[0e0 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=escc:1.0.2 +[0e1 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +[0e2 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +[0e3 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +[0e4 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +[0e5 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode escc:1.0.2 +[0e6 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"escc:1.0.2" , sending back REGISTERED +[0e7 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +[0e8 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +[0e9 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +[0ea 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +[0eb 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode escc:1.0.2 launch seq completed +[0ec 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +[0ed 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[0ee 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e1e00b3e]Move state message READY +[0ef 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e1e00b3e]Fabric side Handling ChaincodeMessage of type: READY in state established +[0f0 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [e1e00b3e]Entered state ready +[0f1 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:e1e00b3e-00e2-49c2-9141-3cdf240cfb1b +[0f2 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e1e00b3e]sending state message READY +[0f3 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +[0f5 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +[0f4 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e1e00b3e]Received message READY from shim +[0f7 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e1e00b3e]Handling ChaincodeMessage of type: READY(state:established) +[0f6 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +[0f8 01-18 09:29:41.56 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 +[0f9 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [e1e00b3e]Inside sendExecuteMessage. Message INIT +[0fa 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[0fb 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [e1e00b3e]sendExecuteMsg trigger event INIT +[0fc 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e1e00b3e]Move state message INIT +[0fd 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e1e00b3e]Fabric side Handling ChaincodeMessage of type: INIT in state ready +[0fe 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[0ff 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e1e00b3e]sending state message INIT +[100 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e1e00b3e]Received message INIT from shim +[101 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e1e00b3e]Handling ChaincodeMessage of type: INIT(state:ready) +[102 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +[103 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [e1e00b3e]Received INIT, initializing chaincode +[104 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC +[105 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e1e00b3e]Init get response status: 200 +[106 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e1e00b3e]Init succeeded. Sending COMPLETED +[107 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e1e00b3e]Move state message COMPLETED +[108 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e1e00b3e]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[109 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e1e00b3e]send state message COMPLETED +[10a 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e1e00b3e]Received message COMPLETED from shim +[10b 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e1e00b3e]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[10c 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e1e00b3e-00e2-49c2-9141-3cdf240cfb1b]HandleMessage- COMPLETED. Notify +[10d 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:e1e00b3e-00e2-49c2-9141-3cdf240cfb1b +[10e 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +[10f 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode escc/(github.com/hyperledger/fabric/core/scc/escc) deployed +[110 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=vscc,version=1.0.2,txid=dfb09567-165f-42b1-8d94-19e8ac9cdc67,syscc=true,proposal=0x0,canname=vscc:1.0.2 +[111 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode vscc:1.0.2 is being launched +[112 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +[113 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] +[114 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: vscc:1.0.2(networkid:dev,peerid:peer0.org1.example.com) +[115 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 +[116 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: CORE_CHAINCODE_ID_NAME=vscc:1.0.2 CORE_PEER_TLS_ENABLED=true CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -[115 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(vscc-1.0.2) lock -[116 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (vscc-1.0.2) lock -[117 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for vscc-1.0.2 -[119 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for vscc-1.0.2 -[11a 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -[11b 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -[11c 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for vscc-1.0.2 -[11d 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -[11e 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=vscc:1.0.2 -[11f 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -[120 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -[121 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -[122 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -[123 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode vscc:1.0.2 -[124 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"vscc:1.0.2" , sending back REGISTERED -[125 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -[126 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -[127 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -[128 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -[118 01-18 01:58:46.72 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(vscc-1.0.2) -[129 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode vscc:1.0.2 launch seq completed -[12a 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -[12b 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[12c 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b779b768]Move state message READY -[12d 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b779b768]Fabric side Handling ChaincodeMessage of type: READY in state established -[12e 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [b779b768]Entered state ready -[12f 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:b779b768-0068-4aca-8f72-c87db67d87f3 -[131 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -[132 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -[133 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -[134 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 -[135 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [b779b768]Inside sendExecuteMessage. Message INIT -[136 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[137 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [b779b768]sendExecuteMsg trigger event INIT -[130 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b779b768]sending state message READY -[138 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b779b768]Received message READY from shim -[139 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b779b768]Handling ChaincodeMessage of type: READY(state:established) -[13a 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b779b768]Move state message INIT -[13b 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b779b768]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[13c 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[13d 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b779b768]sending state message INIT -[13e 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b779b768]Received message INIT from shim -[13f 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b779b768]Handling ChaincodeMessage of type: INIT(state:ready) -[140 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -[141 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [b779b768]Received INIT, initializing chaincode -[142 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b779b768]Init get response status: 200 -[143 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b779b768]Init succeeded. Sending COMPLETED -[144 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b779b768]Move state message COMPLETED -[145 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b779b768]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[146 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b779b768]send state message COMPLETED -[147 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b779b768]Received message COMPLETED from shim -[148 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b779b768]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[149 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b779b768-0068-4aca-8f72-c87db67d87f3]HandleMessage- COMPLETED. Notify -[14a 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:b779b768-0068-4aca-8f72-c87db67d87f3 -[14b 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -[14c 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/(github.com/hyperledger/fabric/core/scc/vscc) deployed -[14d 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=qscc,version=1.0.2,txid=95b30129-1f02-4a31-b36e-3adf2dc2b571,syscc=true,proposal=0x0,canname=qscc:1.0.2 -[14e 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode qscc:1.0.2 is being launched -[14f 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -[150 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -[151 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: qscc:1.0.2(networkid:dev,peerid:peer0.org1.example.com) -[152 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -[153 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +[117 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(vscc-1.0.2) lock +[118 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (vscc-1.0.2) lock +[119 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for vscc-1.0.2 +[11a 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(vscc-1.0.2) +[11b 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for vscc-1.0.2 +[11d 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +[11c 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for vscc-1.0.2 +[11e 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] +[11f 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=vscc:1.0.2 +[120 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +[121 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +[122 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +[123 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +[124 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +[125 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode vscc:1.0.2 +[126 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"vscc:1.0.2" , sending back REGISTERED +[127 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +[128 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +[12a 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +[129 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode vscc:1.0.2 launch seq completed +[12b 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +[12d 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[12c 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +[12e 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dfb09567]Move state message READY +[12f 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [dfb09567]Fabric side Handling ChaincodeMessage of type: READY in state established +[130 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [dfb09567]Entered state ready +[131 01-18 09:29:41.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:dfb09567-165f-42b1-8d94-19e8ac9cdc67 +[132 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dfb09567]sending state message READY +[133 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +[135 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +[134 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dfb09567]Received message READY from shim +[136 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +[138 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 +[139 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [dfb09567]Inside sendExecuteMessage. Message INIT +[13a 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[13b 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [dfb09567]sendExecuteMsg trigger event INIT +[13c 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dfb09567]Move state message INIT +[13d 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [dfb09567]Fabric side Handling ChaincodeMessage of type: INIT in state ready +[13e 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[137 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [dfb09567]Handling ChaincodeMessage of type: READY(state:established) +[13f 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dfb09567]sending state message INIT +[140 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dfb09567]Received message INIT from shim +[141 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [dfb09567]Handling ChaincodeMessage of type: INIT(state:ready) +[142 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +[143 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [dfb09567]Received INIT, initializing chaincode +[144 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dfb09567]Init get response status: 200 +[145 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dfb09567]Init succeeded. Sending COMPLETED +[146 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dfb09567]Move state message COMPLETED +[147 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [dfb09567]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[148 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dfb09567]send state message COMPLETED +[149 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [dfb09567]Received message COMPLETED from shim +[14a 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [dfb09567]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[14b 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [dfb09567-165f-42b1-8d94-19e8ac9cdc67]HandleMessage- COMPLETED. Notify +[14c 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:dfb09567-165f-42b1-8d94-19e8ac9cdc67 +[14d 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +[14e 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/(github.com/hyperledger/fabric/core/scc/vscc) deployed +[14f 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=qscc,version=1.0.2,txid=2a941606-1e82-4f60-88c0-cb3562d3862c,syscc=true,proposal=0x0,canname=qscc:1.0.2 +[150 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode qscc:1.0.2 is being launched +[151 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +[152 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] +[153 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: qscc:1.0.2(networkid:dev,peerid:peer0.org1.example.com) +[154 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 +[155 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: CORE_CHAINCODE_ID_NAME=qscc:1.0.2 CORE_PEER_TLS_ENABLED=true CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -[154 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.0.2) lock -[155 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.0.2) lock -[156 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for qscc-1.0.2 -[157 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.0.2) -[159 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.0.2 -[15a 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -[15b 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.0.2 -[15c 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -[158 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.0.2 -[15d 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -[15e 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -[15f 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -[160 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -[161 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -[162 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode qscc:1.0.2 -[163 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"qscc:1.0.2" , sending back REGISTERED -[165 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -[166 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -[167 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -[164 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -[168 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode qscc:1.0.2 launch seq completed -[169 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -[16a 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[16b 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [95b30129]Move state message READY -[16c 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [95b30129]Fabric side Handling ChaincodeMessage of type: READY in state established -[16d 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [95b30129]Entered state ready -[16e 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:95b30129-1f02-4a31-b36e-3adf2dc2b571 -[16f 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [95b30129]sending state message READY -[170 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [95b30129]Received message READY from shim -[172 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -[173 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -[174 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -[175 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.2 -[176 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [95b30129]Inside sendExecuteMessage. Message INIT -[177 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[178 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [95b30129]sendExecuteMsg trigger event INIT -[179 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [95b30129]Move state message INIT -[17a 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [95b30129]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[17b 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[17c 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [95b30129]sending state message INIT -[171 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [95b30129]Handling ChaincodeMessage of type: READY(state:established) -[17d 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [95b30129]Received message INIT from shim -[17e 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [95b30129]Handling ChaincodeMessage of type: INIT(state:ready) -[17f 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -[180 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [95b30129]Received INIT, initializing chaincode -[181 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -[182 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP -[183 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [95b30129]Init get response status: 200 -[184 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [95b30129]Init succeeded. Sending COMPLETED -[185 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [95b30129]Move state message COMPLETED -[186 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [95b30129]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[187 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [95b30129]send state message COMPLETED -[188 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [95b30129]Received message COMPLETED from shim -[189 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [95b30129]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[18a 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [95b30129-1f02-4a31-b36e-3adf2dc2b571]HandleMessage- COMPLETED. Notify -[18b 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:95b30129-1f02-4a31-b36e-3adf2dc2b571 -[18c 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -[18d 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/chaincode/qscc) deployed -[18e 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.initSysCCs -> INFO Deployed system chaincodess -[18f 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with ID=[name:"peer0.org1.example.com" ], network ID=[dev], address=[peer0.org1.example.com:7051] -[190 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Started peer with ID=[name:"peer0.org1.example.com" ], network ID=[dev], address=[peer0.org1.example.com:7051] -[191 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'msp/identity' logger enabled for log level 'WARNING' -[192 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'msp' logger enabled for log level 'WARNING' -[193 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'configvalues/msp' logger enabled for log level 'WARNING' -[194 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/election' logger enabled for log level 'WARNING' -[195 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'peer/gossip/mcs' logger enabled for log level 'WARNING' -[196 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'peer/gossip/sa' logger enabled for log level 'WARNING' -[197 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/state' logger enabled for log level 'WARNING' -[198 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/service' logger enabled for log level 'WARNING' -[199 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/discovery' logger enabled for log level 'WARNING' -[19a 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/gossip' logger enabled for log level 'WARNING' -[19b 01-18 01:58:46.73 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/pull' logger enabled for log level 'WARNING' -[19c 01-18 01:58:46.74 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/comm' logger enabled for log level 'WARNING' -[19d 01-18 01:58:46.74 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'kvledger' logger enabled for log level 'INFO' -[19e 01-18 01:58:46.74 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'kvledger.util' logger enabled for log level 'INFO' -[19f 01-18 01:58:46.74 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'ledgermgmt' logger enabled for log level 'INFO' -[1a0 01-18 01:58:46.74 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'cauthdsl' logger enabled for log level 'WARNING' -[1a1 01-18 01:58:46.74 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'policies' logger enabled for log level 'WARNING' -[1a2 01-18 01:58:46.74 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'grpc' logger enabled for log level 'ERROR' -[1a3 01-18 01:58:52.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -[1a4 01-18 01:58:52.56 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421739770 -[1a5 01-18 01:58:52.56 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -[1a6 01-18 01:58:52.56 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[1a7 01-18 01:58:52.56 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -[1a8 01-18 01:58:52.56 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[1a9 01-18 01:58:52.57 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[1aa 01-18 01:58:52.57 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421741040, header 0xc421739800 -[1ab 01-18 01:58:52.57 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"cscc" -[1ac 01-18 01:58:52.57 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 9a812e3c2cfcc8f8b117f8b54e442fd0889aa7ba2d8f513bd13e29ea55fa0824 -[1ad 01-18 01:58:52.57 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 9a812e3c2cfcc8f8b117f8b54e442fd0889aa7ba2d8f513bd13e29ea55fa0824 channel id: -[1ae 01-18 01:58:52.57 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 9a812e3c2cfcc8f8b117f8b54e442fd0889aa7ba2d8f513bd13e29ea55fa0824 channel id: version: 1.0.2 -[1af 01-18 01:58:52.57 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.0.2,txid=9a812e3c2cfcc8f8b117f8b54e442fd0889aa7ba2d8f513bd13e29ea55fa0824,syscc=true,proposal=0xc421741040,canname=cscc:1.0.2 -[1b0 01-18 01:58:52.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.0.2 -[1b1 01-18 01:58:52.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[1b2 01-18 01:58:52.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.2 -[1b3 01-18 01:58:52.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9a812e3c]Inside sendExecuteMessage. Message TRANSACTION -[1b4 01-18 01:58:52.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[1b5 01-18 01:58:52.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[1b6 01-18 01:58:52.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9a812e3c]sendExecuteMsg trigger event TRANSACTION -[1b7 01-18 01:58:52.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9a812e3c]Move state message TRANSACTION -[1b8 01-18 01:58:52.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9a812e3c]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[1b9 01-18 01:58:52.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[1ba 01-18 01:58:52.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9a812e3c]sending state message TRANSACTION -[1bb 01-18 01:58:52.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9a812e3c]Received message TRANSACTION from shim -[1bc 01-18 01:58:52.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9a812e3c]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[1bd 01-18 01:58:52.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [9a812e3c]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[1be 01-18 01:58:52.57 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain -[1bf 01-18 01:58:52.57 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block -[1c0 01-18 01:58:52.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel -[1c1 01-18 01:58:52.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncCPInfoFromFS -> DEBU Starting checkpoint=latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0] -[1c2 01-18 01:58:52.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncCPInfoFromFS -> DEBU status of file [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/blockfile_000000]: exists=[false], size=[0] -[1c3 01-18 01:58:52.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockHash BlockNum TxID BlockNumTranNum BlockTxID TxValidationCode]] -[1c4 01-18 01:58:52.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/ledgersData/chains/chains/businesschannel/blockfile_000000], startOffset=[0] -[1c5 01-18 01:58:52.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Finished reading file number [0] -[1c6 01-18 01:58:52.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [0] read from file [0] -[1c7 01-18 01:58:52.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -[1c8 01-18 01:58:52.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc42171cd40), Data:(*common.BlockData)(0xc4217b4580), Metadata:(*common.BlockMetadata)(0xc4217b45c0)}, doMVCCValidation=true -[1c9 01-18 01:58:52.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -[1ca 01-18 01:58:52.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [0] Transaction index [0] because, the transaction type is [CONFIG] -[1cb 01-18 01:58:52.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0xe1, 0x44, 0x7d, 0x23, 0xdf, 0xa2, 0x20, 0x82, 0xd4, 0xe4, 0x74, 0x4d, 0x77, 0xfd, 0x41, 0x93, 0xb7, 0xdb, 0xc6, 0xb0, 0x34, 0x30, 0xc2, 0xa7, 0xc6, 0x50, 0xfb, 0x2b, 0x1c, 0x26, 0xcf, 0x43} txOffsets= +[156 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.0.2) lock +[157 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.0.2) lock +[158 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for qscc-1.0.2 +[15a 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.0.2 +[15b 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +[15c 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +[15d 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.0.2 +[15e 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] +[15f 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.0.2 +[160 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +[161 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +[162 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +[163 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +[164 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode qscc:1.0.2 +[165 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"qscc:1.0.2" , sending back REGISTERED +[166 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +[167 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +[168 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +[169 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +[159 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.0.2) +[16a 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode qscc:1.0.2 launch seq completed +[16b 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +[16c 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[16d 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2a941606]Move state message READY +[16e 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2a941606]Fabric side Handling ChaincodeMessage of type: READY in state established +[16f 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [2a941606]Entered state ready +[170 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:2a941606-1e82-4f60-88c0-cb3562d3862c +[171 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2a941606]sending state message READY +[172 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2a941606]Received message READY from shim +[174 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +[175 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +[176 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +[177 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.2 +[178 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [2a941606]Inside sendExecuteMessage. Message INIT +[179 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[17a 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [2a941606]sendExecuteMsg trigger event INIT +[17b 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2a941606]Move state message INIT +[17c 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2a941606]Fabric side Handling ChaincodeMessage of type: INIT in state ready +[17d 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[17e 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2a941606]sending state message INIT +[173 01-18 09:29:41.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2a941606]Handling ChaincodeMessage of type: READY(state:established) +[17f 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2a941606]Received message INIT from shim +[180 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2a941606]Handling ChaincodeMessage of type: INIT(state:ready) +[181 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +[182 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [2a941606]Received INIT, initializing chaincode +[183 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC +[184 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP +[185 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2a941606]Init get response status: 200 +[186 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2a941606]Init succeeded. Sending COMPLETED +[187 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2a941606]Move state message COMPLETED +[188 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2a941606]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[189 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2a941606]send state message COMPLETED +[18a 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2a941606]Received message COMPLETED from shim +[18b 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2a941606]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[18c 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2a941606-1e82-4f60-88c0-cb3562d3862c]HandleMessage- COMPLETED. Notify +[18d 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:2a941606-1e82-4f60-88c0-cb3562d3862c +[18e 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +[18f 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/chaincode/qscc) deployed +[190 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.initSysCCs -> INFO Deployed system chaincodess +[191 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with ID=[name:"peer0.org1.example.com" ], network ID=[dev], address=[172.18.0.5:7051] +[192 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Started peer with ID=[name:"peer0.org1.example.com" ], network ID=[dev], address=[172.18.0.5:7051] +[193 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'configvalues/msp' logger enabled for log level 'WARNING' +[194 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'msp/identity' logger enabled for log level 'WARNING' +[195 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'msp' logger enabled for log level 'WARNING' +[196 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/service' logger enabled for log level 'WARNING' +[197 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/discovery' logger enabled for log level 'WARNING' +[198 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/comm' logger enabled for log level 'WARNING' +[199 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/gossip' logger enabled for log level 'WARNING' +[19a 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/election' logger enabled for log level 'WARNING' +[19b 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/state' logger enabled for log level 'WARNING' +[19c 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'peer/gossip/mcs' logger enabled for log level 'WARNING' +[19d 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'peer/gossip/sa' logger enabled for log level 'WARNING' +[19e 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/pull' logger enabled for log level 'WARNING' +[19f 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'kvledger' logger enabled for log level 'INFO' +[1a0 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'kvledger.util' logger enabled for log level 'INFO' +[1a1 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'ledgermgmt' logger enabled for log level 'INFO' +[1a2 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'cauthdsl' logger enabled for log level 'WARNING' +[1a3 01-18 09:29:41.59 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'policies' logger enabled for log level 'WARNING' +[1a4 01-18 09:29:41.60 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'grpc' logger enabled for log level 'ERROR' +[1a5 01-18 09:29:45.16 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +[1a6 01-18 09:29:45.16 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4215706c0 +[1a7 01-18 09:29:45.19 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +[1a8 01-18 09:29:45.19 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[1a9 01-18 09:29:45.19 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +[1aa 01-18 09:29:45.19 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[1ab 01-18 09:29:45.19 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[1ac 01-18 09:29:45.19 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4202c36d0, header 0xc421570780 +[1ad 01-18 09:29:45.19 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"cscc" +[1ae 01-18 09:29:45.19 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: cd1eaf52a53d002bbdb24e980ef6bbd201f81405edc8a213f22f571fbe612492 +[1af 01-18 09:29:45.19 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: cd1eaf52a53d002bbdb24e980ef6bbd201f81405edc8a213f22f571fbe612492 channel id: +[1b0 01-18 09:29:45.19 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: cd1eaf52a53d002bbdb24e980ef6bbd201f81405edc8a213f22f571fbe612492 channel id: version: 1.0.2 +[1b1 01-18 09:29:45.19 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.0.2,txid=cd1eaf52a53d002bbdb24e980ef6bbd201f81405edc8a213f22f571fbe612492,syscc=true,proposal=0xc4202c36d0,canname=cscc:1.0.2 +[1b2 01-18 09:29:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.0.2 +[1b3 01-18 09:29:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[1b4 01-18 09:29:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.2 +[1b5 01-18 09:29:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [cd1eaf52]Inside sendExecuteMessage. Message TRANSACTION +[1b6 01-18 09:29:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[1b7 01-18 09:29:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[1b8 01-18 09:29:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [cd1eaf52]sendExecuteMsg trigger event TRANSACTION +[1b9 01-18 09:29:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cd1eaf52]Move state message TRANSACTION +[1ba 01-18 09:29:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [cd1eaf52]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[1bb 01-18 09:29:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[1bc 01-18 09:29:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cd1eaf52]sending state message TRANSACTION +[1bd 01-18 09:29:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cd1eaf52]Received message TRANSACTION from shim +[1be 01-18 09:29:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [cd1eaf52]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[1bf 01-18 09:29:45.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [cd1eaf52]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[1c0 01-18 09:29:45.19 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain +[1c1 01-18 09:29:45.20 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block +[1c2 01-18 09:29:45.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel +[1c3 01-18 09:29:45.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncCPInfoFromFS -> DEBU Starting checkpoint=latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0] +[1c4 01-18 09:29:45.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncCPInfoFromFS -> DEBU status of file [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/blockfile_000000]: exists=[false], size=[0] +[1c5 01-18 09:29:45.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockHash BlockNum TxID BlockNumTranNum BlockTxID TxValidationCode]] +[1c6 01-18 09:29:45.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/ledgersData/chains/chains/businesschannel/blockfile_000000], startOffset=[0] +[1c7 01-18 09:29:45.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Finished reading file number [0] +[1c8 01-18 09:29:45.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [0] read from file [0] +[1c9 01-18 09:29:45.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +[1ca 01-18 09:29:45.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc42015e680), Data:(*common.BlockData)(0xc4215ce900), Metadata:(*common.BlockMetadata)(0xc4215ce940)}, doMVCCValidation=true +[1cb 01-18 09:29:45.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +[1cc 01-18 09:29:45.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [0] Transaction index [0] because, the transaction type is [CONFIG] +[1cd 01-18 09:29:45.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0xbf, 0xac, 0x7a, 0x9c, 0x41, 0x40, 0xd9, 0x48, 0x88, 0x7, 0x81, 0xf5, 0x7b, 0xed, 0xd0, 0x38, 0xe1, 0x79, 0xd0, 0xac, 0x73, 0x8c, 0xd3, 0x69, 0xb5, 0x49, 0x90, 0xfb, 0x97, 0x6a, 0x22, 0xf5} txOffsets= txId= locPointer=offset=38, bytesLength=11891 ] -[1cc 01-18 01:58:52.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=11891] for tx ID: [] to index -[1cd 01-18 01:58:52.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=11891] for tx number:[0] ID: [] to blockNumTranNum index -[1ce 01-18 01:58:52.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[11935], isChainEmpty=[false], lastBlockNumber=[0] -[1cf 01-18 01:58:52.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit -> INFO Channel [businesschannel]: Created block [0] with 1 transaction(s) -[1d0 01-18 01:58:52.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Committing updates to state database -[1d1 01-18 01:58:52.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -[1d2 01-18 01:58:52.59 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Updates committed to state database -[1d3 01-18 01:58:52.59 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [0] with [1] transactions -[1d4 01-18 01:58:52.59 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -[1d5 01-18 01:58:52.59 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [0] -[1d6 01-18 01:58:52.59 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block -[1d7 01-18 01:58:52.59 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -[1d8 01-18 01:58:52.59 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[1d9 01-18 01:58:52.59 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[1da 01-18 01:58:52.59 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[1db 01-18 01:58:52.59 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[1dc 01-18 01:58:52.59 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[1dd 01-18 01:58:52.59 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[1de 01-18 01:58:52.59 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[1df 01-18 01:58:52.59 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -[1e0 01-18 01:58:52.59 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[1e1 01-18 01:58:52.59 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[1e2 01-18 01:58:52.59 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[1e3 01-18 01:58:52.59 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[1e4 01-18 01:58:52.59 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -[1e5 01-18 01:58:52.59 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[1e6 01-18 01:58:52.59 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[1e7 01-18 01:58:52.59 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[1e8 01-18 01:58:52.59 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[1e9 01-18 01:58:52.59 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[1ea 01-18 01:58:52.59 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[1eb 01-18 01:58:52.59 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -[1ec 01-18 01:58:52.59 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -[1ed 01-18 01:58:52.59 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -[1ee 01-18 01:58:52.59 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[1ef 01-18 01:58:52.59 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[1f0 01-18 01:58:52.59 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[1f1 01-18 01:58:52.59 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -[1f2 01-18 01:58:52.59 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -[1f3 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -[1f4 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -[1f5 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[1f6 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[1f7 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[1f8 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[1f9 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -[1fa 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -[1fb 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -[1fc 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -[1fd 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[1fe 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[1ff 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[200 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel -[201 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -[202 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[203 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[204 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[205 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[206 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -[207 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[208 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[209 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[20a 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[20b 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[20c 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[20d 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[20e 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[20f 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[210 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[211 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[212 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[213 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -[214 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[215 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[216 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[217 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[218 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[219 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[21a 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[21b 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are -[21c 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[21d 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -[21e 01-18 01:58:52.60 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[21f 01-18 01:58:52.61 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[220 01-18 01:58:52.61 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -[221 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -[222 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -[223 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -[224 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -[225 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.InitChain -> DEBU Init chain businesschannel -[226 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.joinChain.InitChain.func2 -> DEBU Deploying system CC, for chain -[227 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[228 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [61c6d196-c80c-40bd-8f37-de29b630278a] -[229 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=cscc,version=1.0.2,txid=8b8168bc-ebd3-46b8-a2e4-7dd16faa3728,syscc=true,proposal=0x0,canname=cscc:1.0.2 -[22a 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.0.2 -[22b 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -[22c 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.2 -[22d 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [8b8168bc]Inside sendExecuteMessage. Message INIT -[22e 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[22f 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [8b8168bc]sendExecuteMsg trigger event INIT -[230 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8b8168bc]Move state message INIT -[231 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8b8168bc]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[232 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[233 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8b8168bc]sending state message INIT -[234 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8b8168bc]Received message INIT from shim -[235 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8b8168bc]Handling ChaincodeMessage of type: INIT(state:ready) -[236 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -[237 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [8b8168bc]Received INIT, initializing chaincode -[238 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -[239 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8b8168bc]Init get response status: 200 -[23a 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8b8168bc]Init succeeded. Sending COMPLETED -[23b 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8b8168bc]Move state message COMPLETED -[23c 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8b8168bc]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[23d 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8b8168bc]send state message COMPLETED -[23e 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8b8168bc]Received message COMPLETED from shim -[23f 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8b8168bc]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[240 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8b8168bc-ebd3-46b8-a2e4-7dd16faa3728]HandleMessage- COMPLETED. Notify -[241 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:8b8168bc-ebd3-46b8-a2e4-7dd16faa3728 -[242 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -[243 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed -[244 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [61c6d196-c80c-40bd-8f37-de29b630278a] -[245 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[246 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [6a126f0a-eca2-4f59-8039-364e40e40984] -[247 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=722e691b-fdd9-4e1a-b7d1-86ccce182f8c,syscc=true,proposal=0x0,canname=lscc:1.0.2 -[248 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 -[249 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -[24a 01-18 01:58:52.62 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -[24b 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [722e691b]Inside sendExecuteMessage. Message INIT -[24c 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[24d 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [722e691b]sendExecuteMsg trigger event INIT -[24e 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [722e691b]Move state message INIT -[24f 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [722e691b]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[250 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[251 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [722e691b]sending state message INIT -[252 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [722e691b]Received message INIT from shim -[253 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [722e691b]Handling ChaincodeMessage of type: INIT(state:ready) -[254 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -[255 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [722e691b]Received INIT, initializing chaincode -[256 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [722e691b]Init get response status: 200 -[257 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [722e691b]Init succeeded. Sending COMPLETED -[258 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [722e691b]Move state message COMPLETED -[259 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [722e691b]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[25a 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [722e691b]send state message COMPLETED -[25b 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [722e691b]Received message COMPLETED from shim -[25c 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [722e691b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[25d 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [722e691b-fdd9-4e1a-b7d1-86ccce182f8c]HandleMessage- COMPLETED. Notify -[25e 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:722e691b-fdd9-4e1a-b7d1-86ccce182f8c -[25f 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -[260 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed -[261 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [6a126f0a-eca2-4f59-8039-364e40e40984] -[262 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[263 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [38520231-1dbe-4a5a-955d-f85c9426f01d] -[264 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=1222de68-b8a8-42e1-a6a1-2f9173d7f65a,syscc=true,proposal=0x0,canname=escc:1.0.2 -[265 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 -[266 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -[267 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 -[268 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [1222de68]Inside sendExecuteMessage. Message INIT -[269 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[26a 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [1222de68]sendExecuteMsg trigger event INIT -[26b 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1222de68]Move state message INIT -[26c 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1222de68]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[26d 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[26e 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1222de68]sending state message INIT -[26f 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1222de68]Received message INIT from shim -[270 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1222de68]Handling ChaincodeMessage of type: INIT(state:ready) -[271 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -[272 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [1222de68]Received INIT, initializing chaincode -[273 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC -[274 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1222de68]Init get response status: 200 -[275 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1222de68]Init succeeded. Sending COMPLETED -[276 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1222de68]Move state message COMPLETED -[277 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1222de68]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[278 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1222de68]send state message COMPLETED -[279 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1222de68]Received message COMPLETED from shim -[27a 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1222de68]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[27b 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1222de68-b8a8-42e1-a6a1-2f9173d7f65a]HandleMessage- COMPLETED. Notify -[27c 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:1222de68-b8a8-42e1-a6a1-2f9173d7f65a -[27d 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -[27e 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode escc/businesschannel(github.com/hyperledger/fabric/core/scc/escc) deployed -[27f 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [38520231-1dbe-4a5a-955d-f85c9426f01d] -[280 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[281 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [1b7167ca-3b4e-4df0-8c4d-bbefcb25f31c] -[282 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=0692cc16-7dc0-4d66-8e77-393d6290c2d0,syscc=true,proposal=0x0,canname=vscc:1.0.2 -[283 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 -[284 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -[285 01-18 01:58:52.63 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 -[286 01-18 01:58:52.64 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [0692cc16]Inside sendExecuteMessage. Message INIT -[287 01-18 01:58:52.64 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[288 01-18 01:58:52.64 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [0692cc16]sendExecuteMsg trigger event INIT -[289 01-18 01:58:52.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0692cc16]Move state message INIT -[28a 01-18 01:58:52.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0692cc16]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[28b 01-18 01:58:52.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[28c 01-18 01:58:52.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0692cc16]sending state message INIT -[28d 01-18 01:58:52.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0692cc16]Received message INIT from shim -[28e 01-18 01:58:52.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0692cc16]Handling ChaincodeMessage of type: INIT(state:ready) -[28f 01-18 01:58:52.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -[290 01-18 01:58:52.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [0692cc16]Received INIT, initializing chaincode -[291 01-18 01:58:52.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0692cc16]Init get response status: 200 -[292 01-18 01:58:52.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0692cc16]Init succeeded. Sending COMPLETED -[293 01-18 01:58:52.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0692cc16]Move state message COMPLETED -[294 01-18 01:58:52.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0692cc16]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[295 01-18 01:58:52.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0692cc16]send state message COMPLETED -[296 01-18 01:58:52.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0692cc16]Received message COMPLETED from shim -[297 01-18 01:58:52.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0692cc16]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[298 01-18 01:58:52.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0692cc16-7dc0-4d66-8e77-393d6290c2d0]HandleMessage- COMPLETED. Notify -[299 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:0692cc16-7dc0-4d66-8e77-393d6290c2d0 -[29a 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -[29b 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/businesschannel(github.com/hyperledger/fabric/core/scc/vscc) deployed -[29c 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [1b7167ca-3b4e-4df0-8c4d-bbefcb25f31c] -[29d 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[29e 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [375c6fdd-9af8-4cf0-9b96-7fd92a04e3c0] -[29f 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.0.2,txid=7111ed7e-fa87-4d4b-afe5-4b875d04b98a,syscc=true,proposal=0x0,canname=qscc:1.0.2 -[2a0 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.0.2 -[2a1 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -[2a2 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.2 -[2a3 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [7111ed7e]Inside sendExecuteMessage. Message INIT -[2a4 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[2a5 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [7111ed7e]sendExecuteMsg trigger event INIT -[2a6 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7111ed7e]Move state message INIT -[2a7 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7111ed7e]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[2a8 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[2a9 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7111ed7e]sending state message INIT -[2aa 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7111ed7e]Received message INIT from shim -[2ab 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7111ed7e]Handling ChaincodeMessage of type: INIT(state:ready) -[2ac 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -[2ad 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [7111ed7e]Received INIT, initializing chaincode -[2ae 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -[2af 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7111ed7e]Init get response status: 200 -[2b0 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7111ed7e]Init succeeded. Sending COMPLETED -[2b1 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7111ed7e]Move state message COMPLETED -[2b2 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7111ed7e]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[2b3 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7111ed7e]send state message COMPLETED -[2b4 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7111ed7e]Received message COMPLETED from shim -[2b5 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7111ed7e]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[2b6 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7111ed7e-fa87-4d4b-afe5-4b875d04b98a]HandleMessage- COMPLETED. Notify -[2b7 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:7111ed7e-fa87-4d4b-afe5-4b875d04b98a -[2b8 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -[2b9 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/chaincode/qscc) deployed -[2ba 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [375c6fdd-9af8-4cf0-9b96-7fd92a04e3c0] -[2bb 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Entry -[2bc 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [0] -[2bd 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Entry -[2be 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -[2bf 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event sent successfully -[2c0 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Exit -[2c1 01-18 01:58:52.65 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Exit -[2c2 01-18 01:58:52.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9a812e3c]Transaction completed. Sending COMPLETED -[2c3 01-18 01:58:52.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9a812e3c]Move state message COMPLETED -[2c4 01-18 01:58:52.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9a812e3c]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[2c5 01-18 01:58:52.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9a812e3c]send state message COMPLETED -[2c6 01-18 01:58:52.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9a812e3c]Received message COMPLETED from shim -[2c7 01-18 01:58:52.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9a812e3c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[2c8 01-18 01:58:52.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9a812e3c2cfcc8f8b117f8b54e442fd0889aa7ba2d8f513bd13e29ea55fa0824]HandleMessage- COMPLETED. Notify -[2c9 01-18 01:58:52.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:9a812e3c2cfcc8f8b117f8b54e442fd0889aa7ba2d8f513bd13e29ea55fa0824 -[2ca 01-18 01:58:52.66 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[2cb 01-18 01:58:52.66 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[2cc 01-18 01:58:52.66 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -[2cd 01-18 01:58:52.66 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -[2ce 01-18 01:58:58.51 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -[2cf 01-18 01:58:58.51 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc420378330 -[2d0 01-18 01:58:58.51 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[2d1 01-18 01:58:58.51 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[2d2 01-18 01:58:58.51 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -[2d3 01-18 01:58:58.51 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[2d4 01-18 01:58:58.51 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[2d5 01-18 01:58:58.51 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42015d450, header 0xc420378360 -[2d6 01-18 01:58:58.51 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -[2d7 01-18 01:58:58.51 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 10aa154b1bd6fca35e259248bedb95c36f3d8b764c6791a7356f2f87a6b1f629 -[2d8 01-18 01:58:58.51 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 10aa154b1bd6fca35e259248bedb95c36f3d8b764c6791a7356f2f87a6b1f629 channel id: -[2d9 01-18 01:58:58.51 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 10aa154b1bd6fca35e259248bedb95c36f3d8b764c6791a7356f2f87a6b1f629 channel id: version: 1.0.2 -[2da 01-18 01:58:58.52 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.0.2,txid=10aa154b1bd6fca35e259248bedb95c36f3d8b764c6791a7356f2f87a6b1f629,syscc=true,proposal=0xc42015d450,canname=lscc:1.0.2 -[2db 01-18 01:58:58.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 -[2dc 01-18 01:58:58.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[2dd 01-18 01:58:58.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -[2de 01-18 01:58:58.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [10aa154b]Inside sendExecuteMessage. Message TRANSACTION -[2df 01-18 01:58:58.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[2e0 01-18 01:58:58.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[2e1 01-18 01:58:58.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [10aa154b]sendExecuteMsg trigger event TRANSACTION -[2e2 01-18 01:58:58.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [10aa154b]Move state message TRANSACTION -[2e3 01-18 01:58:58.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [10aa154b]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[2e4 01-18 01:58:58.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[2e5 01-18 01:58:58.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [10aa154b]sending state message TRANSACTION -[2e6 01-18 01:58:58.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [10aa154b]Received message TRANSACTION from shim -[2e7 01-18 01:58:58.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [10aa154b]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[2e8 01-18 01:58:58.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [10aa154b]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[2e9 01-18 01:58:58.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [10aa154b]Transaction completed. Sending COMPLETED -[2ea 01-18 01:58:58.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [10aa154b]Move state message COMPLETED -[2eb 01-18 01:58:58.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [10aa154b]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[2ec 01-18 01:58:58.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [10aa154b]send state message COMPLETED -[2ed 01-18 01:58:58.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [10aa154b]Received message COMPLETED from shim -[2ee 01-18 01:58:58.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [10aa154b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[2ef 01-18 01:58:58.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [10aa154b1bd6fca35e259248bedb95c36f3d8b764c6791a7356f2f87a6b1f629]HandleMessage- COMPLETED. Notify -[2f0 01-18 01:58:58.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:10aa154b1bd6fca35e259248bedb95c36f3d8b764c6791a7356f2f87a6b1f629 -[2f1 01-18 01:58:58.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[2f2 01-18 01:58:58.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[2f3 01-18 01:58:58.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -[2f4 01-18 01:58:58.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -[2f5 01-18 01:58:58.62 UTC] [github.com/hyperledger/fabric/core/deliverservice] leaderElection.beLeader.func1.StartDeliverForChannel -> DEBU This peer will pass blocks from orderer service to other peers for channel businesschannel -[2f6 01-18 01:58:58.63 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Connected to orderer.example.com:7050 -[2f7 01-18 01:58:58.63 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Establishing gRPC stream with orderer.example.com:7050 ... -[2f8 01-18 01:58:58.63 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Entering -[2f9 01-18 01:58:58.63 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect.func1.RequestBlocks -> DEBU Starting deliver with block [1] for channel businesschannel -[2fa 01-18 01:58:58.63 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Exiting -[2fb 01-18 01:58:58.65 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [1], peers number [1] -[2fd 01-18 01:58:58.66 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -[2fe 01-18 01:58:58.66 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -[2ff 01-18 01:58:58.66 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -[300 01-18 01:58:58.66 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421488990 -[301 01-18 01:58:58.66 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\335\376\377\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030\262UG\022W~\350\r\312y3\226w\332\373\025\335\225\376z\200n&\340" -[302 01-18 01:58:58.66 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -[303 01-18 01:58:58.66 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[304 01-18 01:58:58.66 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 685c3e542c5c7e71cc8ac51ff9728a4a798d38a5cb22c31b73b7dddaa87ffa02} -[305 01-18 01:58:58.67 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[306 01-18 01:58:58.67 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[307 01-18 01:58:58.67 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc42147c000, header channel_header:"\010\001\032\006\010\335\376\377\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030\262UG\022W~\350\r\312y3\226w\332\373\025\335\225\376z\200n&\340" -[308 01-18 01:58:58.67 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -[309 01-18 01:58:58.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[30a 01-18 01:58:58.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -[30b 01-18 01:58:58.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -[30c 01-18 01:58:58.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -[30d 01-18 01:58:58.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[30e 01-18 01:58:58.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[30f 01-18 01:58:58.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[310 01-18 01:58:58.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -[311 01-18 01:58:58.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -[312 01-18 01:58:58.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -[313 01-18 01:58:58.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -[314 01-18 01:58:58.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[315 01-18 01:58:58.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[316 01-18 01:58:58.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[317 01-18 01:58:58.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[318 01-18 01:58:58.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[319 01-18 01:58:58.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[31a 01-18 01:58:58.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -[31b 01-18 01:58:58.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -[31c 01-18 01:58:58.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[31d 01-18 01:58:58.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[31e 01-18 01:58:58.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[31f 01-18 01:58:58.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[320 01-18 01:58:58.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -[321 01-18 01:58:58.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[322 01-18 01:58:58.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[323 01-18 01:58:58.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[324 01-18 01:58:58.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[325 01-18 01:58:58.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[326 01-18 01:58:58.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[327 01-18 01:58:58.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -[328 01-18 01:58:58.68 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -[329 01-18 01:58:58.68 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -[32a 01-18 01:58:58.68 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -[32b 01-18 01:58:58.68 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[32c 01-18 01:58:58.68 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[32d 01-18 01:58:58.68 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[2fc 01-18 01:58:58.66 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [1], peers number [1] -[32e 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [2], peers number [1] -[32f 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [2], peers number [1] -[330 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[331 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[332 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[333 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -[334 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[335 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[336 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[337 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[338 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[339 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[33a 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -[33b 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -[33c 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[33d 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[33e 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[33f 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -[340 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -[341 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -[342 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[343 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[344 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[345 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[346 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[347 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[348 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[349 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[34a 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[34b 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -[34c 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[34d 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[34e 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[34f 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[350 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[351 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[352 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel -[353 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -[354 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[355 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[356 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[357 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[358 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -[359 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[35a 01-18 01:58:58.69 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[35b 01-18 01:58:58.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[35c 01-18 01:58:58.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[35d 01-18 01:58:58.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[35e 01-18 01:58:58.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[35f 01-18 01:58:58.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[360 01-18 01:58:58.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -[361 01-18 01:58:58.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[362 01-18 01:58:58.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[363 01-18 01:58:58.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[364 01-18 01:58:58.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[365 01-18 01:58:58.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[366 01-18 01:58:58.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[367 01-18 01:58:58.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[368 01-18 01:58:58.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[369 01-18 01:58:58.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[36a 01-18 01:58:58.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[36b 01-18 01:58:58.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[36c 01-18 01:58:58.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[36d 01-18 01:58:58.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[36e 01-18 01:58:58.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -[36f 01-18 01:58:58.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[370 01-18 01:58:58.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -[371 01-18 01:58:58.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[372 01-18 01:58:58.74 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -[373 01-18 01:58:58.90 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -[374 01-18 01:58:58.90 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -[375 01-18 01:58:58.90 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -[376 01-18 01:58:58.90 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -[377 01-18 01:58:58.90 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU config transaction received for chain businesschannel -[378 01-18 01:58:58.90 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -[379 01-18 01:58:58.90 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Received configuration update, calling CSCC ConfigUpdate -[37a 01-18 01:58:58.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -[37b 01-18 01:58:58.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc42014bf00), Data:(*common.BlockData)(0xc4215ef2a0), Metadata:(*common.BlockMetadata)(0xc4215ef2e0)}, doMVCCValidation=true -[37c 01-18 01:58:58.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -[37d 01-18 01:58:58.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [1] Transaction index [0] because, the transaction type is [CONFIG] -[37e 01-18 01:58:58.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0xc3, 0xab, 0xaa, 0xb3, 0xa5, 0x22, 0xad, 0x43, 0xc, 0xa3, 0xc5, 0x33, 0x33, 0xd, 0x4f, 0xc2, 0xaa, 0x7, 0xee, 0xbc, 0xcd, 0x3b, 0xac, 0x1a, 0x3, 0xe2, 0x17, 0xb3, 0x1b, 0x87, 0x6d, 0x94} txOffsets= -txId= locPointer=offset=70, bytesLength=11913 +[1ce 01-18 09:29:45.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=11891] for tx ID: [] to index +[1cf 01-18 09:29:45.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=11891] for tx number:[0] ID: [] to blockNumTranNum index +[1d0 01-18 09:29:45.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[11935], isChainEmpty=[false], lastBlockNumber=[0] +[1d1 01-18 09:29:45.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit -> INFO Channel [businesschannel]: Created block [0] with 1 transaction(s) +[1d2 01-18 09:29:45.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Committing updates to state database +[1d3 01-18 09:29:45.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +[1d4 01-18 09:29:45.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Updates committed to state database +[1d5 01-18 09:29:45.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [0] with [1] transactions +[1d6 01-18 09:29:45.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +[1d7 01-18 09:29:45.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [0] +[1d8 01-18 09:29:45.23 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block +[1d9 01-18 09:29:45.23 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +[1da 01-18 09:29:45.23 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[1db 01-18 09:29:45.23 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[1dc 01-18 09:29:45.23 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[1dd 01-18 09:29:45.23 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[1de 01-18 09:29:45.23 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[1df 01-18 09:29:45.23 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +[1e0 01-18 09:29:45.23 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +[1e1 01-18 09:29:45.23 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +[1e2 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +[1e3 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +[1e4 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +[1e5 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +[1e6 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +[1e7 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +[1e8 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +[1e9 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +[1ea 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[1eb 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +[1ec 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +[1ed 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[1ee 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +[1ef 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +[1f0 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[1f1 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[1f2 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[1f3 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +[1f4 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +[1f5 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[1f6 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[1f7 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[1f8 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[1f9 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[1fa 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[1fb 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +[1fc 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +[1fd 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +[1fe 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +[1ff 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[200 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[201 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[202 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel +[203 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +[204 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[205 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[206 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[207 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[208 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +[209 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[20a 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[20b 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[20c 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[20d 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[20e 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[20f 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[210 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +[211 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[212 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[213 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[214 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[215 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[216 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[217 01-18 09:29:45.24 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[218 01-18 09:29:45.25 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[219 01-18 09:29:45.25 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[21a 01-18 09:29:45.25 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[21b 01-18 09:29:45.25 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[21c 01-18 09:29:45.25 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[21d 01-18 09:29:45.25 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[21e 01-18 09:29:45.26 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are +[21f 01-18 09:29:45.26 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[220 01-18 09:29:45.26 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +[221 01-18 09:29:45.26 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[222 01-18 09:29:45.27 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +[223 01-18 09:29:45.29 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +[224 01-18 09:29:45.29 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +[225 01-18 09:29:45.29 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +[226 01-18 09:29:45.29 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +[227 01-18 09:29:45.29 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.InitChain -> DEBU Init chain businesschannel +[228 01-18 09:29:45.29 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.joinChain.InitChain.func2 -> DEBU Deploying system CC, for chain +[229 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[22a 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [cfb1394e-e4fa-4259-8b66-8459becb452e] +[22b 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=cscc,version=1.0.2,txid=3a9518cc-f5b9-4b8a-9d7b-f16619acfe44,syscc=true,proposal=0x0,canname=cscc:1.0.2 +[22c 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.0.2 +[22d 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +[22e 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.2 +[22f 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [3a9518cc]Inside sendExecuteMessage. Message INIT +[230 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[231 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [3a9518cc]sendExecuteMsg trigger event INIT +[232 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3a9518cc]Move state message INIT +[233 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3a9518cc]Fabric side Handling ChaincodeMessage of type: INIT in state ready +[234 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[235 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3a9518cc]sending state message INIT +[236 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3a9518cc]Received message INIT from shim +[237 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3a9518cc]Handling ChaincodeMessage of type: INIT(state:ready) +[238 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +[239 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [3a9518cc]Received INIT, initializing chaincode +[23a 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC +[23b 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3a9518cc]Init get response status: 200 +[23c 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3a9518cc]Init succeeded. Sending COMPLETED +[23d 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3a9518cc]Move state message COMPLETED +[23e 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3a9518cc]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[23f 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3a9518cc]send state message COMPLETED +[240 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3a9518cc]Received message COMPLETED from shim +[241 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3a9518cc]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[242 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3a9518cc-f5b9-4b8a-9d7b-f16619acfe44]HandleMessage- COMPLETED. Notify +[243 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:3a9518cc-f5b9-4b8a-9d7b-f16619acfe44 +[244 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +[245 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed +[246 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [cfb1394e-e4fa-4259-8b66-8459becb452e] +[247 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[248 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [8c235955-df0b-45df-8013-b8077862f68b] +[249 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=e753c66b-e87d-401e-a767-b47d7d9d6a59,syscc=true,proposal=0x0,canname=lscc:1.0.2 +[24a 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 +[24b 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +[24c 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +[24d 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [e753c66b]Inside sendExecuteMessage. Message INIT +[24e 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[24f 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [e753c66b]sendExecuteMsg trigger event INIT +[250 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e753c66b]Move state message INIT +[251 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e753c66b]Fabric side Handling ChaincodeMessage of type: INIT in state ready +[252 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[253 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e753c66b]sending state message INIT +[254 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e753c66b]Received message INIT from shim +[255 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e753c66b]Handling ChaincodeMessage of type: INIT(state:ready) +[256 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +[257 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [e753c66b]Received INIT, initializing chaincode +[258 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e753c66b]Init get response status: 200 +[259 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e753c66b]Init succeeded. Sending COMPLETED +[25a 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e753c66b]Move state message COMPLETED +[25b 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e753c66b]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[25c 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e753c66b]send state message COMPLETED +[25d 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e753c66b]Received message COMPLETED from shim +[25e 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e753c66b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[25f 01-18 09:29:45.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e753c66b-e87d-401e-a767-b47d7d9d6a59]HandleMessage- COMPLETED. Notify +[260 01-18 09:29:45.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:e753c66b-e87d-401e-a767-b47d7d9d6a59 +[261 01-18 09:29:45.31 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +[262 01-18 09:29:45.31 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed +[263 01-18 09:29:45.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [8c235955-df0b-45df-8013-b8077862f68b] +[264 01-18 09:29:45.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[265 01-18 09:29:45.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [5a7cdc4b-7cdb-479d-bb5d-8b00dc7215cd] +[266 01-18 09:29:45.31 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=de073d8d-90a6-4216-8210-6737b32ef099,syscc=true,proposal=0x0,canname=escc:1.0.2 +[267 01-18 09:29:45.31 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 +[268 01-18 09:29:45.31 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +[269 01-18 09:29:45.31 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 +[26a 01-18 09:29:45.31 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [de073d8d]Inside sendExecuteMessage. Message INIT +[26b 01-18 09:29:45.31 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[26c 01-18 09:29:45.31 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [de073d8d]sendExecuteMsg trigger event INIT +[26d 01-18 09:29:45.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [de073d8d]Move state message INIT +[26e 01-18 09:29:45.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [de073d8d]Fabric side Handling ChaincodeMessage of type: INIT in state ready +[26f 01-18 09:29:45.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[270 01-18 09:29:45.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [de073d8d]sending state message INIT +[271 01-18 09:29:45.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [de073d8d]Received message INIT from shim +[272 01-18 09:29:45.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [de073d8d]Handling ChaincodeMessage of type: INIT(state:ready) +[273 01-18 09:29:45.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +[274 01-18 09:29:45.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [de073d8d]Received INIT, initializing chaincode +[275 01-18 09:29:45.31 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC +[276 01-18 09:29:45.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [de073d8d]Init get response status: 200 +[277 01-18 09:29:45.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [de073d8d]Init succeeded. Sending COMPLETED +[278 01-18 09:29:45.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [de073d8d]Move state message COMPLETED +[279 01-18 09:29:45.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [de073d8d]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[27a 01-18 09:29:45.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [de073d8d]send state message COMPLETED +[27b 01-18 09:29:45.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [de073d8d]Received message COMPLETED from shim +[27c 01-18 09:29:45.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [de073d8d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[27d 01-18 09:29:45.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [de073d8d-90a6-4216-8210-6737b32ef099]HandleMessage- COMPLETED. Notify +[27e 01-18 09:29:45.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:de073d8d-90a6-4216-8210-6737b32ef099 +[27f 01-18 09:29:45.31 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +[280 01-18 09:29:45.31 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode escc/businesschannel(github.com/hyperledger/fabric/core/scc/escc) deployed +[281 01-18 09:29:45.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [5a7cdc4b-7cdb-479d-bb5d-8b00dc7215cd] +[282 01-18 09:29:45.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[283 01-18 09:29:45.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [c81f1be4-0c1a-4830-b1bc-34a822556c14] +[284 01-18 09:29:45.32 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=c4b5c134-e999-4d08-a0f4-0edc8dcb19ed,syscc=true,proposal=0x0,canname=vscc:1.0.2 +[285 01-18 09:29:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 +[286 01-18 09:29:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +[287 01-18 09:29:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 +[288 01-18 09:29:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [c4b5c134]Inside sendExecuteMessage. Message INIT +[289 01-18 09:29:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[28a 01-18 09:29:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [c4b5c134]sendExecuteMsg trigger event INIT +[28b 01-18 09:29:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c4b5c134]Move state message INIT +[28c 01-18 09:29:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c4b5c134]Fabric side Handling ChaincodeMessage of type: INIT in state ready +[28d 01-18 09:29:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[28e 01-18 09:29:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c4b5c134]sending state message INIT +[28f 01-18 09:29:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c4b5c134]Received message INIT from shim +[290 01-18 09:29:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c4b5c134]Handling ChaincodeMessage of type: INIT(state:ready) +[291 01-18 09:29:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +[292 01-18 09:29:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [c4b5c134]Received INIT, initializing chaincode +[293 01-18 09:29:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c4b5c134]Init get response status: 200 +[294 01-18 09:29:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c4b5c134]Init succeeded. Sending COMPLETED +[295 01-18 09:29:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c4b5c134]Move state message COMPLETED +[296 01-18 09:29:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c4b5c134]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[297 01-18 09:29:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c4b5c134]send state message COMPLETED +[298 01-18 09:29:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c4b5c134]Received message COMPLETED from shim +[299 01-18 09:29:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c4b5c134]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[29a 01-18 09:29:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c4b5c134-e999-4d08-a0f4-0edc8dcb19ed]HandleMessage- COMPLETED. Notify +[29b 01-18 09:29:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:c4b5c134-e999-4d08-a0f4-0edc8dcb19ed +[29c 01-18 09:29:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +[29d 01-18 09:29:45.32 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/businesschannel(github.com/hyperledger/fabric/core/scc/vscc) deployed +[29e 01-18 09:29:45.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [c81f1be4-0c1a-4830-b1bc-34a822556c14] +[29f 01-18 09:29:45.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[2a0 01-18 09:29:45.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [5d697c86-a4db-44c3-a09b-a99e5eb3d033] +[2a1 01-18 09:29:45.32 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.0.2,txid=f6d7e4fc-6d86-4a15-b697-9c02096c9427,syscc=true,proposal=0x0,canname=qscc:1.0.2 +[2a2 01-18 09:29:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.0.2 +[2a3 01-18 09:29:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +[2a4 01-18 09:29:45.32 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.2 +[2a5 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [f6d7e4fc]Inside sendExecuteMessage. Message INIT +[2a6 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[2a7 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [f6d7e4fc]sendExecuteMsg trigger event INIT +[2a8 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f6d7e4fc]Move state message INIT +[2a9 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f6d7e4fc]Fabric side Handling ChaincodeMessage of type: INIT in state ready +[2aa 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[2ab 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f6d7e4fc]sending state message INIT +[2ac 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f6d7e4fc]Received message INIT from shim +[2ad 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f6d7e4fc]Handling ChaincodeMessage of type: INIT(state:ready) +[2ae 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +[2af 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [f6d7e4fc]Received INIT, initializing chaincode +[2b0 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC +[2b1 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f6d7e4fc]Init get response status: 200 +[2b2 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f6d7e4fc]Init succeeded. Sending COMPLETED +[2b3 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f6d7e4fc]Move state message COMPLETED +[2b4 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f6d7e4fc]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[2b5 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f6d7e4fc]send state message COMPLETED +[2b6 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f6d7e4fc]Received message COMPLETED from shim +[2b7 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f6d7e4fc]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[2b8 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f6d7e4fc-6d86-4a15-b697-9c02096c9427]HandleMessage- COMPLETED. Notify +[2b9 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:f6d7e4fc-6d86-4a15-b697-9c02096c9427 +[2ba 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +[2bb 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/chaincode/qscc) deployed +[2bc 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [5d697c86-a4db-44c3-a09b-a99e5eb3d033] +[2bd 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Entry +[2be 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [0] +[2bf 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Entry +[2c0 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +[2c1 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event sent successfully +[2c2 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Exit +[2c3 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Exit +[2c4 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cd1eaf52]Transaction completed. Sending COMPLETED +[2c5 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cd1eaf52]Move state message COMPLETED +[2c6 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [cd1eaf52]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[2c7 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cd1eaf52]send state message COMPLETED +[2c8 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [cd1eaf52]Received message COMPLETED from shim +[2c9 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [cd1eaf52]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[2ca 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [cd1eaf52a53d002bbdb24e980ef6bbd201f81405edc8a213f22f571fbe612492]HandleMessage- COMPLETED. Notify +[2cb 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:cd1eaf52a53d002bbdb24e980ef6bbd201f81405edc8a213f22f571fbe612492 +[2cc 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[2cd 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[2ce 01-18 09:29:45.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +[2cf 01-18 09:29:45.34 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +[2d0 01-18 09:29:51.30 UTC] [github.com/hyperledger/fabric/core/deliverservice] leaderElection.beLeader.func1.StartDeliverForChannel -> DEBU This peer will pass blocks from orderer service to other peers for channel businesschannel +[2d1 01-18 09:29:51.30 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Connected to orderer.example.com:7050 +[2d2 01-18 09:29:51.30 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Establishing gRPC stream with orderer.example.com:7050 ... +[2d3 01-18 09:29:51.31 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Entering +[2d4 01-18 09:29:51.31 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect.func1.RequestBlocks -> DEBU Starting deliver with block [1] for channel businesschannel +[2d5 01-18 09:29:51.34 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Exiting +[2d6 01-18 09:29:51.38 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [1], peers number [0] +[2d7 01-18 09:29:51.38 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [1], peers number [0] +[2d8 01-18 09:29:51.40 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [2], peers number [0] +[2d9 01-18 09:29:51.41 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +[2da 01-18 09:29:51.41 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +[2db 01-18 09:29:51.41 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +[2dc 01-18 09:29:51.41 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4219599b0 +[2dd 01-18 09:29:51.41 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\212\322\201\323\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030\251U0\341\006n\346y$7\264o\305\320\211\232\\\025\312\332\032\271+?" +[2de 01-18 09:29:51.41 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +[2df 01-18 09:29:51.41 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[2e0 01-18 09:29:51.41 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 685c3e542c5c7e71cc8ac51ff9728a4a798d38a5cb22c31b73b7dddaa87ffa02} +[2e1 01-18 09:29:51.41 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[2e2 01-18 09:29:51.41 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[2e3 01-18 09:29:51.41 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc421a56000, header channel_header:"\010\001\032\006\010\212\322\201\323\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030\251U0\341\006n\346y$7\264o\305\320\211\232\\\025\312\332\032\271+?" +[2e4 01-18 09:29:51.41 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +[2e5 01-18 09:29:51.41 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[2e6 01-18 09:29:51.41 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +[2e7 01-18 09:29:51.41 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +[2e8 01-18 09:29:51.41 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +[2e9 01-18 09:29:51.41 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +[2ea 01-18 09:29:51.41 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +[2eb 01-18 09:29:51.41 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +[2ec 01-18 09:29:51.41 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +[2ee 01-18 09:29:51.41 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [2], peers number [0] +[2ed 01-18 09:29:51.41 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +[2ef 01-18 09:29:51.42 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +[2f0 01-18 09:29:51.42 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +[2f1 01-18 09:29:51.42 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +[2f2 01-18 09:29:51.42 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[2f3 01-18 09:29:51.42 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +[2f4 01-18 09:29:51.42 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +[2f5 01-18 09:29:51.42 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[2f6 01-18 09:29:51.42 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +[2f7 01-18 09:29:51.42 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +[2f8 01-18 09:29:51.42 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +[2f9 01-18 09:29:51.42 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[2fa 01-18 09:29:51.42 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[2fb 01-18 09:29:51.43 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[2fc 01-18 09:29:51.43 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +[2fd 01-18 09:29:51.43 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +[2fe 01-18 09:29:51.43 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[2ff 01-18 09:29:51.43 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[300 01-18 09:29:51.43 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[301 01-18 09:29:51.43 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[302 01-18 09:29:51.43 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[303 01-18 09:29:51.43 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[304 01-18 09:29:51.43 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +[305 01-18 09:29:51.43 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +[306 01-18 09:29:51.43 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +[307 01-18 09:29:51.43 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +[308 01-18 09:29:51.43 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[309 01-18 09:29:51.43 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[30a 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[30b 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[30c 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[30d 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +[30e 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +[30f 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[310 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[311 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[312 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[313 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[314 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +[315 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +[316 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +[317 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[318 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[319 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[31a 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[31b 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[31c 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[31d 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[31e 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[31f 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +[320 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[321 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +[322 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +[323 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +[324 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[325 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[326 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[327 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[328 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[329 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[32a 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[32b 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[32c 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[32d 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel +[32e 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +[32f 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[330 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[331 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[332 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[333 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +[334 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[335 01-18 09:29:51.44 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[336 01-18 09:29:51.45 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[337 01-18 09:29:51.45 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[338 01-18 09:29:51.45 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[339 01-18 09:29:51.45 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[33a 01-18 09:29:51.45 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[33b 01-18 09:29:51.45 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[33c 01-18 09:29:51.46 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[33d 01-18 09:29:51.46 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[33e 01-18 09:29:51.46 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[33f 01-18 09:29:51.46 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[340 01-18 09:29:51.46 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +[341 01-18 09:29:51.46 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[342 01-18 09:29:51.46 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[343 01-18 09:29:51.47 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[344 01-18 09:29:51.47 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[345 01-18 09:29:51.47 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[346 01-18 09:29:51.47 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[347 01-18 09:29:51.47 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[348 01-18 09:29:51.47 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +[349 01-18 09:29:51.47 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[34a 01-18 09:29:51.48 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +[34b 01-18 09:29:51.48 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[34c 01-18 09:29:51.49 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[34d 01-18 09:29:51.50 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +[34e 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +[34f 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +[350 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +[351 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +[352 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU config transaction received for chain businesschannel +[353 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +[354 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Received configuration update, calling CSCC ConfigUpdate +[355 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +[356 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc4219cc0c0), Data:(*common.BlockData)(0xc42198de80), Metadata:(*common.BlockMetadata)(0xc42198dec0)}, doMVCCValidation=true +[357 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +[358 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [1] Transaction index [0] because, the transaction type is [CONFIG] +[359 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0x6c, 0xef, 0x8, 0x85, 0xb1, 0xd, 0xe7, 0xda, 0xc6, 0xd0, 0x92, 0x80, 0xa6, 0x9f, 0x76, 0x95, 0xfa, 0x31, 0xc3, 0x51, 0x60, 0x86, 0x44, 0xcf, 0xf7, 0xdc, 0x39, 0xba, 0xf0, 0x8, 0xf8, 0x13} txOffsets= +txId= locPointer=offset=70, bytesLength=11914 ] -[37f 01-18 01:58:58.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12005, bytesLength=11913] for tx ID: [] to index -[380 01-18 01:58:58.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12005, bytesLength=11913] for tx number:[0] ID: [] to blockNumTranNum index -[381 01-18 01:58:58.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[25668], isChainEmpty=[false], lastBlockNumber=[1] -[382 01-18 01:58:58.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [1] with 1 transaction(s) -[383 01-18 01:58:58.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -[384 01-18 01:58:58.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -[385 01-18 01:58:58.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -[386 01-18 01:58:58.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [1] with [1] transactions -[387 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -[388 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [1] -[389 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -[38a 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [1] -[38b 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -[38c 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -[38d 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -[38e 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -[38f 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -[390 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -[391 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -[392 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -[393 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4217394a0 -[394 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\337\376\377\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030a\n\340,\262`\335\020Q\311?\302\002%\0013\232C|\240\316T\363\221" -[395 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -[396 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[397 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 685c3e542c5c7e71cc8ac51ff9728a4a798d38a5cb22c31b73b7dddaa87ffa02} -[398 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[399 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[39a 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc421c43000, header channel_header:"\010\001\032\006\010\337\376\377\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030a\n\340,\262`\335\020Q\311?\302\002%\0013\232C|\240\316T\363\221" -[39b 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -[39c 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[39d 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -[39e 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -[39f 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -[3a0 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[3a1 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[3a2 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[3a3 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -[3a4 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -[3a5 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -[3a6 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -[3a7 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[3a8 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[3a9 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[3aa 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[3ab 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[3ac 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[3ad 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -[3ae 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -[3af 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[3b0 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[3b1 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[3b2 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[3b3 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers -[3b4 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -[3b5 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[3b6 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[3b7 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[3b8 01-18 01:58:58.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[3b9 01-18 01:58:58.95 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[3ba 01-18 01:58:58.95 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[3bb 01-18 01:58:58.95 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -[3bc 01-18 01:58:58.95 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -[3bd 01-18 01:58:58.95 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -[3be 01-18 01:58:58.95 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -[3bf 01-18 01:58:58.95 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[3c0 01-18 01:58:58.95 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[3c1 01-18 01:58:58.95 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[3c2 01-18 01:58:58.95 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[3c3 01-18 01:58:58.95 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[3c4 01-18 01:58:58.95 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[3c5 01-18 01:58:58.95 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -[3c6 01-18 01:58:58.95 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[3c7 01-18 01:58:58.95 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[3c8 01-18 01:58:58.95 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[3c9 01-18 01:58:58.95 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[3ca 01-18 01:58:58.95 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[3cb 01-18 01:58:58.95 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[3cc 01-18 01:58:58.95 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers -[3cd 01-18 01:58:58.95 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -[3ce 01-18 01:58:58.95 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[3cf 01-18 01:58:58.95 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[3d0 01-18 01:58:58.95 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[3d1 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[3d2 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[3d3 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[3d4 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[3d5 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[3d6 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[3d7 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -[3d8 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[3d9 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[3da 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[3db 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -[3dc 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -[3dd 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -[3de 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[3df 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[3e0 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[3e1 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[3e2 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[3e3 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[3e4 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel -[3e5 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -[3e6 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[3e7 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[3e8 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[3e9 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[3ea 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -[3eb 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[3ec 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[3ed 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[3ee 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[3ef 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[3f0 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[3f1 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[3f2 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -[3f3 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[3f4 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[3f5 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[3f6 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[3f7 01-18 01:58:58.96 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[3f8 01-18 01:58:58.97 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[3f9 01-18 01:58:58.97 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[3fa 01-18 01:58:58.97 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[3fb 01-18 01:58:58.97 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[3fc 01-18 01:58:58.97 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[3fd 01-18 01:58:58.97 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[3fe 01-18 01:58:58.97 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[3ff 01-18 01:58:58.97 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[400 01-18 01:58:58.97 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -[401 01-18 01:58:58.97 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[402 01-18 01:58:58.97 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -[403 01-18 01:58:58.97 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[404 01-18 01:58:58.98 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -[405 01-18 01:58:59.03 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -[406 01-18 01:58:59.03 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -[407 01-18 01:58:59.03 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -[408 01-18 01:58:59.03 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -[409 01-18 01:58:59.04 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU config transaction received for chain businesschannel -[40a 01-18 01:58:59.04 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -[40b 01-18 01:58:59.04 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Received configuration update, calling CSCC ConfigUpdate -[40c 01-18 01:58:59.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -[40d 01-18 01:58:59.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc4202c7a00), Data:(*common.BlockData)(0xc421c85fa0), Metadata:(*common.BlockMetadata)(0xc421c85fe0)}, doMVCCValidation=true -[40e 01-18 01:58:59.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -[40f 01-18 01:58:59.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [2] Transaction index [0] because, the transaction type is [CONFIG] -[410 01-18 01:58:59.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0x5b, 0x7c, 0x4e, 0xf2, 0x74, 0xb6, 0x7f, 0xc2, 0x96, 0x1b, 0xb2, 0x5a, 0xd4, 0x86, 0x64, 0x1e, 0xc, 0x21, 0xb0, 0xdd, 0x91, 0xb8, 0xb5, 0x9d, 0x7f, 0x79, 0xeb, 0xbd, 0x3a, 0x97, 0xb8, 0xa1} txOffsets= -txId= locPointer=offset=70, bytesLength=11970 +[35a 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12005, bytesLength=11914] for tx ID: [] to index +[35b 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12005, bytesLength=11914] for tx number:[0] ID: [] to blockNumTranNum index +[35c 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[25669], isChainEmpty=[false], lastBlockNumber=[1] +[35d 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [1] with 1 transaction(s) +[35e 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +[35f 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +[360 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +[361 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [1] with [1] transactions +[362 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +[363 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [1] +[364 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +[365 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [1] +[366 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +[367 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +[368 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +[369 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +[36a 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +[36b 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +[36c 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +[36d 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +[36e 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc420162840 +[36f 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\215\322\201\323\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030'\320Q\024\221m\341A)\315\367\334T\374\242\205n\201\234\262\265\275J\264" +[370 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +[371 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[372 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 685c3e542c5c7e71cc8ac51ff9728a4a798d38a5cb22c31b73b7dddaa87ffa02} +[373 01-18 09:29:51.53 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[374 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[375 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc42145b000, header channel_header:"\010\001\032\006\010\215\322\201\323\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030'\320Q\024\221m\341A)\315\367\334T\374\242\205n\201\234\262\265\275J\264" +[376 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +[377 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[378 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +[379 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +[37a 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +[37b 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +[37c 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +[37d 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +[37e 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +[37f 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +[380 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +[381 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +[382 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +[383 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +[384 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +[385 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[386 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[387 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +[388 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +[389 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers +[38a 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[38b 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[38c 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[38d 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +[38e 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +[38f 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +[390 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[391 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[392 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[393 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[394 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[395 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[396 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +[397 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +[398 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +[399 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +[39a 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[39b 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[39c 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[39d 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[39e 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[39f 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +[3a0 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +[3a1 01-18 09:29:51.54 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[3a2 01-18 09:29:51.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[3a3 01-18 09:29:51.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[3a4 01-18 09:29:51.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[3a5 01-18 09:29:51.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[3a6 01-18 09:29:51.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +[3a7 01-18 09:29:51.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers +[3a8 01-18 09:29:51.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +[3a9 01-18 09:29:51.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[3aa 01-18 09:29:51.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[3ab 01-18 09:29:51.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[3ac 01-18 09:29:51.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[3ad 01-18 09:29:51.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[3ae 01-18 09:29:51.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[3af 01-18 09:29:51.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +[3b0 01-18 09:29:51.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[3b1 01-18 09:29:51.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[3b2 01-18 09:29:51.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[3b3 01-18 09:29:51.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[3b4 01-18 09:29:51.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[3b5 01-18 09:29:51.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[3b6 01-18 09:29:51.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +[3b7 01-18 09:29:51.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +[3b8 01-18 09:29:51.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +[3b9 01-18 09:29:51.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[3ba 01-18 09:29:51.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[3bb 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[3bc 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[3bd 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[3be 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[3bf 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel +[3c0 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +[3c1 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[3c2 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[3c3 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[3c4 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[3c5 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +[3c6 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[3c7 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[3c8 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[3c9 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[3ca 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[3cb 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[3cc 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[3cd 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[3ce 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[3cf 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[3d0 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[3d1 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[3d2 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +[3d3 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[3d4 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[3d5 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[3d6 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[3d7 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[3d8 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[3d9 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[3da 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +[3db 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[3dc 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +[3dd 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[3de 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[3df 01-18 09:29:51.56 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +[3e0 01-18 09:29:51.59 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +[3e1 01-18 09:29:51.59 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +[3e2 01-18 09:29:51.59 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +[3e3 01-18 09:29:51.59 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +[3e4 01-18 09:29:51.59 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU config transaction received for chain businesschannel +[3e5 01-18 09:29:51.59 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +[3e6 01-18 09:29:51.59 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Received configuration update, calling CSCC ConfigUpdate +[3e7 01-18 09:29:51.59 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +[3e8 01-18 09:29:51.59 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc421d26800), Data:(*common.BlockData)(0xc420103de0), Metadata:(*common.BlockMetadata)(0xc420103e60)}, doMVCCValidation=true +[3e9 01-18 09:29:51.59 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +[3ea 01-18 09:29:51.59 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [2] Transaction index [0] because, the transaction type is [CONFIG] +[3eb 01-18 09:29:51.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0xee, 0x42, 0x73, 0x43, 0x9f, 0x78, 0x50, 0xc6, 0xa0, 0xfa, 0x48, 0x1, 0x7b, 0x5c, 0xa5, 0xf0, 0xab, 0x77, 0x31, 0x9d, 0xaf, 0x30, 0x17, 0xcc, 0x6f, 0xfc, 0x28, 0x70, 0xf7, 0xc4, 0x5f, 0xf} txOffsets= +txId= locPointer=offset=70, bytesLength=11971 ] -[411 01-18 01:58:59.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=25738, bytesLength=11970] for tx ID: [] to index -[412 01-18 01:58:59.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=25738, bytesLength=11970] for tx number:[0] ID: [] to blockNumTranNum index -[413 01-18 01:58:59.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[39459], isChainEmpty=[false], lastBlockNumber=[2] -[414 01-18 01:58:59.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [2] with 1 transaction(s) -[415 01-18 01:58:59.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -[416 01-18 01:58:59.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -[417 01-18 01:58:59.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -[418 01-18 01:58:59.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [2] with [1] transactions -[419 01-18 01:58:59.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -[41a 01-18 01:58:59.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [2] -[41b 01-18 01:58:59.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -[41c 01-18 01:58:59.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [2] -[41d 01-18 01:58:59.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -[41e 01-18 01:58:59.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -[41f 01-18 01:58:59.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -[420 01-18 01:58:59.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -[421 01-18 01:58:59.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -[422 01-18 01:59:01.30 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -[423 01-18 01:59:01.30 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422040540 -[424 01-18 01:59:01.30 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[425 01-18 01:59:01.30 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[426 01-18 01:59:01.30 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -[427 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[428 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[429 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421c4d9a0, header 0xc422040570 -[42a 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -[42b 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824 -[42c 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824] -[42d 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[42e 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [b2886e93-0dcf-4cd2-aef9-ab99e897e7b2] -[42f 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824 channel id: businesschannel -[430 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824 channel id: businesschannel version: 1.0.2 -[431 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824,syscc=true,proposal=0xc421c4d9a0,canname=lscc:1.0.2 -[432 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 -[433 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[434 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -[435 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ebabbeb4]Inside sendExecuteMessage. Message TRANSACTION -[436 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[437 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[438 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ebabbeb4]sendExecuteMsg trigger event TRANSACTION -[439 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ebabbeb4]Move state message TRANSACTION -[43a 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ebabbeb4]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[43b 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[43c 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ebabbeb4]sending state message TRANSACTION -[43d 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ebabbeb4]Received message TRANSACTION from shim -[43e 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ebabbeb4]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[43f 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [ebabbeb4]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[440 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [ebabbeb4]Sending GET_STATE -[441 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ebabbeb4]Received message GET_STATE from shim -[442 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ebabbeb4]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -[443 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [ebabbeb4]Received GET_STATE, invoking get state from ledger -[444 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[445 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [ebabbeb4] getting state for chaincode lscc, key exp02, channel businesschannel -[446 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -[447 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [ebabbeb4]No state associated with key: exp02. Sending RESPONSE with an empty payload -[448 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [ebabbeb4]handleGetState serial send RESPONSE -[449 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ebabbeb4]Received message RESPONSE from shim -[44a 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ebabbeb4]Handling ChaincodeMessage of type: RESPONSE(state:ready) -[44b 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [ebabbeb4]before send -[44c 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [ebabbeb4]after send -[44d 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [ebabbeb4]Received RESPONSE, communicated (state:ready) -[44e 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [ebabbeb4]GetState received payload RESPONSE -[44f 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.createChaincode.putChaincodeData.PutState.handlePutState -> DEBU [ebabbeb4]Inside putstate -[450 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.createChaincode.putChaincodeData.PutState.handlePutState -> DEBU [ebabbeb4]Sending PUT_STATE -[451 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ebabbeb4]Received message PUT_STATE from shim -[452 01-18 01:59:01.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ebabbeb4]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -[453 01-18 01:59:01.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[454 01-18 01:59:01.32 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [ebabbeb4]state is ready -[455 01-18 01:59:01.32 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [ebabbeb4]Completed PUT_STATE. Sending RESPONSE -[456 01-18 01:59:01.32 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [ebabbeb4]enterBusyState trigger event RESPONSE -[457 01-18 01:59:01.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ebabbeb4]Move state message RESPONSE -[458 01-18 01:59:01.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ebabbeb4]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -[459 01-18 01:59:01.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[45a 01-18 01:59:01.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ebabbeb4]sending state message RESPONSE -[45b 01-18 01:59:01.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ebabbeb4]Received message RESPONSE from shim -[45c 01-18 01:59:01.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ebabbeb4]Handling ChaincodeMessage of type: RESPONSE(state:ready) -[45d 01-18 01:59:01.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [ebabbeb4]before send -[45e 01-18 01:59:01.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [ebabbeb4]after send -[460 01-18 01:59:01.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [ebabbeb4]Received RESPONSE, communicated (state:ready) -[45f 01-18 01:59:01.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.createChaincode.putChaincodeData.PutState.handlePutState -> DEBU [ebabbeb4]Received RESPONSE. Successfully updated state -[461 01-18 01:59:01.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ebabbeb4]Transaction completed. Sending COMPLETED -[462 01-18 01:59:01.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ebabbeb4]Move state message COMPLETED -[463 01-18 01:59:01.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ebabbeb4]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[464 01-18 01:59:01.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ebabbeb4]send state message COMPLETED -[465 01-18 01:59:01.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ebabbeb4]Received message COMPLETED from shim -[466 01-18 01:59:01.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ebabbeb4]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[467 01-18 01:59:01.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824]HandleMessage- COMPLETED. Notify -[468 01-18 01:59:01.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824 -[469 01-18 01:59:01.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[46a 01-18 01:59:01.32 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=exp02,version=1.0,txid=ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824,syscc=false,proposal=0xc421c4d9a0,canname=exp02:1.0 -[46b 01-18 01:59:01.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch -> DEBU launchAndWaitForRegister fetched 2248 bytes from file system -[46c 01-18 01:59:01.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode exp02:1.0 is being launched -[46d 01-18 01:59:01.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -[46e 01-18 01:59:01.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -[46f 01-18 01:59:01.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container: exp02:1.0(networkid:dev,peerid:peer0.org1.example.com) -[470 01-18 01:59:01.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -[471 01-18 01:59:01.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +[3ec 01-18 09:29:51.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=25739, bytesLength=11971] for tx ID: [] to index +[3ed 01-18 09:29:51.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=25739, bytesLength=11971] for tx number:[0] ID: [] to blockNumTranNum index +[3ee 01-18 09:29:51.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[39461], isChainEmpty=[false], lastBlockNumber=[2] +[3ef 01-18 09:29:51.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [2] with 1 transaction(s) +[3f0 01-18 09:29:51.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +[3f1 01-18 09:29:51.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +[3f2 01-18 09:29:51.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +[3f3 01-18 09:29:51.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [2] with [1] transactions +[3f4 01-18 09:29:51.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +[3f5 01-18 09:29:51.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [2] +[3f6 01-18 09:29:51.60 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +[3f7 01-18 09:29:51.60 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [2] +[3f8 01-18 09:29:51.60 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +[3f9 01-18 09:29:51.60 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +[3fa 01-18 09:29:51.60 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +[3fb 01-18 09:29:51.60 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +[3fc 01-18 09:29:51.60 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +[3fd 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +[3fe 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4217edf20 +[3ff 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[400 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[401 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +[402 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[403 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[404 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421b9fdb0, header 0xc4217edf50 +[405 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +[406 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 25a6f9d76aa52c533022afa31b53fbc82db82ffaf4c3ba9c076009e71d65cb1b +[407 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 25a6f9d76aa52c533022afa31b53fbc82db82ffaf4c3ba9c076009e71d65cb1b channel id: +[408 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 25a6f9d76aa52c533022afa31b53fbc82db82ffaf4c3ba9c076009e71d65cb1b channel id: version: 1.0.2 +[409 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.0.2,txid=25a6f9d76aa52c533022afa31b53fbc82db82ffaf4c3ba9c076009e71d65cb1b,syscc=true,proposal=0xc421b9fdb0,canname=lscc:1.0.2 +[40a 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 +[40b 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[40c 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +[40d 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [25a6f9d7]Inside sendExecuteMessage. Message TRANSACTION +[40e 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[40f 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[410 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [25a6f9d7]sendExecuteMsg trigger event TRANSACTION +[411 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [25a6f9d7]Move state message TRANSACTION +[412 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [25a6f9d7]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[413 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[414 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [25a6f9d7]sending state message TRANSACTION +[415 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [25a6f9d7]Received message TRANSACTION from shim +[416 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [25a6f9d7]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[417 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [25a6f9d7]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[418 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [25a6f9d7]Transaction completed. Sending COMPLETED +[419 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [25a6f9d7]Move state message COMPLETED +[41a 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [25a6f9d7]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[41b 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [25a6f9d7]send state message COMPLETED +[41c 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [25a6f9d7]Received message COMPLETED from shim +[41d 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [25a6f9d7]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[41e 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [25a6f9d76aa52c533022afa31b53fbc82db82ffaf4c3ba9c076009e71d65cb1b]HandleMessage- COMPLETED. Notify +[41f 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:25a6f9d76aa52c533022afa31b53fbc82db82ffaf4c3ba9c076009e71d65cb1b +[420 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[421 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[422 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +[423 01-18 09:29:52.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +[424 01-18 09:29:55.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +[425 01-18 09:29:55.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc420294300 +[426 01-18 09:29:55.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[427 01-18 09:29:55.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[428 01-18 09:29:55.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +[429 01-18 09:29:55.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[42a 01-18 09:29:55.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[42b 01-18 09:29:55.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421b9e050, header 0xc420294330 +[42c 01-18 09:29:55.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +[42d 01-18 09:29:55.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6 +[42e 01-18 09:29:55.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6] +[42f 01-18 09:29:55.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[430 01-18 09:29:55.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [88548cdd-23d2-49e3-a12a-182fe7598ef2] +[431 01-18 09:29:55.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6 channel id: businesschannel +[432 01-18 09:29:55.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6 channel id: businesschannel version: 1.0.2 +[433 01-18 09:29:55.55 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6,syscc=true,proposal=0xc421b9e050,canname=lscc:1.0.2 +[434 01-18 09:29:55.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 +[435 01-18 09:29:55.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[436 01-18 09:29:55.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +[437 01-18 09:29:55.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [651f2997]Inside sendExecuteMessage. Message TRANSACTION +[438 01-18 09:29:55.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[439 01-18 09:29:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[43a 01-18 09:29:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [651f2997]sendExecuteMsg trigger event TRANSACTION +[43b 01-18 09:29:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [651f2997]Move state message TRANSACTION +[43c 01-18 09:29:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [651f2997]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[43d 01-18 09:29:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[43e 01-18 09:29:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [651f2997]sending state message TRANSACTION +[43f 01-18 09:29:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [651f2997]Received message TRANSACTION from shim +[440 01-18 09:29:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [651f2997]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[441 01-18 09:29:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [651f2997]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[442 01-18 09:29:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [651f2997]Sending GET_STATE +[443 01-18 09:29:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [651f2997]Received message GET_STATE from shim +[444 01-18 09:29:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [651f2997]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +[445 01-18 09:29:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [651f2997]Received GET_STATE, invoking get state from ledger +[446 01-18 09:29:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[447 01-18 09:29:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [651f2997] getting state for chaincode lscc, key exp02, channel businesschannel +[448 01-18 09:29:55.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +[449 01-18 09:29:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [651f2997]No state associated with key: exp02. Sending RESPONSE with an empty payload +[44a 01-18 09:29:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [651f2997]handleGetState serial send RESPONSE +[44b 01-18 09:29:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [651f2997]Received message RESPONSE from shim +[44c 01-18 09:29:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [651f2997]Handling ChaincodeMessage of type: RESPONSE(state:ready) +[44d 01-18 09:29:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [651f2997]before send +[44f 01-18 09:29:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [651f2997]GetState received payload RESPONSE +[44e 01-18 09:29:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [651f2997]after send +[451 01-18 09:29:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.createChaincode.putChaincodeData.PutState.handlePutState -> DEBU [651f2997]Inside putstate +[452 01-18 09:29:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.createChaincode.putChaincodeData.PutState.handlePutState -> DEBU [651f2997]Sending PUT_STATE +[453 01-18 09:29:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [651f2997]Received message PUT_STATE from shim +[454 01-18 09:29:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [651f2997]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +[455 01-18 09:29:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[456 01-18 09:29:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [651f2997]state is ready +[457 01-18 09:29:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [651f2997]Completed PUT_STATE. Sending RESPONSE +[458 01-18 09:29:55.57 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [651f2997]enterBusyState trigger event RESPONSE +[459 01-18 09:29:55.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [651f2997]Move state message RESPONSE +[45a 01-18 09:29:55.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [651f2997]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +[45b 01-18 09:29:55.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[45c 01-18 09:29:55.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [651f2997]sending state message RESPONSE +[450 01-18 09:29:55.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [651f2997]Received RESPONSE, communicated (state:ready) +[45d 01-18 09:29:55.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [651f2997]Received message RESPONSE from shim +[45e 01-18 09:29:55.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [651f2997]Handling ChaincodeMessage of type: RESPONSE(state:ready) +[45f 01-18 09:29:55.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [651f2997]before send +[460 01-18 09:29:55.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [651f2997]after send +[461 01-18 09:29:55.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.createChaincode.putChaincodeData.PutState.handlePutState -> DEBU [651f2997]Received RESPONSE. Successfully updated state +[462 01-18 09:29:55.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [651f2997]Transaction completed. Sending COMPLETED +[463 01-18 09:29:55.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [651f2997]Received RESPONSE, communicated (state:ready) +[464 01-18 09:29:55.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [651f2997]Move state message COMPLETED +[465 01-18 09:29:55.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [651f2997]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[466 01-18 09:29:55.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [651f2997]send state message COMPLETED +[467 01-18 09:29:55.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [651f2997]Received message COMPLETED from shim +[468 01-18 09:29:55.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [651f2997]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[469 01-18 09:29:55.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6]HandleMessage- COMPLETED. Notify +[46a 01-18 09:29:55.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6 +[46b 01-18 09:29:55.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[46c 01-18 09:29:55.57 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=exp02,version=1.0,txid=651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6,syscc=false,proposal=0xc421b9e050,canname=exp02:1.0 +[46d 01-18 09:29:55.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch -> DEBU launchAndWaitForRegister fetched 2248 bytes from file system +[46e 01-18 09:29:55.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode exp02:1.0 is being launched +[46f 01-18 09:29:55.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +[470 01-18 09:29:55.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] +[471 01-18 09:29:55.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container: exp02:1.0(networkid:dev,peerid:peer0.org1.example.com) +[472 01-18 09:29:55.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 +[473 01-18 09:29:55.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: CORE_CHAINCODE_ID_NAME=exp02:1.0 CORE_PEER_TLS_ENABLED=true CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -[472 01-18 01:59:01.32 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(dev-peer0.org1.example.com-exp02-1.0) lock -[473 01-18 01:59:01.32 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (dev-peer0.org1.example.com-exp02-1.0) lock -[474 01-18 01:59:01.32 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Cleanup container dev-peer0.org1.example.com-exp02-1.0 -[475 01-18 01:59:01.33 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Stop container dev-peer0.org1.example.com-exp02-1.0(No such container: dev-peer0.org1.example.com-exp02-1.0) -[476 01-18 01:59:01.33 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Kill container dev-peer0.org1.example.com-exp02-1.0 (No such container: dev-peer0.org1.example.com-exp02-1.0) -[477 01-18 01:59:01.33 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Remove container dev-peer0.org1.example.com-exp02-1.0 (No such container: dev-peer0.org1.example.com-exp02-1.0) -[478 01-18 01:59:01.33 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Start container dev-peer0.org1.example.com-exp02-1.0 -[479 01-18 01:59:01.33 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: v102_default -[47a 01-18 01:59:01.33 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer0.org1.example.com-exp02-1.0 -[47b 01-18 01:59:01.34 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-could not find image (container id ), because of ...attempt to recreate image -[47c 01-18 01:59:01.34 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms] do.do.Start.func1.GenerateDockerBuild.generateDockerfile -> DEBU +[474 01-18 09:29:55.57 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(dev-peer0.org1.example.com-exp02-1.0) lock +[475 01-18 09:29:55.57 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (dev-peer0.org1.example.com-exp02-1.0) lock +[476 01-18 09:29:55.57 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Cleanup container dev-peer0.org1.example.com-exp02-1.0 +[477 01-18 09:29:55.57 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Stop container dev-peer0.org1.example.com-exp02-1.0(No such container: dev-peer0.org1.example.com-exp02-1.0) +[478 01-18 09:29:55.58 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Kill container dev-peer0.org1.example.com-exp02-1.0 (No such container: dev-peer0.org1.example.com-exp02-1.0) +[479 01-18 09:29:55.58 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Remove container dev-peer0.org1.example.com-exp02-1.0 (No such container: dev-peer0.org1.example.com-exp02-1.0) +[47a 01-18 09:29:55.58 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Start container dev-peer0.org1.example.com-exp02-1.0 +[47b 01-18 09:29:55.58 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: v102_default +[47c 01-18 09:29:55.58 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer0.org1.example.com-exp02-1.0 +[47d 01-18 09:29:55.58 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-could not find image (container id ), because of ...attempt to recreate image +[47e 01-18 09:29:55.59 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms] do.do.Start.func1.GenerateDockerBuild.generateDockerfile -> DEBU FROM hyperledger/fabric-baseos:x86_64-0.3.2 ADD binpackage.tar /usr/local/bin LABEL org.hyperledger.fabric.chaincode.id.name="exp02" \ @@ -1240,1314 +1242,1315 @@ LABEL org.hyperledger.fabric.chaincode.id.name="exp02" \ ENV CORE_CHAINCODE_BUILDLEVEL=1.0.2 ENV CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt COPY peer.crt /etc/hyperledger/fabric/peer.crt -[47d 01-18 01:59:01.34 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/util] generateDockerBuild.GenerateDockerBuild.DockerBuild -> DEBU Attempting build with image hyperledger/fabric-ccenv:x86_64-1.0.2 -[47e 01-18 01:59:24.68 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.deployImage -> DEBU Created image: dev-peer0.org1.example.com-exp02-1.0-207541cceae707183f8108fcfc8ad03b450411570fb69827d3d40dc2ffdddbb4 -[47f 01-18 01:59:24.68 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-recreated image successfully -[480 01-18 01:59:24.68 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer0.org1.example.com-exp02-1.0 -[481 01-18 01:59:24.89 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Created container: dev-peer0.org1.example.com-exp02-1.0-207541cceae707183f8108fcfc8ad03b450411570fb69827d3d40dc2ffdddbb4 -[482 01-18 01:59:25.55 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Started container dev-peer0.org1.example.com-exp02-1.0 -[483 01-18 01:59:25.55 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(dev-peer0.org1.example.com-exp02-1.0) -[484 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -[485 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -[486 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -[487 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -[488 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode exp02:1.0 -[489 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"exp02:1.0" , sending back REGISTERED -[48a 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -[48b 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode exp02:1.0 launch seq completed -[48c 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.sendReady.ready -> DEBU sending READY -[48d 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[48e 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[48f 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ebabbeb4]Move state message READY -[490 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ebabbeb4]Fabric side Handling ChaincodeMessage of type: READY in state established -[491 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [ebabbeb4]Entered state ready -[492 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824 -[493 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ebabbeb4]sending state message READY -[494 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch -> DEBU sending init completed -[495 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch -> DEBU LaunchChaincode complete -[496 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute -> DEBU Entry -[497 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute -> DEBU chaincode canonical name: exp02:1.0 -[498 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ebabbeb4]Inside sendExecuteMessage. Message INIT -[499 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[49a 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[49b 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ebabbeb4]sendExecuteMsg trigger event INIT -[49c 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ebabbeb4]Move state message INIT -[49d 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ebabbeb4]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[49e 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[49f 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ebabbeb4]sending state message INIT -[4a0 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ebabbeb4]Received message PUT_STATE from shim -[4a1 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ebabbeb4]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -[4a2 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[4a3 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [ebabbeb4]state is ready -[4a4 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [ebabbeb4]Completed PUT_STATE. Sending RESPONSE -[4a5 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [ebabbeb4]enterBusyState trigger event RESPONSE -[4a6 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ebabbeb4]Move state message RESPONSE -[4a7 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ebabbeb4]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -[4a8 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[4a9 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ebabbeb4]sending state message RESPONSE -[4aa 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ebabbeb4]Received message PUT_STATE from shim -[4ab 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ebabbeb4]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -[4ac 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[4ad 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [ebabbeb4]state is ready -[4ae 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [ebabbeb4]Completed PUT_STATE. Sending RESPONSE -[4af 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [ebabbeb4]enterBusyState trigger event RESPONSE -[4b0 01-18 01:59:25.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ebabbeb4]Move state message RESPONSE -[4b1 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ebabbeb4]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -[4b2 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[4b3 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ebabbeb4]sending state message RESPONSE -[4b4 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ebabbeb4]Received message COMPLETED from shim -[4b5 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ebabbeb4]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[4b6 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824]HandleMessage- COMPLETED. Notify -[4b7 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824 -[4b8 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute -> DEBU Exit -[4b9 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[4ba 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[4bb 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [b2886e93-0dcf-4cd2-aef9-ab99e897e7b2] -[4bc 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -[4bd 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824 channel id: businesschannel chaincode id: name:"lscc" -[4be 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc -[4bf 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824 channel id: businesschannel version: 1.0.2 -[4c0 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824,syscc=true,proposal=0xc421c4d9a0,canname=escc:1.0.2 -[4c1 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 -[4c2 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[4c3 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 -[4c4 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ebabbeb4]Inside sendExecuteMessage. Message TRANSACTION -[4c5 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[4c6 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[4c7 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ebabbeb4]sendExecuteMsg trigger event TRANSACTION -[4c8 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ebabbeb4]Move state message TRANSACTION -[4c9 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ebabbeb4]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[4ca 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[4cb 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ebabbeb4]sending state message TRANSACTION -[4cc 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ebabbeb4]Received message TRANSACTION from shim -[4cd 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ebabbeb4]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[4ce 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [ebabbeb4]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[4cf 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -[4d0 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -[4d1 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ebabbeb4]Transaction completed. Sending COMPLETED -[4d2 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ebabbeb4]Move state message COMPLETED -[4d3 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ebabbeb4]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[4d4 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ebabbeb4]send state message COMPLETED -[4d5 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ebabbeb4]Received message COMPLETED from shim -[4d6 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ebabbeb4]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[4d7 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824]HandleMessage- COMPLETED. Notify -[4d8 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824 -[4d9 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[4da 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -[4db 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -[4dc 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [b2886e93-0dcf-4cd2-aef9-ab99e897e7b2] -[4dd 01-18 01:59:25.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -[4de 01-18 01:59:27.63 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [3], peers number [3] -[4df 01-18 01:59:27.65 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [3], peers number [3] -[4e0 01-18 01:59:27.65 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -[4e1 01-18 01:59:27.65 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -[4e2 01-18 01:59:27.65 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -[4e3 01-18 01:59:27.65 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421daeba0 -[4e4 01-18 01:59:27.65 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\345\376\377\322\005\020\211\346\356\222\001\"\017businesschannel*@ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030\301\237\303\"+C\367\344\024\317<\323\262\343\371\027\307\t\002\340b0*\253" -[4e5 01-18 01:59:27.66 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[4e6 01-18 01:59:27.66 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[4e7 01-18 01:59:27.67 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -[4e8 01-18 01:59:27.67 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[4e9 01-18 01:59:27.67 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[4ea 01-18 01:59:27.67 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421968000, header channel_header:"\010\003\032\014\010\345\376\377\322\005\020\211\346\356\222\001\"\017businesschannel*@ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030\301\237\303\"+C\367\344\024\317<\323\262\343\371\027\307\t\002\340b0*\253" -[4eb 01-18 01:59:27.67 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -[4ec 01-18 01:59:27.67 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -[4ed 01-18 01:59:27.67 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -[4ee 01-18 01:59:27.71 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -[4ef 01-18 01:59:27.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824] -[4f0 01-18 01:59:27.71 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -[4f1 01-18 01:59:27.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[4f2 01-18 01:59:27.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [5f60fc0c-7094-4f1a-8683-3a0d0b75530a] -[4f3 01-18 01:59:27.71 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=da0f241e-8a8e-4378-829a-c45835b2f3cc,syscc=true,proposal=0x0,canname=vscc:1.0.2 -[4f4 01-18 01:59:27.71 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824 chaindID businesschannel -[4f5 01-18 01:59:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 -[4f6 01-18 01:59:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[4f7 01-18 01:59:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 -[4f8 01-18 01:59:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [da0f241e]Inside sendExecuteMessage. Message TRANSACTION -[4f9 01-18 01:59:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[4fa 01-18 01:59:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [da0f241e]sendExecuteMsg trigger event TRANSACTION -[4fb 01-18 01:59:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [da0f241e]Move state message TRANSACTION -[4fc 01-18 01:59:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [da0f241e]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[4fd 01-18 01:59:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[4fe 01-18 01:59:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [da0f241e]sending state message TRANSACTION -[4ff 01-18 01:59:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [da0f241e]Received message TRANSACTION from shim -[500 01-18 01:59:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [da0f241e]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[501 01-18 01:59:27.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [da0f241e]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[502 01-18 01:59:27.71 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -[503 01-18 01:59:27.71 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -[504 01-18 01:59:27.73 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC -[505 01-18 01:59:27.73 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} -[506 01-18 01:59:27.73 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} -[507 01-18 01:59:27.73 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace exp02 -[508 01-18 01:59:27.73 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc -[509 01-18 01:59:27.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [acc729d2-4178-413e-bd67-6b770cf04f8d] -[50a 01-18 01:59:27.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -[50b 01-18 01:59:27.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [acc729d2-4178-413e-bd67-6b770cf04f8d] -[50c 01-18 01:59:27.73 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 -[50d 01-18 01:59:27.73 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x953df0)} -[50e 01-18 01:59:27.73 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -[50f 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [da0f241e]Transaction completed. Sending COMPLETED -[510 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [da0f241e]Move state message COMPLETED -[511 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [da0f241e]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[512 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [da0f241e]send state message COMPLETED -[513 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [da0f241e]Received message COMPLETED from shim -[514 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [da0f241e]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[515 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [da0f241e-8a8e-4378-829a-c45835b2f3cc]HandleMessage- COMPLETED. Notify -[516 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:da0f241e-8a8e-4378-829a-c45835b2f3cc -[517 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[518 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [5f60fc0c-7094-4f1a-8683-3a0d0b75530a] -[519 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -[51a 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -[51b 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc421eff400), Data:(*common.BlockData)(0xc421dbb220), Metadata:(*common.BlockMetadata)(0xc421dbb260)}, doMVCCValidation=true -[51c 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -[51d 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=exp02 -[51e 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [3] Transaction index [0] TxId [ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824] marked as valid by state validator -[51f 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0x97, 0xe, 0xbe, 0xd9, 0x27, 0xde, 0xad, 0x13, 0x22, 0x1c, 0xcb, 0xdd, 0x26, 0x3a, 0xf8, 0x99, 0xca, 0x2c, 0x54, 0x92, 0x33, 0x30, 0x7d, 0x62, 0xca, 0x6a, 0xf9, 0x20, 0xf, 0xe3, 0x82, 0xcd} txOffsets= -txId=ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824 locPointer=offset=70, bytesLength=3395 +[47f 01-18 09:29:55.59 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/util] generateDockerBuild.GenerateDockerBuild.DockerBuild -> DEBU Attempting build with image hyperledger/fabric-ccenv:x86_64-1.0.2 +[480 01-18 09:29:56.32 UTC] [github.com/hyperledger/fabric/core/deliverservice] handleMessage.stopBeingLeader.func1.StopDeliverForChannel.Stop.Close -> DEBU Entering +[481 01-18 09:29:56.32 UTC] [github.com/hyperledger/fabric/core/deliverservice] handleMessage.stopBeingLeader.func1.StopDeliverForChannel.Stop.Close -> DEBU Exiting +[482 01-18 09:29:56.32 UTC] [github.com/hyperledger/fabric/core/deliverservice] handleMessage.stopBeingLeader.func1.StopDeliverForChannel -> DEBU This peer will stop pass blocks from orderer service to other peers +[483 01-18 09:29:56.32 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.Disconnect -> DEBU Entering +[484 01-18 09:29:56.32 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.Disconnect -> DEBU Exiting +[485 01-18 09:29:56.32 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try -> WARN Got error: rpc error: code = Internal desc = transport is closing ,at 1 attempt. Retrying in 1s +[486 01-18 09:29:56.32 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> WARN [businesschannel] Receive error: Client is closing +[487 01-18 09:29:56.33 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Close -> DEBU Entering +[488 01-18 09:29:56.33 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Close -> DEBU Exiting +[489 01-18 09:30:20.55 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.deployImage -> DEBU Created image: dev-peer0.org1.example.com-exp02-1.0-207541cceae707183f8108fcfc8ad03b450411570fb69827d3d40dc2ffdddbb4 +[48a 01-18 09:30:20.55 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-recreated image successfully +[48b 01-18 09:30:20.55 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer0.org1.example.com-exp02-1.0 +[48c 01-18 09:30:20.65 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Created container: dev-peer0.org1.example.com-exp02-1.0-207541cceae707183f8108fcfc8ad03b450411570fb69827d3d40dc2ffdddbb4 +[48d 01-18 09:30:21.26 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Started container dev-peer0.org1.example.com-exp02-1.0 +[48e 01-18 09:30:21.26 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(dev-peer0.org1.example.com-exp02-1.0) +[48f 01-18 09:30:21.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +[490 01-18 09:30:21.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +[491 01-18 09:30:21.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +[492 01-18 09:30:21.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +[493 01-18 09:30:21.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode exp02:1.0 +[494 01-18 09:30:21.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"exp02:1.0" , sending back REGISTERED +[495 01-18 09:30:21.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +[496 01-18 09:30:21.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode exp02:1.0 launch seq completed +[497 01-18 09:30:21.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.sendReady.ready -> DEBU sending READY +[498 01-18 09:30:21.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[499 01-18 09:30:21.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[49a 01-18 09:30:21.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [651f2997]Move state message READY +[49b 01-18 09:30:21.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [651f2997]Fabric side Handling ChaincodeMessage of type: READY in state established +[49c 01-18 09:30:21.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [651f2997]Entered state ready +[49d 01-18 09:30:21.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6 +[49e 01-18 09:30:21.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [651f2997]sending state message READY +[49f 01-18 09:30:21.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch -> DEBU sending init completed +[4a0 01-18 09:30:21.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch -> DEBU LaunchChaincode complete +[4a1 01-18 09:30:21.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute -> DEBU Entry +[4a2 01-18 09:30:21.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute -> DEBU chaincode canonical name: exp02:1.0 +[4a3 01-18 09:30:21.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage -> DEBU [651f2997]Inside sendExecuteMessage. Message INIT +[4a4 01-18 09:30:21.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[4a5 01-18 09:30:21.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[4a6 01-18 09:30:21.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage -> DEBU [651f2997]sendExecuteMsg trigger event INIT +[4a7 01-18 09:30:21.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [651f2997]Move state message INIT +[4a8 01-18 09:30:21.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [651f2997]Fabric side Handling ChaincodeMessage of type: INIT in state ready +[4a9 01-18 09:30:21.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[4aa 01-18 09:30:21.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [651f2997]sending state message INIT +[4ab 01-18 09:30:21.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [651f2997]Received message PUT_STATE from shim +[4ac 01-18 09:30:21.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [651f2997]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +[4ad 01-18 09:30:21.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[4ae 01-18 09:30:21.48 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [651f2997]state is ready +[4af 01-18 09:30:21.48 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [651f2997]Completed PUT_STATE. Sending RESPONSE +[4b0 01-18 09:30:21.48 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [651f2997]enterBusyState trigger event RESPONSE +[4b1 01-18 09:30:21.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [651f2997]Move state message RESPONSE +[4b2 01-18 09:30:21.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [651f2997]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +[4b3 01-18 09:30:21.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[4b4 01-18 09:30:21.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [651f2997]sending state message RESPONSE +[4b5 01-18 09:30:21.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [651f2997]Received message PUT_STATE from shim +[4b6 01-18 09:30:21.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [651f2997]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +[4b7 01-18 09:30:21.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[4b8 01-18 09:30:21.49 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [651f2997]state is ready +[4b9 01-18 09:30:21.49 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [651f2997]Completed PUT_STATE. Sending RESPONSE +[4ba 01-18 09:30:21.49 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [651f2997]enterBusyState trigger event RESPONSE +[4bb 01-18 09:30:21.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [651f2997]Move state message RESPONSE +[4bc 01-18 09:30:21.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [651f2997]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +[4bd 01-18 09:30:21.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[4be 01-18 09:30:21.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [651f2997]sending state message RESPONSE +[4bf 01-18 09:30:21.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [651f2997]Received message COMPLETED from shim +[4c0 01-18 09:30:21.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [651f2997]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[4c1 01-18 09:30:21.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6]HandleMessage- COMPLETED. Notify +[4c2 01-18 09:30:21.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6 +[4c3 01-18 09:30:21.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute -> DEBU Exit +[4c4 01-18 09:30:21.51 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[4c5 01-18 09:30:21.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +[4c6 01-18 09:30:21.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [88548cdd-23d2-49e3-a12a-182fe7598ef2] +[4c7 01-18 09:30:21.51 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +[4c8 01-18 09:30:21.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6 channel id: businesschannel chaincode id: name:"lscc" +[4c9 01-18 09:30:21.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc +[4ca 01-18 09:30:21.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6 channel id: businesschannel version: 1.0.2 +[4cb 01-18 09:30:21.52 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6,syscc=true,proposal=0xc421b9e050,canname=escc:1.0.2 +[4cc 01-18 09:30:21.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 +[4cd 01-18 09:30:21.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[4ce 01-18 09:30:21.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 +[4cf 01-18 09:30:21.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [651f2997]Inside sendExecuteMessage. Message TRANSACTION +[4d0 01-18 09:30:21.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[4d1 01-18 09:30:21.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[4d2 01-18 09:30:21.53 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [651f2997]sendExecuteMsg trigger event TRANSACTION +[4d3 01-18 09:30:21.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [651f2997]Move state message TRANSACTION +[4d4 01-18 09:30:21.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [651f2997]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[4d5 01-18 09:30:21.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[4d6 01-18 09:30:21.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [651f2997]sending state message TRANSACTION +[4d7 01-18 09:30:21.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [651f2997]Received message TRANSACTION from shim +[4d8 01-18 09:30:21.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [651f2997]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[4d9 01-18 09:30:21.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [651f2997]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[4da 01-18 09:30:21.53 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[4db 01-18 09:30:21.53 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[4dc 01-18 09:30:21.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [651f2997]Transaction completed. Sending COMPLETED +[4dd 01-18 09:30:21.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [651f2997]Move state message COMPLETED +[4de 01-18 09:30:21.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [651f2997]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[4df 01-18 09:30:21.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [651f2997]send state message COMPLETED +[4e0 01-18 09:30:21.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [651f2997]Received message COMPLETED from shim +[4e1 01-18 09:30:21.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [651f2997]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[4e2 01-18 09:30:21.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6]HandleMessage- COMPLETED. Notify +[4e3 01-18 09:30:21.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6 +[4e4 01-18 09:30:21.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[4e5 01-18 09:30:21.54 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[4e6 01-18 09:30:21.54 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +[4e7 01-18 09:30:21.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [88548cdd-23d2-49e3-a12a-182fe7598ef2] +[4e8 01-18 09:30:21.54 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +[4e9 01-18 09:30:23.70 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +[4ea 01-18 09:30:23.70 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +[4eb 01-18 09:30:23.70 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +[4ec 01-18 09:30:23.70 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc422619b90 +[4ed 01-18 09:30:23.70 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\223\322\201\323\005\020\350\237\205\210\002\"\017businesschannel*@651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030\273\240\3642\341\013#\320\247\267\210\222\354\377n\237\303<(;\004\014\314y" +[4ee 01-18 09:30:23.70 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[4ef 01-18 09:30:23.70 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[4f0 01-18 09:30:23.70 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +[4f1 01-18 09:30:23.70 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[4f2 01-18 09:30:23.70 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[4f3 01-18 09:30:23.70 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421ce0a80, header channel_header:"\010\003\032\014\010\223\322\201\323\005\020\350\237\205\210\002\"\017businesschannel*@651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030\273\240\3642\341\013#\320\247\267\210\222\354\377n\237\303<(;\004\014\314y" +[4f4 01-18 09:30:23.70 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +[4f5 01-18 09:30:23.70 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +[4f6 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +[4f7 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +[4f8 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6] +[4f9 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +[4fa 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[4fb 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [3f688420-871a-4c10-889c-4c84eacffa0b] +[4fc 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=2164ce2d-b4b5-4838-bec8-ebad0b052c72,syscc=true,proposal=0x0,canname=vscc:1.0.2 +[4fd 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6 chaindID businesschannel +[4fe 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 +[4ff 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[500 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 +[501 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [2164ce2d]Inside sendExecuteMessage. Message TRANSACTION +[502 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[503 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [2164ce2d]sendExecuteMsg trigger event TRANSACTION +[504 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2164ce2d]Move state message TRANSACTION +[505 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2164ce2d]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[506 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[507 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2164ce2d]sending state message TRANSACTION +[508 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2164ce2d]Received message TRANSACTION from shim +[509 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2164ce2d]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[50a 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [2164ce2d]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[50b 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +[50c 01-18 09:30:23.71 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +[50d 01-18 09:30:23.72 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC +[50e 01-18 09:30:23.72 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +[50f 01-18 09:30:23.72 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +[510 01-18 09:30:23.72 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace exp02 +[511 01-18 09:30:23.72 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc +[512 01-18 09:30:23.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [ce59b5c2-e1fb-4a1a-bd64-ecac3384cd0d] +[513 01-18 09:30:23.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +[514 01-18 09:30:23.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [ce59b5c2-e1fb-4a1a-bd64-ecac3384cd0d] +[515 01-18 09:30:23.72 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 +[516 01-18 09:30:23.72 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x953df0)} +[517 01-18 09:30:23.72 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +[518 01-18 09:30:23.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2164ce2d]Transaction completed. Sending COMPLETED +[519 01-18 09:30:23.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2164ce2d]Move state message COMPLETED +[51a 01-18 09:30:23.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2164ce2d]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[51b 01-18 09:30:23.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2164ce2d]send state message COMPLETED +[51c 01-18 09:30:23.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2164ce2d]Received message COMPLETED from shim +[51d 01-18 09:30:23.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2164ce2d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[51e 01-18 09:30:23.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2164ce2d-b4b5-4838-bec8-ebad0b052c72]HandleMessage- COMPLETED. Notify +[51f 01-18 09:30:23.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:2164ce2d-b4b5-4838-bec8-ebad0b052c72 +[520 01-18 09:30:23.73 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[521 01-18 09:30:23.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [3f688420-871a-4c10-889c-4c84eacffa0b] +[522 01-18 09:30:23.74 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +[523 01-18 09:30:23.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +[524 01-18 09:30:23.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc4225ab780), Data:(*common.BlockData)(0xc4222ca160), Metadata:(*common.BlockMetadata)(0xc4222ca1a0)}, doMVCCValidation=true +[525 01-18 09:30:23.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +[526 01-18 09:30:23.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=exp02 +[527 01-18 09:30:23.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [3] Transaction index [0] TxId [651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6] marked as valid by state validator +[528 01-18 09:30:23.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0x8a, 0x53, 0x56, 0xf, 0x7f, 0x2f, 0x8e, 0x2d, 0xd8, 0x4c, 0x3b, 0x34, 0x50, 0xc5, 0x52, 0x82, 0xe4, 0xc0, 0x8c, 0x36, 0x63, 0x95, 0x3a, 0xc, 0x39, 0x9b, 0xb8, 0x1a, 0x82, 0x88, 0x47, 0xb9} txOffsets= +txId=651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6 locPointer=offset=70, bytesLength=3393 ] -[520 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=39529, bytesLength=3395] for tx ID: [ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824] to index -[521 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=39529, bytesLength=3395] for tx number:[0] ID: [ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824] to blockNumTranNum index -[522 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[44675], isChainEmpty=[false], lastBlockNumber=[3] -[523 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [3] with 1 transaction(s) -[524 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -[525 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -[526 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] -[527 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] -[528 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6c, 0x73, 0x63, 0x63, 0x0, 0x65, 0x78, 0x70, 0x30, 0x32}] -[529 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -[52a 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [3] with [1] transactions -[52b 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [3] -[52c 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -[52d 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: ebabbeb4007c040a32887a67704f9d8fe77dc22e5e9a1a73d4b23540b8ecc824 -[52e 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [3] -[52f 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -[530 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -[531 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -[532 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -[533 01-18 01:59:27.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -[534 01-18 01:59:48.19 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [4], peers number [3] -[535 01-18 01:59:48.19 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [4], peers number [3] -[536 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -[537 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -[538 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -[539 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421b3bc80 -[53a 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\375\376\377\322\005\020\220\204\253\262\003\"\017businesschannel*@544f379dda618ff2c82301cddc728a5ab3076d114052fb463df7e9d6c1ede6fd:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\030.\346n\376\017\374\362\314\316\370\257\277\034\314\3600Y\212Kj\313\"\227\377" -[53b 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[53c 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[53d 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} -[53e 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[53f 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[540 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421968000, header channel_header:"\010\003\032\014\010\375\376\377\322\005\020\220\204\253\262\003\"\017businesschannel*@544f379dda618ff2c82301cddc728a5ab3076d114052fb463df7e9d6c1ede6fd:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\030.\346n\376\017\374\362\314\316\370\257\277\034\314\3600Y\212Kj\313\"\227\377" -[541 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -[542 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -[543 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -[544 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -[545 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [544f379dda618ff2c82301cddc728a5ab3076d114052fb463df7e9d6c1ede6fd] -[546 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -[547 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[548 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [c1b8ae7c-9127-4067-bfaf-bf89d641be82] -[549 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=9231c3a0-0f5f-4f23-93c8-89e4afd1192e,syscc=true,proposal=0x0,canname=vscc:1.0.2 -[54a 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 544f379dda618ff2c82301cddc728a5ab3076d114052fb463df7e9d6c1ede6fd chaindID businesschannel -[54b 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 -[54c 01-18 01:59:48.20 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[54d 01-18 01:59:48.21 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 -[54e 01-18 01:59:48.21 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9231c3a0]Inside sendExecuteMessage. Message TRANSACTION -[54f 01-18 01:59:48.21 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[550 01-18 01:59:48.21 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9231c3a0]sendExecuteMsg trigger event TRANSACTION -[551 01-18 01:59:48.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9231c3a0]Move state message TRANSACTION -[552 01-18 01:59:48.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9231c3a0]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[553 01-18 01:59:48.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[554 01-18 01:59:48.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9231c3a0]sending state message TRANSACTION -[555 01-18 01:59:48.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9231c3a0]Received message TRANSACTION from shim -[556 01-18 01:59:48.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9231c3a0]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[557 01-18 01:59:48.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [9231c3a0]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[558 01-18 01:59:48.21 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -[559 01-18 01:59:48.21 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -[55a 01-18 01:59:48.21 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC -[55b 01-18 01:59:48.21 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} -[55c 01-18 01:59:48.21 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} -[55d 01-18 01:59:48.21 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace exp02 -[55e 01-18 01:59:48.21 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc -[55f 01-18 01:59:48.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [26418205-1426-4f26-a3b8-060e826aae4d] -[560 01-18 01:59:48.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -[561 01-18 01:59:48.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [26418205-1426-4f26-a3b8-060e826aae4d] -[562 01-18 01:59:48.22 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 -[563 01-18 01:59:48.22 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x953df0)} -[564 01-18 01:59:48.22 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode exp02 is already instantiated -[565 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9231c3a0]Transaction completed. Sending COMPLETED -[566 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9231c3a0]Move state message COMPLETED -[567 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9231c3a0]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[568 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9231c3a0]send state message COMPLETED -[569 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9231c3a0]Received message COMPLETED from shim -[56a 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9231c3a0]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[56b 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9231c3a0-0f5f-4f23-93c8-89e4afd1192e]HandleMessage- COMPLETED. Notify -[56c 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:9231c3a0-0f5f-4f23-93c8-89e4afd1192e -[56d 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[56e 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> ERRO VSCC check failed for transaction txid=544f379dda618ff2c82301cddc728a5ab3076d114052fb463df7e9d6c1ede6fd, error Chaincode exp02 is already instantiated -[56f 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [c1b8ae7c-9127-4067-bfaf-bf89d641be82] -[570 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> ERRO VSCCValidateTx for transaction txId = 544f379dda618ff2c82301cddc728a5ab3076d114052fb463df7e9d6c1ede6fd returned error Chaincode exp02 is already instantiated -[571 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -[572 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -[573 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc4226f2dc0), Data:(*common.BlockData)(0xc421aa2d20), Metadata:(*common.BlockMetadata)(0xc421aa2d60)}, doMVCCValidation=true -[574 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -[575 01-18 01:59:48.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> WARN Block [4] Transaction index [0] marked as invalid by committer. Reason code [10] -[576 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0xa9, 0xa2, 0x5c, 0x6d, 0x32, 0x6, 0xa0, 0x2d, 0x65, 0xc3, 0x6e, 0x5b, 0xf7, 0xb7, 0x4f, 0x48, 0x2d, 0xb5, 0x26, 0x88, 0xf4, 0x50, 0x7e, 0x26, 0xb8, 0xd0, 0xfe, 0x2f, 0x87, 0xde, 0x87, 0x83} txOffsets= -txId=544f379dda618ff2c82301cddc728a5ab3076d114052fb463df7e9d6c1ede6fd locPointer=offset=70, bytesLength=3394 +[529 01-18 09:30:23.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=39531, bytesLength=3393] for tx ID: [651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6] to index +[52a 01-18 09:30:23.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=39531, bytesLength=3393] for tx number:[0] ID: [651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6] to blockNumTranNum index +[52b 01-18 09:30:23.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[44674], isChainEmpty=[false], lastBlockNumber=[3] +[52c 01-18 09:30:23.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [3] with 1 transaction(s) +[52d 01-18 09:30:23.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +[52e 01-18 09:30:23.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +[52f 01-18 09:30:23.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6c, 0x73, 0x63, 0x63, 0x0, 0x65, 0x78, 0x70, 0x30, 0x32}] +[530 01-18 09:30:23.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] +[531 01-18 09:30:23.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] +[532 01-18 09:30:23.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +[533 01-18 09:30:23.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [3] with [1] transactions +[534 01-18 09:30:23.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [3] +[535 01-18 09:30:23.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +[536 01-18 09:30:23.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: 651f29977575c680a384fe087a51b7099d2a349e72291c9fb42595a0fd86f4e6 +[537 01-18 09:30:23.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [3] +[538 01-18 09:30:23.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +[539 01-18 09:30:23.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +[53a 01-18 09:30:23.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +[53b 01-18 09:30:23.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +[53c 01-18 09:30:23.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +[53d 01-18 09:30:47.22 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +[53e 01-18 09:30:47.22 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +[53f 01-18 09:30:47.22 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +[540 01-18 09:30:47.22 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421967bc0 +[541 01-18 09:30:47.22 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\256\322\201\323\005\020\353\233\354*\"\017businesschannel*@79910bc72d1a9ba3fd9ac6a98cdec470c2b4c2afd8dd6128c715aa89ad94672c:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\030\343\0211\005\250w\252\312\31341o<\362\302P\273g>4\340\275\032\306" +[542 01-18 09:30:47.22 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[543 01-18 09:30:47.22 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[544 01-18 09:30:47.22 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} +[545 01-18 09:30:47.22 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[546 01-18 09:30:47.22 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[547 01-18 09:30:47.22 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc4214d6000, header channel_header:"\010\003\032\013\010\256\322\201\323\005\020\353\233\354*\"\017businesschannel*@79910bc72d1a9ba3fd9ac6a98cdec470c2b4c2afd8dd6128c715aa89ad94672c:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\030\343\0211\005\250w\252\312\31341o<\362\302P\273g>4\340\275\032\306" +[548 01-18 09:30:47.22 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +[549 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +[54a 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +[54b 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +[54c 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [79910bc72d1a9ba3fd9ac6a98cdec470c2b4c2afd8dd6128c715aa89ad94672c] +[54d 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +[54e 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[54f 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [0a141753-c2b4-4924-835d-66c67d12b5d9] +[550 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=b2b5b60d-9d9b-488e-8813-afda1f17d357,syscc=true,proposal=0x0,canname=vscc:1.0.2 +[551 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 79910bc72d1a9ba3fd9ac6a98cdec470c2b4c2afd8dd6128c715aa89ad94672c chaindID businesschannel +[552 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 +[553 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[554 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 +[555 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b2b5b60d]Inside sendExecuteMessage. Message TRANSACTION +[556 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[557 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b2b5b60d]sendExecuteMsg trigger event TRANSACTION +[558 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b2b5b60d]Move state message TRANSACTION +[559 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b2b5b60d]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[55a 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[55b 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b2b5b60d]sending state message TRANSACTION +[55c 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b2b5b60d]Received message TRANSACTION from shim +[55d 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b2b5b60d]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[55e 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [b2b5b60d]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[55f 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +[560 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +[561 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC +[562 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +[563 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +[564 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace exp02 +[565 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc +[566 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [006df40a-8ea0-419f-84cb-6b3a9ed7e114] +[567 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +[568 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [006df40a-8ea0-419f-84cb-6b3a9ed7e114] +[569 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 +[56a 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x953df0)} +[56b 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode exp02 is already instantiated +[56c 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b2b5b60d]Transaction completed. Sending COMPLETED +[56d 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b2b5b60d]Move state message COMPLETED +[56e 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b2b5b60d]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[56f 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b2b5b60d]send state message COMPLETED +[570 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b2b5b60d]Received message COMPLETED from shim +[571 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b2b5b60d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[572 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b2b5b60d-9d9b-488e-8813-afda1f17d357]HandleMessage- COMPLETED. Notify +[573 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:b2b5b60d-9d9b-488e-8813-afda1f17d357 +[574 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[575 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> ERRO VSCC check failed for transaction txid=79910bc72d1a9ba3fd9ac6a98cdec470c2b4c2afd8dd6128c715aa89ad94672c, error Chaincode exp02 is already instantiated +[576 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [0a141753-c2b4-4924-835d-66c67d12b5d9] +[577 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> ERRO VSCCValidateTx for transaction txId = 79910bc72d1a9ba3fd9ac6a98cdec470c2b4c2afd8dd6128c715aa89ad94672c returned error Chaincode exp02 is already instantiated +[578 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +[579 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +[57a 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc421c27e80), Data:(*common.BlockData)(0xc4222c7d80), Metadata:(*common.BlockMetadata)(0xc4222c7dc0)}, doMVCCValidation=true +[57b 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +[57c 01-18 09:30:47.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> WARN Block [4] Transaction index [0] marked as invalid by committer. Reason code [10] +[57d 01-18 09:30:47.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0x93, 0xa4, 0xeb, 0x23, 0x11, 0xc5, 0x82, 0x3, 0x71, 0xbf, 0xef, 0x31, 0x5d, 0x62, 0x4, 0x79, 0xce, 0xd9, 0xc3, 0x8e, 0xe0, 0x77, 0x29, 0xaf, 0x45, 0x72, 0x23, 0x4e, 0x53, 0x11, 0xbd, 0x26} txOffsets= +txId=79910bc72d1a9ba3fd9ac6a98cdec470c2b4c2afd8dd6128c715aa89ad94672c locPointer=offset=70, bytesLength=3393 ] -[577 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=44745, bytesLength=3394] for tx ID: [544f379dda618ff2c82301cddc728a5ab3076d114052fb463df7e9d6c1ede6fd] to index -[578 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=44745, bytesLength=3394] for tx number:[0] ID: [544f379dda618ff2c82301cddc728a5ab3076d114052fb463df7e9d6c1ede6fd] to blockNumTranNum index -[579 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[49891], isChainEmpty=[false], lastBlockNumber=[4] -[57a 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [4] with 1 transaction(s) -[57b 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -[57c 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -[57d 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -[57e 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [4] with [1] transactions -[57f 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Skipping history write for invalid transaction number 0 -[580 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [4] -[581 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -[582 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: 544f379dda618ff2c82301cddc728a5ab3076d114052fb463df7e9d6c1ede6fd -[583 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [4] -[584 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -[585 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -[586 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -[587 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -[588 01-18 01:59:48.24 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -[589 01-18 02:00:09.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -[58a 01-18 02:00:09.27 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc424da6300 -[58b 01-18 02:00:09.27 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[58c 01-18 02:00:09.27 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[58d 01-18 02:00:09.27 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -[58e 01-18 02:00:09.27 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[58f 01-18 02:00:09.27 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[590 01-18 02:00:09.27 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4224920f0, header 0xc424da6330 -[591 01-18 02:00:09.27 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"exp02" -[592 01-18 02:00:09.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f -[593 01-18 02:00:09.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f] -[594 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[595 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [a58123b4-6a36-407b-9fb4-bf34a53f4ae9] -[596 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f channel id: businesschannel -[597 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f,syscc=true,proposal=0xc4224920f0,canname=lscc:1.0.2 -[598 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 -[599 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry -[59a 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -[59b 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [82ba6765]Inside sendExecuteMessage. Message TRANSACTION -[59c 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[59d 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[59e 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [82ba6765]sendExecuteMsg trigger event TRANSACTION -[59f 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [82ba6765]Move state message TRANSACTION -[5a0 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [82ba6765]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[5a1 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[5a2 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [82ba6765]sending state message TRANSACTION -[5a3 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [82ba6765]Received message TRANSACTION from shim -[5a4 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [82ba6765]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[5a5 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [82ba6765]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[5a6 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [82ba6765]Sending GET_STATE -[5a7 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [82ba6765]Received message GET_STATE from shim -[5a8 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [82ba6765]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -[5a9 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [82ba6765]Received GET_STATE, invoking get state from ledger -[5aa 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[5ab 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [82ba6765] getting state for chaincode lscc, key exp02, channel businesschannel -[5ac 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -[5ad 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [82ba6765]Got state. Sending RESPONSE -[5ae 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [82ba6765]handleGetState serial send RESPONSE -[5af 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [82ba6765]Received message RESPONSE from shim -[5b0 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [82ba6765]Handling ChaincodeMessage of type: RESPONSE(state:ready) -[5b1 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [82ba6765]before send -[5b2 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [82ba6765]after send -[5b3 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [82ba6765]Received RESPONSE, communicated (state:ready) -[5b4 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [82ba6765]GetState received payload RESPONSE -[5b5 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [82ba6765]Transaction completed. Sending COMPLETED -[5b6 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [82ba6765]Move state message COMPLETED -[5b7 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [82ba6765]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[5b8 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [82ba6765]send state message COMPLETED -[5b9 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [82ba6765]Received message COMPLETED from shim -[5ba 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [82ba6765]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[5bb 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f]HandleMessage- COMPLETED. Notify -[5bc 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f -[5bd 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Exit -[5be 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache -[5bf 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f channel id: businesschannel version: 1.0 -[5c0 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=exp02,version=1.0,txid=82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f,syscc=false,proposal=0xc4224920f0,canname=exp02:1.0 -[5c1 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : exp02:1.0 -[5c2 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[5c3 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: exp02:1.0 -[5c4 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [82ba6765]Inside sendExecuteMessage. Message TRANSACTION -[5c5 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[5c6 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[5c7 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [82ba6765]sendExecuteMsg trigger event TRANSACTION -[5c8 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [82ba6765]Move state message TRANSACTION -[5c9 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [82ba6765]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[5ca 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[5cb 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [82ba6765]sending state message TRANSACTION -[5cc 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [82ba6765]Received message GET_STATE from shim -[5cd 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [82ba6765]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -[5ce 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [82ba6765]Received GET_STATE, invoking get state from ledger -[5cf 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[5d0 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [82ba6765] getting state for chaincode exp02, key a, channel businesschannel -[5d1 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=exp02, key=a -[5d2 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [82ba6765]Got state. Sending RESPONSE -[5d3 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [82ba6765]handleGetState serial send RESPONSE -[5d4 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [82ba6765]Received message GET_STATE from shim -[5d5 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [82ba6765]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -[5d6 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [82ba6765]Received GET_STATE, invoking get state from ledger -[5d7 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[5d8 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [82ba6765] getting state for chaincode exp02, key b, channel businesschannel -[5d9 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=exp02, key=b -[5da 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [82ba6765]Got state. Sending RESPONSE -[5db 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [82ba6765]handleGetState serial send RESPONSE -[5dc 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [82ba6765]Received message PUT_STATE from shim -[5dd 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [82ba6765]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -[5de 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[5df 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [82ba6765]state is ready -[5e0 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [82ba6765]Completed PUT_STATE. Sending RESPONSE -[5e1 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [82ba6765]enterBusyState trigger event RESPONSE -[5e2 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [82ba6765]Move state message RESPONSE -[5e3 01-18 02:00:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [82ba6765]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -[5e4 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[5e5 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [82ba6765]sending state message RESPONSE -[5e6 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [82ba6765]Received message PUT_STATE from shim -[5e7 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [82ba6765]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -[5e8 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[5e9 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [82ba6765]state is ready -[5ea 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [82ba6765]Completed PUT_STATE. Sending RESPONSE -[5eb 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [82ba6765]enterBusyState trigger event RESPONSE -[5ec 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [82ba6765]Move state message RESPONSE -[5ed 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [82ba6765]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -[5ee 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[5ef 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [82ba6765]sending state message RESPONSE -[5f0 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [82ba6765]Received message COMPLETED from shim -[5f1 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [82ba6765]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[5f2 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f]HandleMessage- COMPLETED. Notify -[5f3 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f -[5f4 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[5f5 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[5f6 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[5f7 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [a58123b4-6a36-407b-9fb4-bf34a53f4ae9] -[5f8 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -[5f9 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f channel id: businesschannel chaincode id: name:"exp02" -[5fa 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"exp02" is escc -[5fb 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f channel id: businesschannel version: 1.0.2 -[5fc 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f,syscc=true,proposal=0xc4224920f0,canname=escc:1.0.2 -[5fd 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 -[5fe 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[5ff 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 -[600 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [82ba6765]Inside sendExecuteMessage. Message TRANSACTION -[601 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[602 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[603 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [82ba6765]sendExecuteMsg trigger event TRANSACTION -[604 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [82ba6765]Move state message TRANSACTION -[605 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [82ba6765]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[606 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[607 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [82ba6765]sending state message TRANSACTION -[608 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [82ba6765]Received message TRANSACTION from shim -[609 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [82ba6765]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[60a 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [82ba6765]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[60b 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -[60c 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -[60d 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [82ba6765]Transaction completed. Sending COMPLETED -[60e 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [82ba6765]Move state message COMPLETED -[60f 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [82ba6765]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[610 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [82ba6765]send state message COMPLETED -[611 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [82ba6765]Received message COMPLETED from shim -[612 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [82ba6765]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[613 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f]HandleMessage- COMPLETED. Notify -[614 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f -[615 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[616 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -[617 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -[618 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [a58123b4-6a36-407b-9fb4-bf34a53f4ae9] -[619 01-18 02:00:09.29 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -[61a 01-18 02:00:11.32 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [5], peers number [3] -[61b 01-18 02:00:11.32 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [5], peers number [3] -[61c 01-18 02:00:11.32 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -[61d 01-18 02:00:11.32 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -[61e 01-18 02:00:11.32 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -[61f 01-18 02:00:11.32 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc422100d80 -[620 01-18 02:00:11.32 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\251\377\377\322\005\020\301\210\311\204\001\"\017businesschannel*@82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f:\t\022\007\022\005exp02" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030\215L\3418\2617/0\026\310\033\"v\267\267\031\315i\305\260\215\352\256\351" -[621 01-18 02:00:11.32 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[622 01-18 02:00:11.32 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[623 01-18 02:00:11.32 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -[624 01-18 02:00:11.32 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[625 01-18 02:00:11.32 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[626 01-18 02:00:11.32 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc422131000, header channel_header:"\010\003\032\014\010\251\377\377\322\005\020\301\210\311\204\001\"\017businesschannel*@82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f:\t\022\007\022\005exp02" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030\215L\3418\2617/0\026\310\033\"v\267\267\031\315i\305\260\215\352\256\351" -[627 01-18 02:00:11.32 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -[628 01-18 02:00:11.32 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -[629 01-18 02:00:11.32 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -[62a 01-18 02:00:11.32 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -[62b 01-18 02:00:11.32 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f] -[62c 01-18 02:00:11.32 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -[62d 01-18 02:00:11.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [9c7d4f5f-93e4-4dad-9329-f20931a83f0f] -[62e 01-18 02:00:11.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -[62f 01-18 02:00:11.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [9c7d4f5f-93e4-4dad-9329-f20931a83f0f] -[630 01-18 02:00:11.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[631 01-18 02:00:11.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [dcf02705-e884-4f34-a3fd-7629c08c697e] -[632 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=53087271-6656-4e0d-a78f-6fac50075504,syscc=true,proposal=0x0,canname=vscc:1.0.2 -[633 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f chaindID businesschannel -[634 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 -[635 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[636 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 -[637 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [53087271]Inside sendExecuteMessage. Message TRANSACTION -[638 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[639 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [53087271]sendExecuteMsg trigger event TRANSACTION -[63a 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [53087271]Move state message TRANSACTION -[63b 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [53087271]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[63c 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[63d 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [53087271]sending state message TRANSACTION -[63e 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [53087271]Received message TRANSACTION from shim -[63f 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [53087271]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[640 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [53087271]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[641 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -[642 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -[643 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -[644 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [53087271]Transaction completed. Sending COMPLETED -[645 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [53087271]Move state message COMPLETED -[646 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [53087271]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[647 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [53087271]send state message COMPLETED -[648 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [53087271]Received message COMPLETED from shim -[649 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [53087271]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[64a 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [53087271-6656-4e0d-a78f-6fac50075504]HandleMessage- COMPLETED. Notify -[64b 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:53087271-6656-4e0d-a78f-6fac50075504 -[64c 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[64d 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [dcf02705-e884-4f34-a3fd-7629c08c697e] -[64e 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -[64f 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -[650 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc4220f7c00), Data:(*common.BlockData)(0xc421fdd080), Metadata:(*common.BlockMetadata)(0xc421fdd0c0)}, doMVCCValidation=true -[651 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -[652 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=exp02, key=a -[653 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=exp02, key=b -[654 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=exp02 -[655 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [5] Transaction index [0] TxId [82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f] marked as valid by state validator -[656 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=5, blockHash=[]byte{0x6c, 0xf7, 0xab, 0xa5, 0x1f, 0xca, 0x2a, 0x58, 0xcb, 0xd4, 0xd1, 0xb3, 0x1d, 0x76, 0xc1, 0x27, 0x8a, 0x2f, 0xe, 0x8d, 0x19, 0x84, 0xf0, 0xbf, 0x33, 0x10, 0xfe, 0x43, 0xbc, 0xb4, 0x60, 0x53} txOffsets= -txId=82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f locPointer=offset=70, bytesLength=2855 +[57e 01-18 09:30:47.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=44744, bytesLength=3393] for tx ID: [79910bc72d1a9ba3fd9ac6a98cdec470c2b4c2afd8dd6128c715aa89ad94672c] to index +[57f 01-18 09:30:47.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=44744, bytesLength=3393] for tx number:[0] ID: [79910bc72d1a9ba3fd9ac6a98cdec470c2b4c2afd8dd6128c715aa89ad94672c] to blockNumTranNum index +[580 01-18 09:30:47.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[49888], isChainEmpty=[false], lastBlockNumber=[4] +[581 01-18 09:30:47.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [4] with 1 transaction(s) +[582 01-18 09:30:47.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +[583 01-18 09:30:47.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +[584 01-18 09:30:47.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +[585 01-18 09:30:47.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [4] with [1] transactions +[586 01-18 09:30:47.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Skipping history write for invalid transaction number 0 +[587 01-18 09:30:47.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [4] +[588 01-18 09:30:47.24 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +[589 01-18 09:30:47.24 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: 79910bc72d1a9ba3fd9ac6a98cdec470c2b4c2afd8dd6128c715aa89ad94672c +[58a 01-18 09:30:47.24 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [4] +[58b 01-18 09:30:47.24 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +[58c 01-18 09:30:47.24 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +[58d 01-18 09:30:47.24 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +[58e 01-18 09:30:47.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +[58f 01-18 09:30:47.25 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +[590 01-18 09:31:07.05 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +[591 01-18 09:31:07.05 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4224ca330 +[592 01-18 09:31:07.05 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[593 01-18 09:31:07.06 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[594 01-18 09:31:07.06 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +[595 01-18 09:31:07.06 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[596 01-18 09:31:07.06 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[597 01-18 09:31:07.06 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422175130, header 0xc4224ca360 +[598 01-18 09:31:07.06 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"exp02" +[599 01-18 09:31:07.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9 +[59a 01-18 09:31:07.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9] +[59b 01-18 09:31:07.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[59c 01-18 09:31:07.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [d931e8f9-cf3b-4b00-a40c-6667807e38c8] +[59d 01-18 09:31:07.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9 channel id: businesschannel +[59e 01-18 09:31:07.06 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9,syscc=true,proposal=0xc422175130,canname=lscc:1.0.2 +[59f 01-18 09:31:07.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 +[5a0 01-18 09:31:07.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry +[5a1 01-18 09:31:07.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +[5a2 01-18 09:31:07.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7a767993]Inside sendExecuteMessage. Message TRANSACTION +[5a3 01-18 09:31:07.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[5a4 01-18 09:31:07.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[5a5 01-18 09:31:07.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7a767993]sendExecuteMsg trigger event TRANSACTION +[5a6 01-18 09:31:07.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7a767993]Move state message TRANSACTION +[5a7 01-18 09:31:07.08 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7a767993]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[5a8 01-18 09:31:07.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[5a9 01-18 09:31:07.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7a767993]sending state message TRANSACTION +[5aa 01-18 09:31:07.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7a767993]Received message TRANSACTION from shim +[5ab 01-18 09:31:07.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7a767993]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[5ac 01-18 09:31:07.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [7a767993]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[5ad 01-18 09:31:07.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [7a767993]Sending GET_STATE +[5ae 01-18 09:31:07.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7a767993]Received message GET_STATE from shim +[5af 01-18 09:31:07.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7a767993]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +[5b0 01-18 09:31:07.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [7a767993]Received GET_STATE, invoking get state from ledger +[5b1 01-18 09:31:07.10 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7a767993] getting state for chaincode lscc, key exp02, channel businesschannel +[5b2 01-18 09:31:07.10 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +[5b3 01-18 09:31:07.10 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7a767993]Got state. Sending RESPONSE +[5b4 01-18 09:31:07.10 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [7a767993]handleGetState serial send RESPONSE +[5b5 01-18 09:31:07.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7a767993]Received message RESPONSE from shim +[5b6 01-18 09:31:07.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7a767993]Handling ChaincodeMessage of type: RESPONSE(state:ready) +[5b7 01-18 09:31:07.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [7a767993]before send +[5b8 01-18 09:31:07.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [7a767993]after send +[5b9 01-18 09:31:07.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [7a767993]Received RESPONSE, communicated (state:ready) +[5ba 01-18 09:31:07.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [7a767993]GetState received payload RESPONSE +[5bb 01-18 09:31:07.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7a767993]Transaction completed. Sending COMPLETED +[5bc 01-18 09:31:07.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7a767993]Move state message COMPLETED +[5bd 01-18 09:31:07.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7a767993]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[5be 01-18 09:31:07.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7a767993]send state message COMPLETED +[5bf 01-18 09:31:07.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[5c0 01-18 09:31:07.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7a767993]Received message COMPLETED from shim +[5c1 01-18 09:31:07.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7a767993]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[5c2 01-18 09:31:07.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9]HandleMessage- COMPLETED. Notify +[5c3 01-18 09:31:07.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9 +[5c4 01-18 09:31:07.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Exit +[5c5 01-18 09:31:07.11 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache +[5c6 01-18 09:31:07.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9 channel id: businesschannel version: 1.0 +[5c7 01-18 09:31:07.11 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=exp02,version=1.0,txid=7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9,syscc=false,proposal=0xc422175130,canname=exp02:1.0 +[5c8 01-18 09:31:07.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : exp02:1.0 +[5c9 01-18 09:31:07.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[5ca 01-18 09:31:07.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: exp02:1.0 +[5cb 01-18 09:31:07.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7a767993]Inside sendExecuteMessage. Message TRANSACTION +[5cc 01-18 09:31:07.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[5cd 01-18 09:31:07.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[5ce 01-18 09:31:07.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7a767993]sendExecuteMsg trigger event TRANSACTION +[5cf 01-18 09:31:07.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7a767993]Move state message TRANSACTION +[5d0 01-18 09:31:07.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7a767993]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[5d1 01-18 09:31:07.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[5d2 01-18 09:31:07.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7a767993]sending state message TRANSACTION +[5d3 01-18 09:31:07.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7a767993]Received message GET_STATE from shim +[5d4 01-18 09:31:07.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7a767993]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +[5d5 01-18 09:31:07.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [7a767993]Received GET_STATE, invoking get state from ledger +[5d6 01-18 09:31:07.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[5d7 01-18 09:31:07.12 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7a767993] getting state for chaincode exp02, key a, channel businesschannel +[5d8 01-18 09:31:07.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=exp02, key=a +[5d9 01-18 09:31:07.12 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7a767993]Got state. Sending RESPONSE +[5da 01-18 09:31:07.12 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [7a767993]handleGetState serial send RESPONSE +[5db 01-18 09:31:07.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7a767993]Received message GET_STATE from shim +[5dc 01-18 09:31:07.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7a767993]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +[5dd 01-18 09:31:07.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [7a767993]Received GET_STATE, invoking get state from ledger +[5de 01-18 09:31:07.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[5df 01-18 09:31:07.12 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7a767993] getting state for chaincode exp02, key b, channel businesschannel +[5e0 01-18 09:31:07.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=exp02, key=b +[5e1 01-18 09:31:07.12 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7a767993]Got state. Sending RESPONSE +[5e2 01-18 09:31:07.12 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [7a767993]handleGetState serial send RESPONSE +[5e3 01-18 09:31:07.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7a767993]Received message PUT_STATE from shim +[5e4 01-18 09:31:07.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7a767993]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +[5e5 01-18 09:31:07.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[5e6 01-18 09:31:07.12 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7a767993]state is ready +[5e7 01-18 09:31:07.13 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7a767993]Completed PUT_STATE. Sending RESPONSE +[5e8 01-18 09:31:07.13 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [7a767993]enterBusyState trigger event RESPONSE +[5e9 01-18 09:31:07.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7a767993]Move state message RESPONSE +[5ea 01-18 09:31:07.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7a767993]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +[5eb 01-18 09:31:07.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[5ec 01-18 09:31:07.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7a767993]sending state message RESPONSE +[5ed 01-18 09:31:07.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7a767993]Received message PUT_STATE from shim +[5ee 01-18 09:31:07.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7a767993]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +[5ef 01-18 09:31:07.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[5f0 01-18 09:31:07.13 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7a767993]state is ready +[5f1 01-18 09:31:07.13 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7a767993]Completed PUT_STATE. Sending RESPONSE +[5f2 01-18 09:31:07.13 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [7a767993]enterBusyState trigger event RESPONSE +[5f3 01-18 09:31:07.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7a767993]Move state message RESPONSE +[5f4 01-18 09:31:07.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7a767993]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +[5f5 01-18 09:31:07.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[5f6 01-18 09:31:07.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7a767993]sending state message RESPONSE +[5f7 01-18 09:31:07.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7a767993]Received message COMPLETED from shim +[5f8 01-18 09:31:07.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7a767993]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[5f9 01-18 09:31:07.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9]HandleMessage- COMPLETED. Notify +[5fa 01-18 09:31:07.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9 +[5fb 01-18 09:31:07.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[5fc 01-18 09:31:07.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[5fd 01-18 09:31:07.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +[5fe 01-18 09:31:07.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [d931e8f9-cf3b-4b00-a40c-6667807e38c8] +[5ff 01-18 09:31:07.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +[600 01-18 09:31:07.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9 channel id: businesschannel chaincode id: name:"exp02" +[601 01-18 09:31:07.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"exp02" is escc +[602 01-18 09:31:07.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9 channel id: businesschannel version: 1.0.2 +[603 01-18 09:31:07.14 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9,syscc=true,proposal=0xc422175130,canname=escc:1.0.2 +[604 01-18 09:31:07.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 +[605 01-18 09:31:07.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[606 01-18 09:31:07.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 +[607 01-18 09:31:07.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7a767993]Inside sendExecuteMessage. Message TRANSACTION +[608 01-18 09:31:07.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[609 01-18 09:31:07.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[60a 01-18 09:31:07.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7a767993]sendExecuteMsg trigger event TRANSACTION +[60b 01-18 09:31:07.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7a767993]Move state message TRANSACTION +[60c 01-18 09:31:07.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7a767993]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[60d 01-18 09:31:07.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[60e 01-18 09:31:07.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7a767993]sending state message TRANSACTION +[60f 01-18 09:31:07.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7a767993]Received message TRANSACTION from shim +[610 01-18 09:31:07.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7a767993]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[611 01-18 09:31:07.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [7a767993]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[612 01-18 09:31:07.15 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[613 01-18 09:31:07.15 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[614 01-18 09:31:07.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7a767993]Transaction completed. Sending COMPLETED +[615 01-18 09:31:07.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7a767993]Move state message COMPLETED +[616 01-18 09:31:07.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7a767993]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[617 01-18 09:31:07.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7a767993]send state message COMPLETED +[618 01-18 09:31:07.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7a767993]Received message COMPLETED from shim +[619 01-18 09:31:07.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7a767993]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[61a 01-18 09:31:07.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9]HandleMessage- COMPLETED. Notify +[61b 01-18 09:31:07.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9 +[61c 01-18 09:31:07.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[61d 01-18 09:31:07.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[61e 01-18 09:31:07.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +[61f 01-18 09:31:07.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [d931e8f9-cf3b-4b00-a40c-6667807e38c8] +[620 01-18 09:31:07.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +[621 01-18 09:31:09.25 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +[622 01-18 09:31:09.25 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +[623 01-18 09:31:09.25 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +[624 01-18 09:31:09.25 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4222dcba0 +[625 01-18 09:31:09.25 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\333\322\201\323\005\020\360\266\340\033\"\017businesschannel*@7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9:\t\022\007\022\005exp02" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030'A\264\276\244\\e\214\037\347\247\270\204\"\355\\\246\370f\331*\367Z~" +[626 01-18 09:31:09.25 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[627 01-18 09:31:09.25 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[628 01-18 09:31:09.25 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +[629 01-18 09:31:09.25 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[62a 01-18 09:31:09.25 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[62b 01-18 09:31:09.26 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc4213dd000, header channel_header:"\010\003\032\013\010\333\322\201\323\005\020\360\266\340\033\"\017businesschannel*@7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9:\t\022\007\022\005exp02" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030'A\264\276\244\\e\214\037\347\247\270\204\"\355\\\246\370f\331*\367Z~" +[62c 01-18 09:31:09.26 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +[62d 01-18 09:31:09.26 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +[62e 01-18 09:31:09.26 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +[62f 01-18 09:31:09.26 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +[630 01-18 09:31:09.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9] +[631 01-18 09:31:09.26 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +[632 01-18 09:31:09.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [84c242cd-9866-42a1-96c7-5b5df575d58f] +[633 01-18 09:31:09.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +[634 01-18 09:31:09.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [84c242cd-9866-42a1-96c7-5b5df575d58f] +[635 01-18 09:31:09.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[636 01-18 09:31:09.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [a3e127a1-3661-43ce-a8e7-890d4d25bc3d] +[637 01-18 09:31:09.27 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=a3e80752-0064-46a9-9eb3-feed5462992d,syscc=true,proposal=0x0,canname=vscc:1.0.2 +[638 01-18 09:31:09.27 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9 chaindID businesschannel +[639 01-18 09:31:09.27 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 +[63a 01-18 09:31:09.27 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[63b 01-18 09:31:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 +[63c 01-18 09:31:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a3e80752]Inside sendExecuteMessage. Message TRANSACTION +[63d 01-18 09:31:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[63e 01-18 09:31:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a3e80752]sendExecuteMsg trigger event TRANSACTION +[63f 01-18 09:31:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a3e80752]Move state message TRANSACTION +[640 01-18 09:31:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a3e80752]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[641 01-18 09:31:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[642 01-18 09:31:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a3e80752]sending state message TRANSACTION +[643 01-18 09:31:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a3e80752]Received message TRANSACTION from shim +[644 01-18 09:31:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a3e80752]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[645 01-18 09:31:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [a3e80752]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[646 01-18 09:31:09.28 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +[647 01-18 09:31:09.28 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +[648 01-18 09:31:09.28 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +[649 01-18 09:31:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a3e80752]Transaction completed. Sending COMPLETED +[64a 01-18 09:31:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a3e80752]Move state message COMPLETED +[64b 01-18 09:31:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a3e80752]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[64c 01-18 09:31:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a3e80752]send state message COMPLETED +[64d 01-18 09:31:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a3e80752]Received message COMPLETED from shim +[64e 01-18 09:31:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a3e80752]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[64f 01-18 09:31:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a3e80752-0064-46a9-9eb3-feed5462992d]HandleMessage- COMPLETED. Notify +[650 01-18 09:31:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:a3e80752-0064-46a9-9eb3-feed5462992d +[651 01-18 09:31:09.28 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[652 01-18 09:31:09.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [a3e127a1-3661-43ce-a8e7-890d4d25bc3d] +[653 01-18 09:31:09.28 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +[654 01-18 09:31:09.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +[655 01-18 09:31:09.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc424a4fd40), Data:(*common.BlockData)(0xc421a696a0), Metadata:(*common.BlockMetadata)(0xc421a696e0)}, doMVCCValidation=true +[656 01-18 09:31:09.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +[657 01-18 09:31:09.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=exp02, key=a +[658 01-18 09:31:09.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=exp02, key=b +[659 01-18 09:31:09.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=exp02 +[65a 01-18 09:31:09.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [5] Transaction index [0] TxId [7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9] marked as valid by state validator +[65b 01-18 09:31:09.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=5, blockHash=[]byte{0x14, 0x79, 0x5b, 0xd3, 0x7, 0x12, 0xdf, 0xbb, 0x6c, 0xf, 0xfc, 0x0, 0x56, 0xb5, 0xce, 0x33, 0x6a, 0x55, 0xf7, 0xe6, 0xf, 0x23, 0x39, 0xcd, 0x2d, 0xe9, 0xe3, 0xb1, 0x3, 0x84, 0xfe, 0x7c} txOffsets= +txId=7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9 locPointer=offset=70, bytesLength=2855 ] -[657 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=49961, bytesLength=2855] for tx ID: [82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f] to index -[658 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=49961, bytesLength=2855] for tx number:[0] ID: [82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f] to blockNumTranNum index -[659 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[54566], isChainEmpty=[false], lastBlockNumber=[5] -[65a 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [5] with 1 transaction(s) -[65b 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -[65c 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -[65d 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] -[65e 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] -[65f 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -[660 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [5] with [1] transactions -[661 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [5] -[662 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -[663 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [5] contains transaction id: 82ba67654a7df3de021ce60d9369788cbfd72bdb838b93720aeb451b5da5ba3f -[664 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [5] -[665 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -[666 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -[667 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -[668 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -[669 01-18 02:00:11.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -[66a 01-18 02:00:26.44 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -[66b 01-18 02:00:26.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422a885d0 -[66c 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[66d 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[66e 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -[66f 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[670 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[671 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422314a50, header 0xc422a88600 -[672 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"exp02" -[673 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: d2e76a62bdbcca82c4754a6e2badf8c59df0949f14f7817e98edebdeac82a6b0 -[674 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [d2e76a62bdbcca82c4754a6e2badf8c59df0949f14f7817e98edebdeac82a6b0] -[675 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[676 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [4b4815c4-4d91-4b0c-9077-5d3d004937e9] -[677 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: d2e76a62bdbcca82c4754a6e2badf8c59df0949f14f7817e98edebdeac82a6b0 channel id: businesschannel -[678 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=d2e76a62bdbcca82c4754a6e2badf8c59df0949f14f7817e98edebdeac82a6b0,syscc=true,proposal=0xc422314a50,canname=lscc:1.0.2 -[679 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 -[67a 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry -[67b 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -[67c 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d2e76a62]Inside sendExecuteMessage. Message TRANSACTION -[67d 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[67e 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[67f 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d2e76a62]sendExecuteMsg trigger event TRANSACTION -[680 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d2e76a62]Move state message TRANSACTION -[681 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d2e76a62]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[682 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[683 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d2e76a62]sending state message TRANSACTION -[684 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d2e76a62]Received message TRANSACTION from shim -[685 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d2e76a62]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[686 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [d2e76a62]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[687 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [d2e76a62]Sending GET_STATE -[688 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d2e76a62]Received message GET_STATE from shim -[689 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d2e76a62]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -[68a 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [d2e76a62]Received GET_STATE, invoking get state from ledger -[68b 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[68c 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [d2e76a62] getting state for chaincode lscc, key exp02, channel businesschannel -[68d 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -[68e 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [d2e76a62]Got state. Sending RESPONSE -[68f 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [d2e76a62]handleGetState serial send RESPONSE -[690 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d2e76a62]Received message RESPONSE from shim -[691 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d2e76a62]Handling ChaincodeMessage of type: RESPONSE(state:ready) -[692 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [d2e76a62]before send -[693 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [d2e76a62]after send -[694 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [d2e76a62]Received RESPONSE, communicated (state:ready) -[695 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [d2e76a62]GetState received payload RESPONSE -[696 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d2e76a62]Transaction completed. Sending COMPLETED -[697 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d2e76a62]Move state message COMPLETED -[698 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d2e76a62]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[699 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d2e76a62]send state message COMPLETED -[69a 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d2e76a62]Received message COMPLETED from shim -[69b 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d2e76a62]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[69c 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d2e76a62bdbcca82c4754a6e2badf8c59df0949f14f7817e98edebdeac82a6b0]HandleMessage- COMPLETED. Notify -[69d 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:d2e76a62bdbcca82c4754a6e2badf8c59df0949f14f7817e98edebdeac82a6b0 -[69e 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Exit -[69f 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache -[6a0 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: d2e76a62bdbcca82c4754a6e2badf8c59df0949f14f7817e98edebdeac82a6b0 channel id: businesschannel version: 1.0 -[6a1 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=exp02,version=1.0,txid=d2e76a62bdbcca82c4754a6e2badf8c59df0949f14f7817e98edebdeac82a6b0,syscc=false,proposal=0xc422314a50,canname=exp02:1.0 -[6a2 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : exp02:1.0 -[6a3 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[6a4 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: exp02:1.0 -[6a5 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d2e76a62]Inside sendExecuteMessage. Message TRANSACTION -[6a6 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[6a7 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[6a8 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d2e76a62]sendExecuteMsg trigger event TRANSACTION -[6a9 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d2e76a62]Move state message TRANSACTION -[6aa 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d2e76a62]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[6ab 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[6ac 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d2e76a62]sending state message TRANSACTION -[6ad 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d2e76a62]Received message GET_STATE from shim -[6ae 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d2e76a62]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -[6af 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [d2e76a62]Received GET_STATE, invoking get state from ledger -[6b0 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[6b1 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [d2e76a62] getting state for chaincode exp02, key a, channel businesschannel -[6b2 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=exp02, key=a -[6b3 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [d2e76a62]Got state. Sending RESPONSE -[6b4 01-18 02:00:26.45 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [d2e76a62]handleGetState serial send RESPONSE -[6b5 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d2e76a62]Received message COMPLETED from shim -[6b6 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d2e76a62]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[6b7 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d2e76a62bdbcca82c4754a6e2badf8c59df0949f14f7817e98edebdeac82a6b0]HandleMessage- COMPLETED. Notify -[6b8 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:d2e76a62bdbcca82c4754a6e2badf8c59df0949f14f7817e98edebdeac82a6b0 -[6b9 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[6ba 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[6bb 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[6bc 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [4b4815c4-4d91-4b0c-9077-5d3d004937e9] -[6bd 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -[6be 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: d2e76a62bdbcca82c4754a6e2badf8c59df0949f14f7817e98edebdeac82a6b0 channel id: businesschannel chaincode id: name:"exp02" -[6bf 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"exp02" is escc -[6c0 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: d2e76a62bdbcca82c4754a6e2badf8c59df0949f14f7817e98edebdeac82a6b0 channel id: businesschannel version: 1.0.2 -[6c1 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=d2e76a62bdbcca82c4754a6e2badf8c59df0949f14f7817e98edebdeac82a6b0,syscc=true,proposal=0xc422314a50,canname=escc:1.0.2 -[6c2 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 -[6c3 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[6c4 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 -[6c5 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d2e76a62]Inside sendExecuteMessage. Message TRANSACTION -[6c6 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[6c7 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[6c8 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d2e76a62]sendExecuteMsg trigger event TRANSACTION -[6c9 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d2e76a62]Move state message TRANSACTION -[6ca 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d2e76a62]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[6cb 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[6cc 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d2e76a62]sending state message TRANSACTION -[6cd 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d2e76a62]Received message TRANSACTION from shim -[6ce 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d2e76a62]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[6cf 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [d2e76a62]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[6d0 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -[6d1 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -[6d2 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d2e76a62]Transaction completed. Sending COMPLETED -[6d3 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d2e76a62]Move state message COMPLETED -[6d4 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d2e76a62]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[6d5 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d2e76a62]send state message COMPLETED -[6d6 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d2e76a62]Received message COMPLETED from shim -[6d7 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d2e76a62]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[6d8 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d2e76a62bdbcca82c4754a6e2badf8c59df0949f14f7817e98edebdeac82a6b0]HandleMessage- COMPLETED. Notify -[6d9 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:d2e76a62bdbcca82c4754a6e2badf8c59df0949f14f7817e98edebdeac82a6b0 -[6da 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[6db 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -[6dc 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -[6dd 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [4b4815c4-4d91-4b0c-9077-5d3d004937e9] -[6de 01-18 02:00:26.46 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -[6df 01-18 02:00:27.05 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -[6e0 01-18 02:00:27.05 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4221014d0 -[6e1 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[6e2 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[6e3 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -[6e4 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[6e5 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[6e6 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4220ce690, header 0xc422101500 -[6e7 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -[6e8 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 64be734822a4b71446785f11de481328b9fc773646fb32bed6bdbd5bd5c75f3a -[6e9 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [64be734822a4b71446785f11de481328b9fc773646fb32bed6bdbd5bd5c75f3a] -[6ea 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[6eb 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [1d523410-5cb4-4aa5-9070-3dc33fecc565] -[6ec 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 64be734822a4b71446785f11de481328b9fc773646fb32bed6bdbd5bd5c75f3a channel id: businesschannel -[6ed 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 64be734822a4b71446785f11de481328b9fc773646fb32bed6bdbd5bd5c75f3a channel id: businesschannel version: 1.0.2 -[6ee 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=64be734822a4b71446785f11de481328b9fc773646fb32bed6bdbd5bd5c75f3a,syscc=true,proposal=0xc4220ce690,canname=lscc:1.0.2 -[6ef 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 -[6f0 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[6f1 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -[6f2 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [64be7348]Inside sendExecuteMessage. Message TRANSACTION -[6f3 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[6f4 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[6f5 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [64be7348]sendExecuteMsg trigger event TRANSACTION -[6f6 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [64be7348]Move state message TRANSACTION -[6f7 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [64be7348]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[6f8 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[6f9 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [64be7348]sending state message TRANSACTION -[6fa 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [64be7348]Received message TRANSACTION from shim -[6fb 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [64be7348]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[6fc 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [64be7348]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[6fd 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [64be7348]Sending GET_STATE -[6fe 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [64be7348]Received message GET_STATE from shim -[6ff 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [64be7348]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -[700 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [64be7348]Received GET_STATE, invoking get state from ledger -[701 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[702 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [64be7348] getting state for chaincode lscc, key exp02, channel businesschannel -[703 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -[704 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [64be7348]Got state. Sending RESPONSE -[705 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [64be7348]handleGetState serial send RESPONSE -[706 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [64be7348]Received message RESPONSE from shim -[707 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [64be7348]Handling ChaincodeMessage of type: RESPONSE(state:ready) -[708 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [64be7348]before send -[709 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [64be7348]after send -[70b 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [64be7348]Received RESPONSE, communicated (state:ready) -[70a 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [64be7348]GetState received payload RESPONSE -[70c 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [64be7348]Transaction completed. Sending COMPLETED -[70d 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [64be7348]Move state message COMPLETED -[70e 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [64be7348]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[70f 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [64be7348]send state message COMPLETED -[710 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [64be7348]Received message COMPLETED from shim -[711 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [64be7348]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[712 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [64be734822a4b71446785f11de481328b9fc773646fb32bed6bdbd5bd5c75f3a]HandleMessage- COMPLETED. Notify -[713 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:64be734822a4b71446785f11de481328b9fc773646fb32bed6bdbd5bd5c75f3a -[714 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[715 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[716 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[717 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [1d523410-5cb4-4aa5-9070-3dc33fecc565] -[718 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -[719 01-18 02:00:27.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 64be734822a4b71446785f11de481328b9fc773646fb32bed6bdbd5bd5c75f3a channel id: businesschannel chaincode id: name:"lscc" -[71a 01-18 02:00:27.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc -[71b 01-18 02:00:27.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 64be734822a4b71446785f11de481328b9fc773646fb32bed6bdbd5bd5c75f3a channel id: businesschannel version: 1.0.2 -[71c 01-18 02:00:27.07 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=64be734822a4b71446785f11de481328b9fc773646fb32bed6bdbd5bd5c75f3a,syscc=true,proposal=0xc4220ce690,canname=escc:1.0.2 -[71d 01-18 02:00:27.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 -[71e 01-18 02:00:27.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[71f 01-18 02:00:27.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 -[720 01-18 02:00:27.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [64be7348]Inside sendExecuteMessage. Message TRANSACTION -[721 01-18 02:00:27.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[722 01-18 02:00:27.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[723 01-18 02:00:27.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [64be7348]sendExecuteMsg trigger event TRANSACTION -[724 01-18 02:00:27.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [64be7348]Move state message TRANSACTION -[725 01-18 02:00:27.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [64be7348]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[726 01-18 02:00:27.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[727 01-18 02:00:27.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [64be7348]sending state message TRANSACTION -[728 01-18 02:00:27.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [64be7348]Received message TRANSACTION from shim -[729 01-18 02:00:27.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [64be7348]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[72a 01-18 02:00:27.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [64be7348]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[72b 01-18 02:00:27.07 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -[72c 01-18 02:00:27.07 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -[72d 01-18 02:00:27.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [64be7348]Transaction completed. Sending COMPLETED -[72e 01-18 02:00:27.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [64be7348]Move state message COMPLETED -[72f 01-18 02:00:27.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [64be7348]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[730 01-18 02:00:27.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [64be7348]send state message COMPLETED -[731 01-18 02:00:27.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [64be7348]Received message COMPLETED from shim -[732 01-18 02:00:27.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [64be7348]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[733 01-18 02:00:27.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [64be734822a4b71446785f11de481328b9fc773646fb32bed6bdbd5bd5c75f3a]HandleMessage- COMPLETED. Notify -[734 01-18 02:00:27.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:64be734822a4b71446785f11de481328b9fc773646fb32bed6bdbd5bd5c75f3a -[735 01-18 02:00:27.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[736 01-18 02:00:27.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -[737 01-18 02:00:27.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -[738 01-18 02:00:27.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [1d523410-5cb4-4aa5-9070-3dc33fecc565] -[739 01-18 02:00:27.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -[73a 01-18 02:00:27.25 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -[73b 01-18 02:00:27.25 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42206fb90 -[73c 01-18 02:00:27.25 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[73d 01-18 02:00:27.25 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[73e 01-18 02:00:27.25 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -[73f 01-18 02:00:27.25 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[740 01-18 02:00:27.25 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[741 01-18 02:00:27.25 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4220cfb80, header 0xc42206fbc0 -[742 01-18 02:00:27.25 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -[743 01-18 02:00:27.25 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 17ae29ab841c021191f1743f07a0d324a7a91e1d02ac8c62bb78901611ff0527 -[744 01-18 02:00:27.25 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [17ae29ab841c021191f1743f07a0d324a7a91e1d02ac8c62bb78901611ff0527] -[745 01-18 02:00:27.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[746 01-18 02:00:27.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [ea82d204-5f08-4195-b3f1-1dbf06e18d91] -[747 01-18 02:00:27.25 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 17ae29ab841c021191f1743f07a0d324a7a91e1d02ac8c62bb78901611ff0527 channel id: businesschannel -[748 01-18 02:00:27.25 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 17ae29ab841c021191f1743f07a0d324a7a91e1d02ac8c62bb78901611ff0527 channel id: businesschannel version: 1.0.2 -[749 01-18 02:00:27.25 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=17ae29ab841c021191f1743f07a0d324a7a91e1d02ac8c62bb78901611ff0527,syscc=true,proposal=0xc4220cfb80,canname=lscc:1.0.2 -[74a 01-18 02:00:27.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 -[74b 01-18 02:00:27.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[74c 01-18 02:00:27.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -[74d 01-18 02:00:27.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [17ae29ab]Inside sendExecuteMessage. Message TRANSACTION -[74e 01-18 02:00:27.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[74f 01-18 02:00:27.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[750 01-18 02:00:27.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [17ae29ab]sendExecuteMsg trigger event TRANSACTION -[751 01-18 02:00:27.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [17ae29ab]Move state message TRANSACTION -[752 01-18 02:00:27.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [17ae29ab]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[753 01-18 02:00:27.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[754 01-18 02:00:27.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [17ae29ab]sending state message TRANSACTION -[755 01-18 02:00:27.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [17ae29ab]Received message TRANSACTION from shim -[756 01-18 02:00:27.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [17ae29ab]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[757 01-18 02:00:27.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [17ae29ab]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[758 01-18 02:00:27.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [17ae29ab]Sending GET_STATE -[759 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [17ae29ab]Received message GET_STATE from shim -[75a 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [17ae29ab]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -[75b 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [17ae29ab]Received GET_STATE, invoking get state from ledger -[75c 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[75d 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [17ae29ab] getting state for chaincode lscc, key exp02, channel businesschannel -[75e 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -[75f 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [17ae29ab]Got state. Sending RESPONSE -[760 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [17ae29ab]handleGetState serial send RESPONSE -[761 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [17ae29ab]Received message RESPONSE from shim -[762 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [17ae29ab]Handling ChaincodeMessage of type: RESPONSE(state:ready) -[763 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [17ae29ab]before send -[764 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [17ae29ab]after send -[765 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [17ae29ab]Received RESPONSE, communicated (state:ready) -[766 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [17ae29ab]GetState received payload RESPONSE -[767 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [17ae29ab]Transaction completed. Sending COMPLETED -[768 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [17ae29ab]Move state message COMPLETED -[769 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [17ae29ab]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[76a 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [17ae29ab]send state message COMPLETED -[76b 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [17ae29ab]Received message COMPLETED from shim -[76c 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [17ae29ab]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[76d 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [17ae29ab841c021191f1743f07a0d324a7a91e1d02ac8c62bb78901611ff0527]HandleMessage- COMPLETED. Notify -[76e 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:17ae29ab841c021191f1743f07a0d324a7a91e1d02ac8c62bb78901611ff0527 -[76f 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[770 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[771 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[772 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [ea82d204-5f08-4195-b3f1-1dbf06e18d91] -[773 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -[774 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 17ae29ab841c021191f1743f07a0d324a7a91e1d02ac8c62bb78901611ff0527 channel id: businesschannel chaincode id: name:"lscc" -[775 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc -[776 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 17ae29ab841c021191f1743f07a0d324a7a91e1d02ac8c62bb78901611ff0527 channel id: businesschannel version: 1.0.2 -[777 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=17ae29ab841c021191f1743f07a0d324a7a91e1d02ac8c62bb78901611ff0527,syscc=true,proposal=0xc4220cfb80,canname=escc:1.0.2 -[778 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 -[779 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[77a 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 -[77b 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [17ae29ab]Inside sendExecuteMessage. Message TRANSACTION -[77c 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[77d 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[77e 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [17ae29ab]sendExecuteMsg trigger event TRANSACTION -[77f 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [17ae29ab]Move state message TRANSACTION -[780 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [17ae29ab]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[781 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[782 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [17ae29ab]sending state message TRANSACTION -[783 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [17ae29ab]Received message TRANSACTION from shim -[784 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [17ae29ab]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[785 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [17ae29ab]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[786 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -[787 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -[788 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [17ae29ab]Transaction completed. Sending COMPLETED -[789 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [17ae29ab]Move state message COMPLETED -[78a 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [17ae29ab]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[78b 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [17ae29ab]send state message COMPLETED -[78c 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [17ae29ab]Received message COMPLETED from shim -[78d 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [17ae29ab]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[78e 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [17ae29ab841c021191f1743f07a0d324a7a91e1d02ac8c62bb78901611ff0527]HandleMessage- COMPLETED. Notify -[78f 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:17ae29ab841c021191f1743f07a0d324a7a91e1d02ac8c62bb78901611ff0527 -[790 01-18 02:00:27.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[791 01-18 02:00:27.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -[792 01-18 02:00:27.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -[793 01-18 02:00:27.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [ea82d204-5f08-4195-b3f1-1dbf06e18d91] -[794 01-18 02:00:27.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -[795 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -[796 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4220d38c0 -[797 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[798 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[799 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -[79a 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[79b 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[79c 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4221b7040, header 0xc4220d38f0 -[79d 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -[79e 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: f425012571884d0ceb6345b1ff63521e3cadce9232d196e10130e2fcb870b91b -[79f 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [f425012571884d0ceb6345b1ff63521e3cadce9232d196e10130e2fcb870b91b] -[7a0 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[7a1 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [b3977d1a-df55-4a10-aa11-e735797136a3] -[7a2 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: f425012571884d0ceb6345b1ff63521e3cadce9232d196e10130e2fcb870b91b channel id: businesschannel -[7a3 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: f425012571884d0ceb6345b1ff63521e3cadce9232d196e10130e2fcb870b91b channel id: businesschannel version: 1.0.2 -[7a4 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=f425012571884d0ceb6345b1ff63521e3cadce9232d196e10130e2fcb870b91b,syscc=true,proposal=0xc4221b7040,canname=lscc:1.0.2 -[7a5 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 -[7a6 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[7a7 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -[7a8 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f4250125]Inside sendExecuteMessage. Message TRANSACTION -[7a9 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[7aa 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[7ab 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f4250125]sendExecuteMsg trigger event TRANSACTION -[7ac 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f4250125]Move state message TRANSACTION -[7ad 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f4250125]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[7ae 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[7af 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f4250125]sending state message TRANSACTION -[7b0 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f4250125]Received message TRANSACTION from shim -[7b1 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f4250125]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[7b2 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [f4250125]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[7b3 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [f4250125]Sending GET_STATE -[7b4 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f4250125]Received message GET_STATE from shim -[7b5 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f4250125]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -[7b6 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [f4250125]Received GET_STATE, invoking get state from ledger -[7b7 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[7b8 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [f4250125] getting state for chaincode lscc, key exp02, channel businesschannel -[7b9 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -[7ba 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [f4250125]Got state. Sending RESPONSE -[7bb 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [f4250125]handleGetState serial send RESPONSE -[7bc 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f4250125]Received message RESPONSE from shim -[7bd 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f4250125]Handling ChaincodeMessage of type: RESPONSE(state:ready) -[7be 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [f4250125]before send -[7bf 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [f4250125]after send -[7c0 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [f4250125]Received RESPONSE, communicated (state:ready) -[7c1 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [f4250125]GetState received payload RESPONSE -[7c2 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f4250125]Transaction completed. Sending COMPLETED -[7c3 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f4250125]Move state message COMPLETED -[7c4 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f4250125]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[7c5 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f4250125]send state message COMPLETED -[7c6 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f4250125]Received message COMPLETED from shim -[7c7 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f4250125]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[7c8 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f425012571884d0ceb6345b1ff63521e3cadce9232d196e10130e2fcb870b91b]HandleMessage- COMPLETED. Notify -[7c9 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:f425012571884d0ceb6345b1ff63521e3cadce9232d196e10130e2fcb870b91b -[7ca 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[7cb 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[7cc 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[7cd 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [b3977d1a-df55-4a10-aa11-e735797136a3] -[7ce 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -[7cf 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: f425012571884d0ceb6345b1ff63521e3cadce9232d196e10130e2fcb870b91b channel id: businesschannel chaincode id: name:"lscc" -[7d0 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc -[7d1 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: f425012571884d0ceb6345b1ff63521e3cadce9232d196e10130e2fcb870b91b channel id: businesschannel version: 1.0.2 -[7d2 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=f425012571884d0ceb6345b1ff63521e3cadce9232d196e10130e2fcb870b91b,syscc=true,proposal=0xc4221b7040,canname=escc:1.0.2 -[7d3 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 -[7d4 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[7d5 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 -[7d6 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f4250125]Inside sendExecuteMessage. Message TRANSACTION -[7d7 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[7d8 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[7d9 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f4250125]sendExecuteMsg trigger event TRANSACTION -[7da 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f4250125]Move state message TRANSACTION -[7db 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f4250125]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[7dc 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[7dd 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f4250125]sending state message TRANSACTION -[7de 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f4250125]Received message TRANSACTION from shim -[7df 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f4250125]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[7e0 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [f4250125]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[7e1 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -[7e2 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -[7e3 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f4250125]Transaction completed. Sending COMPLETED -[7e4 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f4250125]Move state message COMPLETED -[7e5 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f4250125]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[7e6 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f4250125]send state message COMPLETED -[7e7 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f4250125]Received message COMPLETED from shim -[7e8 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f4250125]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[7e9 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f425012571884d0ceb6345b1ff63521e3cadce9232d196e10130e2fcb870b91b]HandleMessage- COMPLETED. Notify -[7ea 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:f425012571884d0ceb6345b1ff63521e3cadce9232d196e10130e2fcb870b91b -[7eb 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[7ec 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -[7ed 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -[7ee 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [b3977d1a-df55-4a10-aa11-e735797136a3] -[7ef 01-18 02:00:27.41 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -[7f0 01-18 02:00:27.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -[7f1 01-18 02:00:27.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421f787b0 -[7f2 01-18 02:00:27.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[7f3 01-18 02:00:27.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[7f4 01-18 02:00:27.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -[7f5 01-18 02:00:27.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[7f6 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[7f7 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422039130, header 0xc421f787e0 -[7f8 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -[7f9 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 36acd9e4fedfa11372df6c96ca9f36fa4c6c62d7e55d4459574d822990bb9af9 -[7fa 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [36acd9e4fedfa11372df6c96ca9f36fa4c6c62d7e55d4459574d822990bb9af9] -[7fb 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[7fc 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [907eb064-9c21-4247-81c4-11a02baf2003] -[7fd 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 36acd9e4fedfa11372df6c96ca9f36fa4c6c62d7e55d4459574d822990bb9af9 channel id: businesschannel -[7fe 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 36acd9e4fedfa11372df6c96ca9f36fa4c6c62d7e55d4459574d822990bb9af9 channel id: businesschannel version: 1.0.2 -[7ff 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=36acd9e4fedfa11372df6c96ca9f36fa4c6c62d7e55d4459574d822990bb9af9,syscc=true,proposal=0xc422039130,canname=lscc:1.0.2 -[800 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 -[801 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[802 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -[803 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [36acd9e4]Inside sendExecuteMessage. Message TRANSACTION -[804 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[805 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[806 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [36acd9e4]sendExecuteMsg trigger event TRANSACTION -[807 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [36acd9e4]Move state message TRANSACTION -[808 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [36acd9e4]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[809 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[80a 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [36acd9e4]sending state message TRANSACTION -[80b 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [36acd9e4]Received message TRANSACTION from shim -[80c 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [36acd9e4]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[80d 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [36acd9e4]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[80e 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [36acd9e4]Transaction completed. Sending COMPLETED -[80f 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [36acd9e4]Move state message COMPLETED -[810 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [36acd9e4]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[811 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [36acd9e4]send state message COMPLETED -[812 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [36acd9e4]Received message COMPLETED from shim -[813 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [36acd9e4]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[814 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [36acd9e4fedfa11372df6c96ca9f36fa4c6c62d7e55d4459574d822990bb9af9]HandleMessage- COMPLETED. Notify -[815 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:36acd9e4fedfa11372df6c96ca9f36fa4c6c62d7e55d4459574d822990bb9af9 -[816 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[817 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[818 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[819 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [907eb064-9c21-4247-81c4-11a02baf2003] -[81a 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -[81b 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 36acd9e4fedfa11372df6c96ca9f36fa4c6c62d7e55d4459574d822990bb9af9 channel id: businesschannel chaincode id: name:"lscc" -[81c 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc -[81d 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 36acd9e4fedfa11372df6c96ca9f36fa4c6c62d7e55d4459574d822990bb9af9 channel id: businesschannel version: 1.0.2 -[81e 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=36acd9e4fedfa11372df6c96ca9f36fa4c6c62d7e55d4459574d822990bb9af9,syscc=true,proposal=0xc422039130,canname=escc:1.0.2 -[81f 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 -[820 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[821 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 -[822 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [36acd9e4]Inside sendExecuteMessage. Message TRANSACTION -[823 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[824 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[825 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [36acd9e4]sendExecuteMsg trigger event TRANSACTION -[826 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [36acd9e4]Move state message TRANSACTION -[827 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [36acd9e4]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[828 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[829 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [36acd9e4]sending state message TRANSACTION -[82a 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [36acd9e4]Received message TRANSACTION from shim -[82b 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [36acd9e4]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[82c 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [36acd9e4]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[82d 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -[82e 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -[82f 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [36acd9e4]Transaction completed. Sending COMPLETED -[830 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [36acd9e4]Move state message COMPLETED -[831 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [36acd9e4]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[832 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [36acd9e4]send state message COMPLETED -[833 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [36acd9e4]Received message COMPLETED from shim -[834 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [36acd9e4]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[835 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [36acd9e4fedfa11372df6c96ca9f36fa4c6c62d7e55d4459574d822990bb9af9]HandleMessage- COMPLETED. Notify -[836 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:36acd9e4fedfa11372df6c96ca9f36fa4c6c62d7e55d4459574d822990bb9af9 -[837 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[838 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -[839 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -[83a 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [907eb064-9c21-4247-81c4-11a02baf2003] -[83b 01-18 02:00:27.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -[83c 01-18 02:00:27.69 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -[83d 01-18 02:00:27.69 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421f720f0 -[83e 01-18 02:00:27.69 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[83f 01-18 02:00:27.69 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[840 01-18 02:00:27.69 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -[841 01-18 02:00:27.69 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[842 01-18 02:00:27.69 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[843 01-18 02:00:27.69 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422039ea0, header 0xc421f72120 -[844 01-18 02:00:27.69 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -[845 01-18 02:00:27.69 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 24e361c15bec5f76498a283f5b3df9f58b598be7cbff7c4950e47796f7c92014 -[846 01-18 02:00:27.69 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [24e361c15bec5f76498a283f5b3df9f58b598be7cbff7c4950e47796f7c92014] -[847 01-18 02:00:27.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[848 01-18 02:00:27.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [527193b7-82ea-4a76-9b1e-b04343c02e55] -[849 01-18 02:00:27.69 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 24e361c15bec5f76498a283f5b3df9f58b598be7cbff7c4950e47796f7c92014 channel id: businesschannel -[84a 01-18 02:00:27.69 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 24e361c15bec5f76498a283f5b3df9f58b598be7cbff7c4950e47796f7c92014 channel id: businesschannel version: 1.0.2 -[84b 01-18 02:00:27.69 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=24e361c15bec5f76498a283f5b3df9f58b598be7cbff7c4950e47796f7c92014,syscc=true,proposal=0xc422039ea0,canname=lscc:1.0.2 -[84c 01-18 02:00:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 -[84d 01-18 02:00:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[84e 01-18 02:00:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -[84f 01-18 02:00:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [24e361c1]Inside sendExecuteMessage. Message TRANSACTION -[850 01-18 02:00:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[851 01-18 02:00:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[852 01-18 02:00:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [24e361c1]sendExecuteMsg trigger event TRANSACTION -[853 01-18 02:00:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [24e361c1]Move state message TRANSACTION -[854 01-18 02:00:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [24e361c1]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[855 01-18 02:00:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[856 01-18 02:00:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [24e361c1]sending state message TRANSACTION -[857 01-18 02:00:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [24e361c1]Received message TRANSACTION from shim -[858 01-18 02:00:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [24e361c1]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[859 01-18 02:00:27.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [24e361c1]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[85a 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.GetStateByRange.handleGetStateByRange.handleGetStateByRange -> DEBU [24e361c1]Sending GET_STATE_BY_RANGE -[85b 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [24e361c1]Received message GET_STATE_BY_RANGE from shim -[85c 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [24e361c1]Fabric side Handling ChaincodeMessage of type: GET_STATE_BY_RANGE in state ready -[85d 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func4.afterGetStateByRange -> DEBU Received GET_STATE_BY_RANGE, invoking get state from ledger -[85e 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func4.afterGetStateByRange -> DEBU Exiting GET_STATE_BY_RANGE -[85f 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[860 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] GetStateRangeScanIterator.getStateRangeScanIterator.newResultsItr.GetStateRangeScanIterator.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x0, 0x6c, 0x73, 0x63, 0x63, 0x0, 0x1}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x0, 0x6c, 0x73, 0x63, 0x63, 0x1}] -[861 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/rwsetutil] getQueryResponse.Next.updateRangeQueryInfo.AddResult -> DEBU Adding a result -[862 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU Got keys and values. Sending RESPONSE -[863 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [24e361c1]handleGetStateByRange serial send RESPONSE -[864 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [24e361c1]Received message RESPONSE from shim -[865 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [24e361c1]Handling ChaincodeMessage of type: RESPONSE(state:ready) -[866 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [24e361c1]before send -[867 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [24e361c1]after send -[868 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [24e361c1]Received RESPONSE, communicated (state:ready) -[869 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.GetStateByRange.handleGetStateByRange.handleGetStateByRange -> DEBU [24e361c1]Received RESPONSE. Successfully got range -[86a 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.Close.handleQueryStateClose -> DEBU [24e361c1]Sending QUERY_STATE_CLOSE -[86b 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [24e361c1]Received message QUERY_STATE_CLOSE from shim -[86c 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [24e361c1]Fabric side Handling ChaincodeMessage of type: QUERY_STATE_CLOSE in state ready -[86d 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func8.afterQueryStateClose -> DEBU Received QUERY_STATE_CLOSE, invoking query state close from ledger -[86e 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func8.afterQueryStateClose -> DEBU Exiting QUERY_STATE_CLOSE -[86f 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[870 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU Closed. Sending RESPONSE -[871 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [24e361c1]handleQueryStateClose serial send RESPONSE -[872 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [24e361c1]Received message RESPONSE from shim -[873 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [24e361c1]Handling ChaincodeMessage of type: RESPONSE(state:ready) -[874 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [24e361c1]before send -[875 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [24e361c1]after send -[876 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [24e361c1]Received RESPONSE, communicated (state:ready) -[877 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.Close.handleQueryStateClose -> DEBU [24e361c1]Received RESPONSE. Successfully got range -[878 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [24e361c1]Transaction completed. Sending COMPLETED -[879 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [24e361c1]Move state message COMPLETED -[87a 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [24e361c1]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[87b 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [24e361c1]send state message COMPLETED -[87c 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [24e361c1]Received message COMPLETED from shim -[87d 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [24e361c1]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[87e 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [24e361c15bec5f76498a283f5b3df9f58b598be7cbff7c4950e47796f7c92014]HandleMessage- COMPLETED. Notify -[87f 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:24e361c15bec5f76498a283f5b3df9f58b598be7cbff7c4950e47796f7c92014 -[880 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[881 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[882 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[883 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [527193b7-82ea-4a76-9b1e-b04343c02e55] -[884 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -[885 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 24e361c15bec5f76498a283f5b3df9f58b598be7cbff7c4950e47796f7c92014 channel id: businesschannel chaincode id: name:"lscc" -[886 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc -[887 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 24e361c15bec5f76498a283f5b3df9f58b598be7cbff7c4950e47796f7c92014 channel id: businesschannel version: 1.0.2 -[888 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=24e361c15bec5f76498a283f5b3df9f58b598be7cbff7c4950e47796f7c92014,syscc=true,proposal=0xc422039ea0,canname=escc:1.0.2 -[889 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 -[88a 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[88b 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 -[88c 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [24e361c1]Inside sendExecuteMessage. Message TRANSACTION -[88d 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[88e 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[88f 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [24e361c1]sendExecuteMsg trigger event TRANSACTION -[890 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [24e361c1]Move state message TRANSACTION -[891 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [24e361c1]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[892 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[893 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [24e361c1]sending state message TRANSACTION -[894 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [24e361c1]Received message TRANSACTION from shim -[895 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [24e361c1]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[896 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [24e361c1]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[897 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -[898 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -[899 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [24e361c1]Transaction completed. Sending COMPLETED -[89a 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [24e361c1]Move state message COMPLETED -[89b 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [24e361c1]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[89c 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [24e361c1]send state message COMPLETED -[89d 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [24e361c1]Received message COMPLETED from shim -[89e 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [24e361c1]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[89f 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [24e361c15bec5f76498a283f5b3df9f58b598be7cbff7c4950e47796f7c92014]HandleMessage- COMPLETED. Notify -[8a0 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:24e361c15bec5f76498a283f5b3df9f58b598be7cbff7c4950e47796f7c92014 -[8a1 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[8a2 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -[8a3 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -[8a4 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [527193b7-82ea-4a76-9b1e-b04343c02e55] -[8a5 01-18 02:00:27.70 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -[8a6 01-18 02:00:28.05 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -[8a7 01-18 02:00:28.05 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421efa720 -[8a8 01-18 02:00:28.05 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[8a9 01-18 02:00:28.05 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[8aa 01-18 02:00:28.05 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -[8ab 01-18 02:00:28.05 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[8ac 01-18 02:00:28.05 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[8ad 01-18 02:00:28.05 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422012dc0, header 0xc421efa750 -[8ae 01-18 02:00:28.05 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" -[8af 01-18 02:00:28.05 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 3b67b0431338e608b9fd0f210e25268caaac8a74158467c8b033b9293284aa99 -[8b0 01-18 02:00:28.05 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [3b67b0431338e608b9fd0f210e25268caaac8a74158467c8b033b9293284aa99] -[8b1 01-18 02:00:28.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[8b2 01-18 02:00:28.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [19acc589-27ec-42be-bd55-ce0583d717d4] -[8b3 01-18 02:00:28.05 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 3b67b0431338e608b9fd0f210e25268caaac8a74158467c8b033b9293284aa99 channel id: businesschannel -[8b4 01-18 02:00:28.05 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 3b67b0431338e608b9fd0f210e25268caaac8a74158467c8b033b9293284aa99 channel id: businesschannel version: 1.0.2 -[8b5 01-18 02:00:28.05 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.0.2,txid=3b67b0431338e608b9fd0f210e25268caaac8a74158467c8b033b9293284aa99,syscc=true,proposal=0xc422012dc0,canname=qscc:1.0.2 -[8b6 01-18 02:00:28.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.0.2 -[8b7 01-18 02:00:28.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[8b8 01-18 02:00:28.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.2 -[8b9 01-18 02:00:28.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [3b67b043]Inside sendExecuteMessage. Message TRANSACTION -[8ba 01-18 02:00:28.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[8bb 01-18 02:00:28.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[8bc 01-18 02:00:28.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [3b67b043]sendExecuteMsg trigger event TRANSACTION -[8bd 01-18 02:00:28.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3b67b043]Move state message TRANSACTION -[8be 01-18 02:00:28.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3b67b043]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[8bf 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[8c0 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3b67b043]sending state message TRANSACTION -[8c1 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3b67b043]Received message TRANSACTION from shim -[8c2 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3b67b043]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[8c3 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [3b67b043]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[8c4 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel -[8c5 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3b67b043]Transaction completed. Sending COMPLETED -[8c6 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3b67b043]Move state message COMPLETED -[8c7 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3b67b043]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[8c8 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3b67b043]send state message COMPLETED -[8c9 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3b67b043]Received message COMPLETED from shim -[8ca 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3b67b043]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[8cb 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3b67b0431338e608b9fd0f210e25268caaac8a74158467c8b033b9293284aa99]HandleMessage- COMPLETED. Notify -[8cc 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:3b67b0431338e608b9fd0f210e25268caaac8a74158467c8b033b9293284aa99 -[8cd 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[8ce 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[8cf 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[8d0 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [19acc589-27ec-42be-bd55-ce0583d717d4] -[8d1 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -[8d2 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 3b67b0431338e608b9fd0f210e25268caaac8a74158467c8b033b9293284aa99 channel id: businesschannel chaincode id: name:"qscc" -[8d3 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc -[8d4 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 3b67b0431338e608b9fd0f210e25268caaac8a74158467c8b033b9293284aa99 channel id: businesschannel version: 1.0.2 -[8d5 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=3b67b0431338e608b9fd0f210e25268caaac8a74158467c8b033b9293284aa99,syscc=true,proposal=0xc422012dc0,canname=escc:1.0.2 -[8d6 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 -[8d7 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[8d8 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 -[8d9 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [3b67b043]Inside sendExecuteMessage. Message TRANSACTION -[8da 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[8db 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[8dc 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [3b67b043]sendExecuteMsg trigger event TRANSACTION -[8dd 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3b67b043]Move state message TRANSACTION -[8de 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3b67b043]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[8df 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[8e0 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3b67b043]sending state message TRANSACTION -[8e1 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3b67b043]Received message TRANSACTION from shim -[8e2 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3b67b043]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[8e3 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [3b67b043]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[8e4 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -[8e5 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -[8e6 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3b67b043]Transaction completed. Sending COMPLETED -[8e7 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3b67b043]Move state message COMPLETED -[8e8 01-18 02:00:28.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3b67b043]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[8e9 01-18 02:00:28.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3b67b043]send state message COMPLETED -[8ea 01-18 02:00:28.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3b67b043]Received message COMPLETED from shim -[8eb 01-18 02:00:28.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3b67b043]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[8ec 01-18 02:00:28.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3b67b0431338e608b9fd0f210e25268caaac8a74158467c8b033b9293284aa99]HandleMessage- COMPLETED. Notify -[8ed 01-18 02:00:28.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:3b67b0431338e608b9fd0f210e25268caaac8a74158467c8b033b9293284aa99 -[8ee 01-18 02:00:28.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[8ef 01-18 02:00:28.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -[8f0 01-18 02:00:28.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -[8f1 01-18 02:00:28.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [19acc589-27ec-42be-bd55-ce0583d717d4] -[8f2 01-18 02:00:28.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -[8f3 01-18 02:00:28.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -[8f4 01-18 02:00:28.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421ed8060 -[8f5 01-18 02:00:28.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[8f6 01-18 02:00:28.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[8f7 01-18 02:00:28.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -[8f8 01-18 02:00:28.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[8f9 01-18 02:00:28.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[8fa 01-18 02:00:28.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421f92d20, header 0xc421ed8090 -[8fb 01-18 02:00:28.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" -[8fc 01-18 02:00:28.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 329b166a81f79ddd207d9d3e9deb96569efd0cbcc4d2704f6c055e1e72eba079 -[8fd 01-18 02:00:28.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [329b166a81f79ddd207d9d3e9deb96569efd0cbcc4d2704f6c055e1e72eba079] -[8fe 01-18 02:00:28.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[8ff 01-18 02:00:28.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [641d293a-cfeb-42bb-ba2e-366de51be8ea] -[900 01-18 02:00:28.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 329b166a81f79ddd207d9d3e9deb96569efd0cbcc4d2704f6c055e1e72eba079 channel id: businesschannel -[901 01-18 02:00:28.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 329b166a81f79ddd207d9d3e9deb96569efd0cbcc4d2704f6c055e1e72eba079 channel id: businesschannel version: 1.0.2 -[902 01-18 02:00:28.22 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.0.2,txid=329b166a81f79ddd207d9d3e9deb96569efd0cbcc4d2704f6c055e1e72eba079,syscc=true,proposal=0xc421f92d20,canname=qscc:1.0.2 -[903 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.0.2 -[904 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[905 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.2 -[906 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [329b166a]Inside sendExecuteMessage. Message TRANSACTION -[907 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[908 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[909 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [329b166a]sendExecuteMsg trigger event TRANSACTION -[90a 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [329b166a]Move state message TRANSACTION -[90b 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [329b166a]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[90c 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[90d 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [329b166a]sending state message TRANSACTION -[90e 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [329b166a]Received message TRANSACTION from shim -[90f 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [329b166a]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[910 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [329b166a]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[911 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetBlockByNumber on chain: businesschannel -[912 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [2] -[913 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/ledgersData/chains/chains/businesschannel/blockfile_000000], startOffset=[25668] -[914 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[28898], Going to peek [8] bytes -[915 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13789], placementInfo={fileNum=[0], startOffset=[25668], bytesOffset=[25670]} -[916 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [329b166a]Transaction completed. Sending COMPLETED -[917 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [329b166a]Move state message COMPLETED -[918 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [329b166a]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[919 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [329b166a]send state message COMPLETED -[91a 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [329b166a]Received message COMPLETED from shim -[91b 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [329b166a]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[91c 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [329b166a81f79ddd207d9d3e9deb96569efd0cbcc4d2704f6c055e1e72eba079]HandleMessage- COMPLETED. Notify -[91d 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:329b166a81f79ddd207d9d3e9deb96569efd0cbcc4d2704f6c055e1e72eba079 -[91e 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[91f 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[920 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[921 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [641d293a-cfeb-42bb-ba2e-366de51be8ea] -[922 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -[923 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 329b166a81f79ddd207d9d3e9deb96569efd0cbcc4d2704f6c055e1e72eba079 channel id: businesschannel chaincode id: name:"qscc" -[924 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc -[925 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 329b166a81f79ddd207d9d3e9deb96569efd0cbcc4d2704f6c055e1e72eba079 channel id: businesschannel version: 1.0.2 -[926 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=329b166a81f79ddd207d9d3e9deb96569efd0cbcc4d2704f6c055e1e72eba079,syscc=true,proposal=0xc421f92d20,canname=escc:1.0.2 -[927 01-18 02:00:28.23 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 -[928 01-18 02:00:28.24 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[929 01-18 02:00:28.24 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 -[92a 01-18 02:00:28.24 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [329b166a]Inside sendExecuteMessage. Message TRANSACTION -[92b 01-18 02:00:28.24 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[92c 01-18 02:00:28.24 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[92d 01-18 02:00:28.24 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [329b166a]sendExecuteMsg trigger event TRANSACTION -[92e 01-18 02:00:28.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [329b166a]Move state message TRANSACTION -[92f 01-18 02:00:28.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [329b166a]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[930 01-18 02:00:28.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[931 01-18 02:00:28.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [329b166a]sending state message TRANSACTION -[932 01-18 02:00:28.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [329b166a]Received message TRANSACTION from shim -[933 01-18 02:00:28.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [329b166a]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[934 01-18 02:00:28.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [329b166a]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[935 01-18 02:00:28.24 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -[936 01-18 02:00:28.24 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -[937 01-18 02:00:28.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [329b166a]Transaction completed. Sending COMPLETED -[938 01-18 02:00:28.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [329b166a]Move state message COMPLETED -[939 01-18 02:00:28.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [329b166a]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[93a 01-18 02:00:28.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [329b166a]send state message COMPLETED -[93b 01-18 02:00:28.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [329b166a]Received message COMPLETED from shim -[93c 01-18 02:00:28.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [329b166a]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[93d 01-18 02:00:28.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [329b166a81f79ddd207d9d3e9deb96569efd0cbcc4d2704f6c055e1e72eba079]HandleMessage- COMPLETED. Notify -[93e 01-18 02:00:28.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:329b166a81f79ddd207d9d3e9deb96569efd0cbcc4d2704f6c055e1e72eba079 -[93f 01-18 02:00:28.24 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[940 01-18 02:00:28.24 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -[941 01-18 02:00:28.24 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -[942 01-18 02:00:28.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [641d293a-cfeb-42bb-ba2e-366de51be8ea] -[943 01-18 02:00:28.24 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -[944 01-18 02:00:28.41 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [6], peers number [3] -[945 01-18 02:00:28.41 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [6], peers number [3] -[946 01-18 02:00:28.41 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -[947 01-18 02:00:28.41 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -[948 01-18 02:00:28.41 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -[949 01-18 02:00:28.41 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421ed8600 -[94a 01-18 02:00:28.41 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\272\377\377\322\005\020\327\344\236\214\001\"\017businesschannel*@ef892f35fb64f0ede0b8e75fccdd87a0b5a88e80208a6beacc5248090c895114:\t\022\007\022\005exp02" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\030d\331v\033\324\333\222\030\204\034k\t\024\337\364\272\341\336\300\200\303\207%\014" -[94b 01-18 02:00:28.41 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[94c 01-18 02:00:28.41 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[94d 01-18 02:00:28.41 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} -[94e 01-18 02:00:28.41 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[94f 01-18 02:00:28.41 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[950 01-18 02:00:28.41 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421a13800, header channel_header:"\010\003\032\014\010\272\377\377\322\005\020\327\344\236\214\001\"\017businesschannel*@ef892f35fb64f0ede0b8e75fccdd87a0b5a88e80208a6beacc5248090c895114:\t\022\007\022\005exp02" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\030d\331v\033\324\333\222\030\204\034k\t\024\337\364\272\341\336\300\200\303\207%\014" -[951 01-18 02:00:28.41 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -[952 01-18 02:00:28.41 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -[953 01-18 02:00:28.41 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -[954 01-18 02:00:28.41 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -[955 01-18 02:00:28.41 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [ef892f35fb64f0ede0b8e75fccdd87a0b5a88e80208a6beacc5248090c895114] -[956 01-18 02:00:28.41 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -[957 01-18 02:00:28.41 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [b8b83b3a-efef-4d78-93d2-aed2caae252e] -[958 01-18 02:00:28.41 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -[959 01-18 02:00:28.41 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [b8b83b3a-efef-4d78-93d2-aed2caae252e] -[95a 01-18 02:00:28.41 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[95b 01-18 02:00:28.41 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [757cc9e3-a4d8-4f77-a8fb-52a0be7c7955] -[95c 01-18 02:00:28.41 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=546b5c81-e4ad-4176-8c58-b2c02addec65,syscc=true,proposal=0x0,canname=vscc:1.0.2 -[95d 01-18 02:00:28.41 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid ef892f35fb64f0ede0b8e75fccdd87a0b5a88e80208a6beacc5248090c895114 chaindID businesschannel -[95e 01-18 02:00:28.41 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 -[95f 01-18 02:00:28.41 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[960 01-18 02:00:28.41 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 -[961 01-18 02:00:28.41 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [546b5c81]Inside sendExecuteMessage. Message TRANSACTION -[962 01-18 02:00:28.41 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[963 01-18 02:00:28.42 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [546b5c81]sendExecuteMsg trigger event TRANSACTION -[964 01-18 02:00:28.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [546b5c81]Move state message TRANSACTION -[965 01-18 02:00:28.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [546b5c81]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[966 01-18 02:00:28.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[967 01-18 02:00:28.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [546b5c81]sending state message TRANSACTION -[968 01-18 02:00:28.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [546b5c81]Received message TRANSACTION from shim -[969 01-18 02:00:28.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [546b5c81]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[96a 01-18 02:00:28.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [546b5c81]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[96b 01-18 02:00:28.42 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -[96c 01-18 02:00:28.42 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -[96d 01-18 02:00:28.42 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -[96e 01-18 02:00:28.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [546b5c81]Transaction completed. Sending COMPLETED -[96f 01-18 02:00:28.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [546b5c81]Move state message COMPLETED -[970 01-18 02:00:28.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [546b5c81]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[971 01-18 02:00:28.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [546b5c81]send state message COMPLETED -[972 01-18 02:00:28.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [546b5c81]Received message COMPLETED from shim -[973 01-18 02:00:28.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [546b5c81]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[974 01-18 02:00:28.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [546b5c81-e4ad-4176-8c58-b2c02addec65]HandleMessage- COMPLETED. Notify -[975 01-18 02:00:28.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:546b5c81-e4ad-4176-8c58-b2c02addec65 -[976 01-18 02:00:28.43 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[977 01-18 02:00:28.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [757cc9e3-a4d8-4f77-a8fb-52a0be7c7955] -[978 01-18 02:00:28.43 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -[979 01-18 02:00:28.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -[97a 01-18 02:00:28.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc42014b9c0), Data:(*common.BlockData)(0xc4215ee5a0), Metadata:(*common.BlockMetadata)(0xc4215ee5e0)}, doMVCCValidation=true -[97b 01-18 02:00:28.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -[97c 01-18 02:00:28.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=exp02, key=a -[97d 01-18 02:00:28.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=exp02, key=b -[97e 01-18 02:00:28.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=exp02 -[97f 01-18 02:00:28.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [6] Transaction index [0] TxId [ef892f35fb64f0ede0b8e75fccdd87a0b5a88e80208a6beacc5248090c895114] marked as valid by state validator -[980 01-18 02:00:28.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0xb6, 0xc2, 0x2c, 0xe8, 0xb1, 0x4d, 0xad, 0xb5, 0xbc, 0xd7, 0x9f, 0xca, 0x1a, 0x2e, 0x40, 0x28, 0xdd, 0x17, 0xd0, 0xea, 0x49, 0x57, 0x8a, 0x25, 0x1c, 0xd, 0x93, 0xa9, 0x45, 0x57, 0xf1, 0xaa} txOffsets= -txId=ef892f35fb64f0ede0b8e75fccdd87a0b5a88e80208a6beacc5248090c895114 locPointer=offset=70, bytesLength=2855 +[65c 01-18 09:31:09.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=49958, bytesLength=2855] for tx ID: [7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9] to index +[65d 01-18 09:31:09.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=49958, bytesLength=2855] for tx number:[0] ID: [7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9] to blockNumTranNum index +[65e 01-18 09:31:09.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[54564], isChainEmpty=[false], lastBlockNumber=[5] +[65f 01-18 09:31:09.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [5] with 1 transaction(s) +[660 01-18 09:31:09.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +[661 01-18 09:31:09.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +[662 01-18 09:31:09.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] +[663 01-18 09:31:09.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] +[664 01-18 09:31:09.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +[665 01-18 09:31:09.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [5] with [1] transactions +[666 01-18 09:31:09.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [5] +[667 01-18 09:31:09.29 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +[668 01-18 09:31:09.29 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [5] contains transaction id: 7a767993335d3414fe89669488437b8bfa6cb64c1bf3c5bfd9a259ac7a95eee9 +[669 01-18 09:31:09.30 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [5] +[66a 01-18 09:31:09.30 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +[66b 01-18 09:31:09.30 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +[66c 01-18 09:31:09.30 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +[66d 01-18 09:31:09.30 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +[66e 01-18 09:31:09.30 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +[66f 01-18 09:31:27.85 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +[670 01-18 09:31:27.85 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421e98bd0 +[671 01-18 09:31:27.85 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[672 01-18 09:31:27.85 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[673 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +[674 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[675 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[676 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421e33220, header 0xc421e98c00 +[677 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"exp02" +[678 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 55af24c9589ac61318690af743a261c231a30209e0555aefa9c29976bd030e5b +[679 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [55af24c9589ac61318690af743a261c231a30209e0555aefa9c29976bd030e5b] +[67a 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[67b 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [edeba64d-45a5-4d7e-89a7-72e863f5fa1a] +[67c 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 55af24c9589ac61318690af743a261c231a30209e0555aefa9c29976bd030e5b channel id: businesschannel +[67d 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=55af24c9589ac61318690af743a261c231a30209e0555aefa9c29976bd030e5b,syscc=true,proposal=0xc421e33220,canname=lscc:1.0.2 +[67e 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 +[67f 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry +[680 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +[681 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [55af24c9]Inside sendExecuteMessage. Message TRANSACTION +[682 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[683 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[684 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [55af24c9]sendExecuteMsg trigger event TRANSACTION +[685 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [55af24c9]Move state message TRANSACTION +[686 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [55af24c9]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[687 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[688 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [55af24c9]sending state message TRANSACTION +[689 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55af24c9]Received message TRANSACTION from shim +[68a 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [55af24c9]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[68b 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [55af24c9]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[68c 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [55af24c9]Sending GET_STATE +[68d 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [55af24c9]Received message GET_STATE from shim +[68e 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [55af24c9]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +[68f 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [55af24c9]Received GET_STATE, invoking get state from ledger +[690 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[691 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [55af24c9] getting state for chaincode lscc, key exp02, channel businesschannel +[692 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +[693 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [55af24c9]Got state. Sending RESPONSE +[694 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [55af24c9]handleGetState serial send RESPONSE +[695 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55af24c9]Received message RESPONSE from shim +[696 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [55af24c9]Handling ChaincodeMessage of type: RESPONSE(state:ready) +[697 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [55af24c9]before send +[698 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [55af24c9]after send +[699 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [55af24c9]Received RESPONSE, communicated (state:ready) +[69a 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [55af24c9]GetState received payload RESPONSE +[69b 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55af24c9]Transaction completed. Sending COMPLETED +[69c 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55af24c9]Move state message COMPLETED +[69d 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [55af24c9]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[69e 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55af24c9]send state message COMPLETED +[69f 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [55af24c9]Received message COMPLETED from shim +[6a0 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [55af24c9]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[6a1 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [55af24c9589ac61318690af743a261c231a30209e0555aefa9c29976bd030e5b]HandleMessage- COMPLETED. Notify +[6a2 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:55af24c9589ac61318690af743a261c231a30209e0555aefa9c29976bd030e5b +[6a3 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Exit +[6a4 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache +[6a5 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 55af24c9589ac61318690af743a261c231a30209e0555aefa9c29976bd030e5b channel id: businesschannel version: 1.0 +[6a6 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=exp02,version=1.0,txid=55af24c9589ac61318690af743a261c231a30209e0555aefa9c29976bd030e5b,syscc=false,proposal=0xc421e33220,canname=exp02:1.0 +[6a7 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : exp02:1.0 +[6a8 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[6a9 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: exp02:1.0 +[6aa 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [55af24c9]Inside sendExecuteMessage. Message TRANSACTION +[6ab 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[6ac 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[6ad 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [55af24c9]sendExecuteMsg trigger event TRANSACTION +[6ae 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [55af24c9]Move state message TRANSACTION +[6af 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [55af24c9]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[6b0 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[6b1 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [55af24c9]sending state message TRANSACTION +[6b2 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [55af24c9]Received message GET_STATE from shim +[6b3 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [55af24c9]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +[6b4 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [55af24c9]Received GET_STATE, invoking get state from ledger +[6b5 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[6b6 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [55af24c9] getting state for chaincode exp02, key a, channel businesschannel +[6b7 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=exp02, key=a +[6b8 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [55af24c9]Got state. Sending RESPONSE +[6b9 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [55af24c9]handleGetState serial send RESPONSE +[6ba 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [55af24c9]Received message COMPLETED from shim +[6bb 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [55af24c9]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[6bc 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [55af24c9589ac61318690af743a261c231a30209e0555aefa9c29976bd030e5b]HandleMessage- COMPLETED. Notify +[6bd 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:55af24c9589ac61318690af743a261c231a30209e0555aefa9c29976bd030e5b +[6be 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[6bf 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[6c0 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +[6c1 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [edeba64d-45a5-4d7e-89a7-72e863f5fa1a] +[6c2 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +[6c3 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 55af24c9589ac61318690af743a261c231a30209e0555aefa9c29976bd030e5b channel id: businesschannel chaincode id: name:"exp02" +[6c4 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"exp02" is escc +[6c5 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 55af24c9589ac61318690af743a261c231a30209e0555aefa9c29976bd030e5b channel id: businesschannel version: 1.0.2 +[6c6 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=55af24c9589ac61318690af743a261c231a30209e0555aefa9c29976bd030e5b,syscc=true,proposal=0xc421e33220,canname=escc:1.0.2 +[6c7 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 +[6c8 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[6c9 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 +[6ca 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [55af24c9]Inside sendExecuteMessage. Message TRANSACTION +[6cb 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[6cc 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[6cd 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [55af24c9]sendExecuteMsg trigger event TRANSACTION +[6ce 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [55af24c9]Move state message TRANSACTION +[6cf 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [55af24c9]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[6d0 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[6d1 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [55af24c9]sending state message TRANSACTION +[6d2 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55af24c9]Received message TRANSACTION from shim +[6d3 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [55af24c9]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[6d4 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [55af24c9]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[6d5 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[6d6 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[6d7 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55af24c9]Transaction completed. Sending COMPLETED +[6d8 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55af24c9]Move state message COMPLETED +[6d9 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [55af24c9]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[6da 01-18 09:31:27.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55af24c9]send state message COMPLETED +[6db 01-18 09:31:27.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [55af24c9]Received message COMPLETED from shim +[6dc 01-18 09:31:27.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [55af24c9]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[6dd 01-18 09:31:27.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [55af24c9589ac61318690af743a261c231a30209e0555aefa9c29976bd030e5b]HandleMessage- COMPLETED. Notify +[6de 01-18 09:31:27.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:55af24c9589ac61318690af743a261c231a30209e0555aefa9c29976bd030e5b +[6df 01-18 09:31:27.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[6e0 01-18 09:31:27.87 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[6e1 01-18 09:31:27.87 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +[6e2 01-18 09:31:27.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [edeba64d-45a5-4d7e-89a7-72e863f5fa1a] +[6e3 01-18 09:31:27.87 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +[6e4 01-18 09:31:28.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +[6e5 01-18 09:31:28.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421efa450 +[6e6 01-18 09:31:28.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[6e7 01-18 09:31:28.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[6e8 01-18 09:31:28.33 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +[6e9 01-18 09:31:28.33 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[6ea 01-18 09:31:28.33 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[6eb 01-18 09:31:28.33 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42254be50, header 0xc421efa480 +[6ec 01-18 09:31:28.33 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +[6ed 01-18 09:31:28.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: d8c3af4179949e3acff507fa82d95340dde03a63abaa77be131e271c513fe48b +[6ee 01-18 09:31:28.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [d8c3af4179949e3acff507fa82d95340dde03a63abaa77be131e271c513fe48b] +[6ef 01-18 09:31:28.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[6f0 01-18 09:31:28.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [1e8cdfe2-7733-4ae6-b7af-acaca64211d0] +[6f1 01-18 09:31:28.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: d8c3af4179949e3acff507fa82d95340dde03a63abaa77be131e271c513fe48b channel id: businesschannel +[6f2 01-18 09:31:28.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: d8c3af4179949e3acff507fa82d95340dde03a63abaa77be131e271c513fe48b channel id: businesschannel version: 1.0.2 +[6f3 01-18 09:31:28.33 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=d8c3af4179949e3acff507fa82d95340dde03a63abaa77be131e271c513fe48b,syscc=true,proposal=0xc42254be50,canname=lscc:1.0.2 +[6f4 01-18 09:31:28.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 +[6f5 01-18 09:31:28.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[6f6 01-18 09:31:28.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +[6f7 01-18 09:31:28.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d8c3af41]Inside sendExecuteMessage. Message TRANSACTION +[6f8 01-18 09:31:28.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[6f9 01-18 09:31:28.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[6fa 01-18 09:31:28.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d8c3af41]sendExecuteMsg trigger event TRANSACTION +[6fb 01-18 09:31:28.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d8c3af41]Move state message TRANSACTION +[6fc 01-18 09:31:28.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d8c3af41]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[6fd 01-18 09:31:28.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[6fe 01-18 09:31:28.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d8c3af41]sending state message TRANSACTION +[6ff 01-18 09:31:28.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d8c3af41]Received message TRANSACTION from shim +[700 01-18 09:31:28.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d8c3af41]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[701 01-18 09:31:28.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [d8c3af41]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[702 01-18 09:31:28.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [d8c3af41]Sending GET_STATE +[703 01-18 09:31:28.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d8c3af41]Received message GET_STATE from shim +[704 01-18 09:31:28.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d8c3af41]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +[705 01-18 09:31:28.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [d8c3af41]Received GET_STATE, invoking get state from ledger +[706 01-18 09:31:28.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[707 01-18 09:31:28.35 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [d8c3af41] getting state for chaincode lscc, key exp02, channel businesschannel +[708 01-18 09:31:28.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +[709 01-18 09:31:28.35 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [d8c3af41]Got state. Sending RESPONSE +[70a 01-18 09:31:28.35 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [d8c3af41]handleGetState serial send RESPONSE +[70b 01-18 09:31:28.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d8c3af41]Received message RESPONSE from shim +[70c 01-18 09:31:28.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d8c3af41]Handling ChaincodeMessage of type: RESPONSE(state:ready) +[70d 01-18 09:31:28.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [d8c3af41]before send +[70e 01-18 09:31:28.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [d8c3af41]after send +[70f 01-18 09:31:28.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [d8c3af41]Received RESPONSE, communicated (state:ready) +[710 01-18 09:31:28.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [d8c3af41]GetState received payload RESPONSE +[711 01-18 09:31:28.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d8c3af41]Transaction completed. Sending COMPLETED +[712 01-18 09:31:28.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d8c3af41]Move state message COMPLETED +[713 01-18 09:31:28.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d8c3af41]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[714 01-18 09:31:28.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d8c3af41]send state message COMPLETED +[715 01-18 09:31:28.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d8c3af41]Received message COMPLETED from shim +[716 01-18 09:31:28.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d8c3af41]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[717 01-18 09:31:28.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d8c3af4179949e3acff507fa82d95340dde03a63abaa77be131e271c513fe48b]HandleMessage- COMPLETED. Notify +[718 01-18 09:31:28.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:d8c3af4179949e3acff507fa82d95340dde03a63abaa77be131e271c513fe48b +[719 01-18 09:31:28.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[71a 01-18 09:31:28.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[71b 01-18 09:31:28.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +[71c 01-18 09:31:28.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [1e8cdfe2-7733-4ae6-b7af-acaca64211d0] +[71d 01-18 09:31:28.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +[71e 01-18 09:31:28.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: d8c3af4179949e3acff507fa82d95340dde03a63abaa77be131e271c513fe48b channel id: businesschannel chaincode id: name:"lscc" +[71f 01-18 09:31:28.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc +[720 01-18 09:31:28.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: d8c3af4179949e3acff507fa82d95340dde03a63abaa77be131e271c513fe48b channel id: businesschannel version: 1.0.2 +[721 01-18 09:31:28.35 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=d8c3af4179949e3acff507fa82d95340dde03a63abaa77be131e271c513fe48b,syscc=true,proposal=0xc42254be50,canname=escc:1.0.2 +[722 01-18 09:31:28.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 +[723 01-18 09:31:28.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[724 01-18 09:31:28.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 +[725 01-18 09:31:28.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d8c3af41]Inside sendExecuteMessage. Message TRANSACTION +[726 01-18 09:31:28.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[727 01-18 09:31:28.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[728 01-18 09:31:28.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d8c3af41]sendExecuteMsg trigger event TRANSACTION +[729 01-18 09:31:28.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d8c3af41]Move state message TRANSACTION +[72a 01-18 09:31:28.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d8c3af41]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[72b 01-18 09:31:28.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[72c 01-18 09:31:28.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d8c3af41]sending state message TRANSACTION +[72d 01-18 09:31:28.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d8c3af41]Received message TRANSACTION from shim +[72e 01-18 09:31:28.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d8c3af41]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[72f 01-18 09:31:28.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [d8c3af41]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[730 01-18 09:31:28.36 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[731 01-18 09:31:28.36 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[732 01-18 09:31:28.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d8c3af41]Transaction completed. Sending COMPLETED +[733 01-18 09:31:28.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d8c3af41]Move state message COMPLETED +[734 01-18 09:31:28.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d8c3af41]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[735 01-18 09:31:28.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d8c3af41]send state message COMPLETED +[736 01-18 09:31:28.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d8c3af41]Received message COMPLETED from shim +[737 01-18 09:31:28.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d8c3af41]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[738 01-18 09:31:28.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d8c3af4179949e3acff507fa82d95340dde03a63abaa77be131e271c513fe48b]HandleMessage- COMPLETED. Notify +[739 01-18 09:31:28.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:d8c3af4179949e3acff507fa82d95340dde03a63abaa77be131e271c513fe48b +[73a 01-18 09:31:28.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[73b 01-18 09:31:28.36 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[73c 01-18 09:31:28.36 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +[73d 01-18 09:31:28.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [1e8cdfe2-7733-4ae6-b7af-acaca64211d0] +[73e 01-18 09:31:28.36 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +[73f 01-18 09:31:28.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +[740 01-18 09:31:28.47 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421ebd5c0 +[741 01-18 09:31:28.47 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[742 01-18 09:31:28.47 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[743 01-18 09:31:28.47 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +[744 01-18 09:31:28.47 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[745 01-18 09:31:28.47 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[746 01-18 09:31:28.47 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421c76af0, header 0xc421ebd5f0 +[747 01-18 09:31:28.47 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +[748 01-18 09:31:28.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 66f53d6612da3adac1831aa4dd8687dcbc0491e54a0e670447c3a8888975d1dc +[749 01-18 09:31:28.47 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [66f53d6612da3adac1831aa4dd8687dcbc0491e54a0e670447c3a8888975d1dc] +[74a 01-18 09:31:28.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[74b 01-18 09:31:28.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [d5d174aa-2973-4f62-85a4-8ffd0f8c1eda] +[74c 01-18 09:31:28.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 66f53d6612da3adac1831aa4dd8687dcbc0491e54a0e670447c3a8888975d1dc channel id: businesschannel +[74d 01-18 09:31:28.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 66f53d6612da3adac1831aa4dd8687dcbc0491e54a0e670447c3a8888975d1dc channel id: businesschannel version: 1.0.2 +[74e 01-18 09:31:28.47 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=66f53d6612da3adac1831aa4dd8687dcbc0491e54a0e670447c3a8888975d1dc,syscc=true,proposal=0xc421c76af0,canname=lscc:1.0.2 +[74f 01-18 09:31:28.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 +[750 01-18 09:31:28.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[751 01-18 09:31:28.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +[752 01-18 09:31:28.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [66f53d66]Inside sendExecuteMessage. Message TRANSACTION +[753 01-18 09:31:28.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[754 01-18 09:31:28.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[755 01-18 09:31:28.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [66f53d66]sendExecuteMsg trigger event TRANSACTION +[756 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [66f53d66]Move state message TRANSACTION +[757 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [66f53d66]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[758 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[759 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [66f53d66]sending state message TRANSACTION +[75a 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [66f53d66]Received message TRANSACTION from shim +[75b 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [66f53d66]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[75c 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [66f53d66]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[75d 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [66f53d66]Sending GET_STATE +[75e 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [66f53d66]Received message GET_STATE from shim +[75f 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [66f53d66]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +[760 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [66f53d66]Received GET_STATE, invoking get state from ledger +[761 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[762 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [66f53d66] getting state for chaincode lscc, key exp02, channel businesschannel +[763 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +[764 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [66f53d66]Got state. Sending RESPONSE +[765 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [66f53d66]handleGetState serial send RESPONSE +[766 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [66f53d66]Received message RESPONSE from shim +[767 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [66f53d66]Handling ChaincodeMessage of type: RESPONSE(state:ready) +[768 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [66f53d66]before send +[769 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [66f53d66]after send +[76a 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [66f53d66]GetState received payload RESPONSE +[76c 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [66f53d66]Transaction completed. Sending COMPLETED +[76b 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [66f53d66]Received RESPONSE, communicated (state:ready) +[76d 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [66f53d66]Move state message COMPLETED +[76e 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [66f53d66]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[76f 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [66f53d66]send state message COMPLETED +[770 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [66f53d66]Received message COMPLETED from shim +[771 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [66f53d66]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[772 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [66f53d6612da3adac1831aa4dd8687dcbc0491e54a0e670447c3a8888975d1dc]HandleMessage- COMPLETED. Notify +[773 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:66f53d6612da3adac1831aa4dd8687dcbc0491e54a0e670447c3a8888975d1dc +[774 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[775 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[776 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +[777 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [d5d174aa-2973-4f62-85a4-8ffd0f8c1eda] +[778 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +[779 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 66f53d6612da3adac1831aa4dd8687dcbc0491e54a0e670447c3a8888975d1dc channel id: businesschannel chaincode id: name:"lscc" +[77a 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc +[77b 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 66f53d6612da3adac1831aa4dd8687dcbc0491e54a0e670447c3a8888975d1dc channel id: businesschannel version: 1.0.2 +[77c 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=66f53d6612da3adac1831aa4dd8687dcbc0491e54a0e670447c3a8888975d1dc,syscc=true,proposal=0xc421c76af0,canname=escc:1.0.2 +[77d 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 +[77e 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[77f 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 +[780 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [66f53d66]Inside sendExecuteMessage. Message TRANSACTION +[781 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[782 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[783 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [66f53d66]sendExecuteMsg trigger event TRANSACTION +[784 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [66f53d66]Move state message TRANSACTION +[785 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [66f53d66]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[786 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[787 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [66f53d66]sending state message TRANSACTION +[788 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [66f53d66]Received message TRANSACTION from shim +[789 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [66f53d66]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[78a 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [66f53d66]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[78b 01-18 09:31:28.48 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[78c 01-18 09:31:28.49 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[78d 01-18 09:31:28.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [66f53d66]Transaction completed. Sending COMPLETED +[78e 01-18 09:31:28.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [66f53d66]Move state message COMPLETED +[78f 01-18 09:31:28.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [66f53d66]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[790 01-18 09:31:28.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [66f53d66]send state message COMPLETED +[791 01-18 09:31:28.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [66f53d66]Received message COMPLETED from shim +[792 01-18 09:31:28.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [66f53d66]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[793 01-18 09:31:28.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [66f53d6612da3adac1831aa4dd8687dcbc0491e54a0e670447c3a8888975d1dc]HandleMessage- COMPLETED. Notify +[794 01-18 09:31:28.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:66f53d6612da3adac1831aa4dd8687dcbc0491e54a0e670447c3a8888975d1dc +[795 01-18 09:31:28.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[796 01-18 09:31:28.49 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[797 01-18 09:31:28.49 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +[798 01-18 09:31:28.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [d5d174aa-2973-4f62-85a4-8ffd0f8c1eda] +[799 01-18 09:31:28.49 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +[79a 01-18 09:31:28.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +[79b 01-18 09:31:28.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421f5b320 +[79c 01-18 09:31:28.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[79d 01-18 09:31:28.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[79e 01-18 09:31:28.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +[79f 01-18 09:31:28.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[7a0 01-18 09:31:28.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[7a1 01-18 09:31:28.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421c77a40, header 0xc421f5b350 +[7a2 01-18 09:31:28.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +[7a3 01-18 09:31:28.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: c2178cd8945e3928ec6137b2dbfc299c342f0b898735f6a4dad1fe2deda8ffcf +[7a4 01-18 09:31:28.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [c2178cd8945e3928ec6137b2dbfc299c342f0b898735f6a4dad1fe2deda8ffcf] +[7a5 01-18 09:31:28.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[7a6 01-18 09:31:28.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [ea72a4cd-c1fd-46e0-ac94-ad3aa535214a] +[7a7 01-18 09:31:28.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: c2178cd8945e3928ec6137b2dbfc299c342f0b898735f6a4dad1fe2deda8ffcf channel id: businesschannel +[7a8 01-18 09:31:28.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: c2178cd8945e3928ec6137b2dbfc299c342f0b898735f6a4dad1fe2deda8ffcf channel id: businesschannel version: 1.0.2 +[7a9 01-18 09:31:28.61 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=c2178cd8945e3928ec6137b2dbfc299c342f0b898735f6a4dad1fe2deda8ffcf,syscc=true,proposal=0xc421c77a40,canname=lscc:1.0.2 +[7aa 01-18 09:31:28.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 +[7ab 01-18 09:31:28.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[7ac 01-18 09:31:28.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +[7ad 01-18 09:31:28.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c2178cd8]Inside sendExecuteMessage. Message TRANSACTION +[7ae 01-18 09:31:28.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[7af 01-18 09:31:28.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[7b0 01-18 09:31:28.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c2178cd8]sendExecuteMsg trigger event TRANSACTION +[7b1 01-18 09:31:28.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c2178cd8]Move state message TRANSACTION +[7b2 01-18 09:31:28.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c2178cd8]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[7b3 01-18 09:31:28.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[7b4 01-18 09:31:28.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c2178cd8]sending state message TRANSACTION +[7b5 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c2178cd8]Received message TRANSACTION from shim +[7b6 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c2178cd8]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[7b7 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [c2178cd8]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[7b8 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [c2178cd8]Sending GET_STATE +[7b9 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c2178cd8]Received message GET_STATE from shim +[7ba 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c2178cd8]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +[7bb 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [c2178cd8]Received GET_STATE, invoking get state from ledger +[7bc 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[7bd 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [c2178cd8] getting state for chaincode lscc, key exp02, channel businesschannel +[7be 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +[7bf 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [c2178cd8]Got state. Sending RESPONSE +[7c0 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [c2178cd8]handleGetState serial send RESPONSE +[7c1 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c2178cd8]Received message RESPONSE from shim +[7c2 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c2178cd8]Handling ChaincodeMessage of type: RESPONSE(state:ready) +[7c3 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [c2178cd8]before send +[7c4 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [c2178cd8]after send +[7c6 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [c2178cd8]Received RESPONSE, communicated (state:ready) +[7c5 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [c2178cd8]GetState received payload RESPONSE +[7c7 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c2178cd8]Transaction completed. Sending COMPLETED +[7c8 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c2178cd8]Move state message COMPLETED +[7c9 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c2178cd8]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[7ca 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c2178cd8]send state message COMPLETED +[7cb 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c2178cd8]Received message COMPLETED from shim +[7cc 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c2178cd8]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[7cd 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c2178cd8945e3928ec6137b2dbfc299c342f0b898735f6a4dad1fe2deda8ffcf]HandleMessage- COMPLETED. Notify +[7ce 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:c2178cd8945e3928ec6137b2dbfc299c342f0b898735f6a4dad1fe2deda8ffcf +[7cf 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[7d0 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[7d1 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +[7d2 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [ea72a4cd-c1fd-46e0-ac94-ad3aa535214a] +[7d3 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +[7d4 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: c2178cd8945e3928ec6137b2dbfc299c342f0b898735f6a4dad1fe2deda8ffcf channel id: businesschannel chaincode id: name:"lscc" +[7d5 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc +[7d6 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: c2178cd8945e3928ec6137b2dbfc299c342f0b898735f6a4dad1fe2deda8ffcf channel id: businesschannel version: 1.0.2 +[7d7 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=c2178cd8945e3928ec6137b2dbfc299c342f0b898735f6a4dad1fe2deda8ffcf,syscc=true,proposal=0xc421c77a40,canname=escc:1.0.2 +[7d8 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 +[7d9 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[7da 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 +[7db 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c2178cd8]Inside sendExecuteMessage. Message TRANSACTION +[7dc 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[7dd 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[7de 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c2178cd8]sendExecuteMsg trigger event TRANSACTION +[7df 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c2178cd8]Move state message TRANSACTION +[7e0 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c2178cd8]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[7e1 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[7e2 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c2178cd8]sending state message TRANSACTION +[7e3 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c2178cd8]Received message TRANSACTION from shim +[7e4 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c2178cd8]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[7e5 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [c2178cd8]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[7e6 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[7e7 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[7e8 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c2178cd8]Transaction completed. Sending COMPLETED +[7e9 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c2178cd8]Move state message COMPLETED +[7ea 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c2178cd8]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[7eb 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c2178cd8]send state message COMPLETED +[7ec 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c2178cd8]Received message COMPLETED from shim +[7ed 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c2178cd8]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[7ee 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c2178cd8945e3928ec6137b2dbfc299c342f0b898735f6a4dad1fe2deda8ffcf]HandleMessage- COMPLETED. Notify +[7ef 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:c2178cd8945e3928ec6137b2dbfc299c342f0b898735f6a4dad1fe2deda8ffcf +[7f0 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[7f1 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[7f2 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +[7f3 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [ea72a4cd-c1fd-46e0-ac94-ad3aa535214a] +[7f4 01-18 09:31:28.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +[7f5 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +[7f6 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421f9ec00 +[7f7 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[7f8 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[7f9 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +[7fa 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[7fb 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[7fc 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421eb09b0, header 0xc421f9ec30 +[7fd 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +[7fe 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 5c4900544a739535c441e2b83e460cbd26874d85a6822531fd3fdfbbe207842f +[7ff 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [5c4900544a739535c441e2b83e460cbd26874d85a6822531fd3fdfbbe207842f] +[800 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[801 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [a37b7fdc-a30a-477d-9f8e-18c2fcd86298] +[802 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 5c4900544a739535c441e2b83e460cbd26874d85a6822531fd3fdfbbe207842f channel id: businesschannel +[803 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 5c4900544a739535c441e2b83e460cbd26874d85a6822531fd3fdfbbe207842f channel id: businesschannel version: 1.0.2 +[804 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=5c4900544a739535c441e2b83e460cbd26874d85a6822531fd3fdfbbe207842f,syscc=true,proposal=0xc421eb09b0,canname=lscc:1.0.2 +[805 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 +[806 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[807 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +[808 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [5c490054]Inside sendExecuteMessage. Message TRANSACTION +[809 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[80a 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[80b 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [5c490054]sendExecuteMsg trigger event TRANSACTION +[80c 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5c490054]Move state message TRANSACTION +[80d 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5c490054]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[80e 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[80f 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5c490054]sending state message TRANSACTION +[810 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5c490054]Received message TRANSACTION from shim +[811 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5c490054]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[812 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [5c490054]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[813 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5c490054]Transaction completed. Sending COMPLETED +[814 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5c490054]Move state message COMPLETED +[815 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5c490054]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[816 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5c490054]send state message COMPLETED +[817 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5c490054]Received message COMPLETED from shim +[818 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5c490054]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[819 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5c4900544a739535c441e2b83e460cbd26874d85a6822531fd3fdfbbe207842f]HandleMessage- COMPLETED. Notify +[81a 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:5c4900544a739535c441e2b83e460cbd26874d85a6822531fd3fdfbbe207842f +[81b 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[81c 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[81d 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +[81e 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [a37b7fdc-a30a-477d-9f8e-18c2fcd86298] +[81f 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +[820 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 5c4900544a739535c441e2b83e460cbd26874d85a6822531fd3fdfbbe207842f channel id: businesschannel chaincode id: name:"lscc" +[821 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc +[822 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 5c4900544a739535c441e2b83e460cbd26874d85a6822531fd3fdfbbe207842f channel id: businesschannel version: 1.0.2 +[823 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=5c4900544a739535c441e2b83e460cbd26874d85a6822531fd3fdfbbe207842f,syscc=true,proposal=0xc421eb09b0,canname=escc:1.0.2 +[824 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 +[825 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[826 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 +[827 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [5c490054]Inside sendExecuteMessage. Message TRANSACTION +[828 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[829 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[82a 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [5c490054]sendExecuteMsg trigger event TRANSACTION +[82b 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5c490054]Move state message TRANSACTION +[82c 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5c490054]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[82d 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[82e 01-18 09:31:28.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5c490054]sending state message TRANSACTION +[82f 01-18 09:31:28.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5c490054]Received message TRANSACTION from shim +[830 01-18 09:31:28.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5c490054]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[831 01-18 09:31:28.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [5c490054]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[832 01-18 09:31:28.84 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[833 01-18 09:31:28.84 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[834 01-18 09:31:28.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5c490054]Transaction completed. Sending COMPLETED +[835 01-18 09:31:28.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5c490054]Move state message COMPLETED +[836 01-18 09:31:28.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5c490054]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[837 01-18 09:31:28.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5c490054]send state message COMPLETED +[838 01-18 09:31:28.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5c490054]Received message COMPLETED from shim +[839 01-18 09:31:28.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5c490054]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[83a 01-18 09:31:28.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5c4900544a739535c441e2b83e460cbd26874d85a6822531fd3fdfbbe207842f]HandleMessage- COMPLETED. Notify +[83b 01-18 09:31:28.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:5c4900544a739535c441e2b83e460cbd26874d85a6822531fd3fdfbbe207842f +[83c 01-18 09:31:28.84 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[83d 01-18 09:31:28.84 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[83e 01-18 09:31:28.84 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +[83f 01-18 09:31:28.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [a37b7fdc-a30a-477d-9f8e-18c2fcd86298] +[840 01-18 09:31:28.84 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +[841 01-18 09:31:29.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +[842 01-18 09:31:29.04 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421fd6f30 +[843 01-18 09:31:29.04 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[844 01-18 09:31:29.04 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[845 01-18 09:31:29.04 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +[846 01-18 09:31:29.04 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[847 01-18 09:31:29.04 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[848 01-18 09:31:29.04 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4219520f0, header 0xc421fd6f60 +[849 01-18 09:31:29.04 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +[84a 01-18 09:31:29.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: ee9283f8aab60aa44780090e8860dd262d46be6b7cd740fbb90aace1a11a4bc9 +[84b 01-18 09:31:29.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [ee9283f8aab60aa44780090e8860dd262d46be6b7cd740fbb90aace1a11a4bc9] +[84c 01-18 09:31:29.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[84d 01-18 09:31:29.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [cc52e109-a423-41d7-9328-c69ca360ba9e] +[84e 01-18 09:31:29.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: ee9283f8aab60aa44780090e8860dd262d46be6b7cd740fbb90aace1a11a4bc9 channel id: businesschannel +[84f 01-18 09:31:29.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: ee9283f8aab60aa44780090e8860dd262d46be6b7cd740fbb90aace1a11a4bc9 channel id: businesschannel version: 1.0.2 +[850 01-18 09:31:29.04 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=ee9283f8aab60aa44780090e8860dd262d46be6b7cd740fbb90aace1a11a4bc9,syscc=true,proposal=0xc4219520f0,canname=lscc:1.0.2 +[851 01-18 09:31:29.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 +[852 01-18 09:31:29.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[853 01-18 09:31:29.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +[854 01-18 09:31:29.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ee9283f8]Inside sendExecuteMessage. Message TRANSACTION +[855 01-18 09:31:29.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[856 01-18 09:31:29.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[857 01-18 09:31:29.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ee9283f8]sendExecuteMsg trigger event TRANSACTION +[858 01-18 09:31:29.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ee9283f8]Move state message TRANSACTION +[859 01-18 09:31:29.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ee9283f8]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[85a 01-18 09:31:29.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[85b 01-18 09:31:29.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ee9283f8]sending state message TRANSACTION +[85c 01-18 09:31:29.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ee9283f8]Received message TRANSACTION from shim +[85d 01-18 09:31:29.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ee9283f8]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[85e 01-18 09:31:29.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [ee9283f8]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[85f 01-18 09:31:29.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.GetStateByRange.handleGetStateByRange.handleGetStateByRange -> DEBU [ee9283f8]Sending GET_STATE_BY_RANGE +[860 01-18 09:31:29.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ee9283f8]Received message GET_STATE_BY_RANGE from shim +[861 01-18 09:31:29.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ee9283f8]Fabric side Handling ChaincodeMessage of type: GET_STATE_BY_RANGE in state ready +[862 01-18 09:31:29.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func4.afterGetStateByRange -> DEBU Received GET_STATE_BY_RANGE, invoking get state from ledger +[863 01-18 09:31:29.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func4.afterGetStateByRange -> DEBU Exiting GET_STATE_BY_RANGE +[865 01-18 09:31:29.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[864 01-18 09:31:29.05 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] GetStateRangeScanIterator.getStateRangeScanIterator.newResultsItr.GetStateRangeScanIterator.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x0, 0x6c, 0x73, 0x63, 0x63, 0x0, 0x1}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x0, 0x6c, 0x73, 0x63, 0x63, 0x1}] +[866 01-18 09:31:29.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/rwsetutil] getQueryResponse.Next.updateRangeQueryInfo.AddResult -> DEBU Adding a result +[867 01-18 09:31:29.05 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU Got keys and values. Sending RESPONSE +[868 01-18 09:31:29.05 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [ee9283f8]handleGetStateByRange serial send RESPONSE +[869 01-18 09:31:29.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ee9283f8]Received message RESPONSE from shim +[86a 01-18 09:31:29.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ee9283f8]Handling ChaincodeMessage of type: RESPONSE(state:ready) +[86b 01-18 09:31:29.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [ee9283f8]before send +[86c 01-18 09:31:29.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [ee9283f8]after send +[86e 01-18 09:31:29.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [ee9283f8]Received RESPONSE, communicated (state:ready) +[86d 01-18 09:31:29.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.GetStateByRange.handleGetStateByRange.handleGetStateByRange -> DEBU [ee9283f8]Received RESPONSE. Successfully got range +[86f 01-18 09:31:29.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.Close.handleQueryStateClose -> DEBU [ee9283f8]Sending QUERY_STATE_CLOSE +[870 01-18 09:31:29.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ee9283f8]Received message QUERY_STATE_CLOSE from shim +[871 01-18 09:31:29.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ee9283f8]Fabric side Handling ChaincodeMessage of type: QUERY_STATE_CLOSE in state ready +[872 01-18 09:31:29.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func8.afterQueryStateClose -> DEBU Received QUERY_STATE_CLOSE, invoking query state close from ledger +[873 01-18 09:31:29.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func8.afterQueryStateClose -> DEBU Exiting QUERY_STATE_CLOSE +[874 01-18 09:31:29.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[875 01-18 09:31:29.06 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU Closed. Sending RESPONSE +[876 01-18 09:31:29.06 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [ee9283f8]handleQueryStateClose serial send RESPONSE +[877 01-18 09:31:29.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ee9283f8]Received message RESPONSE from shim +[878 01-18 09:31:29.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ee9283f8]Handling ChaincodeMessage of type: RESPONSE(state:ready) +[879 01-18 09:31:29.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [ee9283f8]before send +[87a 01-18 09:31:29.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [ee9283f8]after send +[87b 01-18 09:31:29.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [ee9283f8]Received RESPONSE, communicated (state:ready) +[87c 01-18 09:31:29.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.Close.handleQueryStateClose -> DEBU [ee9283f8]Received RESPONSE. Successfully got range +[87d 01-18 09:31:29.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ee9283f8]Transaction completed. Sending COMPLETED +[87e 01-18 09:31:29.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ee9283f8]Move state message COMPLETED +[87f 01-18 09:31:29.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ee9283f8]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[880 01-18 09:31:29.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ee9283f8]send state message COMPLETED +[881 01-18 09:31:29.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ee9283f8]Received message COMPLETED from shim +[882 01-18 09:31:29.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ee9283f8]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[883 01-18 09:31:29.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ee9283f8aab60aa44780090e8860dd262d46be6b7cd740fbb90aace1a11a4bc9]HandleMessage- COMPLETED. Notify +[884 01-18 09:31:29.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:ee9283f8aab60aa44780090e8860dd262d46be6b7cd740fbb90aace1a11a4bc9 +[885 01-18 09:31:29.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[886 01-18 09:31:29.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[887 01-18 09:31:29.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +[888 01-18 09:31:29.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [cc52e109-a423-41d7-9328-c69ca360ba9e] +[889 01-18 09:31:29.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +[88a 01-18 09:31:29.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: ee9283f8aab60aa44780090e8860dd262d46be6b7cd740fbb90aace1a11a4bc9 channel id: businesschannel chaincode id: name:"lscc" +[88b 01-18 09:31:29.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc +[88c 01-18 09:31:29.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: ee9283f8aab60aa44780090e8860dd262d46be6b7cd740fbb90aace1a11a4bc9 channel id: businesschannel version: 1.0.2 +[88d 01-18 09:31:29.06 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=ee9283f8aab60aa44780090e8860dd262d46be6b7cd740fbb90aace1a11a4bc9,syscc=true,proposal=0xc4219520f0,canname=escc:1.0.2 +[88e 01-18 09:31:29.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 +[88f 01-18 09:31:29.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[890 01-18 09:31:29.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 +[891 01-18 09:31:29.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ee9283f8]Inside sendExecuteMessage. Message TRANSACTION +[892 01-18 09:31:29.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[893 01-18 09:31:29.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[894 01-18 09:31:29.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ee9283f8]sendExecuteMsg trigger event TRANSACTION +[895 01-18 09:31:29.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ee9283f8]Move state message TRANSACTION +[896 01-18 09:31:29.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ee9283f8]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[897 01-18 09:31:29.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[898 01-18 09:31:29.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ee9283f8]sending state message TRANSACTION +[899 01-18 09:31:29.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ee9283f8]Received message TRANSACTION from shim +[89a 01-18 09:31:29.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ee9283f8]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[89b 01-18 09:31:29.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [ee9283f8]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[89c 01-18 09:31:29.07 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[89d 01-18 09:31:29.07 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[89e 01-18 09:31:29.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ee9283f8]Transaction completed. Sending COMPLETED +[89f 01-18 09:31:29.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ee9283f8]Move state message COMPLETED +[8a0 01-18 09:31:29.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ee9283f8]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[8a1 01-18 09:31:29.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ee9283f8]send state message COMPLETED +[8a2 01-18 09:31:29.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ee9283f8]Received message COMPLETED from shim +[8a3 01-18 09:31:29.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ee9283f8]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[8a4 01-18 09:31:29.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ee9283f8aab60aa44780090e8860dd262d46be6b7cd740fbb90aace1a11a4bc9]HandleMessage- COMPLETED. Notify +[8a5 01-18 09:31:29.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:ee9283f8aab60aa44780090e8860dd262d46be6b7cd740fbb90aace1a11a4bc9 +[8a6 01-18 09:31:29.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[8a7 01-18 09:31:29.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[8a8 01-18 09:31:29.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +[8a9 01-18 09:31:29.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [cc52e109-a423-41d7-9328-c69ca360ba9e] +[8aa 01-18 09:31:29.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +[8ab 01-18 09:31:29.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +[8ac 01-18 09:31:29.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422936e10 +[8ad 01-18 09:31:29.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[8ae 01-18 09:31:29.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[8af 01-18 09:31:29.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +[8b0 01-18 09:31:29.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[8b1 01-18 09:31:29.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[8b2 01-18 09:31:29.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42216a550, header 0xc422936e40 +[8b3 01-18 09:31:29.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +[8b4 01-18 09:31:29.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 43f382e2cb24b60ff8894452923f4238891734453951dd89c727e38556187588 +[8b5 01-18 09:31:29.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [43f382e2cb24b60ff8894452923f4238891734453951dd89c727e38556187588] +[8b6 01-18 09:31:29.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[8b7 01-18 09:31:29.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [7167c5e0-98bf-4eed-a66b-b18f36ec93ba] +[8b8 01-18 09:31:29.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 43f382e2cb24b60ff8894452923f4238891734453951dd89c727e38556187588 channel id: businesschannel +[8b9 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 43f382e2cb24b60ff8894452923f4238891734453951dd89c727e38556187588 channel id: businesschannel version: 1.0.2 +[8ba 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.0.2,txid=43f382e2cb24b60ff8894452923f4238891734453951dd89c727e38556187588,syscc=true,proposal=0xc42216a550,canname=qscc:1.0.2 +[8bb 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.0.2 +[8bc 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[8bd 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.2 +[8be 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [43f382e2]Inside sendExecuteMessage. Message TRANSACTION +[8bf 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[8c0 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[8c1 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [43f382e2]sendExecuteMsg trigger event TRANSACTION +[8c2 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [43f382e2]Move state message TRANSACTION +[8c3 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [43f382e2]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[8c4 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[8c5 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [43f382e2]sending state message TRANSACTION +[8c6 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [43f382e2]Received message TRANSACTION from shim +[8c7 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [43f382e2]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[8c8 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [43f382e2]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[8c9 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +[8ca 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [43f382e2]Transaction completed. Sending COMPLETED +[8cb 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [43f382e2]Move state message COMPLETED +[8cc 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [43f382e2]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[8cd 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [43f382e2]send state message COMPLETED +[8ce 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [43f382e2]Received message COMPLETED from shim +[8cf 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [43f382e2]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[8d0 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [43f382e2cb24b60ff8894452923f4238891734453951dd89c727e38556187588]HandleMessage- COMPLETED. Notify +[8d1 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:43f382e2cb24b60ff8894452923f4238891734453951dd89c727e38556187588 +[8d2 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[8d3 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[8d4 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +[8d5 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [7167c5e0-98bf-4eed-a66b-b18f36ec93ba] +[8d6 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +[8d7 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 43f382e2cb24b60ff8894452923f4238891734453951dd89c727e38556187588 channel id: businesschannel chaincode id: name:"qscc" +[8d8 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +[8d9 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 43f382e2cb24b60ff8894452923f4238891734453951dd89c727e38556187588 channel id: businesschannel version: 1.0.2 +[8da 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=43f382e2cb24b60ff8894452923f4238891734453951dd89c727e38556187588,syscc=true,proposal=0xc42216a550,canname=escc:1.0.2 +[8db 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 +[8dc 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[8dd 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 +[8de 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [43f382e2]Inside sendExecuteMessage. Message TRANSACTION +[8df 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[8e0 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[8e1 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [43f382e2]sendExecuteMsg trigger event TRANSACTION +[8e2 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [43f382e2]Move state message TRANSACTION +[8e3 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [43f382e2]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[8e4 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[8e5 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [43f382e2]sending state message TRANSACTION +[8e6 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [43f382e2]Received message TRANSACTION from shim +[8e7 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [43f382e2]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[8e8 01-18 09:31:29.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [43f382e2]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[8e9 01-18 09:31:29.63 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[8ea 01-18 09:31:29.63 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[8eb 01-18 09:31:29.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [43f382e2]Transaction completed. Sending COMPLETED +[8ec 01-18 09:31:29.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [43f382e2]Move state message COMPLETED +[8ed 01-18 09:31:29.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [43f382e2]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[8ee 01-18 09:31:29.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [43f382e2]send state message COMPLETED +[8ef 01-18 09:31:29.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [43f382e2]Received message COMPLETED from shim +[8f0 01-18 09:31:29.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [43f382e2]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[8f1 01-18 09:31:29.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [43f382e2cb24b60ff8894452923f4238891734453951dd89c727e38556187588]HandleMessage- COMPLETED. Notify +[8f2 01-18 09:31:29.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:43f382e2cb24b60ff8894452923f4238891734453951dd89c727e38556187588 +[8f3 01-18 09:31:29.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[8f4 01-18 09:31:29.63 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[8f5 01-18 09:31:29.63 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +[8f6 01-18 09:31:29.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [7167c5e0-98bf-4eed-a66b-b18f36ec93ba] +[8f7 01-18 09:31:29.63 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +[8f8 01-18 09:31:29.85 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +[8f9 01-18 09:31:29.85 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42263a420 +[8fa 01-18 09:31:29.85 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[8fb 01-18 09:31:29.85 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[8fc 01-18 09:31:29.85 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +[8fd 01-18 09:31:29.85 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[8fe 01-18 09:31:29.85 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[8ff 01-18 09:31:29.85 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422650050, header 0xc42263a450 +[900 01-18 09:31:29.85 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +[901 01-18 09:31:29.85 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 653e4e1f47065b46dc7fa1809745c97e160ac3717ef171c45e1261178ac6586a +[902 01-18 09:31:29.85 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [653e4e1f47065b46dc7fa1809745c97e160ac3717ef171c45e1261178ac6586a] +[903 01-18 09:31:29.85 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[904 01-18 09:31:29.85 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [c065e692-9f95-46a6-9fc4-a64ba74c11bd] +[905 01-18 09:31:29.85 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 653e4e1f47065b46dc7fa1809745c97e160ac3717ef171c45e1261178ac6586a channel id: businesschannel +[906 01-18 09:31:29.85 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 653e4e1f47065b46dc7fa1809745c97e160ac3717ef171c45e1261178ac6586a channel id: businesschannel version: 1.0.2 +[907 01-18 09:31:29.85 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.0.2,txid=653e4e1f47065b46dc7fa1809745c97e160ac3717ef171c45e1261178ac6586a,syscc=true,proposal=0xc422650050,canname=qscc:1.0.2 +[908 01-18 09:31:29.85 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.0.2 +[909 01-18 09:31:29.85 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[90a 01-18 09:31:29.85 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.2 +[90b 01-18 09:31:29.85 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [653e4e1f]Inside sendExecuteMessage. Message TRANSACTION +[90c 01-18 09:31:29.85 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[90d 01-18 09:31:29.85 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[90e 01-18 09:31:29.85 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [653e4e1f]sendExecuteMsg trigger event TRANSACTION +[90f 01-18 09:31:29.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [653e4e1f]Move state message TRANSACTION +[910 01-18 09:31:29.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [653e4e1f]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[911 01-18 09:31:29.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[912 01-18 09:31:29.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [653e4e1f]sending state message TRANSACTION +[913 01-18 09:31:29.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [653e4e1f]Received message TRANSACTION from shim +[914 01-18 09:31:29.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [653e4e1f]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[915 01-18 09:31:29.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [653e4e1f]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[916 01-18 09:31:29.85 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetBlockByNumber on chain: businesschannel +[917 01-18 09:31:29.85 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [2] +[918 01-18 09:31:29.86 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/ledgersData/chains/chains/businesschannel/blockfile_000000], startOffset=[25669] +[919 01-18 09:31:29.86 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[28895], Going to peek [8] bytes +[91a 01-18 09:31:29.86 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13790], placementInfo={fileNum=[0], startOffset=[25669], bytesOffset=[25671]} +[91b 01-18 09:31:29.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [653e4e1f]Transaction completed. Sending COMPLETED +[91c 01-18 09:31:29.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [653e4e1f]Move state message COMPLETED +[91d 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [653e4e1f]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[91e 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [653e4e1f]send state message COMPLETED +[91f 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [653e4e1f]Received message COMPLETED from shim +[920 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [653e4e1f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[921 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [653e4e1f47065b46dc7fa1809745c97e160ac3717ef171c45e1261178ac6586a]HandleMessage- COMPLETED. Notify +[922 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:653e4e1f47065b46dc7fa1809745c97e160ac3717ef171c45e1261178ac6586a +[923 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[924 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[925 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +[926 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [c065e692-9f95-46a6-9fc4-a64ba74c11bd] +[927 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +[928 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 653e4e1f47065b46dc7fa1809745c97e160ac3717ef171c45e1261178ac6586a channel id: businesschannel chaincode id: name:"qscc" +[929 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +[92a 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 653e4e1f47065b46dc7fa1809745c97e160ac3717ef171c45e1261178ac6586a channel id: businesschannel version: 1.0.2 +[92b 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=653e4e1f47065b46dc7fa1809745c97e160ac3717ef171c45e1261178ac6586a,syscc=true,proposal=0xc422650050,canname=escc:1.0.2 +[92c 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 +[92d 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[92e 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 +[92f 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [653e4e1f]Inside sendExecuteMessage. Message TRANSACTION +[930 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[931 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[932 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [653e4e1f]sendExecuteMsg trigger event TRANSACTION +[933 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [653e4e1f]Move state message TRANSACTION +[934 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [653e4e1f]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[935 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[936 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [653e4e1f]sending state message TRANSACTION +[937 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [653e4e1f]Received message TRANSACTION from shim +[938 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [653e4e1f]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[939 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [653e4e1f]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[93a 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[93b 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[93c 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [653e4e1f]Transaction completed. Sending COMPLETED +[93d 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [653e4e1f]Move state message COMPLETED +[93e 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [653e4e1f]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[93f 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [653e4e1f]send state message COMPLETED +[940 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [653e4e1f]Received message COMPLETED from shim +[941 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [653e4e1f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[942 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [653e4e1f47065b46dc7fa1809745c97e160ac3717ef171c45e1261178ac6586a]HandleMessage- COMPLETED. Notify +[943 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:653e4e1f47065b46dc7fa1809745c97e160ac3717ef171c45e1261178ac6586a +[944 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[945 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[946 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +[947 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [c065e692-9f95-46a6-9fc4-a64ba74c11bd] +[948 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +[949 01-18 09:31:29.87 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +[94a 01-18 09:31:29.88 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +[94b 01-18 09:31:29.88 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +[94c 01-18 09:31:29.89 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc42244cf30 +[94d 01-18 09:31:29.89 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\357\322\201\323\005\020\300\316\217\315\002\"\017businesschannel*@a4652cc8b4e64e8e390bc639b183d8569ae28fa2ce4307dc0a9b7eed3962aaab:\t\022\007\022\005exp02" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\030f|\376_Y\376PDS^\231\016m\377\335pI)\006]\3548\010\336" +[94e 01-18 09:31:29.89 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[94f 01-18 09:31:29.89 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[950 01-18 09:31:29.89 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} +[951 01-18 09:31:29.89 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[952 01-18 09:31:29.89 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[953 01-18 09:31:29.89 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc4213dc800, header channel_header:"\010\003\032\014\010\357\322\201\323\005\020\300\316\217\315\002\"\017businesschannel*@a4652cc8b4e64e8e390bc639b183d8569ae28fa2ce4307dc0a9b7eed3962aaab:\t\022\007\022\005exp02" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\030f|\376_Y\376PDS^\231\016m\377\335pI)\006]\3548\010\336" +[954 01-18 09:31:29.89 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +[955 01-18 09:31:29.89 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +[956 01-18 09:31:29.89 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +[957 01-18 09:31:29.89 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +[958 01-18 09:31:29.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [a4652cc8b4e64e8e390bc639b183d8569ae28fa2ce4307dc0a9b7eed3962aaab] +[959 01-18 09:31:29.89 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +[95a 01-18 09:31:29.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [38819fb1-9d41-4f50-8220-0ded721a7476] +[95b 01-18 09:31:29.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +[95c 01-18 09:31:29.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [38819fb1-9d41-4f50-8220-0ded721a7476] +[95d 01-18 09:31:29.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[95e 01-18 09:31:29.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [d70a03fd-18f5-4277-8504-3fb37f729b57] +[95f 01-18 09:31:29.89 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=3ffb5208-ea51-48c3-a69b-65729da4a373,syscc=true,proposal=0x0,canname=vscc:1.0.2 +[960 01-18 09:31:29.89 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid a4652cc8b4e64e8e390bc639b183d8569ae28fa2ce4307dc0a9b7eed3962aaab chaindID businesschannel +[961 01-18 09:31:29.89 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 +[962 01-18 09:31:29.89 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[963 01-18 09:31:29.90 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 +[964 01-18 09:31:29.90 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [3ffb5208]Inside sendExecuteMessage. Message TRANSACTION +[965 01-18 09:31:29.91 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[966 01-18 09:31:29.91 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [3ffb5208]sendExecuteMsg trigger event TRANSACTION +[967 01-18 09:31:29.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3ffb5208]Move state message TRANSACTION +[968 01-18 09:31:29.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3ffb5208]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[969 01-18 09:31:29.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[96a 01-18 09:31:29.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3ffb5208]sending state message TRANSACTION +[96b 01-18 09:31:29.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3ffb5208]Received message TRANSACTION from shim +[96c 01-18 09:31:29.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3ffb5208]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[96d 01-18 09:31:29.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [3ffb5208]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[96e 01-18 09:31:29.91 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +[96f 01-18 09:31:29.91 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +[970 01-18 09:31:29.91 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +[971 01-18 09:31:29.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3ffb5208]Transaction completed. Sending COMPLETED +[972 01-18 09:31:29.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3ffb5208]Move state message COMPLETED +[973 01-18 09:31:29.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3ffb5208]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[974 01-18 09:31:29.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3ffb5208]send state message COMPLETED +[975 01-18 09:31:29.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3ffb5208]Received message COMPLETED from shim +[976 01-18 09:31:29.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3ffb5208]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[977 01-18 09:31:29.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3ffb5208-ea51-48c3-a69b-65729da4a373]HandleMessage- COMPLETED. Notify +[978 01-18 09:31:29.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:3ffb5208-ea51-48c3-a69b-65729da4a373 +[979 01-18 09:31:29.91 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[97a 01-18 09:31:29.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [d70a03fd-18f5-4277-8504-3fb37f729b57] +[97b 01-18 09:31:29.92 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +[97c 01-18 09:31:29.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +[97d 01-18 09:31:29.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc4226fc3c0), Data:(*common.BlockData)(0xc421d5e420), Metadata:(*common.BlockMetadata)(0xc421d5e460)}, doMVCCValidation=true +[97e 01-18 09:31:29.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +[97f 01-18 09:31:29.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=exp02, key=a +[980 01-18 09:31:29.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=exp02, key=b +[981 01-18 09:31:29.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=exp02 +[982 01-18 09:31:29.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [6] Transaction index [0] TxId [a4652cc8b4e64e8e390bc639b183d8569ae28fa2ce4307dc0a9b7eed3962aaab] marked as valid by state validator +[983 01-18 09:31:29.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0x6d, 0x6b, 0x82, 0xbc, 0xa, 0x4, 0xe3, 0xad, 0xfa, 0xe, 0x85, 0xa6, 0xa0, 0xe8, 0x87, 0xbf, 0x19, 0xf1, 0xbf, 0xd3, 0x9d, 0x68, 0xf3, 0x0, 0xe5, 0x64, 0xa4, 0xd6, 0x4c, 0x4e, 0x9f, 0x3d} txOffsets= +txId=a4652cc8b4e64e8e390bc639b183d8569ae28fa2ce4307dc0a9b7eed3962aaab locPointer=offset=70, bytesLength=2855 ] -[981 01-18 02:00:28.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=54636, bytesLength=2855] for tx ID: [ef892f35fb64f0ede0b8e75fccdd87a0b5a88e80208a6beacc5248090c895114] to index -[982 01-18 02:00:28.45 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=54636, bytesLength=2855] for tx number:[0] ID: [ef892f35fb64f0ede0b8e75fccdd87a0b5a88e80208a6beacc5248090c895114] to blockNumTranNum index -[983 01-18 02:00:28.45 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[59242], isChainEmpty=[false], lastBlockNumber=[6] -[984 01-18 02:00:28.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [6] with 1 transaction(s) -[985 01-18 02:00:28.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -[986 01-18 02:00:28.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -[987 01-18 02:00:28.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] -[988 01-18 02:00:28.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] -[989 01-18 02:00:28.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -[98a 01-18 02:00:28.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [6] with [1] transactions -[98b 01-18 02:00:28.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [6] -[98c 01-18 02:00:28.46 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -[98d 01-18 02:00:28.46 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [6] contains transaction id: ef892f35fb64f0ede0b8e75fccdd87a0b5a88e80208a6beacc5248090c895114 -[98e 01-18 02:00:28.46 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [6] -[98f 01-18 02:00:28.46 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -[990 01-18 02:00:28.46 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -[991 01-18 02:00:28.46 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -[992 01-18 02:00:28.46 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -[993 01-18 02:00:28.46 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +[984 01-18 09:31:29.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=54634, bytesLength=2855] for tx ID: [a4652cc8b4e64e8e390bc639b183d8569ae28fa2ce4307dc0a9b7eed3962aaab] to index +[985 01-18 09:31:29.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=54634, bytesLength=2855] for tx number:[0] ID: [a4652cc8b4e64e8e390bc639b183d8569ae28fa2ce4307dc0a9b7eed3962aaab] to blockNumTranNum index +[986 01-18 09:31:29.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[59239], isChainEmpty=[false], lastBlockNumber=[6] +[987 01-18 09:31:29.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [6] with 1 transaction(s) +[988 01-18 09:31:29.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +[989 01-18 09:31:29.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +[98a 01-18 09:31:29.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] +[98b 01-18 09:31:29.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] +[98c 01-18 09:31:29.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +[98d 01-18 09:31:29.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [6] with [1] transactions +[98e 01-18 09:31:29.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [6] +[98f 01-18 09:31:29.92 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +[990 01-18 09:31:29.92 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [6] contains transaction id: a4652cc8b4e64e8e390bc639b183d8569ae28fa2ce4307dc0a9b7eed3962aaab +[991 01-18 09:31:29.92 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [6] +[992 01-18 09:31:29.92 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +[993 01-18 09:31:29.92 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +[994 01-18 09:31:29.92 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +[995 01-18 09:31:29.92 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +[996 01-18 09:31:29.92 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit diff --git a/hyperledger_fabric/v1.0.2/test-solo.yaml b/hyperledger_fabric/v1.0.2/test-solo.yaml new file mode 100644 index 00000000..99df4275 --- /dev/null +++ b/hyperledger_fabric/v1.0.2/test-solo.yaml @@ -0,0 +1,169 @@ +# All elements in this file should depend on the base.yaml +# Provided solo-base fabric network with: + +# ca.org1.example.com +# ca.org2.example.com +# orderer.example.com +# peer0.org1.example.com +# peer1.org1.example.com +# peer0.org2.example.com +# peer1.org2.example.com +# cli + +version: '2' # v3 does not support 'extends' yet + +services: + + orderer.example.com: # orderer in solo mode + extends: + file: base.yaml + service: orderer-base + container_name: orderer.example.com + hostname: orderer.example.com + ports: + - "7050:7050" + volumes: + - ./solo/channel-artifacts/orderer.genesis.block:/var/hyperledger/orderer/orderer.genesis.block + - ./solo/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp:/var/hyperledger/orderer/msp + - ./solo/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/:/var/hyperledger/orderer/tls + +## following are peer nodes ## + + peer0.org1.example.com: + extends: + file: base.yaml + service: peer-base + container_name: peer0.org1.example.com + hostname: peer0.org1.example.com + environment: + - CORE_PEER_ID=peer0.org1.example.com + - CORE_PEER_ADDRESS=peer0.org1.example.com:7051 + - CORE_PEER_CHAINCODELISTENADDRESS=peer0.org1.example.com:7052 + - CORE_PEER_GOSSIP_EXTERNALENDPOINT=peer0.org1.example.com:7051 + - CORE_PEER_LOCALMSPID=Org1MSP + volumes: + - ./solo/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp:/etc/hyperledger/fabric/msp + - ./solo/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls:/etc/hyperledger/fabric/tls + ports: + - 7051:7051 + - 7052:7052 + - 7053:7053 + + peer0-a.org1.example.com: + extends: + file: base.yaml + service: peer-base + container_name: peer0-a.org1.example.com + hostname: peer0-a.org1.example.com + environment: + - CORE_PEER_ID=peer0.org1.example.com + - CORE_PEER_ADDRESS=peer0.org1.example.com:7051 + #- CORE_PEER_CHAINCODELISTENADDRESS=peer0.org1.example.com:7052 + - CORE_PEER_GOSSIP_EXTERNALENDPOINT=peer0.org1.example.com:7051 + - CORE_PEER_GOSSIP_BOOTSTRAP=peer0.org1.example.com:7051 + - CORE_PEER_LOCALMSPID=Org1MSP + volumes: + - ./solo/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp:/etc/hyperledger/fabric/msp + - ./solo/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls:/etc/hyperledger/fabric/tls + expose: + - 7051 + - 7052 + - 7053 + + peer1.org1.example.com: + extends: + file: base.yaml + service: peer-base + container_name: peer1.org1.example.com + hostname: peer1.org1.example.com + environment: + - CORE_PEER_ID=peer1.org1.example.com + - CORE_PEER_ADDRESS=peer1.org1.example.com:7051 + - CORE_PEER_CHAINCODELISTENADDRESS=peer1.org1.example.com:7052 + - CORE_PEER_GOSSIP_EXTERNALENDPOINT=peer1.org1.example.com:7051 + - CORE_PEER_GOSSIP_BOOTSTRAP=peer0.org1.example.com:7051 + - CORE_PEER_LOCALMSPID=Org1MSP + volumes: + - ./solo/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp:/etc/hyperledger/fabric/msp + - ./solo/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls:/etc/hyperledger/fabric/tls + ports: + - 8051:7051 + - 8052:7052 + - 8053:7053 + + peer0.org2.example.com: + extends: + file: base.yaml + service: peer-base + container_name: peer0.org2.example.com + hostname: peer0.org2.example.com + environment: + - CORE_PEER_ID=peer0.org2.example.com + - CORE_PEER_ADDRESS=peer0.org2.example.com:7051 + - CORE_PEER_CHAINCODELISTENADDRESS=peer0.org2.example.com:7052 + - CORE_PEER_GOSSIP_EXTERNALENDPOINT=peer0.org2.example.com:7051 + - CORE_PEER_GOSSIP_BOOTSTRAP=peer0.org2.example.com:7051 + - CORE_PEER_LOCALMSPID=Org2MSP + volumes: + - ./solo/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp:/etc/hyperledger/fabric/msp + - ./solo/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls:/etc/hyperledger/fabric/tls + ports: + - 9051:7051 + - 9052:7052 + - 9053:7053 + + peer1.org2.example.com: + extends: + file: base.yaml + service: peer-base + container_name: peer1.org2.example.com + hostname: peer1.org2.example.com + environment: + - CORE_PEER_ID=peer1.org2.example.com + - CORE_PEER_ADDRESS=peer1.org2.example.com:7051 + - CORE_PEER_CHAINCODELISTENADDRESS=peer1.org2.example.com:7052 + - CORE_PEER_GOSSIP_EXTERNALENDPOINT=peer1.org2.example.com:7051 + - CORE_PEER_GOSSIP_BOOTSTRAP=peer0.org2.example.com:7051 + - CORE_PEER_LOCALMSPID=Org2MSP + volumes: + - ./solo/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp:/etc/hyperledger/fabric/msp + - ./solo/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls:/etc/hyperledger/fabric/tls + ports: + - 10051:7051 + - 10052:7052 + - 10053:7053 + + peer0.org3.example.com: + extends: + file: base.yaml + service: peer-base + container_name: peer0.org3.example.com + hostname: peer0.org3.example.com + environment: + - CORE_PEER_ID=peer0.org3.example.com + - CORE_PEER_ADDRESS=peer0.org3.example.com:7051 + - CORE_PEER_CHAINCODELISTENADDRESS=peer0.org3.example.com:7052 + - CORE_PEER_GOSSIP_EXTERNALENDPOINT=peer0.org3.example.com:7051 + - CORE_PEER_GOSSIP_BOOTSTRAP=peer0.org3.example.com:7051 + - CORE_PEER_LOCALMSPID=Org3MSP + volumes: + - ./solo/crypto-config/peerOrganizations/org3.example.com/peers/peer0.org3.example.com/msp:/etc/hyperledger/fabric/msp + - ./solo/crypto-config/peerOrganizations/org3.example.com/peers/peer0.org3.example.com/tls:/etc/hyperledger/fabric/tls + ports: + - 11051:7051 + - 11052:7052 + - 11053:7053 + + cli: # client node + extends: + file: base.yaml + service: cli-base + container_name: fabric-cli + hostname: fabric-cli + volumes: + - ./scripts:/tmp/scripts + - ./solo/channel-artifacts:/tmp/channel-artifacts + - ./solo/configtx.yaml:/etc/hyperledger/fabric/configtx.yaml + - ./solo/crypto-config.yaml:/etc/hyperledger/fabric/crypto-config.yaml + - ./solo/crypto-config:/etc/hyperledger/fabric/crypto-config + - ./examples:/opt/gopath/src/examples